diff --git a/.eslintrc.js b/.eslintrc.js index f69344ddb2..6630a82a4a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -3,21 +3,29 @@ module.exports = { browser: true, es6: true, }, - extends: ["plugin:react/recommended", "google", "prettier", "prettier/react"], + extends: ['plugin:react/recommended', 'google', 'prettier', 'prettier/react'], globals: { - Atomics: "readonly", - SharedArrayBuffer: "readonly", + Atomics: 'readonly', + SharedArrayBuffer: 'readonly', }, + parser: 'babel-eslint', parserOptions: { ecmaFeatures: { jsx: true, }, ecmaVersion: 2018, - sourceType: "module", + sourceType: 'module', }, - plugins: ["react", "prettier"], + plugins: ['react', 'prettier'], rules: { - "require-jsdoc": 0, - "prettier/prettier": "error", + 'require-jsdoc': 0, + 'prettier/prettier': 'error', + 'no-invalid-this': 0, + 'react/prop-types': 0, }, -} + settings: { + react: { + version: 'detect', + }, + }, +}; diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index e199e1dcb4..2305ced8fe 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -4,7 +4,6 @@ about: Create a report to help us improve title: '' labels: 'Status: Review Needed, Type: Bug' assignees: jeremyphilemon, JunaidBabu, sudevschiz - --- **Describe the bug** @@ -12,6 +11,7 @@ A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: + 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' @@ -24,15 +24,17 @@ A clear and concise description of what you expected to happen. If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - - OS: [e.g. iOS] - - Browser [e.g. chrome, safari] - - Version [e.g. 22] + +- OS: [e.g. iOS] +- Browser [e.g. chrome, safari] +- Version [e.g. 22] **Smartphone (please complete the following information):** - - Device: [e.g. iPhone6] - - OS: [e.g. iOS8.1] - - Browser [e.g. stock browser, safari] - - Version [e.g. 22] + +- Device: [e.g. iPhone6] +- OS: [e.g. iOS8.1] +- Browser [e.g. stock browser, safari] +- Version [e.g. 22] **Additional context** Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 2b5987cfa8..8c7d3424b3 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -4,7 +4,6 @@ about: Suggest an idea for this project title: '' labels: 'Status: Review Needed, Type: Enhancement' assignees: JunaidBabu, sudevschiz - --- **Is your feature request related to a problem? Please describe.** diff --git a/.prettierrc b/.prettierrc index c551ede844..aa38796f19 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,7 +1,8 @@ { - "endOfLine": "auto", - "semi": false, - "singleQuote": false, + "endOfLine": "lf", + "semi": true, + "singleQuote": true, "tabWidth": 2, - "trailingComma": "es5" + "trailingComma": "es5", + "bracketSpacing": false } diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6eb17c931f..8fb00e851d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,23 +1,20 @@ -# Contributing to covid19india.org website - -First off, thanks for taking the time to contribute! :+1: - -These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request. - - -Regarding PRs to this project, always submit a PR against an "issue". If an issue doesn't exist, please raise one first. - - -Two kinds of issues can be raised in this project: - -1. Bug report -2. Feature Request - - -## Process Flow - -* When a new issue is created, "Status: Review Needed" and "Type:Bug or Type:Enhancement" label is automatically added to it. -* Mods periodically check "Status:Review Needed" and add appropriate Priority and Status labels. If the issue is clear, set the status label as "Status: Available" -* People looking to contribute, filter issues by ["Status:Available"](https://github.com/covid19india/covid19india-react/issues?q=is%3Aissue+is%3Aopen+label%3A%22Status%3A+Available%22) and comment on the issue that, they are working on it. -* Mods change the status label to "Status:Accepted" and assign the issue to the contributor. -* Contributor change the label to "Status: In Progress" and finally submit the pull request. +# Contributing to covid19india.org website + +First off, thanks for taking the time to contribute! :+1: + +These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request. + +Regarding Pull Requests to this project, always submit a PR against an "Accepted Issue" assigned to you. If an issue doesn't exist, please raise one first and wait for it to get accepted, and assigned. PRs without having accepted issues mentioned will be closed. The only exception to this rule are for PRs that address critical bug fixes that cannot wait for a maintainer's approval. + +Two kinds of issues can be raised in this project: + +1. Bug report +2. Feature Request + +## Process Flow + +- When a new issue is created, "Status: Review Needed" and "Type:Bug or Type:Enhancement" label is automatically added to it. +- Mods periodically check "Status:Review Needed" and add appropriate Priority and Status labels. If the issue is clear, set the status label as "Label: Available" +- People looking to contribute, filter issues by ["Status:Available"](https://github.com/covid19india/covid19india-react/issues?q=is%3Aissue+is%3Aopen+label%3A%22Status%3A+Available%22) and comment on the issue that they would like to be assigned to work on it. +- Mods change the status label to "Status:Accepted" and assign the issue to the contributor. +- Contributor change the label to "Status: In Progress" and finally submit the pull request. \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md index 31818a7119..4e3d6f9cc0 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file +SOFTWARE. diff --git a/README.md b/README.md index 1ea4a50d60..e954fdb142 100644 --- a/README.md +++ b/README.md @@ -5,22 +5,19 @@
- View our live patient database. If you'd like to collaborate, join the Telegram Group. + View our live patient database.
- ## Setup -On Windows -``` -npm i && npm run start-win -``` -On Linux + ``` npm i && npm start ``` ## Maintainers + - [jeremyphilemon](https://github.com/jeremyphilemon) -## Contributors -- [s-naveen](https://github.com/jeremyphilemon/covid19-india/pulls?q=is%3Apr+author%3As-naveen+is%3Aclosed) +## Contribution + +If you're new to contributing to Open Source on Github, [this guide](https://guides.github.com/activities/contributing-to-open-source/) can help you get started. Please check out the contribution guide for more details on how issues and pull requests work. diff --git a/package-lock.json b/package-lock.json index f4fbf92d5b..043ae5e0b6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { - "name": "covid", - "version": "0.1.0", + "name": "covid19india", + "version": "1.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -13,20 +13,13 @@ } }, "@babel/compat-data": { - "version": "7.8.6", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.8.6.tgz", - "integrity": "sha512-CurCIKPTkS25Mb8mz267vU95vy+TyUpnctEX2lV33xWNmHAfjruztgiPBbXZRh3xZZy1CYvGx6XfxyTVS+sk7Q==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.9.0.tgz", + "integrity": "sha512-zeFQrr+284Ekvd9e7KAX954LkapWiOmQtsfHirhxqfdlX6MEC32iRE+pqUGlYIBchdevaCwvzxWGSy/YBNI85g==", "requires": { - "browserslist": "^4.8.5", + "browserslist": "^4.9.1", "invariant": "^2.2.4", "semver": "^5.5.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } } }, "@babel/core": { @@ -51,22 +44,42 @@ "source-map": "^0.5.0" }, "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" } } }, "@babel/generator": { - "version": "7.8.8", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.8.8.tgz", - "integrity": "sha512-HKyUVu69cZoclptr8t8U5b6sx6zoWjh8jiUhnuj3MpZuKT2dJ8zPTuiy31luq32swhI0SpwItCIlU8XW7BZeJg==", + "version": "7.9.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.9.4.tgz", + "integrity": "sha512-rjP8ahaDy/ouhrvCoU1E5mqaitWrxwuNGU+dy1EpaoK48jZay4MdkskKGIMHLZNewg8sAsqpGSREJwP0zH3YQA==", "requires": { - "@babel/types": "^7.8.7", + "@babel/types": "^7.9.0", "jsesc": "^2.5.1", "lodash": "^4.17.13", "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } } }, "@babel/helper-annotate-as-pure": { @@ -87,22 +100,22 @@ } }, "@babel/helper-builder-react-jsx": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.8.3.tgz", - "integrity": "sha512-JT8mfnpTkKNCboTqZsQTdGo3l3Ik3l7QIt9hh0O9DYiwVel37VoJpILKM4YFbP2euF32nkQSb+F9cUk9b7DDXQ==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.9.0.tgz", + "integrity": "sha512-weiIo4gaoGgnhff54GQ3P5wsUQmnSwpkvU0r6ZHq6TzoSzKy4JxHEgnxNytaKbov2a9z/CVNyzliuCOUPEX3Jw==", "requires": { - "@babel/types": "^7.8.3", - "esutils": "^2.0.0" + "@babel/helper-annotate-as-pure": "^7.8.3", + "@babel/types": "^7.9.0" } }, - "@babel/helper-call-delegate": { - "version": "7.8.7", - "resolved": "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.8.7.tgz", - "integrity": "sha512-doAA5LAKhsFCR0LAFIf+r2RSMmC+m8f/oQ+URnUET/rWeEzC0yTRmAGyWkD4sSu3xwbS7MYQ2u+xlt1V5R56KQ==", + "@babel/helper-builder-react-jsx-experimental": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.9.0.tgz", + "integrity": "sha512-3xJEiyuYU4Q/Ar9BsHisgdxZsRlsShMe90URZ0e6przL26CCs8NJbDoxH94kKT17PcxlMhsCAwZd90evCo26VQ==", "requires": { - "@babel/helper-hoist-variables": "^7.8.3", - "@babel/traverse": "^7.8.3", - "@babel/types": "^7.8.7" + "@babel/helper-annotate-as-pure": "^7.8.3", + "@babel/helper-module-imports": "^7.8.3", + "@babel/types": "^7.9.0" } }, "@babel/helper-compilation-targets": { @@ -115,13 +128,6 @@ "invariant": "^2.2.4", "levenary": "^1.1.1", "semver": "^5.5.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } } }, "@babel/helper-create-class-features-plugin": { @@ -209,16 +215,16 @@ } }, "@babel/helper-module-transforms": { - "version": "7.8.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.8.6.tgz", - "integrity": "sha512-RDnGJSR5EFBJjG3deY0NiL0K9TO8SXxS9n/MPsbPK/s9LbQymuLNtlzvDiNS7IpecuL45cMeLVkA+HfmlrnkRg==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.9.0.tgz", + "integrity": "sha512-0FvKyu0gpPfIQ8EkxlrAydOWROdHpBmiCiRwLkUiBGhCUPRRbVD2/tm3sFr/c/GWFrQ/ffutGUAnx7V0FzT2wA==", "requires": { "@babel/helper-module-imports": "^7.8.3", "@babel/helper-replace-supers": "^7.8.6", "@babel/helper-simple-access": "^7.8.3", "@babel/helper-split-export-declaration": "^7.8.3", "@babel/template": "^7.8.6", - "@babel/types": "^7.8.6", + "@babel/types": "^7.9.0", "lodash": "^4.17.13" } }, @@ -283,6 +289,11 @@ "@babel/types": "^7.8.3" } }, + "@babel/helper-validator-identifier": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.0.tgz", + "integrity": "sha512-6G8bQKjOh+of4PV/ThDm/rRqlU7+IGoJuofpagU5GlEl29Vv0RGqqt86ZGRV8ZuSOY3o+8yXl5y782SMcG7SHw==" + }, "@babel/helper-wrap-function": { "version": "7.8.3", "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.8.3.tgz", @@ -295,29 +306,57 @@ } }, "@babel/helpers": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.8.4.tgz", - "integrity": "sha512-VPbe7wcQ4chu4TDQjimHv/5tj73qz88o12EPkO2ValS2QiQS/1F2SsjyIGNnAD0vF/nZS6Cf9i+vW6HIlnaR8w==", + "version": "7.9.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.9.2.tgz", + "integrity": "sha512-JwLvzlXVPjO8eU9c/wF9/zOIN7X6h8DYf7mG4CiFRZRvZNKEF5dQ3H3V+ASkHoIB3mWhatgl5ONhyqHRI6MppA==", "requires": { "@babel/template": "^7.8.3", - "@babel/traverse": "^7.8.4", - "@babel/types": "^7.8.3" + "@babel/traverse": "^7.9.0", + "@babel/types": "^7.9.0" } }, "@babel/highlight": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.8.3.tgz", - "integrity": "sha512-PX4y5xQUvy0fnEVHrYOarRPXVWafSjTW9T0Hab8gVIawpl2Sj0ORyrygANq+KjcNlSSTw0YCLSNA8OyZ1I4yEg==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.9.0.tgz", + "integrity": "sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ==", "requires": { + "@babel/helper-validator-identifier": "^7.9.0", "chalk": "^2.0.0", - "esutils": "^2.0.2", "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "@babel/parser": { - "version": "7.8.8", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.8.8.tgz", - "integrity": "sha512-mO5GWzBPsPf6865iIbzNE0AvkKF3NE+2S3eRUpE+FE07BOAkXh6G+GW/Pj01hhXjve1WScbaIO4UlY1JKeqCcA==" + "version": "7.9.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.9.4.tgz", + "integrity": "sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA==" }, "@babel/plugin-proposal-async-generator-functions": { "version": "7.8.3", @@ -385,9 +424,9 @@ } }, "@babel/plugin-proposal-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-8qvuPwU/xxUCt78HocNlv0mXXo0wdh9VT1R04WU8HGOfaOob26pF+9P5/lYjN/q7DHOX1bvX60hnhOvuQUJdbA==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.0.tgz", + "integrity": "sha512-UgqBv6bjq4fDb8uku9f+wcm1J7YxJ5nT7WO/jBr0cl0PLKb7t1O6RNR1kZbjgx2LQtsDI9hwoQVmn0yhXeQyow==", "requires": { "@babel/helper-plugin-utils": "^7.8.3", "@babel/plugin-syntax-object-rest-spread": "^7.8.0" @@ -403,9 +442,9 @@ } }, "@babel/plugin-proposal-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.8.3.tgz", - "integrity": "sha512-QIoIR9abkVn+seDE3OjA08jWcs3eZ9+wJCKSRgo3WdEU2csFYgdScb+8qHB3+WXsGJD55u+5hWCISI7ejXS+kg==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.9.0.tgz", + "integrity": "sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==", "requires": { "@babel/helper-plugin-utils": "^7.8.3", "@babel/plugin-syntax-optional-chaining": "^7.8.0" @@ -560,9 +599,9 @@ } }, "@babel/plugin-transform-classes": { - "version": "7.8.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.8.6.tgz", - "integrity": "sha512-k9r8qRay/R6v5aWZkrEclEhKO6mc1CCQr2dLsVHBmOQiMpN6I2bpjX3vgnldUWeEI1GHVNByULVxZ4BdP4Hmdg==", + "version": "7.9.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.9.2.tgz", + "integrity": "sha512-TC2p3bPzsfvSsqBZo0kJnuelnoK9O3welkUpqSqBQuBF6R5MN2rysopri8kNvtlGIb2jmUO7i15IooAZJjZuMQ==", "requires": { "@babel/helper-annotate-as-pure": "^7.8.3", "@babel/helper-define-map": "^7.8.3", @@ -617,18 +656,18 @@ } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.8.3.tgz", - "integrity": "sha512-g/6WTWG/xbdd2exBBzMfygjX/zw4eyNC4X8pRaq7aRHRoDUCzAIu3kGYIXviOv8BjCuWm8vDBwjHcjiRNgXrPA==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.9.0.tgz", + "integrity": "sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg==", "requires": { "@babel/helper-plugin-utils": "^7.8.3", "@babel/plugin-syntax-flow": "^7.8.3" } }, "@babel/plugin-transform-for-of": { - "version": "7.8.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.8.6.tgz", - "integrity": "sha512-M0pw4/1/KI5WAxPsdcUL/w2LJ7o89YHN3yLkzNjg7Yl15GlVGgzHyCU+FMeAxevHGsLVmUqbirlUIKTafPmzdw==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.9.0.tgz", + "integrity": "sha512-lTAnWOpMwOXpyDx06N+ywmF3jNbafZEqZ96CGYabxHrxNX8l5ny7dt4bK/rGwAh9utyP2b2Hv7PlZh1AAS54FQ==", "requires": { "@babel/helper-plugin-utils": "^7.8.3" } @@ -659,43 +698,43 @@ } }, "@babel/plugin-transform-modules-amd": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.8.3.tgz", - "integrity": "sha512-MadJiU3rLKclzT5kBH4yxdry96odTUwuqrZM+GllFI/VhxfPz+k9MshJM+MwhfkCdxxclSbSBbUGciBngR+kEQ==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.9.0.tgz", + "integrity": "sha512-vZgDDF003B14O8zJy0XXLnPH4sg+9X5hFBBGN1V+B2rgrB+J2xIypSN6Rk9imB2hSTHQi5OHLrFWsZab1GMk+Q==", "requires": { - "@babel/helper-module-transforms": "^7.8.3", + "@babel/helper-module-transforms": "^7.9.0", "@babel/helper-plugin-utils": "^7.8.3", "babel-plugin-dynamic-import-node": "^2.3.0" } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.8.3.tgz", - "integrity": "sha512-JpdMEfA15HZ/1gNuB9XEDlZM1h/gF/YOH7zaZzQu2xCFRfwc01NXBMHHSTT6hRjlXJJs5x/bfODM3LiCk94Sxg==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.9.0.tgz", + "integrity": "sha512-qzlCrLnKqio4SlgJ6FMMLBe4bySNis8DFn1VkGmOcxG9gqEyPIOzeQrA//u0HAKrWpJlpZbZMPB1n/OPa4+n8g==", "requires": { - "@babel/helper-module-transforms": "^7.8.3", + "@babel/helper-module-transforms": "^7.9.0", "@babel/helper-plugin-utils": "^7.8.3", "@babel/helper-simple-access": "^7.8.3", "babel-plugin-dynamic-import-node": "^2.3.0" } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.8.3.tgz", - "integrity": "sha512-8cESMCJjmArMYqa9AO5YuMEkE4ds28tMpZcGZB/jl3n0ZzlsxOAi3mC+SKypTfT8gjMupCnd3YiXCkMjj2jfOg==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.9.0.tgz", + "integrity": "sha512-FsiAv/nao/ud2ZWy4wFacoLOm5uxl0ExSQ7ErvP7jpoihLR6Cq90ilOFyX9UXct3rbtKsAiZ9kFt5XGfPe/5SQ==", "requires": { "@babel/helper-hoist-variables": "^7.8.3", - "@babel/helper-module-transforms": "^7.8.3", + "@babel/helper-module-transforms": "^7.9.0", "@babel/helper-plugin-utils": "^7.8.3", "babel-plugin-dynamic-import-node": "^2.3.0" } }, "@babel/plugin-transform-modules-umd": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.8.3.tgz", - "integrity": "sha512-evhTyWhbwbI3/U6dZAnx/ePoV7H6OUG+OjiJFHmhr9FPn0VShjwC2kdxqIuQ/+1P50TMrneGzMeyMTFOjKSnAw==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.9.0.tgz", + "integrity": "sha512-uTWkXkIVtg/JGRSIABdBoMsoIeoHQHPTL0Y2E7xf5Oj7sLqwVsNXOkNk0VJc7vF0IMBsPeikHxFjGe+qmwPtTQ==", "requires": { - "@babel/helper-module-transforms": "^7.8.3", + "@babel/helper-module-transforms": "^7.9.0", "@babel/helper-plugin-utils": "^7.8.3" } }, @@ -725,11 +764,10 @@ } }, "@babel/plugin-transform-parameters": { - "version": "7.8.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.8.8.tgz", - "integrity": "sha512-hC4Ld/Ulpf1psQciWWwdnUspQoQco2bMzSrwU6TmzRlvoYQe4rQFy9vnCZDTlVeCQj0JPfL+1RX0V8hCJvkgBA==", + "version": "7.9.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.9.3.tgz", + "integrity": "sha512-fzrQFQhp7mIhOzmOtPiKffvCYQSK10NR8t6BBz2yPbeUHb9OLW8RZGtgDRBn8z2hGcwvKDL3vC7ojPTLNxmqEg==", "requires": { - "@babel/helper-call-delegate": "^7.8.7", "@babel/helper-get-function-arity": "^7.8.3", "@babel/helper-plugin-utils": "^7.8.3" } @@ -743,11 +781,10 @@ } }, "@babel/plugin-transform-react-constant-elements": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.8.3.tgz", - "integrity": "sha512-glrzN2U+egwRfkNFtL34xIBYTxbbUF2qJTP8HD3qETBBqzAWSeNB821X0GjU06+dNpq/UyCIjI72FmGE5NNkQQ==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.9.0.tgz", + "integrity": "sha512-wXMXsToAUOxJuBBEHajqKLFWcCkOSLshTI2ChCFFj1zDd7od4IOxiwLCOObNUvOpkxLpjIuaIdBMmNt6ocCPAw==", "requires": { - "@babel/helper-annotate-as-pure": "^7.8.3", "@babel/helper-plugin-utils": "^7.8.3" } }, @@ -760,28 +797,39 @@ } }, "@babel/plugin-transform-react-jsx": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.8.3.tgz", - "integrity": "sha512-r0h+mUiyL595ikykci+fbwm9YzmuOrUBi0b+FDIKmi3fPQyFokWVEMJnRWHJPPQEjyFJyna9WZC6Viv6UHSv1g==", + "version": "7.9.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.9.4.tgz", + "integrity": "sha512-Mjqf3pZBNLt854CK0C/kRuXAnE6H/bo7xYojP+WGtX8glDGSibcwnsWwhwoSuRg0+EBnxPC1ouVnuetUIlPSAw==", + "requires": { + "@babel/helper-builder-react-jsx": "^7.9.0", + "@babel/helper-builder-react-jsx-experimental": "^7.9.0", + "@babel/helper-plugin-utils": "^7.8.3", + "@babel/plugin-syntax-jsx": "^7.8.3" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.9.0.tgz", + "integrity": "sha512-tK8hWKrQncVvrhvtOiPpKrQjfNX3DtkNLSX4ObuGcpS9p0QrGetKmlySIGR07y48Zft8WVgPakqd/bk46JrMSw==", "requires": { - "@babel/helper-builder-react-jsx": "^7.8.3", + "@babel/helper-builder-react-jsx-experimental": "^7.9.0", "@babel/helper-plugin-utils": "^7.8.3", "@babel/plugin-syntax-jsx": "^7.8.3" } }, "@babel/plugin-transform-react-jsx-self": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.8.3.tgz", - "integrity": "sha512-01OT7s5oa0XTLf2I8XGsL8+KqV9lx3EZV+jxn/L2LQ97CGKila2YMroTkCEIE0HV/FF7CMSRsIAybopdN9NTdg==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.9.0.tgz", + "integrity": "sha512-K2ObbWPKT7KUTAoyjCsFilOkEgMvFG+y0FqOl6Lezd0/13kMkkjHskVsZvblRPj1PHA44PrToaZANrryppzTvQ==", "requires": { "@babel/helper-plugin-utils": "^7.8.3", "@babel/plugin-syntax-jsx": "^7.8.3" } }, "@babel/plugin-transform-react-jsx-source": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.8.3.tgz", - "integrity": "sha512-PLMgdMGuVDtRS/SzjNEQYUT8f4z1xb2BAT54vM1X5efkVuYBf5WyGUMbpmARcfq3NaglIwz08UVQK4HHHbC6ag==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.9.0.tgz", + "integrity": "sha512-K6m3LlSnTSfRkM6FcRk8saNEeaeyG5k7AVkBU2bZK3+1zdkSED3qNdsWrUgQBeTVD2Tp3VMmerxVO2yM5iITmw==", "requires": { "@babel/helper-plugin-utils": "^7.8.3", "@babel/plugin-syntax-jsx": "^7.8.3" @@ -804,21 +852,14 @@ } }, "@babel/plugin-transform-runtime": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.8.3.tgz", - "integrity": "sha512-/vqUt5Yh+cgPZXXjmaG9NT8aVfThKk7G4OqkVhrXqwsC5soMn/qTCxs36rZ2QFhpfTJcjw4SNDIZ4RUb8OL4jQ==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.9.0.tgz", + "integrity": "sha512-pUu9VSf3kI1OqbWINQ7MaugnitRss1z533436waNXp+0N3ur3zfut37sXiQMxkuCF4VUjwZucen/quskCh7NHw==", "requires": { "@babel/helper-module-imports": "^7.8.3", "@babel/helper-plugin-utils": "^7.8.3", "resolve": "^1.8.1", "semver": "^5.5.1" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } } }, "@babel/plugin-transform-shorthand-properties": { @@ -864,9 +905,9 @@ } }, "@babel/plugin-transform-typescript": { - "version": "7.8.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.8.7.tgz", - "integrity": "sha512-7O0UsPQVNKqpHeHLpfvOG4uXmlw+MOxYvUv6Otc9uH5SYMIxvF6eBdjkWvC3f9G+VXe0RsNExyAQBeTRug/wqQ==", + "version": "7.9.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.9.4.tgz", + "integrity": "sha512-yeWeUkKx2auDbSxRe8MusAG+n4m9BFY/v+lPjmQDgOFX5qnySkUY5oXzkp6FwPdsYqnKay6lorXYdC0n3bZO7w==", "requires": { "@babel/helper-create-class-features-plugin": "^7.8.3", "@babel/helper-plugin-utils": "^7.8.3", @@ -883,11 +924,11 @@ } }, "@babel/preset-env": { - "version": "7.8.7", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.8.7.tgz", - "integrity": "sha512-BYftCVOdAYJk5ASsznKAUl53EMhfBbr8CJ1X+AJLfGPscQkwJFiaV/Wn9DPH/7fzm2v6iRYJKYHSqyynTGw0nw==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.9.0.tgz", + "integrity": "sha512-712DeRXT6dyKAM/FMbQTV/FvRCms2hPCx+3weRjZ8iQVQWZejWWk1wwG6ViWMyqb/ouBbGOl5b6aCk0+j1NmsQ==", "requires": { - "@babel/compat-data": "^7.8.6", + "@babel/compat-data": "^7.9.0", "@babel/helper-compilation-targets": "^7.8.7", "@babel/helper-module-imports": "^7.8.3", "@babel/helper-plugin-utils": "^7.8.3", @@ -895,14 +936,16 @@ "@babel/plugin-proposal-dynamic-import": "^7.8.3", "@babel/plugin-proposal-json-strings": "^7.8.3", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-proposal-object-rest-spread": "^7.8.3", + "@babel/plugin-proposal-numeric-separator": "^7.8.3", + "@babel/plugin-proposal-object-rest-spread": "^7.9.0", "@babel/plugin-proposal-optional-catch-binding": "^7.8.3", - "@babel/plugin-proposal-optional-chaining": "^7.8.3", + "@babel/plugin-proposal-optional-chaining": "^7.9.0", "@babel/plugin-proposal-unicode-property-regex": "^7.8.3", "@babel/plugin-syntax-async-generators": "^7.8.0", "@babel/plugin-syntax-dynamic-import": "^7.8.0", "@babel/plugin-syntax-json-strings": "^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-numeric-separator": "^7.8.0", "@babel/plugin-syntax-object-rest-spread": "^7.8.0", "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", "@babel/plugin-syntax-optional-chaining": "^7.8.0", @@ -911,20 +954,20 @@ "@babel/plugin-transform-async-to-generator": "^7.8.3", "@babel/plugin-transform-block-scoped-functions": "^7.8.3", "@babel/plugin-transform-block-scoping": "^7.8.3", - "@babel/plugin-transform-classes": "^7.8.6", + "@babel/plugin-transform-classes": "^7.9.0", "@babel/plugin-transform-computed-properties": "^7.8.3", "@babel/plugin-transform-destructuring": "^7.8.3", "@babel/plugin-transform-dotall-regex": "^7.8.3", "@babel/plugin-transform-duplicate-keys": "^7.8.3", "@babel/plugin-transform-exponentiation-operator": "^7.8.3", - "@babel/plugin-transform-for-of": "^7.8.6", + "@babel/plugin-transform-for-of": "^7.9.0", "@babel/plugin-transform-function-name": "^7.8.3", "@babel/plugin-transform-literals": "^7.8.3", "@babel/plugin-transform-member-expression-literals": "^7.8.3", - "@babel/plugin-transform-modules-amd": "^7.8.3", - "@babel/plugin-transform-modules-commonjs": "^7.8.3", - "@babel/plugin-transform-modules-systemjs": "^7.8.3", - "@babel/plugin-transform-modules-umd": "^7.8.3", + "@babel/plugin-transform-modules-amd": "^7.9.0", + "@babel/plugin-transform-modules-commonjs": "^7.9.0", + "@babel/plugin-transform-modules-systemjs": "^7.9.0", + "@babel/plugin-transform-modules-umd": "^7.9.0", "@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3", "@babel/plugin-transform-new-target": "^7.8.3", "@babel/plugin-transform-object-super": "^7.8.3", @@ -938,54 +981,62 @@ "@babel/plugin-transform-template-literals": "^7.8.3", "@babel/plugin-transform-typeof-symbol": "^7.8.4", "@babel/plugin-transform-unicode-regex": "^7.8.3", - "@babel/types": "^7.8.7", - "browserslist": "^4.8.5", + "@babel/preset-modules": "^0.1.3", + "@babel/types": "^7.9.0", + "browserslist": "^4.9.1", "core-js-compat": "^3.6.2", "invariant": "^2.2.2", "levenary": "^1.1.1", "semver": "^5.5.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } + } + }, + "@babel/preset-modules": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.3.tgz", + "integrity": "sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" } }, "@babel/preset-react": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.8.3.tgz", - "integrity": "sha512-9hx0CwZg92jGb7iHYQVgi0tOEHP/kM60CtWJQnmbATSPIQQ2xYzfoCI3EdqAhFBeeJwYMdWQuDUHMsuDbH9hyQ==", + "version": "7.9.4", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.9.4.tgz", + "integrity": "sha512-AxylVB3FXeOTQXNXyiuAQJSvss62FEotbX2Pzx3K/7c+MKJMdSg6Ose6QYllkdCFA8EInCJVw7M/o5QbLuA4ZQ==", "requires": { "@babel/helper-plugin-utils": "^7.8.3", "@babel/plugin-transform-react-display-name": "^7.8.3", - "@babel/plugin-transform-react-jsx": "^7.8.3", - "@babel/plugin-transform-react-jsx-self": "^7.8.3", - "@babel/plugin-transform-react-jsx-source": "^7.8.3" + "@babel/plugin-transform-react-jsx": "^7.9.4", + "@babel/plugin-transform-react-jsx-development": "^7.9.0", + "@babel/plugin-transform-react-jsx-self": "^7.9.0", + "@babel/plugin-transform-react-jsx-source": "^7.9.0" } }, "@babel/preset-typescript": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.8.3.tgz", - "integrity": "sha512-qee5LgPGui9zQ0jR1TeU5/fP9L+ovoArklEqY12ek8P/wV5ZeM/VYSQYwICeoT6FfpJTekG9Ilay5PhwsOpMHA==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.9.0.tgz", + "integrity": "sha512-S4cueFnGrIbvYJgwsVFKdvOmpiL0XGw9MFW9D0vgRys5g36PBhZRL8NX8Gr2akz8XRtzq6HuDXPD/1nniagNUg==", "requires": { "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-transform-typescript": "^7.8.3" + "@babel/plugin-transform-typescript": "^7.9.0" } }, "@babel/runtime": { - "version": "7.8.7", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.8.7.tgz", - "integrity": "sha512-+AATMUFppJDw6aiR5NVPHqIQBlV/Pj8wY/EZH+lmvRdUo9xBaz/rF3alAwFJQavvKfeOlPE7oaaDHVbcySbCsg==", + "version": "7.9.2", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.2.tgz", + "integrity": "sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q==", "requires": { "regenerator-runtime": "^0.13.4" } }, "@babel/runtime-corejs3": { - "version": "7.8.7", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.8.7.tgz", - "integrity": "sha512-sc7A+H4I8kTd7S61dgB9RomXu/C+F4IrRr4Ytze4dnfx7AXEpCrejSNpjx7vq6y/Bak9S6Kbk65a/WgMLtg43Q==", + "version": "7.9.2", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.9.2.tgz", + "integrity": "sha512-HHxmgxbIzOfFlZ+tdeRKtaxWOMUoCG5Mu3wKeUmOxjYrwb3AAHgnmtCUbPPK11/raIWLIBK250t8E2BPO0p7jA==", + "dev": true, "requires": { "core-js-pure": "^3.0.0", "regenerator-runtime": "^0.13.4" @@ -1002,27 +1053,42 @@ } }, "@babel/traverse": { - "version": "7.8.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.8.6.tgz", - "integrity": "sha512-2B8l0db/DPi8iinITKuo7cbPznLCEk0kCxDoB9/N6gGNg/gxOXiR/IcymAFPiBwk5w6TtQ27w4wpElgp9btR9A==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.9.0.tgz", + "integrity": "sha512-jAZQj0+kn4WTHO5dUZkZKhbFrqZE7K5LAQ5JysMnmvGij+wOdr+8lWqPeW0BcF4wFwrEXXtdGO7wcV6YPJcf3w==", "requires": { "@babel/code-frame": "^7.8.3", - "@babel/generator": "^7.8.6", + "@babel/generator": "^7.9.0", "@babel/helper-function-name": "^7.8.3", "@babel/helper-split-export-declaration": "^7.8.3", - "@babel/parser": "^7.8.6", - "@babel/types": "^7.8.6", + "@babel/parser": "^7.9.0", + "@babel/types": "^7.9.0", "debug": "^4.1.0", "globals": "^11.1.0", "lodash": "^4.17.13" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } } }, "@babel/types": { - "version": "7.8.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.8.7.tgz", - "integrity": "sha512-k2TreEHxFA4CjGkL+GYjRyx35W0Mr7DP5+9q6WMkyKXB+904bYmG40syjMFV0oLlhhFCwWl0vA0DyzTDkwAiJw==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.9.0.tgz", + "integrity": "sha512-BS9JKfXkzzJl8RluW4JGknzpiUV7ZrvTayM6yfqLTVBEnFtyowVIOu6rqxRd5cVO6yGoWf4T8u8dgK9oB+GCng==", "requires": { - "esutils": "^2.0.2", + "@babel/helper-validator-identifier": "^7.9.0", "lodash": "^4.17.13", "to-fast-properties": "^2.0.0" } @@ -1088,6 +1154,34 @@ "@jest/source-map": "^24.9.0", "chalk": "^2.0.1", "slash": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "@jest/core": { @@ -1129,6 +1223,45 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==" + }, + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } } } }, @@ -1181,10 +1314,36 @@ "string-length": "^2.0.0" }, "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } } } }, @@ -1254,10 +1413,36 @@ "write-file-atomic": "2.4.1" }, "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } } } }, @@ -1285,6 +1470,117 @@ "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==" }, + "@samverschueren/stream-to-observable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz", + "integrity": "sha512-MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg==", + "dev": true, + "requires": { + "any-observable": "^0.3.0" + } + }, + "@sentry/apm": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@sentry/apm/-/apm-5.15.4.tgz", + "integrity": "sha512-gcW225Jls1ShyBXMWN6zZyuVJwBOIQ63sI+URI2NSFsdpBpdpZ8yennIm+oMlSfb25Nzt9SId7TRSjPhlSbTZQ==", + "dev": true, + "requires": { + "@sentry/browser": "5.15.4", + "@sentry/hub": "5.15.4", + "@sentry/minimal": "5.15.4", + "@sentry/types": "5.15.4", + "@sentry/utils": "5.15.4", + "tslib": "^1.9.3" + } + }, + "@sentry/browser": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@sentry/browser/-/browser-5.15.4.tgz", + "integrity": "sha512-l/auT1HtZM3KxjCGQHYO/K51ygnlcuOrM+7Ga8gUUbU9ZXDYw6jRi0+Af9aqXKmdDw1naNxr7OCSy6NBrLWVZw==", + "dev": true, + "requires": { + "@sentry/core": "5.15.4", + "@sentry/types": "5.15.4", + "@sentry/utils": "5.15.4", + "tslib": "^1.9.3" + } + }, + "@sentry/core": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@sentry/core/-/core-5.15.4.tgz", + "integrity": "sha512-9KP4NM4SqfV5NixpvAymC7Nvp36Zj4dU2fowmxiq7OIbzTxGXDhwuN/t0Uh8xiqlkpkQqSECZ1OjSFXrBldetQ==", + "dev": true, + "requires": { + "@sentry/hub": "5.15.4", + "@sentry/minimal": "5.15.4", + "@sentry/types": "5.15.4", + "@sentry/utils": "5.15.4", + "tslib": "^1.9.3" + } + }, + "@sentry/hub": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@sentry/hub/-/hub-5.15.4.tgz", + "integrity": "sha512-1XJ1SVqadkbUT4zLS0TVIVl99si7oHizLmghR8LMFl5wOkGEgehHSoOydQkIAX2C7sJmaF5TZ47ORBHgkqclUg==", + "dev": true, + "requires": { + "@sentry/types": "5.15.4", + "@sentry/utils": "5.15.4", + "tslib": "^1.9.3" + } + }, + "@sentry/minimal": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@sentry/minimal/-/minimal-5.15.4.tgz", + "integrity": "sha512-GL4GZ3drS9ge+wmxkHBAMEwulaE7DMvAEfKQPDAjg2p3MfcCMhAYfuY4jJByAC9rg9OwBGGehz7UmhWMFjE0tw==", + "dev": true, + "requires": { + "@sentry/hub": "5.15.4", + "@sentry/types": "5.15.4", + "tslib": "^1.9.3" + } + }, + "@sentry/node": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@sentry/node/-/node-5.15.4.tgz", + "integrity": "sha512-OfdhNEvOJZ55ZkCUcVgctjaZkOw7rmLzO5VyDTSgevA4uLsPaTNXSAeK2GSQBXc5J0KdRpNz4sSIyuxOS4Z7Vg==", + "dev": true, + "requires": { + "@sentry/apm": "5.15.4", + "@sentry/core": "5.15.4", + "@sentry/hub": "5.15.4", + "@sentry/types": "5.15.4", + "@sentry/utils": "5.15.4", + "cookie": "^0.3.1", + "https-proxy-agent": "^4.0.0", + "lru_map": "^0.3.3", + "tslib": "^1.9.3" + }, + "dependencies": { + "cookie": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", + "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", + "dev": true + } + } + }, + "@sentry/types": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@sentry/types/-/types-5.15.4.tgz", + "integrity": "sha512-quPHPpeAuwID48HLPmqBiyXE3xEiZLZ5D3CEbU3c3YuvvAg8qmfOOTI6z4Z3Eedi7flvYpnx3n7N3dXIEz30Eg==", + "dev": true + }, + "@sentry/utils": { + "version": "5.15.4", + "resolved": "https://registry.npmjs.org/@sentry/utils/-/utils-5.15.4.tgz", + "integrity": "sha512-lO8SLBjrUDGADl0LOkd55R5oL510d/1SaI08/IBHZCxCUwI4TiYo5EPECq8mrj3XGfgCyq9osw33bymRlIDuSQ==", + "dev": true, + "requires": { + "@sentry/types": "5.15.4", + "tslib": "^1.9.3" + } + }, "@svgr/babel-plugin-add-jsx-attribute": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-4.2.0.tgz", @@ -1348,6 +1644,13 @@ "@svgr/plugin-jsx": "^4.3.3", "camelcase": "^5.3.1", "cosmiconfig": "^5.2.1" + }, + "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + } } }, "@svgr/hast-util-to-babel-ast": { @@ -1394,243 +1697,6 @@ "loader-utils": "^1.2.3" } }, - "@testing-library/dom": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-7.0.4.tgz", - "integrity": "sha512-+vrLcGDvopLPsBB7JgJhf8ZoOhBSeCsI44PKJL9YoKrP2AvCkqrTg+z77wEEZJ4tSNdxV0kymil7hSvsQQ7jMQ==", - "requires": { - "@babel/runtime": "^7.8.4", - "@types/testing-library__dom": "^6.12.1", - "aria-query": "^4.0.2", - "dom-accessibility-api": "^0.3.0", - "pretty-format": "^25.1.0" - }, - "dependencies": { - "@jest/types": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.1.0.tgz", - "integrity": "sha512-VpOtt7tCrgvamWZh1reVsGADujKigBUFTi19mlRjqEGsE8qH4r3s+skY33dNdXOwyZIvuftZ5tqdF1IgsMejMA==", - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - } - }, - "@types/yargs": { - "version": "15.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.4.tgz", - "integrity": "sha512-9T1auFmbPZoxHz0enUFlUuKRy3it01R+hlggyVUMtnCTQRunsQYifnSGb8hET4Xo8yiC0o0r1paW3ud5+rbURg==", - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "aria-query": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.0.2.tgz", - "integrity": "sha512-S1G1V790fTaigUSM/Gd0NngzEfiMy9uTUfMyHhKhVyy4cH5O/eTuR01ydhGL0z4Za1PXFTRGH3qL8VhUQuEO5w==", - "requires": { - "@babel/runtime": "^7.7.4", - "@babel/runtime-corejs3": "^7.7.4" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "pretty-format": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.1.0.tgz", - "integrity": "sha512-46zLRSGLd02Rp+Lhad9zzuNZ+swunitn8zIpfD2B4OPCRLXbM87RJT2aBLBWYOznNUML/2l/ReMyWNC80PJBUQ==", - "requires": { - "@jest/types": "^25.1.0", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^16.12.0" - } - }, - "supports-color": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@testing-library/jest-dom": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.1.1.tgz", - "integrity": "sha512-7xnmBFcUmmUVAUhFiZ/u3CxFh1e46THAwra4SiiKNCW4By26RedCRwEk0rtleFPZG0wlTSNOKDvJjWYy93dp0w==", - "requires": { - "@babel/runtime": "^7.8.3", - "@types/testing-library__jest-dom": "^5.0.0", - "chalk": "^3.0.0", - "css": "^2.2.4", - "css.escape": "^1.5.1", - "jest-diff": "^25.1.0", - "jest-matcher-utils": "^25.1.0", - "lodash": "^4.17.15", - "pretty-format": "^25.1.0", - "redent": "^3.0.0" - }, - "dependencies": { - "@jest/types": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.1.0.tgz", - "integrity": "sha512-VpOtt7tCrgvamWZh1reVsGADujKigBUFTi19mlRjqEGsE8qH4r3s+skY33dNdXOwyZIvuftZ5tqdF1IgsMejMA==", - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - } - }, - "@types/yargs": { - "version": "15.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.4.tgz", - "integrity": "sha512-9T1auFmbPZoxHz0enUFlUuKRy3it01R+hlggyVUMtnCTQRunsQYifnSGb8hET4Xo8yiC0o0r1paW3ud5+rbURg==", - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "diff-sequences": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.1.0.tgz", - "integrity": "sha512-nFIfVk5B/NStCsJ+zaPO4vYuLjlzQ6uFvPxzYyHlejNZ/UGa7G/n7peOXVrVNvRuyfstt+mZQYGpjxg9Z6N8Kw==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-diff": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-25.1.0.tgz", - "integrity": "sha512-nepXgajT+h017APJTreSieh4zCqnSHEJ1iT8HDlewu630lSJ4Kjjr9KNzm+kzGwwcpsDE6Snx1GJGzzsefaEHw==", - "requires": { - "chalk": "^3.0.0", - "diff-sequences": "^25.1.0", - "jest-get-type": "^25.1.0", - "pretty-format": "^25.1.0" - } - }, - "jest-get-type": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.1.0.tgz", - "integrity": "sha512-yWkBnT+5tMr8ANB6V+OjmrIJufHtCAqI5ic2H40v+tRqxDmE0PGnIiTyvRWFOMtmVHYpwRqyazDbTnhpjsGvLw==" - }, - "jest-matcher-utils": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-25.1.0.tgz", - "integrity": "sha512-KGOAFcSFbclXIFE7bS4C53iYobKI20ZWleAdAFun4W1Wz1Kkej8Ng6RRbhL8leaEvIOjGXhGf/a1JjO8bkxIWQ==", - "requires": { - "chalk": "^3.0.0", - "jest-diff": "^25.1.0", - "jest-get-type": "^25.1.0", - "pretty-format": "^25.1.0" - } - }, - "pretty-format": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.1.0.tgz", - "integrity": "sha512-46zLRSGLd02Rp+Lhad9zzuNZ+swunitn8zIpfD2B4OPCRLXbM87RJT2aBLBWYOznNUML/2l/ReMyWNC80PJBUQ==", - "requires": { - "@jest/types": "^25.1.0", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^16.12.0" - } - }, - "supports-color": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@testing-library/react": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-10.0.1.tgz", - "integrity": "sha512-sMHWud2dcymOzq2AhEniICSijEwKeTiBX+K0y36FYNY7wH2t0SIP1o732Bf5dDY0jYoMC2hj2UJSVpZC/rDsWg==", - "requires": { - "@babel/runtime": "^7.8.7", - "@testing-library/dom": "^7.0.2", - "@types/testing-library__react": "^9.1.3" - } - }, - "@testing-library/user-event": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-10.0.0.tgz", - "integrity": "sha512-ygQ1SaX3AzWDGPer5e2LF7FvWwLPG+XYViHvpW4ObseOkqmJI2ruawp9iLmEwxQW88jNCCExvonh0jBAwwiYZw==" - }, "@types/babel__core": { "version": "7.1.6", "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.6.tgz", @@ -1668,65 +1734,16 @@ "@babel/types": "^7.3.0" } }, - "@types/classnames": { - "version": "2.2.10", - "resolved": "https://registry.npmjs.org/@types/classnames/-/classnames-2.2.10.tgz", - "integrity": "sha512-1UzDldn9GfYYEsWWnn/P4wkTlkZDH7lDb0wBMGbtIQc9zXEQq7FlKBdZUn6OBqD8sKZZ2RQO2mAjGpXiDGoRmQ==" - }, "@types/color-name": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" }, - "@types/d3-geo": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-1.11.1.tgz", - "integrity": "sha512-Ox8WWOG3igDRoep/dNsGbOiSJYdUG3ew/6z0ETvHyAtXZVBjOE0S96zSSmzgl0gqQ3RdZjn2eeJOj9oRcMZPkQ==", - "requires": { - "@types/geojson": "*" - } - }, - "@types/d3-path": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-1.0.8.tgz", - "integrity": "sha512-AZGHWslq/oApTAHu9+yH/Bnk63y9oFOMROtqPAtxl5uB6qm1x2lueWdVEjsjjV3Qc2+QfuzKIwIR5MvVBakfzA==" - }, - "@types/d3-random": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-1.1.2.tgz", - "integrity": "sha512-Jui+Zn28pQw/3EayPKaN4c/PqTvqNbIPjHkgIIFnxne1FdwNjfHtAIsZIBMKlquQNrrMjFzCrlF2gPs3xckqaA==" - }, - "@types/d3-scale": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-2.2.0.tgz", - "integrity": "sha512-oQFanN0/PiR2oySHfj+zAAkK1/p4LD32Nt1TMVmzk+bYHk7vgIg/iTXQWitp1cIkDw4LMdcgvO63wL+mNs47YA==", - "requires": { - "@types/d3-time": "*" - } - }, "@types/d3-selection": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-1.0.10.tgz", "integrity": "sha1-3PsN3837GtJq6kNRMjdx4a6pboQ=" }, - "@types/d3-shape": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-1.3.2.tgz", - "integrity": "sha512-LtD8EaNYCaBRzHzaAiIPrfcL3DdIysc81dkGlQvv7WQP3+YXV7b0JJTtR1U3bzeRieS603KF4wUo+ZkJVenh8w==", - "requires": { - "@types/d3-path": "*" - } - }, - "@types/d3-time": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-1.0.10.tgz", - "integrity": "sha512-aKf62rRQafDQmSiv1NylKhIMmznsjRN+MnXRXTqHoqm0U/UZzVpdrtRnSIfdiLS616OuC1soYeX1dBg2n1u8Xw==" - }, - "@types/d3-voronoi": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/@types/d3-voronoi/-/d3-voronoi-1.1.9.tgz", - "integrity": "sha512-DExNQkaHd1F3dFPvGA/Aw2NGyjMln6E9QzsiqOcBgnE+VInYnFBHBBySbZQts6z6xD+5jTfKCP7M4OqMyVjdwQ==" - }, "@types/eslint-visitor-keys": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", @@ -1737,11 +1754,6 @@ "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" }, - "@types/geojson": { - "version": "7946.0.7", - "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.7.tgz", - "integrity": "sha512-wE2v81i4C4Ol09RtsWFAqg3BUitWbHSpSlIo+bNdsCJijO9sjme+zm+73ZMCa/qMC8UEERxzGbvmr1cffo2SiQ==" - }, "@types/glob": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", @@ -1774,321 +1786,86 @@ "@types/istanbul-lib-report": "*" } }, - "@types/jest": { - "version": "25.1.4", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-25.1.4.tgz", - "integrity": "sha512-QDDY2uNAhCV7TMCITrxz+MRk1EizcsevzfeS6LykIlq2V1E5oO4wXG8V2ZEd9w7Snxeeagk46YbMgZ8ESHx3sw==", - "requires": { - "jest-diff": "^25.1.0", - "pretty-format": "^25.1.0" - }, - "dependencies": { - "@jest/types": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.1.0.tgz", - "integrity": "sha512-VpOtt7tCrgvamWZh1reVsGADujKigBUFTi19mlRjqEGsE8qH4r3s+skY33dNdXOwyZIvuftZ5tqdF1IgsMejMA==", - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - } - }, - "@types/yargs": { - "version": "15.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.4.tgz", - "integrity": "sha512-9T1auFmbPZoxHz0enUFlUuKRy3it01R+hlggyVUMtnCTQRunsQYifnSGb8hET4Xo8yiC0o0r1paW3ud5+rbURg==", - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "diff-sequences": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-25.1.0.tgz", - "integrity": "sha512-nFIfVk5B/NStCsJ+zaPO4vYuLjlzQ6uFvPxzYyHlejNZ/UGa7G/n7peOXVrVNvRuyfstt+mZQYGpjxg9Z6N8Kw==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "jest-diff": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-25.1.0.tgz", - "integrity": "sha512-nepXgajT+h017APJTreSieh4zCqnSHEJ1iT8HDlewu630lSJ4Kjjr9KNzm+kzGwwcpsDE6Snx1GJGzzsefaEHw==", - "requires": { - "chalk": "^3.0.0", - "diff-sequences": "^25.1.0", - "jest-get-type": "^25.1.0", - "pretty-format": "^25.1.0" - } - }, - "jest-get-type": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-25.1.0.tgz", - "integrity": "sha512-yWkBnT+5tMr8ANB6V+OjmrIJufHtCAqI5ic2H40v+tRqxDmE0PGnIiTyvRWFOMtmVHYpwRqyazDbTnhpjsGvLw==" - }, - "pretty-format": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.1.0.tgz", - "integrity": "sha512-46zLRSGLd02Rp+Lhad9zzuNZ+swunitn8zIpfD2B4OPCRLXbM87RJT2aBLBWYOznNUML/2l/ReMyWNC80PJBUQ==", - "requires": { - "@jest/types": "^25.1.0", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^16.12.0" - } - }, - "supports-color": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, "@types/json-schema": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.4.tgz", "integrity": "sha512-8+KAKzEvSUdeo+kmqnKrqgeE+LcA0tjYWFY7RPProVYwnqDjukzO+3b6dLD56rYX5TdWejnEOLJYOIeh4CXKuA==" }, - "@types/lodash": { - "version": "4.14.149", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.149.tgz", - "integrity": "sha512-ijGqzZt/b7BfzcK9vTrS6MFljQRPn5BFWOx8oE0GYxribu6uV+aA9zZuXI1zc/etK9E8nrgdoF2+LgUw7+9tJQ==" - }, "@types/minimatch": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" }, "@types/node": { - "version": "13.9.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-13.9.1.tgz", - "integrity": "sha512-E6M6N0blf/jiZx8Q3nb0vNaswQeEyn0XlupO+xN6DtJ6r6IT4nXrTry7zhIfYvFCl3/8Cu6WIysmUBKiqV0bqQ==" + "version": "13.9.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-13.9.5.tgz", + "integrity": "sha512-hkzMMD3xu6BrJpGVLeQ3htQQNAcOrJjX7WFmtK8zWQpz2UJf13LCFF2ALA7c9OVdvc2vQJeDdjfR35M0sBCxvw==" }, "@types/parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" }, - "@types/prop-types": { - "version": "15.7.3", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", - "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==" - }, "@types/q": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.2.tgz", "integrity": "sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==" }, - "@types/react": { - "version": "16.9.23", - "resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.23.tgz", - "integrity": "sha512-SsGVT4E7L2wLN3tPYLiF20hmZTPGuzaayVunfgXzUn1x4uHVsKH6QDJQ/TdpHqwsTLd4CwrmQ2vOgxN7gE24gw==", + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==" + }, + "@types/yargs": { + "version": "13.0.8", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.8.tgz", + "integrity": "sha512-XAvHLwG7UQ+8M4caKIH0ZozIOYay5fQkAgyIXegXT9jPtdIGdhga+sUEdAr1CiG46aB+c64xQEYyEzlwWVTNzA==", "requires": { - "@types/prop-types": "*", - "csstype": "^2.2.0" + "@types/yargs-parser": "*" } }, - "@types/react-dom": { - "version": "16.9.5", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.9.5.tgz", - "integrity": "sha512-BX6RQ8s9D+2/gDhxrj8OW+YD4R+8hj7FEM/OJHGNR0KipE1h1mSsf39YeyC81qafkq+N3rU3h3RFbLSwE5VqUg==", + "@types/yargs-parser": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz", + "integrity": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==" + }, + "@typescript-eslint/eslint-plugin": { + "version": "2.25.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.25.0.tgz", + "integrity": "sha512-W2YyMtjmlrOjtXc+FtTelVs9OhuR6OlYc4XKIslJ8PUJOqgYYAPRJhAqkYRQo3G4sjvG8jSodsNycEn4W2gHUw==", "requires": { - "@types/react": "*" + "@typescript-eslint/experimental-utils": "2.25.0", + "functional-red-black-tree": "^1.0.1", + "regexpp": "^3.0.0", + "tsutils": "^3.17.1" } }, - "@types/stack-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", - "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==" - }, - "@types/testing-library__dom": { - "version": "6.14.0", - "resolved": "https://registry.npmjs.org/@types/testing-library__dom/-/testing-library__dom-6.14.0.tgz", - "integrity": "sha512-sMl7OSv0AvMOqn1UJ6j1unPMIHRXen0Ita1ujnMX912rrOcawe4f7wu0Zt9GIQhBhJvH2BaibqFgQ3lP+Pj2hA==", + "@typescript-eslint/experimental-utils": { + "version": "2.25.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-2.25.0.tgz", + "integrity": "sha512-0IZ4ZR5QkFYbaJk+8eJ2kYeA+1tzOE1sBjbwwtSV85oNWYUBep+EyhlZ7DLUCyhMUGuJpcCCFL0fDtYAP1zMZw==", "requires": { - "pretty-format": "^24.3.0" + "@types/json-schema": "^7.0.3", + "@typescript-eslint/typescript-estree": "2.25.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" } }, - "@types/testing-library__jest-dom": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.0.2.tgz", - "integrity": "sha512-dZP+/WHndgCSmdaImITy0KhjGAa9c0hlGGkzefbtrPFpnGEPZECDA0zyvfSp8RKhHECJJSKHFExjOwzo0rHyIA==", + "@typescript-eslint/parser": { + "version": "2.25.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-2.25.0.tgz", + "integrity": "sha512-mccBLaBSpNVgp191CP5W+8U1crTyXsRziWliCqzj02kpxdjKMvFHGJbK33NroquH3zB/gZ8H511HEsJBa2fNEg==", "requires": { - "@types/jest": "*" + "@types/eslint-visitor-keys": "^1.0.0", + "@typescript-eslint/experimental-utils": "2.25.0", + "@typescript-eslint/typescript-estree": "2.25.0", + "eslint-visitor-keys": "^1.1.0" } }, - "@types/testing-library__react": { - "version": "9.1.3", - "resolved": "https://registry.npmjs.org/@types/testing-library__react/-/testing-library__react-9.1.3.tgz", - "integrity": "sha512-iCdNPKU3IsYwRK9JieSYAiX0+aYDXOGAmrC/3/M7AqqSDKnWWVv07X+Zk1uFSL7cMTUYzv4lQRfohucEocn5/w==", - "requires": { - "@types/react-dom": "*", - "@types/testing-library__dom": "*", - "pretty-format": "^25.1.0" - }, - "dependencies": { - "@jest/types": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-25.1.0.tgz", - "integrity": "sha512-VpOtt7tCrgvamWZh1reVsGADujKigBUFTi19mlRjqEGsE8qH4r3s+skY33dNdXOwyZIvuftZ5tqdF1IgsMejMA==", - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^1.1.1", - "@types/yargs": "^15.0.0", - "chalk": "^3.0.0" - } - }, - "@types/yargs": { - "version": "15.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.4.tgz", - "integrity": "sha512-9T1auFmbPZoxHz0enUFlUuKRy3it01R+hlggyVUMtnCTQRunsQYifnSGb8hET4Xo8yiC0o0r1paW3ud5+rbURg==", - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", - "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", - "requires": { - "@types/color-name": "^1.1.1", - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", - "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "requires": { - "color-name": "~1.1.4" - } - }, - "color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - }, - "pretty-format": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-25.1.0.tgz", - "integrity": "sha512-46zLRSGLd02Rp+Lhad9zzuNZ+swunitn8zIpfD2B4OPCRLXbM87RJT2aBLBWYOznNUML/2l/ReMyWNC80PJBUQ==", - "requires": { - "@jest/types": "^25.1.0", - "ansi-regex": "^5.0.0", - "ansi-styles": "^4.0.0", - "react-is": "^16.12.0" - } - }, - "supports-color": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", - "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "@types/yargs": { - "version": "13.0.8", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.8.tgz", - "integrity": "sha512-XAvHLwG7UQ+8M4caKIH0ZozIOYay5fQkAgyIXegXT9jPtdIGdhga+sUEdAr1CiG46aB+c64xQEYyEzlwWVTNzA==", - "requires": { - "@types/yargs-parser": "*" - } - }, - "@types/yargs-parser": { - "version": "15.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz", - "integrity": "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw==" - }, - "@typescript-eslint/eslint-plugin": { - "version": "2.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.23.0.tgz", - "integrity": "sha512-8iA4FvRsz8qTjR0L/nK9RcRUN3QtIHQiOm69FzV7WS3SE+7P7DyGGwh3k4UNR2JBbk+Ej2Io+jLAaqKibNhmtw==", - "requires": { - "@typescript-eslint/experimental-utils": "2.23.0", - "eslint-utils": "^1.4.3", - "functional-red-black-tree": "^1.0.1", - "regexpp": "^3.0.0", - "tsutils": "^3.17.1" - } - }, - "@typescript-eslint/experimental-utils": { - "version": "2.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-2.23.0.tgz", - "integrity": "sha512-OswxY59RcXH3NNPmq+4Kis2CYZPurRU6mG5xPcn24CjFyfdVli5mySwZz/g/xDbJXgDsYqNGq7enV0IziWGXVQ==", - "requires": { - "@types/json-schema": "^7.0.3", - "@typescript-eslint/typescript-estree": "2.23.0", - "eslint-scope": "^5.0.0" - } - }, - "@typescript-eslint/parser": { - "version": "2.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-2.23.0.tgz", - "integrity": "sha512-k61pn/Nepk43qa1oLMiyqApC6x5eP5ddPz6VUYXCAuXxbmRLqkPYzkFRKl42ltxzB2luvejlVncrEpflgQoSUg==", - "requires": { - "@types/eslint-visitor-keys": "^1.0.0", - "@typescript-eslint/experimental-utils": "2.23.0", - "@typescript-eslint/typescript-estree": "2.23.0", - "eslint-visitor-keys": "^1.1.0" - } - }, - "@typescript-eslint/typescript-estree": { - "version": "2.23.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.23.0.tgz", - "integrity": "sha512-pmf7IlmvXdlEXvE/JWNNJpEvwBV59wtJqA8MLAxMKLXNKVRC3HZBXR/SlZLPWTCcwOSg9IM7GeRSV3SIerGVqw==", + "@typescript-eslint/typescript-estree": { + "version": "2.25.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.25.0.tgz", + "integrity": "sha512-VUksmx5lDxSi6GfmwSK7SSoIKSw9anukWWNitQPqt58LuYrKalzsgeuignbqnB+rK/xxGlSsCy8lYnwFfB6YJg==", "requires": { "debug": "^4.1.1", "eslint-visitor-keys": "^1.1.0", @@ -2097,266 +1874,26 @@ "lodash": "^4.17.15", "semver": "^6.3.0", "tsutils": "^3.17.1" - } - }, - "@vx/annotation": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/annotation/-/annotation-0.0.195.tgz", - "integrity": "sha512-ya3bB57TC1bq7rPUGGOclkrrrTtr6b1Di4qb6yIgA4ubgRlBWuZfAMrZ2b58XL/Ft9xvUeU0caF64AevRG0PrA==", - "requires": { - "@types/classnames": "^2.2.9", - "@types/react": "*", - "@vx/group": "0.0.195", - "@vx/point": "0.0.195", - "@vx/shape": "0.0.195", - "classnames": "^2.2.5", - "prop-types": "^15.5.10" - } - }, - "@vx/axis": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/axis/-/axis-0.0.195.tgz", - "integrity": "sha512-oGbZ83tOfefJRkxQW8WGMmvt48Y7O3VzrWPC0mG+2xcfGzg5m04H6w7GvcqfEkOtgvyAXEDhiKJ3i6hH6QixsA==", - "requires": { - "@types/classnames": "^2.2.9", - "@types/react": "*", - "@vx/group": "0.0.195", - "@vx/point": "0.0.195", - "@vx/shape": "0.0.195", - "@vx/text": "0.0.195", - "classnames": "^2.2.5", - "prop-types": "^15.6.0" - } - }, - "@vx/bounds": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/bounds/-/bounds-0.0.195.tgz", - "integrity": "sha512-G99BCC335UgOsKSecye2HRGrnDazOXEcfuu7F2SvzgfPu3jNanrLpu7Y8Te13Ibo13wNUMY3RUTJszTaBHSI4w==", - "requires": { - "@types/react": "*", - "@types/react-dom": "*", - "prop-types": "^15.5.10" - } - }, - "@vx/curve": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/curve/-/curve-0.0.195.tgz", - "integrity": "sha512-fQXvd1530ou/K5v6fzH/RWy8HjXCKKScmtk9DfSdp/wkhm5u+1jkoe6r53PLAdJhUnMI6U8OsiVlaLF8nADuMw==", - "requires": { - "@types/d3-shape": "^1.3.1", - "d3-shape": "^1.0.6" - } - }, - "@vx/event": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/event/-/event-0.0.195.tgz", - "integrity": "sha512-7LgFdMvQD0SW0ZIWzqZ/umD+q4xwrJexuAeuUoxkV7tzt+fnPTkbnkymq371ZGvVAIGtv6urPrnOWyEvngQECw==", - "requires": { - "@types/react": "*", - "@vx/point": "0.0.195" - } - }, - "@vx/geo": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/geo/-/geo-0.0.195.tgz", - "integrity": "sha512-noYyWZittdU6Lrsuu41UcvSc/r58bnsujeCjdyCTaa/1b77OObKPoxRJDBc8mbvu6u6VuTq/cCdxlopdPcrF/A==", - "requires": { - "@types/classnames": "^2.2.9", - "@types/d3-geo": "^1.11.1", - "@types/geojson": "*", - "@types/react": "*", - "@vx/group": "0.0.195", - "classnames": "^2.2.5", - "d3-geo": "^1.11.3", - "prop-types": "^15.5.10" - } - }, - "@vx/glyph": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/glyph/-/glyph-0.0.195.tgz", - "integrity": "sha512-GXJPeUwlTh4l0gu3/XsgKvl+oe7MCbUXaELTh6aHPjMjQir5X3wq6VsWwAYzg3DQoci6lK5Nn/W/1p/AkSt5Rw==", - "requires": { - "@types/classnames": "^2.2.9", - "@types/d3-shape": "^1.3.1", - "@types/react": "*", - "@vx/group": "0.0.195", - "classnames": "^2.2.5", - "d3-shape": "^1.2.0", - "prop-types": "^15.6.2" - } - }, - "@vx/gradient": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/gradient/-/gradient-0.0.195.tgz", - "integrity": "sha512-d3enF/y6P994+5R31hyqP7d578WMPNFFQSnVTL0YPzCwzY4BZIaWqitK7omU7ws1XL2QWOZak7bVUhU1zoTp0A==", - "requires": { - "@types/react": "*", - "prop-types": "^15.5.7" - } - }, - "@vx/grid": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/grid/-/grid-0.0.195.tgz", - "integrity": "sha512-0JRKxejbZBbvnhkuKIgHvoAIW21ceeL0vU+9+88zRwnl8yViW54pSZAC9HvhhdxKnqssEH/AiwePNVpHtY5xHA==", - "requires": { - "@types/classnames": "^2.2.9", - "@types/react": "*", - "@vx/group": "0.0.195", - "@vx/point": "0.0.195", - "@vx/shape": "0.0.195", - "classnames": "^2.2.5", - "prop-types": "^15.6.2" - } - }, - "@vx/group": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/group/-/group-0.0.195.tgz", - "integrity": "sha512-XzbCIb2dVR3b51gbiG+gfc8J/H7IaepQ7mQEOKKXnb4gP66kYU/Rtr7WTZzLD3uwsBDXjJaa2y16arnMmhUlNQ==", - "requires": { - "@types/classnames": "^2.2.9", - "@types/react": "*", - "classnames": "^2.2.5", - "prop-types": "^15.6.2" - } - }, - "@vx/heatmap": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/heatmap/-/heatmap-0.0.195.tgz", - "integrity": "sha512-JxDROgqR6HdNt9rh0d6q4E+LeSq7StcMFPFzziVtOx+0qUTdeYV8KwTj3/k6lkISCWLe9RXpZ6V9/HmfPN1/7g==", - "requires": { - "@types/classnames": "^2.2.9", - "@types/react": "*", - "@vx/group": "0.0.195", - "classnames": "^2.2.5", - "prop-types": "^15.6.1" - } - }, - "@vx/legend": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/legend/-/legend-0.0.195.tgz", - "integrity": "sha512-EduXqrgU+JlJAQlA723nXsAvT81EAEscw3cl3/E4m4d8LCHnudLIX3AMG0AD9gxY/4pJclkYFU9MQP3TfoTVag==", - "requires": { - "@types/classnames": "^2.2.9", - "@types/d3-scale": "^2.1.1", - "@types/react": "*", - "@vx/group": "0.0.195", - "classnames": "^2.2.5", - "prop-types": "^15.5.10" - } - }, - "@vx/marker": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/marker/-/marker-0.0.195.tgz", - "integrity": "sha512-ofyTQFvsL5tMyv/EqCejWYsDjgE4p7bVSR0MmduFyAD1S6m+iLgCgFuoQcAudx0aCkkkALNl06ReTjkPmj5yVw==", - "requires": { - "@types/classnames": "^2.2.9", - "@types/react": "*", - "@vx/group": "0.0.195", - "@vx/shape": "0.0.195", - "classnames": "^2.2.5", - "prop-types": "^15.6.2" - } - }, - "@vx/mock-data": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/mock-data/-/mock-data-0.0.195.tgz", - "integrity": "sha512-LpdOaRU7BBTtOmTPvRxNvfIPYleHFUvwMqBP68bkixrsirlYnNhkGmCSGYIr4ZNDgcSaufl9qhCK5Rnht5EMNQ==", - "requires": { - "@types/d3-random": "^1.1.2", - "d3-random": "^1.0.3" - } - }, - "@vx/pattern": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/pattern/-/pattern-0.0.195.tgz", - "integrity": "sha512-YVKfkJuqRxbxCNuVksdxfdjuxbGUBXwPzpytVjaia+wHDHGb/KNlbbP6TVFRSvtf8XtrsWEZxY+QntqtIm5UAw==", - "requires": { - "@types/classnames": "^2.2.9", - "@types/react": "*", - "classnames": "^2.2.5", - "prop-types": "^15.5.10" - } - }, - "@vx/point": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/point/-/point-0.0.195.tgz", - "integrity": "sha512-2m16lfs4v8BwjWMhGNDC4lBBOwaimRL4BapFTS1UQWYSV12y0KlsJGD17fPdR6X9RzYWJTnOL/yaQuGCBa9AdQ==" - }, - "@vx/responsive": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/responsive/-/responsive-0.0.195.tgz", - "integrity": "sha512-3zjkjqg8V3Kr1moSI7EAzlW7MLR87p2CXc+qh0zZg/zLrc3C89JnxyMYFfS7jM4PlHr26n634YddQDVydwARBA==", - "requires": { - "@types/lodash": "^4.14.146", - "@types/react": "*", - "lodash": "^4.17.10", - "prop-types": "^15.6.1", - "resize-observer-polyfill": "1.5.1" - } - }, - "@vx/scale": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/scale/-/scale-0.0.195.tgz", - "integrity": "sha512-aZ2N+YVB6k9um7jzOQY9h/BaV/5vTA8DeuWjqMmeuJCTkX3NzJqu+/oWQRwOcMr/07rAPLf/0YUVEGE50OTEFQ==", - "requires": { - "@types/d3-scale": "^2.1.1", - "d3-scale": "^2.2.2" - } - }, - "@vx/shape": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/shape/-/shape-0.0.195.tgz", - "integrity": "sha512-14I1E0t25hWx4/NCVj6cggm7ewD5a5UDMndXmcpUkV/wx/4SYkXhQ7uDdbAuYNcb/dh0wsFh8vmqmMJxm7DA/w==", - "requires": { - "@types/classnames": "^2.2.9", - "@types/d3-path": "^1.0.8", - "@types/d3-shape": "^1.3.1", - "@types/react": "*", - "@vx/curve": "0.0.195", - "@vx/group": "0.0.195", - "classnames": "^2.2.5", - "d3-path": "^1.0.5", - "d3-shape": "^1.2.0", - "prop-types": "^15.5.10" - } - }, - "@vx/text": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/text/-/text-0.0.195.tgz", - "integrity": "sha512-yp/d9r3JKMD3sz+f5n/RZfZRPre2wOdiz45JiDQNM3v/thnEjeRZzQ2vDi5j0h2H5/TjTCARj7iCD9ON6vJ49Q==", - "requires": { - "@types/classnames": "^2.2.9", - "@types/lodash": "^4.14.146", - "@types/react": "*", - "classnames": "^2.2.5", - "lodash": "^4.17.15", - "prop-types": "^15.7.2", - "reduce-css-calc": "^1.3.0" - } - }, - "@vx/tooltip": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/tooltip/-/tooltip-0.0.195.tgz", - "integrity": "sha512-xgUuXhe6eeIBD7HohQ31lWxVXTuui11qF2S4nsd+tnQemd2qv0Bg+HmvqJnXDCp7uBwLLupb40T2j1y9y0rGCQ==", - "requires": { - "@types/classnames": "^2.2.9", - "@types/react": "*", - "@vx/bounds": "0.0.195", - "classnames": "^2.2.5", - "prop-types": "^15.5.10" - } - }, - "@vx/voronoi": { - "version": "0.0.195", - "resolved": "https://registry.npmjs.org/@vx/voronoi/-/voronoi-0.0.195.tgz", - "integrity": "sha512-zuvc017bfzAQTqAyRVJ5Ds24Q6Qj9KSVoflVORg+R2JNBHE3/pEIEWzwd/gwiS/XMh+UXROk6LK95Q8WE1mH6A==", - "requires": { - "@types/classnames": "^2.2.9", - "@types/d3-voronoi": "^1.1.9", - "@types/react": "*", - "classnames": "^2.2.5", - "d3-voronoi": "^1.1.2", - "prop-types": "^15.6.1" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } } }, "@webassemblyjs/ast": { @@ -2624,6 +2161,12 @@ } } }, + "agent-base": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz", + "integrity": "sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==", + "dev": true + }, "aggregate-error": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz", @@ -2631,6 +2174,13 @@ "requires": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" + }, + "dependencies": { + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + } } }, "ajv": { @@ -2664,11 +2214,6 @@ "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" }, - "animejs": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/animejs/-/animejs-3.1.0.tgz", - "integrity": "sha512-BjnCroPPQPEAngT0M89pz9TBcOGgOFLnVoq3+jV2upl4rn60k57/AXvESTnuILsNgOEjGuhMEOMp7IlQzk40kA==" - }, "ansi-colors": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", @@ -2695,17 +2240,20 @@ "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=" }, "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" }, "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" + }, + "any-observable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/any-observable/-/any-observable-0.3.0.tgz", + "integrity": "sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==", + "dev": true }, "anymatch": { "version": "2.0.0", @@ -2728,30 +2276,6 @@ "requires": { "delegates": "^1.0.0", "readable-stream": "^2.0.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "argparse": { @@ -2933,17 +2457,45 @@ "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" }, "autoprefixer": { - "version": "9.7.4", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.7.4.tgz", - "integrity": "sha512-g0Ya30YrMBAEZk60lp+qfX5YQllG+S5W3GYCFvyHTvhOki0AEQJLPEcIuGRsqVwLi8FvXPVtwTGhfr38hVpm0g==", + "version": "9.7.5", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.7.5.tgz", + "integrity": "sha512-URo6Zvt7VYifomeAfJlMFnYDhow1rk2bufwkbamPEAtQFcL11moLk4PnR7n9vlu7M+BkXAZkHFA0mIcY7tjQFg==", "requires": { - "browserslist": "^4.8.3", - "caniuse-lite": "^1.0.30001020", + "browserslist": "^4.11.0", + "caniuse-lite": "^1.0.30001036", "chalk": "^2.4.2", "normalize-range": "^0.1.2", "num2fraction": "^1.2.2", - "postcss": "^7.0.26", - "postcss-value-parser": "^4.0.2" + "postcss": "^7.0.27", + "postcss-value-parser": "^4.0.3" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "aws-sign2": { @@ -2962,29 +2514,6 @@ "integrity": "sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==", "requires": { "follow-redirects": "1.5.10" - }, - "dependencies": { - "debug": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", - "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", - "requires": { - "ms": "2.0.0" - } - }, - "follow-redirects": { - "version": "1.5.10", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", - "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", - "requires": { - "debug": "=3.1.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } } }, "axobject-query": { @@ -3002,45 +2531,10 @@ "js-tokens": "^3.0.2" }, "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, "js-tokens": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=" - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" } } }, @@ -3077,6 +2571,34 @@ "babel-preset-jest": "^24.9.0", "chalk": "^2.4.2", "slash": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "babel-loader": { @@ -3114,6 +2636,16 @@ "find-up": "^3.0.0", "istanbul-lib-instrument": "^3.3.0", "test-exclude": "^5.2.3" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + } } }, "babel-plugin-jest-hoist": { @@ -3212,101 +2744,88 @@ } }, "babel-preset-react-app": { - "version": "9.1.1", - "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-9.1.1.tgz", - "integrity": "sha512-YkWP2UwY//TLltNlEBRngDOrYhvSLb+CA330G7T9M5UhGEMWe+JK/8IXJc5p2fDTSfSiETf+PY0+PYXFMix81Q==", + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-9.1.2.tgz", + "integrity": "sha512-k58RtQOKH21NyKtzptoAvtAODuAJJs3ZhqBMl456/GnXEQ/0La92pNmwgWoMn5pBTrsvk3YYXdY7zpY4e3UIxA==", "requires": { - "@babel/core": "7.8.4", + "@babel/core": "7.9.0", "@babel/plugin-proposal-class-properties": "7.8.3", "@babel/plugin-proposal-decorators": "7.8.3", + "@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3", "@babel/plugin-proposal-numeric-separator": "7.8.3", - "@babel/plugin-transform-flow-strip-types": "7.8.3", + "@babel/plugin-proposal-optional-chaining": "7.9.0", + "@babel/plugin-transform-flow-strip-types": "7.9.0", "@babel/plugin-transform-react-display-name": "7.8.3", - "@babel/plugin-transform-runtime": "7.8.3", - "@babel/preset-env": "7.8.4", - "@babel/preset-react": "7.8.3", - "@babel/preset-typescript": "7.8.3", - "@babel/runtime": "7.8.4", + "@babel/plugin-transform-runtime": "7.9.0", + "@babel/preset-env": "7.9.0", + "@babel/preset-react": "7.9.1", + "@babel/preset-typescript": "7.9.0", + "@babel/runtime": "7.9.0", "babel-plugin-macros": "2.8.0", "babel-plugin-transform-react-remove-prop-types": "0.4.24" }, "dependencies": { - "@babel/preset-env": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.8.4.tgz", - "integrity": "sha512-HihCgpr45AnSOHRbS5cWNTINs0TwaR8BS8xIIH+QwiW8cKL0llV91njQMpeMReEPVs+1Ao0x3RLEBLtt1hOq4w==", - "requires": { - "@babel/compat-data": "^7.8.4", - "@babel/helper-compilation-targets": "^7.8.4", - "@babel/helper-module-imports": "^7.8.3", + "@babel/core": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.9.0.tgz", + "integrity": "sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==", + "requires": { + "@babel/code-frame": "^7.8.3", + "@babel/generator": "^7.9.0", + "@babel/helper-module-transforms": "^7.9.0", + "@babel/helpers": "^7.9.0", + "@babel/parser": "^7.9.0", + "@babel/template": "^7.8.6", + "@babel/traverse": "^7.9.0", + "@babel/types": "^7.9.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.13", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + }, + "@babel/preset-react": { + "version": "7.9.1", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.9.1.tgz", + "integrity": "sha512-aJBYF23MPj0RNdp/4bHnAP0NVqqZRr9kl0NAOP4nJCex6OYVio59+dnQzsAWFuogdLyeaKA1hmfUIVZkY5J+TQ==", + "requires": { "@babel/helper-plugin-utils": "^7.8.3", - "@babel/plugin-proposal-async-generator-functions": "^7.8.3", - "@babel/plugin-proposal-dynamic-import": "^7.8.3", - "@babel/plugin-proposal-json-strings": "^7.8.3", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-proposal-object-rest-spread": "^7.8.3", - "@babel/plugin-proposal-optional-catch-binding": "^7.8.3", - "@babel/plugin-proposal-optional-chaining": "^7.8.3", - "@babel/plugin-proposal-unicode-property-regex": "^7.8.3", - "@babel/plugin-syntax-async-generators": "^7.8.0", - "@babel/plugin-syntax-dynamic-import": "^7.8.0", - "@babel/plugin-syntax-json-strings": "^7.8.0", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", - "@babel/plugin-syntax-object-rest-spread": "^7.8.0", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.0", - "@babel/plugin-syntax-top-level-await": "^7.8.3", - "@babel/plugin-transform-arrow-functions": "^7.8.3", - "@babel/plugin-transform-async-to-generator": "^7.8.3", - "@babel/plugin-transform-block-scoped-functions": "^7.8.3", - "@babel/plugin-transform-block-scoping": "^7.8.3", - "@babel/plugin-transform-classes": "^7.8.3", - "@babel/plugin-transform-computed-properties": "^7.8.3", - "@babel/plugin-transform-destructuring": "^7.8.3", - "@babel/plugin-transform-dotall-regex": "^7.8.3", - "@babel/plugin-transform-duplicate-keys": "^7.8.3", - "@babel/plugin-transform-exponentiation-operator": "^7.8.3", - "@babel/plugin-transform-for-of": "^7.8.4", - "@babel/plugin-transform-function-name": "^7.8.3", - "@babel/plugin-transform-literals": "^7.8.3", - "@babel/plugin-transform-member-expression-literals": "^7.8.3", - "@babel/plugin-transform-modules-amd": "^7.8.3", - "@babel/plugin-transform-modules-commonjs": "^7.8.3", - "@babel/plugin-transform-modules-systemjs": "^7.8.3", - "@babel/plugin-transform-modules-umd": "^7.8.3", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.8.3", - "@babel/plugin-transform-new-target": "^7.8.3", - "@babel/plugin-transform-object-super": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.8.4", - "@babel/plugin-transform-property-literals": "^7.8.3", - "@babel/plugin-transform-regenerator": "^7.8.3", - "@babel/plugin-transform-reserved-words": "^7.8.3", - "@babel/plugin-transform-shorthand-properties": "^7.8.3", - "@babel/plugin-transform-spread": "^7.8.3", - "@babel/plugin-transform-sticky-regex": "^7.8.3", - "@babel/plugin-transform-template-literals": "^7.8.3", - "@babel/plugin-transform-typeof-symbol": "^7.8.4", - "@babel/plugin-transform-unicode-regex": "^7.8.3", - "@babel/types": "^7.8.3", - "browserslist": "^4.8.5", - "core-js-compat": "^3.6.2", - "invariant": "^2.2.2", - "levenary": "^1.1.1", - "semver": "^5.5.0" + "@babel/plugin-transform-react-display-name": "^7.8.3", + "@babel/plugin-transform-react-jsx": "^7.9.1", + "@babel/plugin-transform-react-jsx-development": "^7.9.0", + "@babel/plugin-transform-react-jsx-self": "^7.9.0", + "@babel/plugin-transform-react-jsx-source": "^7.9.0" } }, "@babel/runtime": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.8.4.tgz", - "integrity": "sha512-neAp3zt80trRVBI1x0azq6c57aNBqYZH8KhMm3TaB7wEI5Q4A2SHfBHE8w9gOhI/lrqxtEbXZgQIrHP+wvSGwQ==", + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.9.0.tgz", + "integrity": "sha512-cTIudHnzuWLS56ik4DnRnqqNf8MkdUzV4iFFI1h7Jo9xvrpQROYaAnaSd2mHLQAzzZAPfATynX5ord6YlNYNMA==", "requires": { - "regenerator-runtime": "^0.13.2" + "regenerator-runtime": "^0.13.4" } }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" } } }, @@ -3481,11 +3000,6 @@ "ms": "2.0.0" } }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, "qs": { "version": "6.7.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", @@ -3638,13 +3152,14 @@ } }, "browserslist": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.9.1.tgz", - "integrity": "sha512-Q0DnKq20End3raFulq6Vfp1ecB9fh8yUNV55s8sekaDDeqBaCtWlRHCUdaWyUeSSBJM7IbM6HcsyaeYqgeDhnw==", + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.11.0.tgz", + "integrity": "sha512-WqEC7Yr5wUH5sg6ruR++v2SGOQYpyUdYYd4tZoAq1F7y+QXoLoYGXVbxhtaIqWmAJjtNTRjVD3HuJc1OXTel2A==", "requires": { - "caniuse-lite": "^1.0.30001030", - "electron-to-chromium": "^1.3.363", - "node-releases": "^1.1.50" + "caniuse-lite": "^1.0.30001035", + "electron-to-chromium": "^1.3.380", + "node-releases": "^1.1.52", + "pkg-up": "^3.1.0" } }, "bser": { @@ -3685,11 +3200,6 @@ "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" }, - "bulma": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.8.0.tgz", - "integrity": "sha512-nhf3rGyiZh/VM7FrSJ/5KeLlfaFkXz0nYcXriynfPH4vVpnxnqyEwaNGdNCVzHyyCA3cHgkQAMpdF/SFbFGZfA==" - }, "bytes": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", @@ -3720,13 +3230,18 @@ "unique-filename": "^1.1.1" }, "dependencies": { - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "requires": { - "glob": "^7.1.3" + "yallist": "^3.0.2" } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" } } }, @@ -3782,9 +3297,9 @@ } }, "camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", + "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=" }, "camelcase-keys": { "version": "2.1.0", @@ -3793,13 +3308,6 @@ "requires": { "camelcase": "^2.0.0", "map-obj": "^1.0.0" - }, - "dependencies": { - "camelcase": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=" - } } }, "caniuse-api": { @@ -3814,9 +3322,9 @@ } }, "caniuse-lite": { - "version": "1.0.30001035", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001035.tgz", - "integrity": "sha512-C1ZxgkuA4/bUEdMbU5WrGY4+UhMFFiXrgNAfxiMIqWgFTWfv/xsZCS2xEHT2LMq7xAZfuAnu6mcqyDl0ZR6wLQ==" + "version": "1.0.30001038", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001038.tgz", + "integrity": "sha512-zii9quPo96XfOiRD4TrfYGs+QsGZpb2cGiMAzPjtf/hpFgB6zCPZgJb7I1+EATeMw/o+lG8FyRAnI+CWStHcaQ==" }, "capture-exit": { "version": "2.0.0", @@ -3837,13 +3345,15 @@ "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" }, "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" } }, "chardet": { @@ -3938,6 +3448,11 @@ "safe-buffer": "^5.0.1" } }, + "circular-json": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", + "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==" + }, "class-utils": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", @@ -3959,11 +3474,6 @@ } } }, - "classnames": { - "version": "2.2.6", - "resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz", - "integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==" - }, "clean-css": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", @@ -3984,22 +3494,6 @@ "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" }, - "cli-color": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/cli-color/-/cli-color-0.2.3.tgz", - "integrity": "sha1-CiXOrlpqFgK+f3fShWPDZwAnTog=", - "requires": { - "es5-ext": "~0.9.2", - "memoizee": "~0.2.5" - }, - "dependencies": { - "es5-ext": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.9.2.tgz", - "integrity": "sha1-0uMJ0fIjsHGGSINaz1uII6gGH4o=" - } - } - }, "cli-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", @@ -4008,41 +3502,37 @@ "restore-cursor": "^3.1.0" } }, + "cli-truncate": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-0.2.1.tgz", + "integrity": "sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=", + "dev": true, + "requires": { + "slice-ansi": "0.0.4", + "string-width": "^1.0.1" + }, + "dependencies": { + "slice-ansi": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", + "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=", + "dev": true + } + } + }, "cli-width": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=" }, "cliui": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", - "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", "requires": { - "string-width": "^3.1.0", - "strip-ansi": "^5.2.0", - "wrap-ansi": "^5.1.0" - }, - "dependencies": { - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - } + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" } }, "clone-deep": { @@ -4070,6 +3560,34 @@ "@types/q": "^1.5.1", "chalk": "^2.4.1", "q": "^1.1.2" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "code-point-at": { @@ -4140,6 +3658,12 @@ "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" }, + "compare-versions": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-3.6.0.tgz", + "integrity": "sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==", + "dev": true + }, "component-emitter": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", @@ -4182,11 +3706,6 @@ "requires": { "ms": "2.0.0" } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, @@ -4204,30 +3723,6 @@ "inherits": "^2.0.3", "readable-stream": "^2.2.2", "typedarray": "^0.0.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "confusing-browser-globals": { @@ -4333,7 +3828,8 @@ "core-js-pure": { "version": "3.6.4", "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.6.4.tgz", - "integrity": "sha512-epIhRLkXdgv32xIUFaaAry2wdxZYBi6bgM7cB136dzzXXa+dFyRLTZeLUJxnd8ShrmyVXBub63n2NHo2JAt8Cw==" + "integrity": "sha512-epIhRLkXdgv32xIUFaaAry2wdxZYBi6bgM7cB136dzzXXa+dFyRLTZeLUJxnd8ShrmyVXBub63n2NHo2JAt8Cw==", + "dev": true }, "core-util-is": { "version": "1.0.2", @@ -4349,6 +3845,17 @@ "is-directory": "^0.3.1", "js-yaml": "^3.13.1", "parse-json": "^4.0.0" + }, + "dependencies": { + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + } } }, "create-ecdh": { @@ -4386,22 +3893,12 @@ } }, "cross-spawn": { - "version": "6.0.5", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", - "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", + "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", "requires": { - "nice-try": "^1.0.4", - "path-key": "^2.0.1", - "semver": "^5.5.0", - "shebang-command": "^1.2.0", + "lru-cache": "^4.0.1", "which": "^1.2.9" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } } }, "crypto-browserify": { @@ -4507,6 +4004,11 @@ "schema-utils": "^2.6.0" }, "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", @@ -4559,11 +4061,6 @@ "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.2.1.tgz", "integrity": "sha512-WwOrosiQTvyms+Ti5ZC5vGEK0Vod3FTt1ca+payZqvKuGJF+dq7bG63DstxtN0dpm6FxY27a/zS3Wten+gEtGw==" }, - "css.escape": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", - "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" - }, "cssdb": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", @@ -4646,11 +4143,32 @@ "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==" }, "csso": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.0.2.tgz", - "integrity": "sha512-kS7/oeNVXkHWxby5tHVxlhjizRCSv8QdU7hB2FpdAibDU8FjTAolhNjKNTiLzXtUrKT6HwClE81yXwEk1309wg==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.0.3.tgz", + "integrity": "sha512-NL3spysxUkcrOgnpsT4Xdl2aiEiBG6bXswAABQVHcMrfjjBisFOKwLDOmf4wf32aPdcJws1zds2B0Rg+jqMyHQ==", "requires": { - "css-tree": "1.0.0-alpha.37" + "css-tree": "1.0.0-alpha.39" + }, + "dependencies": { + "css-tree": { + "version": "1.0.0-alpha.39", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.39.tgz", + "integrity": "sha512-7UvkEYgBAHRG9Nt980lYxjsTrCyHFN53ky3wVsDkiMdVqylqRt+Zc+jm5qw7/qyOvN2dHSYtX0e4MbCCExSvnA==", + "requires": { + "mdn-data": "2.0.6", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.6.tgz", + "integrity": "sha512-rQvjv71olwNHgiTbfPZFkJtjNMciWgswYeciZhtvWLO8bmX3TnhyA62I6sTWOyZssWHJJjY6/KiWwqQsWWsqOA==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + } } }, "cssom": { @@ -4666,11 +4184,6 @@ "cssom": "0.3.x" } }, - "csstype": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.9.tgz", - "integrity": "sha512-xz39Sb4+OaTsULgUERcCk+TJj8ylkL4aSVDQiX/ksxbELSqwkgt4d4RD7fovIdgJGSuNYqwZEiVjYY5l0ask+Q==" - }, "currently-unhandled": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", @@ -5056,21 +4569,16 @@ } }, "date-fns": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.11.0.tgz", - "integrity": "sha512-8P1cDi8ebZyDxUyUprBXwidoEtiQAawYPGvpfb+Dg0G6JrQ+VozwOmm91xYC0vAv1+0VmLehEPb+isg4BGUFfA==" - }, - "date-fns-tz": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/date-fns-tz/-/date-fns-tz-1.0.10.tgz", - "integrity": "sha512-cHQAz0/9uDABaUNDM80Mj1FL4ODlxs1xEY4b0DQuAooO2UdNKvDkNbV8ogLnxLbv02Ru1HXFcot0pVvDRBgptg==" + "version": "2.11.1", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.11.1.tgz", + "integrity": "sha512-3RdUoinZ43URd2MJcquzBbDQo+J87cSzB8NkXdZiN5ia1UNyep0oCyitfiL88+R7clGTeq/RniXAc16gWyAu1w==" }, "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", "requires": { - "ms": "^2.1.1" + "ms": "2.0.0" } }, "decamelize": { @@ -5083,6 +4591,12 @@ "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" }, + "dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", + "dev": true + }, "deep-equal": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", @@ -5260,11 +4774,6 @@ "requires": { "ms": "2.0.0" } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, @@ -5290,6 +4799,21 @@ "requires": { "arrify": "^1.0.1", "path-type": "^3.0.0" + }, + "dependencies": { + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + } } }, "dns-equal": { @@ -5322,11 +4846,6 @@ "esutils": "^2.0.2" } }, - "dom-accessibility-api": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.3.0.tgz", - "integrity": "sha512-PzwHEmsRP3IGY4gv/Ug+rMeaTIyTJvadCb+ujYXYeIylbHJezIyNToe8KfEgHTCEYyC+/bUghYOGg8yMGlZ6vA==" - }, "dom-converter": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", @@ -5427,30 +4946,6 @@ "inherits": "^2.0.1", "readable-stream": "^2.0.0", "stream-shift": "^1.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "ecc-jsbn": { @@ -5468,9 +4963,15 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" }, "electron-to-chromium": { - "version": "1.3.376", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.376.tgz", - "integrity": "sha512-cv/PYVz5szeMz192ngilmezyPNFkUjuynuL2vNdiqIrio440nfTDdc0JJU0TS2KHLSVCs9gBbt4CFqM+HcBnjw==" + "version": "1.3.390", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.390.tgz", + "integrity": "sha512-4RvbM5x+002gKI8sltkqWEk5pptn0UnzekUx8RTThAMPDSb8jjpm6SwGiSnEve7f85biyZl8DMXaipaCxDjXag==" + }, + "elegant-spinner": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/elegant-spinner/-/elegant-spinner-1.0.1.tgz", + "integrity": "sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=", + "dev": true }, "elliptic": { "version": "6.5.2", @@ -5486,12 +4987,6 @@ "minimalistic-crypto-utils": "^1.0.0" } }, - "email-addresses": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/email-addresses/-/email-addresses-3.1.0.tgz", - "integrity": "sha512-k0/r7GrWVL32kZlGwfPNgB2Y/mMXVTq/decgLczm/j34whdaspNrZO8CnXPf1laaHxI6ptUlsnAxN+UAPw+fzg==", - "dev": true - }, "emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -5533,28 +5028,6 @@ "errno": "^0.1.3", "readable-stream": "^2.0.1" } - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } } } }, @@ -5580,9 +5053,9 @@ } }, "es-abstract": { - "version": "1.17.4", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.4.tgz", - "integrity": "sha512-Ae3um/gb8F0mui/jPL+QiqmglkUsaQf7FwBEHYIFkztkneosu9imhqHpBzQ3h1vit8t5iQ74t6PEVvphBZiuiQ==", + "version": "1.17.5", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.5.tgz", + "integrity": "sha512-BR9auzDbySxOcfog0tLECW8l28eRGpDpU3Dm3Hp4q/N+VtLTmyj4EUN088XZWQDW/hzj6sYRDXeOFsaAODKvpg==", "requires": { "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", @@ -5627,6 +5100,42 @@ "es6-symbol": "^3.1.1" } }, + "es6-map": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz", + "integrity": "sha1-kTbgUD3MBqMBaQ8LsU/042TpSfA=", + "requires": { + "d": "1", + "es5-ext": "~0.10.14", + "es6-iterator": "~2.0.1", + "es6-set": "~0.1.5", + "es6-symbol": "~3.1.1", + "event-emitter": "~0.3.5" + } + }, + "es6-set": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz", + "integrity": "sha1-0rPsXU2ADO2BjbU40ol02wpzzLE=", + "requires": { + "d": "1", + "es5-ext": "~0.10.14", + "es6-iterator": "~2.0.1", + "es6-symbol": "3.1.1", + "event-emitter": "~0.3.5" + }, + "dependencies": { + "es6-symbol": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz", + "integrity": "sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=", + "requires": { + "d": "1", + "es5-ext": "~0.10.14" + } + } + } + }, "es6-symbol": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", @@ -5636,7 +5145,18 @@ "ext": "^1.1.2" } }, - "escape-html": { + "es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "requires": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } + }, + "escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" @@ -5666,6 +5186,17 @@ } } }, + "escope": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz", + "integrity": "sha1-4Bl16BJ4GhY6ba392AOY3GTIicM=", + "requires": { + "es6-map": "^0.1.3", + "es6-weak-map": "^2.0.1", + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, "eslint": { "version": "6.8.0", "resolved": "https://registry.npmjs.org/eslint/-/eslint-6.8.0.tgz", @@ -5710,6 +5241,64 @@ "v8-compile-cache": "^2.0.3" }, "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "dependencies": { + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "eslint-utils": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", + "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, "globals": { "version": "12.4.0", "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", @@ -5727,6 +5316,11 @@ "resolve-from": "^4.0.0" } }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, "regexpp": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz", @@ -5736,6 +5330,27 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } } } }, @@ -5763,9 +5378,9 @@ } }, "eslint-config-react-app": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-5.2.0.tgz", - "integrity": "sha512-WrHjoGpKr1kLLiWDD81tme9jMM0hk5cMxasLSdyno6DdPt+IfLOrDJBVo6jN7tn4y1nzhs43TmUaZWO6Sf0blw==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-5.2.1.tgz", + "integrity": "sha512-pGIZ8t0mFLcV+6ZirRgYK6RVqUIKRIi9MmgzUEmrIknsn3AdO0I32asO86dJgloHq+9ZPl8UIg8mYrvgP5u2wQ==", "requires": { "confusing-browser-globals": "^1.0.9" } @@ -5786,11 +5401,6 @@ "requires": { "ms": "2.0.0" } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, @@ -5807,9 +5417,9 @@ } }, "eslint-module-utils": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.5.2.tgz", - "integrity": "sha512-LGScZ/JSlqGKiT8OC+cYRxseMjyqt6QO54nl281CK93unD89ijSeRV6An8Ci/2nvWVKe8K/Tqdm75RQoIOCr+Q==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz", + "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==", "requires": { "debug": "^2.6.9", "pkg-dir": "^2.0.0" @@ -5840,11 +5450,6 @@ "path-exists": "^3.0.0" } }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, "p-limit": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", @@ -5866,6 +5471,11 @@ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + }, "pkg-dir": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", @@ -5948,11 +5558,6 @@ "path-exists": "^3.0.0" } }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, "p-limit": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", @@ -5974,13 +5579,10 @@ "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "requires": { - "error-ex": "^1.2.0" - } + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" }, "path-type": { "version": "2.0.0", @@ -5990,11 +5592,6 @@ "pify": "^2.0.0" } }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - }, "read-pkg": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", @@ -6013,6 +5610,11 @@ "find-up": "^2.0.0", "read-pkg": "^2.0.0" } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" } } }, @@ -6077,14 +5679,11 @@ "esutils": "^2.0.2" } }, - "resolve": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.1.tgz", - "integrity": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==", - "dev": true, - "requires": { - "path-parse": "^1.0.6" - } + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true } } }, @@ -6103,9 +5702,9 @@ } }, "eslint-utils": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz", - "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.0.0.tgz", + "integrity": "sha512-0HCPuJv+7Wv1bACm8y5/ECVfYdfsAm9xmVb7saeFlxjPYALefjhbYoCkBjPdPzGH8wWyTpAez82Fh3VKYEZ8OA==", "requires": { "eslint-visitor-keys": "^1.1.0" } @@ -6169,18 +5768,12 @@ "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" }, "event-emitter": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.2.2.tgz", - "integrity": "sha1-yB43JOtVQHxaDV7jKZQR9wD1QpE=", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz", + "integrity": "sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk=", "requires": { - "es5-ext": "~0.9.2" - }, - "dependencies": { - "es5-ext": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.9.2.tgz", - "integrity": "sha1-0uMJ0fIjsHGGSINaz1uII6gGH4o=" - } + "d": "1", + "es5-ext": "~0.10.14" } }, "eventemitter3": { @@ -6227,6 +5820,20 @@ "p-finally": "^1.0.0", "signal-exit": "^3.0.0", "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + } } }, "exit": { @@ -6234,6 +5841,11 @@ "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" }, + "exit-hook": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz", + "integrity": "sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=" + }, "expand-brackets": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", @@ -6271,11 +5883,6 @@ "requires": { "is-extendable": "^0.1.0" } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, @@ -6290,6 +5897,16 @@ "jest-matcher-utils": "^24.9.0", "jest-message-util": "^24.9.0", "jest-regex-util": "^24.9.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + } } }, "express": { @@ -6342,10 +5959,10 @@ "ms": "2.0.0" } }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" }, "qs": { "version": "6.7.0", @@ -6544,9 +6161,9 @@ } }, "figgy-pudding": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz", - "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==" + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" }, "figures": { "version": "3.2.0", @@ -6579,33 +6196,6 @@ "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", "optional": true }, - "filename-reserved-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-1.0.0.tgz", - "integrity": "sha1-5hz4BfDeHJhFZ9A4bcXfUO5a9+Q=", - "dev": true - }, - "filenamify": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-1.2.1.tgz", - "integrity": "sha1-qfL/0RxQO+0wABUCknI3jx8TZaU=", - "dev": true, - "requires": { - "filename-reserved-regex": "^1.0.0", - "strip-outer": "^1.0.0", - "trim-repeated": "^1.0.0" - } - }, - "filenamify-url": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/filenamify-url/-/filenamify-url-1.0.0.tgz", - "integrity": "sha1-syvYExnvWGO3MHi+1Q9GpPeXX1A=", - "dev": true, - "requires": { - "filenamify": "^1.0.0", - "humanize-url": "^1.0.0" - } - }, "filesize": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.0.1.tgz", @@ -6653,11 +6243,6 @@ "requires": { "ms": "2.0.0" } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" } } }, @@ -6672,11 +6257,21 @@ } }, "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "find-versions": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", + "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", + "dev": true, "requires": { - "locate-path": "^3.0.0" + "semver-regex": "^2.0.0" } }, "flat-cache": { @@ -6687,6 +6282,16 @@ "flatted": "^2.0.0", "rimraf": "2.6.3", "write": "1.0.3" + }, + "dependencies": { + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "requires": { + "glob": "^7.1.3" + } + } } }, "flatted": { @@ -6706,48 +6311,14 @@ "requires": { "inherits": "^2.0.3", "readable-stream": "^2.3.6" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "follow-redirects": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.10.0.tgz", - "integrity": "sha512-4eyLK6s6lH32nOvLLwlIOnr9zrL8Sm+OvW4pVTJNoXeGzYIkHVf+pADQi+OJ0E67hiuSLezPVPyBcIZO50TmmQ==", + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz", + "integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==", "requires": { - "debug": "^3.0.0" - }, - "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "requires": { - "ms": "^2.1.1" - } - } + "debug": "=3.1.0" } }, "for-in": { @@ -6783,10 +6354,31 @@ "worker-rpc": "^0.1.0" }, "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } } } }, @@ -6825,30 +6417,14 @@ "requires": { "inherits": "^2.0.1", "readable-stream": "^2.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } + } + }, + "front-matter": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/front-matter/-/front-matter-2.1.2.tgz", + "integrity": "sha1-91mDufL0E75ljJPf172M5AePXNs=", + "requires": { + "js-yaml": "^3.4.6" } }, "fs-extra": { @@ -6878,30 +6454,6 @@ "iferr": "^0.1.5", "imurmurhash": "^0.1.4", "readable-stream": "1 || 2" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "fs.realpath": { @@ -6949,39 +6501,6 @@ "string-width": "^1.0.1", "strip-ansi": "^3.0.1", "wide-align": "^1.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "^2.0.0" - } - } } }, "gaze": { @@ -6992,15 +6511,31 @@ "globule": "^1.0.0" } }, - "gensync": { - "version": "1.0.0-beta.1", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz", - "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==" + "generate-function": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz", + "integrity": "sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==", + "requires": { + "is-property": "^1.0.2" + } + }, + "generate-object-property": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "integrity": "sha1-nA4cQDCM6AT0eDYYuTf6iPmdUNA=", + "requires": { + "is-property": "^1.0.0" + } + }, + "gensync": { + "version": "1.0.0-beta.1", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz", + "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==" }, "get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" }, "get-own-enumerable-property-symbols": { "version": "3.0.2", @@ -7033,41 +6568,6 @@ "assert-plus": "^1.0.0" } }, - "gh-pages": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/gh-pages/-/gh-pages-2.2.0.tgz", - "integrity": "sha512-c+yPkNOPMFGNisYg9r4qvsMIjVYikJv7ImFOhPIVPt0+AcRUamZ7zkGRLHz7FKB0xrlZ+ddSOJsZv9XAFVXLmA==", - "dev": true, - "requires": { - "async": "^2.6.1", - "commander": "^2.18.0", - "email-addresses": "^3.0.1", - "filenamify-url": "^1.0.0", - "fs-extra": "^8.1.0", - "globby": "^6.1.0" - }, - "dependencies": { - "globby": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", - "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", - "dev": true, - "requires": { - "array-union": "^1.0.1", - "glob": "^7.0.3", - "object-assign": "^4.0.1", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - } - } - }, "glob": { "version": "7.1.6", "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", @@ -7082,9 +6582,9 @@ } }, "glob-parent": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.0.tgz", - "integrity": "sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==", + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", "requires": { "is-glob": "^4.0.1" } @@ -7143,6 +6643,11 @@ "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==" }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + }, "slash": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", @@ -7160,6 +6665,21 @@ "minimatch": "~3.0.2" } }, + "gonzales-pe-sl": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/gonzales-pe-sl/-/gonzales-pe-sl-4.2.3.tgz", + "integrity": "sha1-aoaLw4BkXxQf7rBCxvl/zHG1n+Y=", + "requires": { + "minimist": "1.1.x" + }, + "dependencies": { + "minimist": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.1.3.tgz", + "integrity": "sha1-O+39kaktOQFvz6ocaB6Pqhoe/ag=" + } + } + }, "graceful-fs": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", @@ -7192,9 +6712,9 @@ } }, "handle-thing": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.0.tgz", - "integrity": "sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" }, "har-schema": { "version": "2.0.0", @@ -7229,13 +6749,6 @@ "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", "requires": { "ansi-regex": "^2.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - } } }, "has-flag": { @@ -7355,30 +6868,6 @@ "obuf": "^1.0.0", "readable-stream": "^2.0.1", "wbuf": "^1.1.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "hsl-regex": { @@ -7410,14 +6899,14 @@ "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=" }, "html-escaper": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.0.tgz", - "integrity": "sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig==" + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" }, "html-minifier-terser": { - "version": "5.0.4", - "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.0.4.tgz", - "integrity": "sha512-fHwmKQ+GzhlqdxEtwrqLT7MSuheiA+rif5/dZgbz3GjoMXJzcRzy1L9NXoiiyxrnap+q5guSiv8Tz5lrh9g42g==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.0.5.tgz", + "integrity": "sha512-cBSFFghQh/uHcfSiL42KxxIRMF7A144+3E44xdlctIjxEmkEfCvouxNyFH2wysXk1fCGBPwtcr3hDWlGTfkDew==", "requires": { "camel-case": "^4.1.1", "clean-css": "^4.2.3", @@ -7476,6 +6965,16 @@ "version": "1.1.2", "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } } } }, @@ -7544,14 +7043,203 @@ "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" }, - "humanize-url": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/humanize-url/-/humanize-url-1.0.1.tgz", - "integrity": "sha1-9KuZ4NKIF0yk4eUEB8VfuuRk7/8=", + "https-proxy-agent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz", + "integrity": "sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==", + "dev": true, + "requires": { + "agent-base": "5", + "debug": "4" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "dev": true + }, + "husky": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-4.2.3.tgz", + "integrity": "sha512-VxTsSTRwYveKXN4SaH1/FefRJYCtx+wx04sSVcOpD7N2zjoHxa+cEJ07Qg5NmV3HAK+IRKOyNVpi2YBIVccIfQ==", "dev": true, "requires": { - "normalize-url": "^1.0.0", - "strip-url-auth": "^1.0.0" + "chalk": "^3.0.0", + "ci-info": "^2.0.0", + "compare-versions": "^3.5.1", + "cosmiconfig": "^6.0.0", + "find-versions": "^3.2.0", + "opencollective-postinstall": "^2.0.2", + "pkg-dir": "^4.2.0", + "please-upgrade-node": "^3.2.0", + "slash": "^3.0.0", + "which-pm-runs": "^1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", + "dev": true, + "requires": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + } + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "import-fresh": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", + "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "parse-json": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz", + "integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1", + "lines-and-columns": "^1.1.6" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + } + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true + }, + "supports-color": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", + "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } } }, "iconv-lite": { @@ -7638,14 +7326,17 @@ "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" }, "in-publish": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz", - "integrity": "sha1-4g/146KvwmkDILbcVSaCqcf631E=" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.1.tgz", + "integrity": "sha512-oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ==" }, "indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", + "requires": { + "repeating": "^2.0.0" + } }, "indexes-of": { "version": "1.0.1", @@ -7696,6 +7387,11 @@ "through": "^2.3.6" }, "dependencies": { + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" + }, "ansi-styles": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", @@ -7732,6 +7428,21 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, "strip-ansi": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", @@ -7784,9 +7495,9 @@ } }, "invert-kv": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", - "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" }, "ip": { "version": "1.1.5", @@ -7921,9 +7632,12 @@ "integrity": "sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==" }, "is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "requires": { + "number-is-nan": "^1.0.0" + } }, "is-generator-fn": { "version": "2.1.0", @@ -7938,6 +7652,23 @@ "is-extglob": "^2.1.1" } }, + "is-my-ip-valid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz", + "integrity": "sha512-gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ==" + }, + "is-my-json-valid": { + "version": "2.20.0", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.20.0.tgz", + "integrity": "sha512-XTHBZSIIxNsIsZXg7XB5l8z/OBFosl1Wao4tXLpeC7eKU4Vm/kdop2azkPqULwnfGQjmeDIyey9g7afMMtdWAA==", + "requires": { + "generate-function": "^2.0.0", + "generate-object-property": "^1.1.0", + "is-my-ip-valid": "^1.0.0", + "jsonpointer": "^4.0.0", + "xtend": "^4.0.0" + } + }, "is-number": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", @@ -7951,6 +7682,15 @@ "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" }, + "is-observable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-observable/-/is-observable-1.1.0.tgz", + "integrity": "sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==", + "dev": true, + "requires": { + "symbol-observable": "^1.1.0" + } + }, "is-path-cwd": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", @@ -7990,6 +7730,11 @@ "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" }, + "is-property": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", + "integrity": "sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=" + }, "is-regex": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.5.tgz", @@ -8096,6 +7841,13 @@ "@babel/types": "^7.4.0", "istanbul-lib-coverage": "^2.0.5", "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } } }, "istanbul-lib-report": { @@ -8130,6 +7882,19 @@ "source-map": "^0.6.1" }, "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -8154,6 +7919,67 @@ "jest-cli": "^24.9.0" }, "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + }, "jest-cli": { "version": "24.9.0", "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.9.0.tgz", @@ -8173,6 +7999,83 @@ "realpath-native": "^1.1.0", "yargs": "^13.3.0" } + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } } } }, @@ -8208,6 +8111,34 @@ "micromatch": "^3.1.10", "pretty-format": "^24.9.0", "realpath-native": "^1.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-diff": { @@ -8219,6 +8150,34 @@ "diff-sequences": "^24.9.0", "jest-get-type": "^24.9.0", "pretty-format": "^24.9.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-docblock": { @@ -8239,6 +8198,34 @@ "jest-get-type": "^24.9.0", "jest-util": "^24.9.0", "pretty-format": "^24.9.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-environment-jsdom": { @@ -8367,9 +8354,9 @@ }, "dependencies": { "fsevents": { - "version": "1.2.11", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.11.tgz", - "integrity": "sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw==", + "version": "1.2.12", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.12.tgz", + "integrity": "sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q==", "optional": true, "requires": { "bindings": "^1.5.0", @@ -8416,7 +8403,7 @@ } }, "chownr": { - "version": "1.1.3", + "version": "1.1.4", "bundled": true, "optional": true }, @@ -8566,7 +8553,7 @@ } }, "minimist": { - "version": "0.0.8", + "version": "1.2.5", "bundled": true, "optional": true }, @@ -8588,11 +8575,11 @@ } }, "mkdirp": { - "version": "0.5.1", + "version": "0.5.3", "bundled": true, "optional": true, "requires": { - "minimist": "0.0.8" + "minimist": "^1.2.5" } }, "ms": { @@ -8601,7 +8588,7 @@ "optional": true }, "needle": { - "version": "2.4.0", + "version": "2.3.3", "bundled": true, "optional": true, "requires": { @@ -8628,7 +8615,7 @@ } }, "nopt": { - "version": "4.0.1", + "version": "4.0.3", "bundled": true, "optional": true, "requires": { @@ -8650,12 +8637,13 @@ "optional": true }, "npm-packlist": { - "version": "1.4.7", + "version": "1.4.8", "bundled": true, "optional": true, "requires": { "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1" + "npm-bundled": "^1.0.1", + "npm-normalize-package-bin": "^1.0.1" } }, "npmlog": { @@ -8725,17 +8713,10 @@ "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "bundled": true, - "optional": true - } } }, "readable-stream": { - "version": "2.3.6", + "version": "2.3.7", "bundled": true, "optional": true, "requires": { @@ -8879,6 +8860,34 @@ "jest-util": "^24.9.0", "pretty-format": "^24.9.0", "throat": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-leak-detector": { @@ -8899,6 +8908,34 @@ "jest-diff": "^24.9.0", "jest-get-type": "^24.9.0", "pretty-format": "^24.9.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-message-util": { @@ -8914,22 +8951,50 @@ "micromatch": "^3.1.10", "slash": "^2.0.0", "stack-utils": "^1.0.1" - } - }, - "jest-mock": { - "version": "24.9.0", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz", - "integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==", - "requires": { - "@jest/types": "^24.9.0" - } - }, - "jest-pnp-resolver": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz", - "integrity": "sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==" - }, - "jest-regex-util": { + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "jest-mock": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.9.0.tgz", + "integrity": "sha512-3BEYN5WbSq9wd+SyLDES7AHnjH9A/ROBwmz7l2y+ol+NtSFO8DYiEBzoO1CeFc9a8DYy10EO4dDFVv/wN3zl1w==", + "requires": { + "@jest/types": "^24.9.0" + } + }, + "jest-pnp-resolver": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz", + "integrity": "sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==" + }, + "jest-regex-util": { "version": "24.9.0", "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.9.0.tgz", "integrity": "sha512-05Cmb6CuxaA+Ys6fjr3PhvV3bGQmO+2p2La4hFbU+W5uOc479f7FdLXUWXw4pYMAhhSZIuKHwSXSu6CsSBAXQA==" @@ -8944,6 +9009,34 @@ "chalk": "^2.0.1", "jest-pnp-resolver": "^1.2.1", "realpath-native": "^1.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-resolve-dependencies": { @@ -8980,6 +9073,34 @@ "jest-worker": "^24.6.0", "source-map-support": "^0.5.6", "throat": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-runtime": { @@ -9010,6 +9131,151 @@ "slash": "^2.0.0", "strip-bom": "^3.0.0", "yargs": "^13.3.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + } + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } } }, "jest-serializer": { @@ -9035,6 +9301,39 @@ "natural-compare": "^1.4.0", "pretty-format": "^24.9.0", "semver": "^6.2.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-util": { @@ -9056,15 +9355,41 @@ "source-map": "^0.6.0" }, "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, "callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } } } }, @@ -9079,6 +9404,39 @@ "jest-get-type": "^24.9.0", "leven": "^3.1.0", "pretty-format": "^24.9.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, "jest-watch-typeahead": { @@ -9095,6 +9453,29 @@ "strip-ansi": "^5.0.0" }, "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, "slash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", @@ -9108,8 +9489,24 @@ "astral-regex": "^1.0.0", "strip-ansi": "^5.2.0" } - } - } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } }, "jest-watcher": { "version": "24.9.0", @@ -9129,6 +9526,32 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } } } }, @@ -9259,11 +9682,11 @@ "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" }, "json5": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.1.tgz", - "integrity": "sha512-l+3HXD0GEI3huGq1njuqtzYK8OYJyXMkOLtQ53pjWh89tvWS2h6l+1zMkYWqlb57+SiQodKZyvMEFb2X+KrFhQ==", + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.2.tgz", + "integrity": "sha512-MoUOQ4WdiN3yxhm7NEVJSJrieAo5hNSLQ5sj05OTRHPL9HOBy8u4Bu88jsC1jvqAdN+E1bJmsUcZH+1HQxliqQ==", "requires": { - "minimist": "^1.2.0" + "minimist": "^1.2.5" } }, "jsonfile": { @@ -9279,6 +9702,11 @@ "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=" }, + "jsonpointer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz", + "integrity": "sha1-T9kss04OnbPInIYi7PUfm5eMbLk=" + }, "jsprim": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", @@ -9317,6 +9745,11 @@ "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" }, + "known-css-properties": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/known-css-properties/-/known-css-properties-0.3.0.tgz", + "integrity": "sha512-QMQcnKAiQccfQTqtBh/qwquGZ2XK/DXND1jrcN9M8gMMy99Gwla7GQjndVUsEqIaRyP6bsFRuhwRj5poafBGJQ==" + }, "last-call-webpack-plugin": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", @@ -9332,11 +9765,11 @@ "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" }, "lcid": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", - "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", "requires": { - "invert-kv": "^2.0.0" + "invert-kv": "^1.0.0" } }, "left-pad": { @@ -9371,152 +9804,719 @@ "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" }, - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - } - }, - "loader-fs-cache": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.2.tgz", - "integrity": "sha512-70IzT/0/L+M20jUlEqZhZyArTU6VKLRTYRDAYN26g4jfzpJqjipLL3/hgYpySqI9PwsVRHHFja0LfEmsx9X2Cw==", + "lint-staged": { + "version": "10.0.9", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-10.0.9.tgz", + "integrity": "sha512-NKJHYgRa8oI9c4Ic42ZtF2XA6Ps7lFbXwg3q0ZEP0r55Tw3YWykCW1RzW6vu+QIGqbsy7DxndvKu93Wtr5vPQw==", + "dev": true, "requires": { - "find-cache-dir": "^0.1.1", - "mkdirp": "0.5.1" + "chalk": "^3.0.0", + "commander": "^4.0.1", + "cosmiconfig": "^6.0.0", + "debug": "^4.1.1", + "dedent": "^0.7.0", + "execa": "^3.4.0", + "listr": "^0.14.3", + "log-symbols": "^3.0.0", + "micromatch": "^4.0.2", + "normalize-path": "^3.0.0", + "please-upgrade-node": "^3.2.0", + "string-argv": "0.3.1", + "stringify-object": "^3.3.0" }, "dependencies": { - "find-cache-dir": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz", - "integrity": "sha1-yN765XyKUqinhPnjHFfHQumToLk=", + "ansi-styles": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", + "dev": true, "requires": { - "commondir": "^1.0.1", - "mkdirp": "^0.5.1", - "pkg-dir": "^1.0.0" + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" } }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" + "fill-range": "^7.0.1" } }, - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, "requires": { - "minimist": "0.0.8" + "color-name": "~1.1.4" } }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true + }, + "cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dev": true, "requires": { - "pinkie-promise": "^2.0.0" + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" } }, - "pkg-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", - "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", + "cross-spawn": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.1.tgz", + "integrity": "sha512-u7v4o84SwFpD32Z8IIcPZ6z1/ie24O6RU3RbtL5Y316l3KuHVPx9ItBgWQ6VlfAFnRnTtMUrsQ9MUUTuEZjogg==", + "dev": true, "requires": { - "find-up": "^1.0.0" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" } - } - } - }, - "loader-runner": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", - "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" - }, - "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - }, - "dependencies": { - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "execa": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz", + "integrity": "sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "p-finally": "^2.0.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "get-stream": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.1.0.tgz", + "integrity": "sha512-EXr1FOzrzTfGeL0gQdeFEvOMm2mzMOglyiOXSTpPC+iAjAKftbr3jpCMWynogwYnM+eSj9sHGc6wjIcDvYiygw==", + "dev": true, + "requires": { + "pump": "^3.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "import-fresh": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", + "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", + "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", + "dev": true + }, + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "dev": true, + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "requires": { + "path-key": "^3.0.0" + } + }, + "p-finally": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz", + "integrity": "sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==", + "dev": true + }, + "parse-json": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz", + "integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1", + "lines-and-columns": "^1.1.6" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "supports-color": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", + "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "listr": { + "version": "0.14.3", + "resolved": "https://registry.npmjs.org/listr/-/listr-0.14.3.tgz", + "integrity": "sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==", + "dev": true, + "requires": { + "@samverschueren/stream-to-observable": "^0.3.0", + "is-observable": "^1.1.0", + "is-promise": "^2.1.0", + "is-stream": "^1.1.0", + "listr-silent-renderer": "^1.1.1", + "listr-update-renderer": "^0.5.0", + "listr-verbose-renderer": "^0.5.0", + "p-map": "^2.0.0", + "rxjs": "^6.3.3" + }, + "dependencies": { + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + } + } + }, + "listr-silent-renderer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz", + "integrity": "sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=", + "dev": true + }, + "listr-update-renderer": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz", + "integrity": "sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "cli-truncate": "^0.2.1", + "elegant-spinner": "^1.0.1", + "figures": "^1.7.0", + "indent-string": "^3.0.0", + "log-symbols": "^1.0.2", + "log-update": "^2.3.0", + "strip-ansi": "^3.0.1" + }, + "dependencies": { + "figures": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5", + "object-assign": "^4.1.0" + } + }, + "indent-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", + "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=", + "dev": true + }, + "log-symbols": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz", + "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=", + "dev": true, + "requires": { + "chalk": "^1.0.0" + } + } + } + }, + "listr-verbose-renderer": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz", + "integrity": "sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==", + "dev": true, + "requires": { + "chalk": "^2.4.1", + "cli-cursor": "^2.1.0", + "date-fns": "^1.27.2", + "figures": "^2.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true, + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "date-fns": { + "version": "1.30.1", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz", + "integrity": "sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==", + "dev": true + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dev": true, + "requires": { + "mimic-fn": "^1.0.0" + } + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true, + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + } + }, + "loader-fs-cache": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/loader-fs-cache/-/loader-fs-cache-1.0.3.tgz", + "integrity": "sha512-ldcgZpjNJj71n+2Mf6yetz+c9bM4xpKtNds4LbqXzU/PTdeAX0g3ytnU1AJMEcTk2Lex4Smpe3Q/eCTsvUBxbA==", + "requires": { + "find-cache-dir": "^0.1.1", + "mkdirp": "^0.5.1" + }, + "dependencies": { + "find-cache-dir": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz", + "integrity": "sha1-yN765XyKUqinhPnjHFfHQumToLk=", + "requires": { + "commondir": "^1.0.1", + "mkdirp": "^0.5.1", + "pkg-dir": "^1.0.0" + } + }, + "pkg-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", + "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", + "requires": { + "find-up": "^1.0.0" + } + } + } + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "dependencies": { + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + } + } + }, + "lodash": { + "version": "4.17.15", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", + "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" + }, + "lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" + }, + "lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha1-+CbJtOKoUR2E46yinbBeGk87cqk=" + }, + "lodash.kebabcase": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", + "integrity": "sha1-hImxyw0p/4gZXM7KRI/21swpXDY=" + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" + }, + "lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "requires": { + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" + } + }, + "lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "requires": { + "lodash._reinterpolate": "^3.0.0" + } + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + }, + "log-symbols": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz", + "integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==", + "dev": true, + "requires": { + "chalk": "^2.4.2" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "log-update": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz", + "integrity": "sha1-iDKP19HOeTiykoN0bwsbwSayRwg=", + "dev": true, + "requires": { + "ansi-escapes": "^3.0.0", + "cli-cursor": "^2.0.0", + "wrap-ansi": "^3.0.1" + }, + "dependencies": { + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true + }, + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true, + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dev": true, + "requires": { + "mimic-fn": "^1.0.0" + } + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true, + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + } + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, "requires": { - "minimist": "^1.2.0" + "ansi-regex": "^3.0.0" + } + }, + "wrap-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", + "integrity": "sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=", + "dev": true, + "requires": { + "string-width": "^2.1.1", + "strip-ansi": "^4.0.0" } } } }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "lodash": { - "version": "4.17.15", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" - }, - "lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" - }, - "lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" - }, - "lodash.sortby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", - "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" - }, - "lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", - "requires": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" - } - }, - "lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", - "requires": { - "lodash._reinterpolate": "^3.0.0" - } - }, - "lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" - }, "loglevel": { "version": "1.6.7", "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.7.tgz", @@ -9548,20 +10548,20 @@ } }, "lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", "requires": { - "yallist": "^3.0.2" - }, - "dependencies": { - "yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" } }, + "lru_map": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/lru_map/-/lru_map-0.3.3.tgz", + "integrity": "sha1-tcg1G5Rky9dQM1p5ZQoOwOVhGN0=", + "dev": true + }, "make-dir": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", @@ -9575,11 +10575,6 @@ "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" } } }, @@ -9622,11 +10617,6 @@ "object-visit": "^1.0.0" } }, - "math-expression-evaluator": { - "version": "1.2.22", - "resolved": "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.22.tgz", - "integrity": "sha512-L0j0tFVZBQQLeEjmWOvDLoRciIY8gQGWahvkztXUal8jH8R5Rlqo9GCvgqvXcy9LQhEWdQCVvzqAbxgYNt4blQ==" - }, "md5.js": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", @@ -9657,28 +10647,6 @@ "p-is-promise": "^2.0.0" } }, - "memoizee": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/memoizee/-/memoizee-0.2.6.tgz", - "integrity": "sha1-u0WnrQJTAILxYSZx2rNSGc0uB0E=", - "requires": { - "es5-ext": "~0.9.2", - "event-emitter": "~0.2.2", - "next-tick": "0.1.x" - }, - "dependencies": { - "es5-ext": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.9.2.tgz", - "integrity": "sha1-0uMJ0fIjsHGGSINaz1uII6gGH4o=" - }, - "next-tick": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-0.1.0.tgz", - "integrity": "sha1-GRLM6OubaX1kD7upT48A3sO5Qlk=" - } - } - }, "memory-fs": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", @@ -9686,30 +10654,6 @@ "requires": { "errno": "^0.1.3", "readable-stream": "^2.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "meow": { @@ -9727,114 +10671,13 @@ "read-pkg-up": "^1.0.1", "redent": "^1.0.0", "trim-newlines": "^1.0.0" - }, - "dependencies": { - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "indent-string": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", - "requires": { - "repeating": "^2.0.0" - } - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" - } - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "requires": { - "error-ex": "^1.2.0" - } - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "requires": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "requires": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "requires": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - } - }, - "redent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", - "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", - "requires": { - "indent-string": "^2.1.0", - "strip-indent": "^1.0.1" - } - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "requires": { - "is-utf8": "^0.2.0" - } - }, - "strip-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", - "requires": { - "get-stdin": "^4.0.1" - } - } } }, + "merge": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/merge/-/merge-1.2.1.tgz", + "integrity": "sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==" + }, "merge-deep": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/merge-deep/-/merge-deep-3.0.2.tgz", @@ -9929,11 +10772,6 @@ "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" }, - "min-indent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.0.tgz", - "integrity": "sha1-z8RcN+nsDY8KDsPdTvf3w6vjklY=" - }, "mini-create-react-context": { "version": "0.3.2", "resolved": "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.3.2.tgz", @@ -9996,6 +10834,13 @@ "integrity": "sha512-UFqVihv6PQgwj8/yTGvl9kPz7xIAY+R5z6XYjRInD3Gk3qx6QGSD6zEcpeG4Dy/lQnv1J6zv8ejV90hyYIKf3w==", "requires": { "yallist": "^4.0.0" + }, + "dependencies": { + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + } } }, "minipass-collect": { @@ -10075,9 +10920,9 @@ } }, "mkdirp": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.3.tgz", - "integrity": "sha512-P+2gwrFqx8lhew375MQHHeTlY8AuOJSrGf0R5ddkEndUkmwpgUob/vQuBD1V22/Cw1/lJr4x+EjllSezBThzBg==", + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.4.tgz", + "integrity": "sha512-iG9AK/dJLtJ0XNgTuDbSyNS3zECqDlAhnQW4CsNxBG3LQJBbHmRX1egw39DmtOdCAqY+dKXV+sgPgilNWUKMVw==", "requires": { "minimist": "^1.2.5" } @@ -10096,9 +10941,9 @@ } }, "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" }, "multicast-dns": { "version": "6.2.3", @@ -10169,11 +11014,6 @@ "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" }, - "nice-react-ticker": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/nice-react-ticker/-/nice-react-ticker-1.1.0.tgz", - "integrity": "sha512-qpN8DT1I6hekv2NmdOj8ei9nIoMQHl1WBEsyygHGHbEkiYCnM1LtMgtK/e6zsSjghS4BTWVLHG2YEwYKol4+ig==" - }, "nice-try": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", @@ -10254,48 +11094,22 @@ "vm-browserify": "^1.0.1" }, "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, "punycode": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } - } - }, "util": { "version": "0.11.1", "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", "requires": { "inherits": "2.0.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - } } } } @@ -10315,22 +11129,12 @@ "semver": "^5.5.0", "shellwords": "^0.1.1", "which": "^1.3.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } } }, "node-releases": { - "version": "1.1.52", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.52.tgz", - "integrity": "sha512-snSiT1UypkgGt2wxPqS6ImEUICbNCMb31yaxWrOLXjhlt2z2/IBpaOxzONExqSm4y5oLnAqjjRWu+wsDzK5yNQ==", - "requires": { - "semver": "^6.3.0" - } + "version": "1.1.53", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.53.tgz", + "integrity": "sha512-wp8zyQVwef2hpZ/dJH7SfSrIPD6YoJz6BDQDpGEkcA0s3LpAQoxBIYmfIq6QAhC1DhwsyCgTaTTcONwX8qzCuQ==" }, "node-sass": { "version": "4.13.1", @@ -10354,66 +11158,6 @@ "sass-graph": "^2.2.4", "stdout-stream": "^1.4.0", "true-case-path": "^1.0.2" - }, - "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "cross-spawn": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", - "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", - "requires": { - "lru-cache": "^4.0.1", - "which": "^1.2.9" - } - }, - "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" - } } }, "nopt": { @@ -10433,13 +11177,6 @@ "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - } } }, "normalize-path": { @@ -10467,9 +11204,9 @@ } }, "npm": { - "version": "6.14.3", - "resolved": "https://registry.npmjs.org/npm/-/npm-6.14.3.tgz", - "integrity": "sha512-3tQYVEEdSGQGYoXhZvNqW8faqCidfMMaL387RdDo4Uu5kQy4IgvJ13NIsWVMQ6e3QWlbicNMSpFiyzYfMUuPDw==", + "version": "6.14.4", + "resolved": "https://registry.npmjs.org/npm/-/npm-6.14.4.tgz", + "integrity": "sha512-B8UDDbWvdkW6RgXFn8/h2cHJP/u/FPa4HWeGzW23aNEBARN3QPrRaHqPIZW2NSN3fW649gtgUDNZpaRs0zTMPw==", "requires": { "JSONStream": "^1.3.5", "abbrev": "~1.1.1", @@ -10537,7 +11274,7 @@ "lru-cache": "^5.1.1", "meant": "~1.0.1", "mississippi": "^3.0.0", - "mkdirp": "^0.5.3", + "mkdirp": "^0.5.4", "move-concurrently": "^1.0.1", "node-gyp": "^5.1.0", "nopt": "~4.0.1", @@ -11100,7 +11837,7 @@ "bundled": true }, "deep-extend": { - "version": "0.5.1", + "version": "0.6.0", "bundled": true }, "defaults": { @@ -11730,10 +12467,10 @@ "bundled": true }, "is-ci": { - "version": "1.1.0", + "version": "1.2.1", "bundled": true, "requires": { - "ci-info": "^1.0.0" + "ci-info": "^1.5.0" }, "dependencies": { "ci-info": { @@ -11795,7 +12532,7 @@ } }, "is-retry-allowed": { - "version": "1.1.0", + "version": "1.2.0", "bundled": true }, "is-stream": { @@ -12242,7 +12979,7 @@ } }, "mkdirp": { - "version": "0.5.3", + "version": "0.5.4", "bundled": true, "requires": { "minimist": "^1.2.5" @@ -12802,17 +13539,17 @@ "bundled": true }, "rc": { - "version": "1.2.7", + "version": "1.2.8", "bundled": true, "requires": { - "deep-extend": "^0.5.1", + "deep-extend": "^0.6.0", "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" }, "dependencies": { "minimist": { - "version": "1.2.0", + "version": "1.2.5", "bundled": true } } @@ -12884,7 +13621,7 @@ } }, "registry-auth-token": { - "version": "3.3.2", + "version": "3.4.0", "bundled": true, "requires": { "rc": "^1.1.6", @@ -13478,7 +14215,7 @@ } }, "widest-line": { - "version": "2.0.0", + "version": "2.0.1", "bundled": true, "requires": { "string-width": "^2.1.1" @@ -13788,6 +14525,12 @@ } } }, + "opencollective-postinstall": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/opencollective-postinstall/-/opencollective-postinstall-2.0.2.tgz", + "integrity": "sha512-pVOEP16TrAO2/fjej1IdOyupJY8KDUM1CvsaScRbw6oddvpQoOfGk4ywha0HKKVAD6RkW4x6Q+tNBwhf3Bgpuw==", + "dev": true + }, "opn": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", @@ -13837,13 +14580,11 @@ "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=" }, "os-locale": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", - "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", "requires": { - "execa": "^1.0.0", - "lcid": "^2.0.0", - "mem": "^4.0.0" + "lcid": "^1.0.0" } }, "os-tmpdir": { @@ -13938,30 +14679,6 @@ "cyclist": "^1.0.1", "inherits": "^2.0.3", "readable-stream": "^2.1.5" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "param-case": { @@ -14002,12 +14719,11 @@ } }, "parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", "requires": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" + "error-ex": "^1.2.0" } }, "parse5": { @@ -14045,9 +14761,12 @@ "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" }, "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "requires": { + "pinkie-promise": "^2.0.0" + } }, "path-is-absolute": { "version": "1.0.1", @@ -14070,16 +14789,28 @@ "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" }, "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "requires": { + "isarray": "0.0.1" + }, + "dependencies": { + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + } + } }, "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", "requires": { - "pify": "^3.0.0" + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" } }, "pbkdf2": { @@ -14100,14 +14831,14 @@ "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" }, "picomatch": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.1.tgz", - "integrity": "sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA==" + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==" }, "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" }, "pinkie": { "version": "2.0.4", @@ -14136,6 +14867,16 @@ "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", "requires": { "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + } } }, "pkg-up": { @@ -14144,8 +14885,32 @@ "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", "requires": { "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + } } }, + "please-upgrade-node": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", + "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", + "dev": true, + "requires": { + "semver-compare": "^1.0.0" + } + }, + "pluralize": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz", + "integrity": "sha1-0aIUg/0iu0HlihL6NCGCMUCJfEU=" + }, "pn": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", @@ -14176,6 +14941,11 @@ "requires": { "ms": "^2.1.1" } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, @@ -14194,6 +14964,34 @@ "supports-color": "^6.1.0" }, "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -14693,9 +15491,9 @@ } }, "postcss-modules-scope": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.1.1.tgz", - "integrity": "sha512-OXRUPecnHCg8b9xWvldG/jUpRIGPNRka0r4D4j0ESUU2/5IOnpsjfPPmDprM3Ih8CgZ8FXjWqaniK5v4rWt3oQ==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", "requires": { "postcss": "^7.0.6", "postcss-selector-parser": "^6.0.0" @@ -15163,6 +15961,14 @@ "version": "4.1.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } } } }, @@ -15200,9 +16006,9 @@ "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" }, "prompts": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.3.1.tgz", - "integrity": "sha512-qIP2lQyCwYbdzcqHIUi2HAxiWixhoM9OdLCWf8txXsapC/X9YdsCoeyRIXE/GP+Q0J37Q7+XN/MFqbUa7IzXNA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.3.2.tgz", + "integrity": "sha512-Q06uKs2CkNYVID0VqwfAl9mipo99zkBv/n2JtWY89Yxa3ZabWSrs0e2KTudKVa3peLUvYXMefDqIleLPVUBZMA==", "requires": { "kleur": "^3.0.3", "sisteransi": "^1.0.4" @@ -15238,9 +16044,9 @@ "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" }, "psl": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.7.0.tgz", - "integrity": "sha512-5NsSEDv8zY70ScRnOTn7bK7eanl2MvFrOrS/R6x+dBt5g1ghnj9Zv90kO8GwT8gxcu2ANyFprnFYB85IogIJOQ==" + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" }, "public-encrypt": { "version": "4.0.3", @@ -15396,13 +16202,13 @@ } }, "react-dev-utils": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-10.2.0.tgz", - "integrity": "sha512-MwrvQW2TFjLblhqpDNeqCXHBkz3G5vc7k4wntgutAJZX4ia3o07eGKo6uYGhUOeJ0hfOxcpJFNFk7+4XCc1S8g==", + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-10.2.1.tgz", + "integrity": "sha512-XxTbgJnYZmxuPtY3y/UV0D8/65NKkmaia4rXzViknVnZeVlklSh8u6TnaEYPfAi/Gh1TP4mEOXHI6jQOPbeakQ==", "requires": { "@babel/code-frame": "7.8.3", "address": "1.1.2", - "browserslist": "4.8.6", + "browserslist": "4.10.0", "chalk": "2.4.2", "cross-spawn": "7.0.1", "detect-port-alt": "1.1.6", @@ -15419,7 +16225,7 @@ "loader-utils": "1.2.3", "open": "^7.0.2", "pkg-up": "3.1.0", - "react-error-overlay": "^6.0.6", + "react-error-overlay": "^6.0.7", "recursive-readdir": "2.2.2", "shell-quote": "1.7.2", "strip-ansi": "6.0.0", @@ -15427,18 +16233,44 @@ }, "dependencies": { "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } }, "browserslist": { - "version": "4.8.6", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.8.6.tgz", - "integrity": "sha512-ZHao85gf0eZ0ESxLfCp73GG9O/VTytYDIkIiZDlURppLTI9wErSM/5yAKEq6rcUdxBLjMELmrYUJGg5sxGKMHg==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.10.0.tgz", + "integrity": "sha512-TpfK0TDgv71dzuTsEAlQiHeWQ/tiPqgNZVdv046fvNtBZrjbv2O3TsWCDU0AWGJJKCF/KsjNdLzR9hXOsh/CfA==", + "requires": { + "caniuse-lite": "^1.0.30001035", + "electron-to-chromium": "^1.3.378", + "node-releases": "^1.1.52", + "pkg-up": "^3.1.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "requires": { - "caniuse-lite": "^1.0.30001023", - "electron-to-chromium": "^1.3.341", - "node-releases": "^1.1.47" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + } } }, "cross-spawn": { @@ -15490,6 +16322,11 @@ "through": "^2.3.6" }, "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, "strip-ansi": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", @@ -15500,6 +16337,11 @@ } } }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + }, "json5": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", @@ -15557,19 +16399,30 @@ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, "strip-ansi": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", "requires": { "ansi-regex": "^5.0.0" - }, - "dependencies": { - "ansi-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", - "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" - } + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" } }, "which": { @@ -15594,9 +16447,9 @@ } }, "react-error-overlay": { - "version": "6.0.6", - "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.6.tgz", - "integrity": "sha512-Yzpno3enVzSrSCnnljmr4b/2KUQSMZaPuqmS26t9k4nW7uwJk6STWmH9heNjPuvqUTO3jOSPkHoKgO4+Dw7uIw==" + "version": "6.0.7", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.7.tgz", + "integrity": "sha512-TAv1KJFh3RhqxNvhzxj6LeT5NWklP6rDr2a0jaTfsZ5wSZWHOGeqQyejUp3xxLfPt2UpyJEcVQB/zyPcmonNFA==" }, "react-feather": { "version": "2.0.3", @@ -15607,17 +16460,9 @@ } }, "react-is": { - "version": "16.13.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.0.tgz", - "integrity": "sha512-GFMtL0vHkiBv9HluwNZTggSn/sCyEt9n02aM0dSAjGGyqyNlAyftYm4phPxdvCigG15JreC5biwxCgTAJZ7yAA==" - }, - "react-marquee": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/react-marquee/-/react-marquee-1.0.0.tgz", - "integrity": "sha512-AXHGGWdK+BBhKln/ysXD1CLV6pdv9LDm0beoyQ+RYI8FO2PzqwGqDYrS6ssH3TvYytiLCxY0pIxUGGXNn1f/gg==", - "requires": { - "prop-types": "*" - } + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, "react-router": { "version": "5.1.2", @@ -15634,21 +16479,6 @@ "react-is": "^16.6.0", "tiny-invariant": "^1.0.2", "tiny-warning": "^1.0.0" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" - }, - "path-to-regexp": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", - "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", - "requires": { - "isarray": "0.0.1" - } - } } }, "react-router-dom": { @@ -15725,6 +16555,11 @@ "workbox-webpack-plugin": "4.3.1" }, "dependencies": { + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, "doctrine": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", @@ -15748,41 +16583,53 @@ "prop-types": "^15.7.2", "resolve": "^1.14.2" } + }, + "resolve": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.0.tgz", + "integrity": "sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw==", + "requires": { + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" } } }, - "react-ticker": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/react-ticker/-/react-ticker-1.2.2.tgz", - "integrity": "sha512-PXUujoPJvajxwOfosuuujlrBUrjgGp4FB4haWFOI25ujhMppW4SuLkiOdQ9AylrWN3yTHWdk2kbQWe3n9SjFGA==" - }, "read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", "requires": { - "load-json-file": "^4.0.0", + "load-json-file": "^1.0.0", "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" + "path-type": "^1.0.0" } }, "read-pkg-up": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", - "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", "requires": { - "find-up": "^3.0.0", - "read-pkg": "^3.0.0" + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" } }, "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, "readdirp": { @@ -15793,6 +16640,23 @@ "picomatch": "^2.0.7" } }, + "readline2": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz", + "integrity": "sha1-QQWWCP/BVHV7cV2ZidGZ/783LjU=", + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "mute-stream": "0.0.5" + }, + "dependencies": { + "mute-stream": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz", + "integrity": "sha1-j7+rsKmKJT0xhDMfno3rc3L6xsA=" + } + } + }, "realpath-native": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz", @@ -15810,37 +16674,12 @@ } }, "redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", - "requires": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" - } - }, - "reduce-css-calc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz", - "integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=", - "requires": { - "balanced-match": "^0.4.2", - "math-expression-evaluator": "^1.2.14", - "reduce-function-call": "^1.0.1" - }, - "dependencies": { - "balanced-match": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", - "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=" - } - } - }, - "reduce-function-call": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.3.tgz", - "integrity": "sha512-Hl/tuV2VDgWgCSEeWMLwxLZqX7OK59eU1guxXsRKTAyeYimivsKdtcV4fu3r710tpG5GmDKDhQ0HSZLExnNmyQ==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", "requires": { - "balanced-match": "^1.0.0" + "indent-string": "^2.1.0", + "strip-indent": "^1.0.1" } }, "regenerate": { @@ -15862,9 +16701,9 @@ "integrity": "sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==" }, "regenerator-transform": { - "version": "0.14.3", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.3.tgz", - "integrity": "sha512-zXHNKJspmONxBViAb3ZUmFoFPnTBs3zFhCEZJiwp/gkNzxVbTqNJVjYKx6Qk1tQ1P4XLf4TbH9+KBB7wGoAaUw==", + "version": "0.14.4", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.4.tgz", + "integrity": "sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw==", "requires": { "@babel/runtime": "^7.8.4", "private": "^0.1.8" @@ -15953,11 +16792,6 @@ "utila": "^0.4.0" }, "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, "css-select": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz", @@ -15982,14 +16816,6 @@ "dom-serializer": "0", "domelementtype": "1" } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "^2.0.0" - } } } }, @@ -16056,35 +16882,54 @@ "tough-cookie": "^2.3.3" } }, - "require-dir": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/require-dir/-/require-dir-0.1.0.tgz", - "integrity": "sha1-geAeKZ+vW3TDS2WU+OWt1Zhd3sU=" - }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" }, "require-main-filename": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", - "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" + }, + "require-uncached": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz", + "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=", + "requires": { + "caller-path": "^0.1.0", + "resolve-from": "^1.0.0" + }, + "dependencies": { + "caller-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", + "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=", + "requires": { + "callsites": "^0.2.0" + } + }, + "callsites": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", + "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=" + }, + "resolve-from": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", + "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=" + } + } }, "requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" }, - "resize-observer-polyfill": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz", - "integrity": "sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==" - }, "resolve": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.0.tgz", - "integrity": "sha512-+hTmAldEGE80U2wJJDC1lebb5jWqvTYAfm3YZ1ckk1gBr0MnCqUKlwK1e+anaFljIl+F5tR5IoZcm4ZDA1zMQw==", + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.15.1.tgz", + "integrity": "sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w==", "requires": { "path-parse": "^1.0.6" } @@ -16129,6 +16974,39 @@ "source-map": "0.6.1" }, "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, "emojis-list": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", @@ -16228,9 +17106,9 @@ "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=" }, "rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", "requires": { "glob": "^7.1.3" } @@ -16270,6 +17148,11 @@ "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", "integrity": "sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=" }, + "rx-lite": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz", + "integrity": "sha1-Gc5QLKVyZl87ZHsQk5+X/RYV8QI=" + }, "rxjs": { "version": "6.5.4", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.4.tgz", @@ -16326,209 +17209,446 @@ "lodash": "^4.0.0", "scss-tokenizer": "^0.2.3", "yargs": "^7.0.0" + } + }, + "sass-lint": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/sass-lint/-/sass-lint-1.13.1.tgz", + "integrity": "sha512-DSyah8/MyjzW2BWYmQWekYEKir44BpLqrCFsgs9iaWiVTcwZfwXHF586hh3D1n+/9ihUNMfd8iHAyb9KkGgs7Q==", + "requires": { + "commander": "^2.8.1", + "eslint": "^2.7.0", + "front-matter": "2.1.2", + "fs-extra": "^3.0.1", + "glob": "^7.0.0", + "globule": "^1.0.0", + "gonzales-pe-sl": "^4.2.3", + "js-yaml": "^3.5.4", + "known-css-properties": "^0.3.0", + "lodash.capitalize": "^4.1.0", + "lodash.kebabcase": "^4.0.0", + "merge": "^1.2.0", + "path-is-absolute": "^1.0.0", + "util": "^0.10.3" }, "dependencies": { - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" - }, - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" + "acorn": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==" }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", + "acorn-jsx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", + "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" + "acorn": "^3.0.4" + }, + "dependencies": { + "acorn": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", + "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=" + } } }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "ajv": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", + "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" + "co": "^4.6.0", + "json-stable-stringify": "^1.0.1" } }, - "get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" + "ajv-keywords": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz", + "integrity": "sha1-MU3QpLM2j609/NxU7eYXG4htrzw=" }, - "invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=" + "ansi-escapes": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz", + "integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4=" }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "cli-cursor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", + "integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=", "requires": { - "number-is-nan": "^1.0.0" + "restore-cursor": "^1.0.1" } }, - "lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "requires": { - "invert-kv": "^1.0.0" + "ms": "2.0.0" } }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", + "doctrine": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", + "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" + "esutils": "^2.0.2", + "isarray": "^1.0.0" } }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", + "eslint": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-2.13.1.tgz", + "integrity": "sha1-5MyPoPAJ+4KaquI4VaKTYL4fbBE=", + "requires": { + "chalk": "^1.1.3", + "concat-stream": "^1.4.6", + "debug": "^2.1.1", + "doctrine": "^1.2.2", + "es6-map": "^0.1.3", + "escope": "^3.6.0", + "espree": "^3.1.6", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "file-entry-cache": "^1.1.1", + "glob": "^7.0.3", + "globals": "^9.2.0", + "ignore": "^3.1.2", + "imurmurhash": "^0.1.4", + "inquirer": "^0.12.0", + "is-my-json-valid": "^2.10.0", + "is-resolvable": "^1.0.0", + "js-yaml": "^3.5.1", + "json-stable-stringify": "^1.0.0", + "levn": "^0.3.0", + "lodash": "^4.0.0", + "mkdirp": "^0.5.0", + "optionator": "^0.8.1", + "path-is-absolute": "^1.0.0", + "path-is-inside": "^1.0.1", + "pluralize": "^1.2.1", + "progress": "^1.1.8", + "require-uncached": "^1.0.2", + "shelljs": "^0.6.0", + "strip-json-comments": "~1.0.1", + "table": "^3.7.8", + "text-table": "~0.2.0", + "user-home": "^2.0.0" + } + }, + "espree": { + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz", + "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==", "requires": { - "lcid": "^1.0.0" + "acorn": "^5.5.0", + "acorn-jsx": "^3.0.0" } }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "figures": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", + "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", "requires": { - "error-ex": "^1.2.0" + "escape-string-regexp": "^1.0.5", + "object-assign": "^4.1.0" } }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "file-entry-cache": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-1.3.1.tgz", + "integrity": "sha1-RMYepgeuS+nBQC9B9EJwy/4zT/g=", "requires": { - "pinkie-promise": "^2.0.0" + "flat-cache": "^1.2.1", + "object-assign": "^4.0.1" } }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", + "flat-cache": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz", + "integrity": "sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg==", "requires": { + "circular-json": "^0.3.1", "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" + "rimraf": "~2.6.2", + "write": "^0.2.1" } }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + "fs-extra": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz", + "integrity": "sha1-N5TzeMWLNC6n27sjCVEJxLO2IpE=", + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^3.0.0", + "universalify": "^0.1.0" + } }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", + "globals": { + "version": "9.18.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz", + "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==" + }, + "ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==" + }, + "inquirer": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz", + "integrity": "sha1-HvK/1jUE3wvHV4X/+MLEHfEvB34=", "requires": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" + "ansi-escapes": "^1.1.0", + "ansi-regex": "^2.0.0", + "chalk": "^1.0.0", + "cli-cursor": "^1.0.1", + "cli-width": "^2.0.0", + "figures": "^1.3.5", + "lodash": "^4.3.0", + "readline2": "^1.0.1", + "run-async": "^0.1.0", + "rx-lite": "^3.1.2", + "string-width": "^1.0.1", + "strip-ansi": "^3.0.0", + "through": "^2.3.6" } }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + }, + "jsonfile": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz", + "integrity": "sha1-pezG9l9T9mLEQVx2daAzHQmS7GY=", "requires": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" + "graceful-fs": "^4.1.6" } }, - "require-main-filename": { + "onetime": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz", + "integrity": "sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=" + }, + "progress": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz", + "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=" + }, + "restore-cursor": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", + "integrity": "sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=", + "requires": { + "exit-hook": "^1.0.0", + "onetime": "^1.0.0" + } }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" + "glob": "^7.1.3" } }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "run-async": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz", + "integrity": "sha1-yK1KXhEGYeQCp9IbUw4AnyX444k=", "requires": { - "ansi-regex": "^2.0.0" + "once": "^1.3.0" } }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "slice-ansi": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", + "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=" + }, + "strip-json-comments": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz", + "integrity": "sha1-HhX7ysl9Pumb8tc7TGVrCCu6+5E=" + }, + "table": { + "version": "3.8.3", + "resolved": "https://registry.npmjs.org/table/-/table-3.8.3.tgz", + "integrity": "sha1-K7xULw/amGGnVdOUf+/Ys/UThV8=", + "requires": { + "ajv": "^4.7.0", + "ajv-keywords": "^1.0.0", + "chalk": "^1.1.1", + "lodash": "^4.0.0", + "slice-ansi": "0.0.4", + "string-width": "^2.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "requires": { + "ansi-regex": "^3.0.0" + } + } + } + }, + "write": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz", + "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=", + "requires": { + "mkdirp": "^0.5.1" + } + } + } + }, + "sass-lint-auto-fix": { + "version": "0.21.0", + "resolved": "https://registry.npmjs.org/sass-lint-auto-fix/-/sass-lint-auto-fix-0.21.0.tgz", + "integrity": "sha512-AKkNdCeCuDQOom+j74sWKLyjPVEhT1XOYUwH6CWjz03rh7ioWk9Ey/svZT/U8rgHIK7nLO+hBWOmbXPzIec1Ng==", + "dev": true, + "requires": { + "@sentry/node": "^5.7.0", + "chalk": "^3.0.0", + "commander": "^4.0.1", + "cosmiconfig": "^6.0.0", + "glob": "^7.1.4", + "gonzales-pe-sl": "github:srowhani/gonzales-pe#dev", + "sass-lint": "^1.13.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", + "dev": true, "requires": { - "is-utf8": "^0.2.0" + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" } }, - "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" + "color-name": "~1.1.4" } }, - "y18n": { + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true + }, + "cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "dev": true, + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + } + }, + "gonzales-pe-sl": { + "version": "github:srowhani/gonzales-pe#3b052416074edc280f7d04bbe40b2e410693c4a3", + "from": "github:srowhani/gonzales-pe#dev", + "dev": true, + "requires": { + "minimist": "1.1.x" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "import-fresh": { "version": "3.2.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=" + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", + "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } }, - "yargs": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", - "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", + "minimist": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.1.3.tgz", + "integrity": "sha1-O+39kaktOQFvz6ocaB6Pqhoe/ag=", + "dev": true + }, + "parse-json": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.0.0.tgz", + "integrity": "sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw==", + "dev": true, "requires": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^5.0.0" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1", + "lines-and-columns": "^1.1.6" } }, - "yargs-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", - "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "supports-color": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", + "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", + "dev": true, "requires": { - "camelcase": "^3.0.0" + "has-flag": "^4.0.0" } } } @@ -16560,6 +17680,11 @@ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, "shallow-clone": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", @@ -16608,16 +17733,6 @@ "requires": { "js-base64": "^2.1.8", "source-map": "^0.4.2" - }, - "dependencies": { - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "requires": { - "amdefine": ">=0.0.4" - } - } } }, "select-hose": { @@ -16634,9 +17749,21 @@ } }, "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha1-De4hahyUGrN+nvsXiPavxf9VN/w=", + "dev": true + }, + "semver-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", + "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", + "dev": true }, "send": { "version": "0.17.1", @@ -16728,11 +17855,6 @@ "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, "setprototypeof": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", @@ -16840,6 +17962,11 @@ "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" }, + "shelljs": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.6.1.tgz", + "integrity": "sha1-7GIRvtGSBEIIj+D3Cyg3Iy7SyKg=" + }, "shellwords": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", @@ -16856,9 +17983,9 @@ } }, "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" }, "simple-swizzle": { "version": "0.2.2", @@ -16876,9 +18003,9 @@ } }, "sisteransi": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.4.tgz", - "integrity": "sha512-/ekMoM4NJ59ivGSfKapeG+FWtrmWvA1p6FBZwXrqojw90vJu8lBmrTxCMuBCydKtkaUe2zt4PlxeTKpjwMbyig==" + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" }, "slash": { "version": "2.0.0", @@ -16895,6 +18022,14 @@ "is-fullwidth-code-point": "^2.0.0" }, "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, "is-fullwidth-code-point": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", @@ -16941,10 +18076,10 @@ "is-extendable": "^0.1.0" } }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" } } }, @@ -17044,6 +18179,11 @@ "requires": { "websocket-driver": ">=0.5.1" } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" } } }, @@ -17061,9 +18201,12 @@ "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" }, "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", + "requires": { + "amdefine": ">=0.0.4" + } }, "source-map-resolve": { "version": "0.5.3", @@ -17136,6 +18279,21 @@ "http-deceiver": "^1.2.7", "select-hose": "^2.0.0", "spdy-transport": "^3.0.0" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + } } }, "spdy-transport": { @@ -17149,6 +18307,31 @@ "obuf": "^1.1.2", "readable-stream": "^3.0.6", "wbuf": "^1.7.3" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } } }, "split-string": { @@ -17229,30 +18412,6 @@ "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", "requires": { "readable-stream": "^2.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "stealthy-require": { @@ -17267,30 +18426,6 @@ "requires": { "inherits": "~2.0.1", "readable-stream": "^2.0.2" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "stream-each": { @@ -17312,30 +18447,6 @@ "readable-stream": "^2.3.6", "to-arraybuffer": "^1.0.0", "xtend": "^4.0.0" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "stream-shift": { @@ -17348,6 +18459,12 @@ "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" }, + "string-argv": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.1.tgz", + "integrity": "sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg==", + "dev": true + }, "string-length": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", @@ -17373,23 +18490,13 @@ } }, "string-width": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", - "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "dependencies": { - "strip-ansi": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", - "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", - "requires": { - "ansi-regex": "^5.0.0" - } - } + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" } }, "string.prototype.matchall": { @@ -17425,18 +18532,11 @@ } }, "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "requires": { - "safe-buffer": "~5.2.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", - "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" - } + "safe-buffer": "~5.1.0" } }, "stringify-object": { @@ -17457,24 +18557,20 @@ } }, "strip-ansi": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", - "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "requires": { - "ansi-regex": "^4.1.0" - }, - "dependencies": { - "ansi-regex": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", - "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" - } + "ansi-regex": "^2.0.0" } }, "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "requires": { + "is-utf8": "^0.2.0" + } }, "strip-comments": { "version": "1.0.2", @@ -17490,12 +18586,18 @@ "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true + }, "strip-indent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", - "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", "requires": { - "min-indent": "^1.0.0" + "get-stdin": "^4.0.1" } }, "strip-json-comments": { @@ -17503,21 +18605,6 @@ "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz", "integrity": "sha512-VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw==" }, - "strip-outer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", - "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.2" - } - }, - "strip-url-auth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-url-auth/-/strip-url-auth-1.0.1.tgz", - "integrity": "sha1-IrD6OkE4WzO+PzMVUbu4N/oM164=", - "dev": true - }, "style-loader": { "version": "0.23.1", "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.23.1.tgz", @@ -17562,12 +18649,9 @@ } }, "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" }, "svg-parser": { "version": "2.0.4", @@ -17592,8 +18676,42 @@ "stable": "^0.1.8", "unquote": "~1.1.1", "util.promisify": "~1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } } }, + "symbol-observable": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", + "dev": true + }, "symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", @@ -17610,6 +18728,11 @@ "string-width": "^3.0.0" }, "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, "emoji-regex": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", @@ -17629,6 +18752,14 @@ "is-fullwidth-code-point": "^2.0.0", "strip-ansi": "^5.1.0" } + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } } } }, @@ -17648,9 +18779,9 @@ } }, "terser": { - "version": "4.6.6", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.6.6.tgz", - "integrity": "sha512-4lYPyeNmstjIIESr/ysHg2vUPRGf2tzF9z2yYwnowXVuVzLEamPN1Gfrz7f8I9uEPuHcbFlW4PLIAsJoxXyJ1g==", + "version": "4.6.7", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.6.7.tgz", + "integrity": "sha512-fmr7M1f7DBly5cX2+rFDvmGBAaaZyPrHYK4mMdHEDAdNTqXSZgSOfqsfGq2HqPGT/1V0foZZuCZFx8CHKgAk3g==", "requires": { "commander": "^2.20.0", "source-map": "~0.6.1", @@ -17705,9 +18836,9 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" }, "jest-worker": { - "version": "25.1.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.1.0.tgz", - "integrity": "sha512-ZHhHtlxOWSxCoNOKHGbiLzXnl42ga9CxDr27H36Qn+15pQZd3R/F24jrmjDelw9j/iHUIWMWs08/u2QN50HHOg==", + "version": "25.2.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-25.2.1.tgz", + "integrity": "sha512-IHnpekk8H/hCUbBlfeaPZzU6v75bqwJp3n4dUrQuQOAgOneI4tx3jV2o8pvlXnDfcRsfkFIUD//HWXpCmR+evQ==", "requires": { "merge-stream": "^2.0.0", "supports-color": "^7.0.0" @@ -17750,6 +18881,11 @@ "find-up": "^4.0.0" } }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -17774,6 +18910,78 @@ "minimatch": "^3.0.4", "read-pkg-up": "^4.0.0", "require-main-filename": "^2.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "requires": { + "pify": "^3.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "requires": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + } + }, + "read-pkg-up": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", + "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", + "requires": { + "find-up": "^3.0.0", + "read-pkg": "^3.0.0" + } + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + } } }, "text-table": { @@ -17798,30 +19006,6 @@ "requires": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - } } }, "thunky": { @@ -17967,15 +19151,6 @@ "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=" }, - "trim-repeated": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", - "integrity": "sha1-42RqLqTokTEr9+rObPsFOAvAHCE=", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.2" - } - }, "true-case-path": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", @@ -18222,6 +19397,14 @@ "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" }, + "user-home": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz", + "integrity": "sha1-nHC/2Babwdy/SGBODwS4tJzenp8=", + "requires": { + "os-homedir": "^1.0.0" + } + }, "util": { "version": "0.10.3", "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", @@ -18312,30 +19495,6 @@ "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" }, - "vx": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/vx/-/vx-0.0.1.tgz", - "integrity": "sha1-2ywmhvQa/WMy+UdiAEsaNNf+XK0=", - "requires": { - "bluebird": "~2.2.2", - "cli-color": "~0.2.3", - "minimist": "^0.1.0", - "require-dir": "^0.1.0", - "through": "~2.3.4" - }, - "dependencies": { - "bluebird": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.2.2.tgz", - "integrity": "sha1-8b8Fq8iHz5pwOIYjfChhCkOx8RQ=" - }, - "minimist": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.1.0.tgz", - "integrity": "sha1-md9lelJXTCHJBXSX33QnkLK0wN4=" - } - } - }, "w3c-hr-time": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", @@ -18363,11 +19522,11 @@ } }, "watchpack": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz", - "integrity": "sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==", + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.1.tgz", + "integrity": "sha512-+IF9hfUFOrYOOaKyfaI7h7dquUIOgyEMoQMLA7OP5FxegKA2+XdXThAZ9TU2kucfhDH7rfMHs1oPYziVGWRnZA==", "requires": { - "chokidar": "^2.0.2", + "chokidar": "^2.1.8", "graceful-fs": "^4.1.2", "neo-async": "^2.5.0" }, @@ -18397,9 +19556,9 @@ } }, "fsevents": { - "version": "1.2.11", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.11.tgz", - "integrity": "sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw==", + "version": "1.2.12", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.12.tgz", + "integrity": "sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q==", "optional": true, "requires": { "bindings": "^1.5.0", @@ -18446,7 +19605,7 @@ } }, "chownr": { - "version": "1.1.3", + "version": "1.1.4", "bundled": true, "optional": true }, @@ -18596,7 +19755,7 @@ } }, "minimist": { - "version": "0.0.8", + "version": "1.2.5", "bundled": true, "optional": true }, @@ -18618,11 +19777,11 @@ } }, "mkdirp": { - "version": "0.5.1", + "version": "0.5.3", "bundled": true, "optional": true, "requires": { - "minimist": "0.0.8" + "minimist": "^1.2.5" } }, "ms": { @@ -18631,7 +19790,7 @@ "optional": true }, "needle": { - "version": "2.4.0", + "version": "2.3.3", "bundled": true, "optional": true, "requires": { @@ -18658,7 +19817,7 @@ } }, "nopt": { - "version": "4.0.1", + "version": "4.0.3", "bundled": true, "optional": true, "requires": { @@ -18680,12 +19839,13 @@ "optional": true }, "npm-packlist": { - "version": "1.4.7", + "version": "1.4.8", "bundled": true, "optional": true, "requires": { "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1" + "npm-bundled": "^1.0.1", + "npm-normalize-package-bin": "^1.0.1" } }, "npmlog": { @@ -18755,17 +19915,10 @@ "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "bundled": true, - "optional": true - } } }, "readable-stream": { - "version": "2.3.6", + "version": "2.3.7", "bundled": true, "optional": true, "requires": { @@ -18918,20 +20071,6 @@ "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, "readdirp": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", @@ -18941,14 +20080,6 @@ "micromatch": "^3.1.10", "readable-stream": "^2.0.2" } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } } } }, @@ -19001,9 +20132,9 @@ "integrity": "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA==" }, "cacache": { - "version": "12.0.3", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.3.tgz", - "integrity": "sha512-kqdmfXEGFepesTuROHMs3MpFLWrPkSSpRqOw80RCflZXy/khxaArvFrQ7uJxSUduzAufc6G0g1VUCOZXxWavPw==", + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", "requires": { "bluebird": "^3.5.5", "chownr": "^1.1.1", @@ -19031,6 +20162,14 @@ "estraverse": "^4.1.1" } }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "requires": { + "yallist": "^3.0.2" + } + }, "schema-utils": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", @@ -19069,6 +20208,16 @@ "webpack-sources": "^1.4.0", "worker-farm": "^1.7.0" } + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" } } }, @@ -19125,15 +20274,20 @@ }, "dependencies": { "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" }, "binary-extensions": { "version": "1.13.1", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, "chokidar": { "version": "2.1.8", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", @@ -19163,11 +20317,6 @@ "wrap-ansi": "^2.0.0" }, "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" - }, "strip-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", @@ -19178,10 +20327,26 @@ } } }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "requires": { + "ms": "^2.1.1" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, "fsevents": { - "version": "1.2.11", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.11.tgz", - "integrity": "sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw==", + "version": "1.2.12", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.12.tgz", + "integrity": "sha512-Ggd/Ktt7E7I8pxZRbGIs7vwqAPscSESMrCSkx2FtWeqmheJgCo2R74fTsZFCifr0VTPwqRpPv17+6b8Zp7th0Q==", "optional": true, "requires": { "bindings": "^1.5.0", @@ -19228,7 +20393,7 @@ } }, "chownr": { - "version": "1.1.3", + "version": "1.1.4", "bundled": true, "optional": true }, @@ -19378,7 +20543,7 @@ } }, "minimist": { - "version": "0.0.8", + "version": "1.2.5", "bundled": true, "optional": true }, @@ -19400,11 +20565,11 @@ } }, "mkdirp": { - "version": "0.5.1", + "version": "0.5.3", "bundled": true, "optional": true, "requires": { - "minimist": "0.0.8" + "minimist": "^1.2.5" } }, "ms": { @@ -19413,7 +20578,7 @@ "optional": true }, "needle": { - "version": "2.4.0", + "version": "2.3.3", "bundled": true, "optional": true, "requires": { @@ -19440,7 +20605,7 @@ } }, "nopt": { - "version": "4.0.1", + "version": "4.0.3", "bundled": true, "optional": true, "requires": { @@ -19462,12 +20627,13 @@ "optional": true }, "npm-packlist": { - "version": "1.4.7", + "version": "1.4.8", "bundled": true, "optional": true, "requires": { "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1" + "npm-bundled": "^1.0.1", + "npm-normalize-package-bin": "^1.0.1" } }, "npmlog": { @@ -19537,17 +20703,10 @@ "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "bundled": true, - "optional": true - } } }, "readable-stream": { - "version": "2.3.6", + "version": "2.3.7", "bundled": true, "optional": true, "requires": { @@ -19668,11 +20827,6 @@ } } }, - "get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==" - }, "glob-parent": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", @@ -19692,6 +20846,11 @@ } } }, + "invert-kv": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", + "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==" + }, "is-absolute-url": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", @@ -19710,23 +20869,32 @@ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" }, + "lcid": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", + "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", + "requires": { + "invert-kv": "^2.0.0" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "os-locale": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", + "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "execa": "^1.0.0", + "lcid": "^2.0.0", + "mem": "^4.0.0" } }, "readdirp": { @@ -19739,11 +20907,6 @@ "readable-stream": "^2.0.2" } }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=" - }, "schema-utils": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", @@ -19754,6 +20917,11 @@ "ajv-keywords": "^3.1.0" } }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, "string-width": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", @@ -19763,11 +20931,6 @@ "strip-ansi": "^4.0.0" }, "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" - }, "strip-ansi": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", @@ -19778,22 +20941,6 @@ } } }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "requires": { - "ansi-regex": "^2.0.0" - } - }, "supports-color": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", @@ -19802,34 +20949,10 @@ "has-flag": "^3.0.0" } }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" - }, - "dependencies": { - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - } - } + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" }, "ws": { "version": "6.2.1", @@ -19969,9 +21092,15 @@ } }, "which-module": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", - "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" + }, + "which-pm-runs": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-pm-runs/-/which-pm-runs-1.0.0.tgz", + "integrity": "sha1-Zws6+8VS4LVd9rd4DKdGFfI60cs=", + "dev": true }, "wide-align": { "version": "1.1.3", @@ -19979,35 +21108,6 @@ "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", "requires": { "string-width": "^1.0.2 || 2" - }, - "dependencies": { - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "requires": { - "ansi-regex": "^3.0.0" - } - } } }, "word-wrap": { @@ -20193,35 +21293,12 @@ } }, "wrap-ansi": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", - "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", "requires": { - "ansi-styles": "^3.2.0", - "string-width": "^3.0.0", - "strip-ansi": "^5.0.0" - }, - "dependencies": { - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } - } + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" } }, "wrappy": { @@ -20280,69 +21357,63 @@ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" }, "y18n": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", - "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==" + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", + "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=" }, "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" }, "yaml": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.8.2.tgz", - "integrity": "sha512-omakb0d7FjMo3R1D2EbTKVIk6dAVLRxFXdLZMEUToeAvuqgG/YuHMuQOZ5fgk+vQ8cx+cnGKwyg+8g8PNT0xQg==", + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.8.3.tgz", + "integrity": "sha512-X/v7VDnK+sxbQ2Imq4Jt2PRUsRsP7UcpSl3Llg6+NRRqWLIvxkMFYtH1FmvwNGYRKKPa+EPA4qDBlI9WVG1UKw==", "requires": { "@babel/runtime": "^7.8.7" } }, "yargs": { - "version": "13.3.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", - "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", - "requires": { - "cliui": "^5.0.0", - "find-up": "^3.0.0", - "get-caller-file": "^2.0.1", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", + "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", + "requires": { + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", + "require-main-filename": "^1.0.1", "set-blocking": "^2.0.0", - "string-width": "^3.0.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^13.1.2" + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^5.0.0" }, "dependencies": { - "emoji-regex": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", - "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "string-width": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", - "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", - "requires": { - "emoji-regex": "^7.0.1", - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^5.1.0" - } + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" } } }, "yargs-parser": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", - "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", + "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", "requires": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" + "camelcase": "^3.0.0" + }, + "dependencies": { + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" + } } } } diff --git a/package.json b/package.json index 160f92c946..5737733ac5 100644 --- a/package.json +++ b/package.json @@ -1,69 +1,63 @@ { - "name": "covid", - "version": "0.1.0", + "name": "covid19india", + "version": "1.0.0", "private": true, "homepage": "http://covid19india.github.io/", "dependencies": { - "@testing-library/jest-dom": "^5.1.1", - "@testing-library/react": "^10.0.1", - "@testing-library/user-event": "^10.0.0", - "@vx/annotation": "0.0.195", - "@vx/axis": "0.0.195", - "@vx/curve": "0.0.195", - "@vx/event": "0.0.195", - "@vx/geo": "0.0.195", - "@vx/glyph": "0.0.195", - "@vx/gradient": "0.0.195", - "@vx/grid": "0.0.195", - "@vx/group": "0.0.195", - "@vx/heatmap": "0.0.195", - "@vx/legend": "0.0.195", - "@vx/marker": "0.0.195", - "@vx/mock-data": "0.0.195", - "@vx/pattern": "0.0.195", - "@vx/point": "0.0.195", - "@vx/responsive": "0.0.195", - "@vx/scale": "0.0.195", - "@vx/shape": "0.0.195", - "@vx/text": "0.0.195", - "@vx/tooltip": "0.0.195", - "@vx/voronoi": "0.0.195", - "animejs": "^3.1.0", "axios": "^0.19.2", - "bulma": "^0.8.0", "d3": "^5.15.0", - "d3-geo": "^1.11.9", "d3-svg-legend": "^2.25.6", "date-fns": "^2.11.0", - "date-fns-tz": "^1.0.10", "install": "^0.13.0", - "nice-react-ticker": "^1.1.0", "node-sass": "^4.13.1", "npm": "^6.14.3", "react": "^16.13.1", "react-dom": "^16.13.1", "react-feather": "^2.0.3", - "react-marquee": "^1.0.0", "react-router-dom": "^5.1.2", "react-scripts": "3.4.0", - "react-ticker": "^1.2.2", - "topojson": "^3.0.2", - "vx": "0.0.1" + "sass-lint": "^1.13.1", + "topojson": "^3.0.2" }, "scripts": { - "start": "PORT=3001 react-scripts start css-watch", - "start-win": "react-scripts start css-watch", + "start": "react-scripts start", "build": "react-scripts build && cp build/index.html build/404.html", "test": "react-scripts test", "eject": "react-scripts eject", - "css-build": "node-sass --omit-source-map-url sass/custom.scss src/App.css", - "css-watch": "npm run css-build -- --watch", - "predeploy": "npm run build", - "deploy": "gh-pages -d build" + "eslint": "eslint .", + "eslint:fix": "eslint --fix .", + "format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md|vue)\"", + "scsslint": "sass-lint-auto-fix" }, "eslintConfig": { "extends": "react-app" }, + "husky": { + "hooks": { + "pre-commit": "npm run eslint && npm run format && npm run scsslint" + } + }, + "lint-staged": { + "*.+(js|jsx)": [ + "eslint --fix", + "git add" + ], + "*.+(json|css|md)": [ + "prettier --write", + "git add" + ] + }, + "devDependencies": { + "eslint": "^6.8.0", + "eslint-config-google": "^0.14.0", + "eslint-config-prettier": "^6.10.1", + "eslint-plugin-prettier": "^3.1.2", + "eslint-plugin-react": "^7.19.0", + "husky": "^4.2.3", + "lint-staged": "^10.0.9", + "prettier": "^2.0.2", + "sass-lint-auto-fix": "^0.21.0" + }, "browserslist": { "production": [ ">0.2%", @@ -75,14 +69,5 @@ "last 1 firefox version", "last 1 safari version" ] - }, - "devDependencies": { - "eslint": "^6.8.0", - "eslint-config-google": "^0.14.0", - "eslint-config-prettier": "^6.10.1", - "eslint-plugin-prettier": "^3.1.2", - "eslint-plugin-react": "^7.19.0", - "gh-pages": "^2.2.0", - "prettier": "^2.0.2" } } diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png index ab732c339e..1dcaa63dbe 100644 Binary files a/public/android-chrome-192x192.png and b/public/android-chrome-192x192.png differ diff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png index c88d467312..fbd8a28c64 100644 Binary files a/public/android-chrome-512x512.png and b/public/android-chrome-512x512.png differ diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png index 3256fbcf2c..5d25ef00a4 100644 Binary files a/public/apple-touch-icon.png and b/public/apple-touch-icon.png differ diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png index a0d0d0f027..a388b40841 100644 Binary files a/public/favicon-16x16.png and b/public/favicon-16x16.png differ diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png index e6c2156a68..aa82fabd97 100644 Binary files a/public/favicon-32x32.png and b/public/favicon-32x32.png differ diff --git a/public/favicon.ico b/public/favicon.ico index 8bd95436fc..41f4af9e4c 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/icon.png b/public/icon.png index dd2d007e33..53c5b012fc 100644 Binary files a/public/icon.png and b/public/icon.png differ diff --git a/public/manifest.json b/public/manifest.json index 3c8e7ae0c6..8decb9c7da 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -12,4 +12,4 @@ "display": "standalone", "theme_color": "#000000", "background_color": "#ffffff" -} \ No newline at end of file +} diff --git a/public/maps/andamannicobarislands.json b/public/maps/andamannicobarislands.json index 562749f971..9694fa267f 100644 --- a/public/maps/andamannicobarislands.json +++ b/public/maps/andamannicobarislands.json @@ -1 +1,32016 @@ -{"type":"Topology","arcs":[[[62143,432735],[0,-37],[34,-2],[23,30],[45,7],[91,40],[5,10],[68,23],[115,-5],[153,-42],[77,-29],[59,-29],[18,-30],[3,-27],[35,-37],[77,-47],[8,-77],[40,-50],[4,-59],[12,-20],[51,-25],[69,-21],[115,-19],[78,0],[269,61],[181,28],[51,16],[64,51],[39,56],[39,25],[214,82],[39,-19],[-9,-79],[-84,-48],[-30,-35],[-136,-63],[-36,-32],[-58,-83],[-39,-26],[-51,-16],[-105,-61],[-320,-90],[-151,-60],[-54,-26],[-18,-34],[-58,-47],[-15,-141],[67,-104],[7,-197],[-15,-51],[-52,-108],[-50,-63],[-76,-74],[-75,-41],[-30,-38],[-18,-87],[-59,-97],[-16,-5],[-6,-52],[-22,-23],[-59,-19],[-28,-31],[6,-52],[121,-152],[12,0],[96,-65],[222,-17],[-10,33],[9,17],[54,26],[88,-19],[48,14],[42,25],[24,28],[13,31],[42,16],[48,0],[30,-21],[58,-7],[60,17],[61,47],[37,0],[41,-29],[54,-7],[48,28],[117,157],[12,7],[46,-2],[81,-35],[39,-62],[31,-19],[48,0],[64,-48],[114,-16],[64,2],[54,14],[51,0],[45,-16],[64,-42],[21,-23],[81,-41],[0,-51],[34,-56],[-9,-32],[-24,-27],[8,-172],[-14,-33],[3,-74],[-18,-71],[-55,-71],[0,-245],[46,-100],[0,-63],[31,-35],[34,-64],[9,-134],[33,-75],[9,-183],[-25,-40],[2,-47],[8,-88],[31,-82],[89,-95],[74,-15],[133,-44],[84,-53],[88,-33],[45,-71],[109,-42],[36,3],[51,27],[21,31],[37,25],[44,12],[46,2],[99,70],[33,7],[37,-7],[24,-56],[39,-28],[13,-43],[-40,-31],[-15,-55],[-54,-37],[-33,-84],[-102,-129],[-31,-151],[9,-118],[21,-60],[34,-207],[39,-106],[69,-125],[12,-6],[45,-68],[-16,-28],[-58,-40],[9,-27],[50,-36],[38,0],[75,-29],[45,-3],[32,7],[18,12],[11,35],[2,61],[30,31],[40,9],[89,-10],[8,-10],[39,-13],[208,-45],[21,-36],[-14,-37],[-101,-55],[-113,-136],[-82,-205],[-3,-27],[-47,-59],[-22,-136],[15,-82],[16,-53],[76,-58],[111,-46],[21,-26],[2,-59],[-47,-29],[-17,-40],[-1,-75],[9,-37],[47,-73],[16,-43],[65,-47],[44,-45],[90,-64],[98,-51],[77,-124],[108,-129],[64,-141],[71,-82],[31,-69],[-4,-115],[-48,-168],[-54,-54],[-101,-77],[-145,-83],[-60,-59],[-13,-143],[44,-53],[2,-23],[-4,-45],[-18,-28],[0,-57],[-23,-90],[-29,-43],[-41,-28],[-140,-27],[-178,-57],[-156,-71],[-80,-61],[-42,-61],[-103,-57],[-134,-157],[-45,-100],[-39,-37],[-56,-24],[-34,3],[-28,53],[-60,9],[-107,-62],[-108,-114],[-18,-66],[-4,-302],[29,-173],[21,-37],[57,-38],[65,-75],[68,-43],[125,-34],[13,-32],[-2,-23],[-22,-29],[4,-31],[95,-47],[16,-69],[25,-21],[38,14],[25,24],[26,46],[58,38],[79,8],[102,33],[86,12],[117,33],[95,-5],[122,32],[165,19],[45,-8],[9,-21],[-47,-49],[11,-165],[-15,-45],[-17,-21],[-4,-47],[-31,-32],[-30,-79],[7,-57],[55,-67],[2,-13],[172,-131],[43,-65],[42,-126],[193,-51],[54,-41],[73,-17],[96,5],[124,-10],[106,-59],[93,-1],[21,-6],[146,-100],[30,-67],[0,-90],[11,-72],[0,-34],[-35,-57],[-5,-113],[23,-29],[122,-57],[41,-33],[20,-35],[129,-111],[109,-57],[31,-28],[46,-80],[66,-69],[-12,-101],[-99,-90],[-32,-43],[-13,-77],[-19,-34],[-15,-99],[-95,-148],[-106,-88],[-6,-21],[6,-123],[37,-101],[7,-151],[34,-64],[161,-233],[29,-26],[57,-29],[99,-22],[163,2],[47,7],[129,45],[80,10],[42,-22],[66,-63],[118,-38],[77,-40],[45,-34],[43,-63],[45,-88],[5,-83],[34,-103],[77,-99],[34,-81],[11,-68],[-9,-52],[-61,-30],[-60,-8],[-50,7],[-43,19],[-114,10],[-69,17],[-37,33],[-25,37],[-4,51],[-52,87],[-86,50],[-93,6],[-34,-23],[-165,-74],[-203,-113],[-131,-127],[-160,-212],[-2,-96],[42,-43],[-2,-19],[-9,-21],[-92,-54],[-36,-29],[-68,-89],[-43,-212],[-2,-52],[34,-67],[77,-52],[43,-10],[126,-11],[30,-14],[2,-12],[-69,-40],[-46,-203],[-8,-94],[-13,-35],[12,-20],[-9,-42],[-95,-141],[-11,-48],[7,-35],[34,-52],[66,-95],[48,-50],[16,-111],[-15,-288],[-47,-49],[-96,-76],[-16,-30],[-6,-73],[-72,-137],[-61,-94],[-8,-147],[16,-65],[18,-15],[59,-89],[8,-178],[25,-21],[4,-25],[-33,-27],[4,-74],[-47,-188],[-16,-30],[-34,-20],[-23,-25],[-6,-113],[-77,-81],[-32,-132],[-17,-29],[-15,-82],[-85,-195],[-19,-68],[-41,-71],[-7,-93],[-63,-148],[0,-56],[18,-89],[44,-110],[-7,-324],[-30,-399],[1,-183],[-87,-70],[-86,-15],[-202,78],[-111,57],[-181,151],[-117,54],[-2,-9],[6,-19],[93,-64],[84,-88],[38,-30],[390,-211],[99,-65],[140,-111],[35,-67],[9,-30],[-16,-57],[-84,-125],[-27,-76],[-26,-155],[-54,-159],[-7,-229],[-23,-148],[1,-258],[18,-27],[22,-95],[58,-79],[40,-25],[11,-40],[3,-92],[-22,-96],[-41,-69],[0,-76],[79,-101],[32,-19],[20,-24],[32,-73],[27,-35],[2,-73],[37,-117],[37,-33],[49,-61],[124,-104],[0,-28],[-41,-52],[-6,-77],[7,-145],[18,-31],[-2,-30],[-13,-5],[-14,-97],[0,-52],[14,-45],[49,-64],[32,-59],[36,-28],[18,-4],[48,11],[27,-9],[23,-17],[-7,-37],[-29,-21],[11,-12],[0,-48],[5,-21],[61,-26],[0,-17],[-2,-13],[-46,-3],[-13,-12],[21,-35],[-3,-17],[30,-39],[69,-23],[15,-116],[43,-74],[45,-44],[12,-32],[24,-31],[157,-147],[54,-30],[30,-107],[64,-53],[24,-44],[43,-88],[7,-167],[108,-300],[85,-188],[30,-176],[85,-59],[45,-105],[33,-22],[21,-63],[3,-97],[-42,-102],[-70,-118],[-20,-58],[-22,-441],[-19,-126],[-31,-14],[-33,-127],[-30,-69],[-54,-67],[-4,-83],[-81,-138],[-77,-70],[-47,-110],[-10,-167],[-45,-60],[-72,-27],[-100,-54],[-45,-41],[-27,-40],[-14,-178],[-50,-118],[-31,-182],[-8,-188],[54,-153],[54,-65],[0,-47],[92,-94],[0,-49],[70,-110],[3,-33],[-18,-34],[-62,-74],[-161,-65],[-160,-106],[-12,-26],[2,-156],[15,-43],[0,-121],[-21,-27],[-142,-45],[-84,-16],[-85,-2],[-84,7],[-54,9],[-48,30],[-130,114],[21,41],[36,32],[6,35],[-15,37],[-91,51],[-60,18],[-111,10],[-48,16],[-6,21],[21,41],[-3,23],[-49,33],[-78,32],[-103,30],[-24,18],[0,26],[21,19],[-14,29],[-43,40],[-87,48],[-12,72],[-28,21],[-87,30],[-148,9],[-186,-107],[-7,-30],[7,-37],[87,-71],[24,-40],[-8,-67],[-109,-60],[-54,0],[-78,-40],[-21,-25],[21,-69],[-6,-102],[-75,-67],[-18,-75],[-76,-50],[-24,-40],[46,-69],[6,-28],[-33,-39],[-67,-40],[-69,-72],[-123,-94],[-57,-19],[-78,-9],[-160,6],[-43,5],[-53,19],[-46,2],[-36,-20],[-27,-45],[-51,-23],[-70,-5],[-78,-58],[-21,-32],[15,-28],[43,-16],[57,-7],[111,19],[18,-5],[6,-26],[-15,-23],[-141,-95],[-24,-30],[2,-27],[-11,-37],[6,-40],[48,-39],[112,-51],[23,-32],[31,-14],[31,-42],[48,-36],[21,-40],[2,-25],[49,-23],[18,-28],[-3,-44],[-24,-42],[-81,-97],[-66,-19],[-82,-18],[-563,-15],[-69,-16],[-135,-46],[-73,-44],[-12,-28],[36,-10],[106,45],[126,37],[154,21],[367,-14],[133,-11],[108,2],[157,42],[265,140],[169,0],[50,-42],[52,-3],[45,-37],[15,-22],[75,22],[79,90],[51,79],[-3,144],[14,42],[33,34],[40,16],[55,0],[250,148],[71,29],[90,21],[145,4],[102,-7],[121,-22],[90,-38],[82,-50],[66,-53],[84,-26],[1,-23],[-28,-19],[-15,0],[-24,-41],[-24,-153],[-18,-44],[-12,-125],[-12,-41],[-81,-40],[-120,-30],[-106,-65],[-84,-26],[-45,-9],[-36,5],[-27,39],[-79,0],[-105,-49],[-20,-16],[-60,-15],[-93,-87],[-44,-74],[-66,-44],[-129,-18],[-30,9],[-115,-3],[9,-20],[30,-28],[86,-53],[23,-7],[30,-35],[51,-76],[-6,-42],[-39,-58],[-15,-5],[-5,-12],[-38,-27],[4,-18],[-27,-39],[-6,-56],[-144,-70],[-72,-21],[8,-99],[-20,-113],[-73,-42],[-44,-10],[-103,-53],[-83,-12],[-94,-57],[-64,0],[-99,18],[-78,0],[-37,11],[-27,28],[-93,10],[-30,25],[-79,27],[-54,-18],[-30,-23],[-51,-56],[-33,-21],[-3,-39],[-36,-25],[-42,-6],[-48,-66],[-46,-33],[-45,-16],[-87,0],[-112,-60],[-66,4],[-66,-39],[-33,-60],[-54,-7],[-27,18],[-40,5],[-33,13],[-12,33],[-33,25],[-48,14],[-102,-2],[-37,-21],[15,-28],[-18,-19],[-39,-20],[-45,-7],[-75,42],[-33,39],[-51,41],[-55,-7],[-69,-39],[-27,-65],[-30,-23],[-9,-25],[27,-26],[24,23],[78,7],[21,-25],[-17,-40],[27,-32],[39,-14],[81,30],[54,12],[82,-2],[42,-14],[30,-39],[9,-37],[-24,-51],[-45,-60],[-11,-36],[8,-38],[84,-30],[44,9],[80,-14],[45,0],[39,12],[69,-9],[52,-42],[15,-58],[-6,-32],[-42,-21],[-115,-28],[-41,-26],[-43,-43],[-24,-84],[-14,-97],[-31,-23],[-48,-5],[-36,-21],[-27,-30],[-8,-70],[107,-88],[6,-27],[37,-25],[3,-31],[-15,-32],[-36,-30],[-27,-88],[0,-71],[-21,-49],[-96,-72],[-19,-30],[1,-23],[-57,-22],[-24,-41],[45,-124],[-9,-24],[-57,-32],[-27,-37],[3,-125],[-93,-88],[-69,-86],[9,-97],[24,-53],[-54,-58],[21,-63],[57,-43],[-5,-49],[-17,-5],[2,-21],[-70,-34],[-162,4],[-103,-33],[-57,-2],[-126,28],[-257,30],[-36,39],[-15,46],[0,70],[21,48],[0,28],[63,62],[12,24],[0,39],[12,28],[21,25],[39,24],[21,43],[3,70],[15,37],[48,69],[-3,38],[24,13],[15,28],[-18,79],[35,54],[11,105],[-18,25],[-80,36],[-117,87],[-63,26],[-88,48],[-42,74],[-81,53],[-43,39],[-181,91],[-34,24],[-74,3],[-105,21],[-52,19],[-45,39],[-99,60],[-34,37],[-99,50],[-21,40],[-2,38],[-101,112],[-51,39],[-42,61],[-70,53],[-42,46],[-75,35],[-281,168],[-75,49],[-27,30],[-88,41],[-90,88],[-320,125],[-150,23],[-32,12],[-15,-6],[-107,14],[-33,47],[-3,34],[-18,39],[-43,28],[-60,-4],[-60,11],[-91,32],[-66,12],[-156,11],[-58,-9],[-87,-60],[-72,-40],[-39,-14],[-40,10],[-56,34],[-94,83],[-39,23],[-42,51],[-127,74],[-190,155],[-163,111],[-139,85],[-311,137],[-56,11],[-85,0],[-57,-21],[-21,-21],[-12,-48],[0,-35],[15,-40],[18,-20],[121,-46],[27,-31],[78,-9],[193,-89],[320,-204],[262,-240],[103,-60],[232,-120],[148,-51],[169,-76],[66,-19],[126,-4],[45,12],[31,23],[24,37],[0,37],[14,23],[60,2],[-25,-11],[169,-106],[230,-123],[207,-94],[306,-170],[345,-229],[161,-153],[123,-164],[169,-182],[76,-135],[177,-271],[131,-182],[-14,-28],[-36,-24],[-97,-41],[-60,-14],[-135,23],[-40,60],[-57,53],[-67,87],[-134,96],[-137,34],[-84,32],[-145,33],[-120,41],[-27,28],[-9,136],[-15,16],[-25,3],[-42,-21],[-33,-51],[-30,-28],[-51,-26],[-21,-34],[-46,-23],[-5,-23],[-51,-49],[-79,-16],[-39,-23],[-48,-12],[-86,5],[-98,-48],[-91,-65],[-85,-136],[19,-31],[-8,-19],[-99,-67],[-18,-28],[-15,-74],[-51,-5],[-48,44],[-21,37],[-22,81],[8,109],[-81,106],[-43,31],[-5,20],[-36,21],[-36,57],[-39,23],[-43,12],[-30,28],[-48,7],[-36,14],[-39,34],[-84,25],[-12,31],[-31,32],[-93,21],[-36,27],[-3,86],[-12,23],[-49,25],[-92,30],[-42,0],[-94,-39],[-88,-14],[-82,11],[-25,-9],[-38,-30],[-66,7],[-63,18],[-9,-11],[38,-47],[-6,-6],[49,-44],[-42,-28],[-99,-44],[-57,-14],[-139,14],[-156,30],[-108,47],[-75,10],[-154,-6],[-70,-29],[-160,5],[-53,-6],[-88,-31],[-42,4],[-73,51],[-37,53],[-97,64],[-383,194],[-8,-11],[-74,59],[-115,46],[-127,19],[-267,6],[-127,56],[-100,35],[-114,12],[-109,27],[-322,51],[-154,62],[-57,11],[-42,30],[-58,26],[-75,0],[-180,-24],[-124,-7],[-126,14],[-103,26],[-72,6],[-229,44],[-82,27],[-57,47],[-51,21],[-63,23],[-52,2],[-5,-51],[69,-83],[85,-42],[42,-39],[81,-35],[108,-32],[118,-18],[208,-21],[147,-27],[100,0],[69,-9],[48,-17],[142,-15],[78,0],[70,-12],[159,-46],[166,-76],[82,-19],[171,-64],[112,-44],[42,-30],[-24,-21],[-63,-16],[-70,-30],[-39,-42],[-2,-151],[33,-115],[33,-58],[3,-51],[-99,-69],[-6,-61],[12,0],[30,21],[30,38],[37,11],[57,-14],[190,-120],[74,-59],[13,-109],[93,-263],[32,-27],[9,-20],[-9,-54],[-15,-7],[-9,-23],[-58,-18],[-201,6],[-58,63],[-90,23],[-42,0],[-69,-21],[-85,-51],[-69,-21],[-21,-12],[-6,-16],[27,-14],[55,0],[69,31],[81,60],[33,7],[57,-28],[63,-46],[67,-14],[108,-7],[142,7],[93,-9],[86,8],[203,-26],[97,-39],[81,-63],[24,-34],[33,-107],[-14,-150],[-87,-92],[-13,-54],[-26,-18],[-27,-74],[-19,-19],[-50,-28],[-21,-55],[-19,-14],[-69,0],[-72,-12],[-51,-23],[-9,-16],[3,-22],[195,17],[61,-60],[3,-58],[15,-30],[31,-25],[6,-23],[-3,-19],[-58,-56],[-3,-18],[103,-2],[30,-12],[81,-83],[79,-5],[27,-20],[18,-33],[24,12],[9,32],[27,10],[39,-14],[82,-65],[96,-51],[82,-81],[53,-75],[-8,-95],[192,-76],[39,-217],[38,-100],[92,-100],[176,-153],[169,-117],[27,-38],[61,-32],[30,-25],[24,-25],[27,-57],[64,-36],[165,-42],[51,-25],[27,-30],[37,-63],[-6,-48],[-30,-74],[-66,-46],[-37,-14],[-75,-3],[-66,-16],[-30,-14],[-3,-16],[21,0],[75,-51],[37,-60],[9,-32],[-9,-74],[63,-67],[43,-26],[47,-43],[52,-29],[20,-24],[28,-10],[60,-5],[127,5],[87,37],[238,-2],[102,26],[79,-23],[36,-44],[78,-60],[4,-35],[-25,-42],[-48,-23],[-30,-32],[-15,-23],[0,-23],[21,-10],[66,-4],[28,-44],[0,-19],[45,-55],[105,-81],[15,-44],[94,-76],[78,34],[87,12],[97,58],[33,14],[22,0],[84,58],[30,99],[39,71],[143,-8],[76,-99],[66,-39],[79,-12],[96,42],[30,-3],[12,-25],[0,-34],[18,-15],[63,-2],[73,-37],[15,-34],[0,-39],[-54,-72],[0,-23],[51,-77],[39,-21],[82,-11],[36,2],[66,19],[81,-9],[100,-58],[6,-30],[-15,-37],[-27,-26],[-52,7],[19,-46],[-6,-53],[18,-21],[29,-10],[62,-76],[12,-78],[24,-44],[139,-181],[21,-21],[87,-45],[82,-63],[15,-30],[9,-55],[36,-72],[27,-39],[33,-24],[3,-46],[-15,-14],[-42,-7],[-174,30],[-15,23],[-7,95],[-27,95],[-42,60],[-15,51],[-16,7],[-43,0],[-7,7],[-24,-3],[-34,7],[-57,16],[-45,30],[-42,10],[-34,23],[-123,171],[-55,16],[-96,-7],[-105,-69],[-42,-3],[-84,14],[-16,18],[-3,37],[-12,19],[-132,11],[-70,-28],[-40,-34],[1,-77],[16,-34],[-6,-42],[-18,-49],[-63,-85],[0,-30],[71,-54],[23,-129],[-12,-153],[-22,-14],[-77,-23],[-28,-16],[-3,-21],[12,-14],[139,7],[36,5],[30,19],[34,4],[59,21],[42,0],[55,-16],[15,-14],[-3,-46],[-24,-14],[-124,-14],[-343,-65],[-39,-2],[-319,-133],[-78,-11],[-75,-3],[-154,56],[-132,76],[-130,41],[-18,0],[-6,-25],[12,-21],[126,-49],[212,-108],[72,-16],[153,-2],[196,76],[180,56],[380,40],[102,25],[105,-2],[136,16],[108,-9],[33,-25],[49,-67],[3,-65],[-6,-21],[-24,-14],[-41,-2],[-79,-68],[-7,-94],[107,-82],[49,-11],[79,-45],[133,-3],[75,17],[70,30],[51,11],[129,3],[114,65],[45,16],[109,-7],[33,-16],[48,-47],[22,-27],[0,-35],[-43,-30],[-36,-10],[-30,12],[-6,28],[39,26],[-21,18],[-42,-18],[-81,-61],[-81,-160],[-3,-143],[-54,-7],[-69,21],[-97,11],[-57,51],[-33,19],[-43,2],[-32,-16],[-52,-3],[-84,7],[-39,14],[-85,81],[-98,69],[-147,-10],[-84,-129],[-38,-22],[-30,-43],[-144,-66],[-135,-113],[-3,-48],[-27,-39],[-39,-21],[-24,-35],[-3,-67],[-12,-18],[-66,-30],[-22,-22],[-3,-30],[-27,-9],[-47,14],[-100,65],[-78,18],[-22,16],[-96,5],[-30,11],[-21,54],[51,78],[3,26],[-88,30],[-39,2],[-138,-22],[-7,-12],[-74,-45],[-8,-28],[-24,-21],[0,-86],[-24,-56],[-100,-35],[-275,77],[-64,-18],[-20,-31],[-4,-31],[-36,-46],[-60,-16],[-72,19],[-45,27],[-112,43],[-40,3],[-64,-18],[-40,-3],[-53,24],[-108,13],[-48,-3],[-64,-35],[-113,-28],[-176,4],[-64,-59],[-37,-22],[-67,-6],[-113,-84],[-36,-33],[0,-90],[-28,-37],[-104,-53],[-610,-28],[-273,-65],[-96,-53],[-113,-83],[-63,-13],[-85,-37],[-132,-95],[-64,-26],[-181,149],[-80,15],[-217,126],[-101,40],[-88,12],[-132,59],[-73,49],[-56,12],[-149,62],[-80,46],[-189,62],[-64,33],[-73,16],[-72,64],[-72,25],[-81,3],[-60,34],[-148,52],[-93,12],[-120,3],[-88,-6],[-73,-15],[-100,-56],[-52,-16],[-56,0],[-88,-15],[-117,-37],[-44,-38],[-112,-71],[-40,-43],[-52,-111],[-28,-34],[-60,-49],[-72,-44],[-45,-6],[-47,-34],[-96,-39],[-48,-12],[-73,35],[-19,25],[-14,91],[-96,154],[-148,102],[-120,45],[-155,10],[-79,15],[-69,39],[-142,21],[-113,1],[-174,-12],[-125,-21],[-63,4],[-33,15],[-35,40],[-176,92],[-73,21],[-96,5],[-38,20],[-25,27],[-99,12],[-15,13],[1,34],[16,28],[59,31],[4,26],[-122,58],[-83,23],[-8,-12],[46,-75],[-17,-74],[-37,-58],[-32,-32],[-73,-56],[-86,-48],[-46,-138],[-50,-100],[-53,-61],[-53,-146],[-49,-85],[0,-34],[18,-55],[-10,-65],[-53,-117],[-40,-31],[-7,-27],[-63,-55],[-60,5],[-24,30],[-9,120],[-19,44],[-35,37],[-10,36],[27,64],[26,158],[7,135],[9,23],[57,65],[-3,24],[-31,17],[-2,17],[-16,14],[-32,-21],[-28,-4],[-31,-100],[-53,-76],[-63,-123],[-2,-34],[-14,-30],[-28,-41],[-80,-46],[-126,-92],[-90,-89],[-33,-44],[5,-90],[19,-49],[27,-19],[9,-26],[32,-33],[9,-85],[-20,-21],[-145,-74],[-44,-45],[-110,-38],[-61,-9],[-70,5],[-28,33],[-2,55],[-15,18],[-98,31],[-14,28],[-25,18],[-136,57],[-77,59],[-122,31],[-32,-11],[-51,-50],[-42,-22],[-59,-7],[-44,3],[-17,16],[7,58],[-60,19],[-98,-29],[-14,13],[30,54],[-30,18],[-29,43],[-46,-2],[-117,-57],[-107,14],[-150,0],[-63,-6],[-79,-40],[-30,0],[-59,31],[-21,21],[-16,61],[-45,56],[-51,0],[-49,-15],[-91,-70],[-70,-11],[-44,22],[-12,28],[0,35],[-19,19],[-72,-5],[-270,-88],[-77,4],[-77,27],[-120,4],[-77,-63],[-35,-45],[-40,-25],[-133,-33],[-68,4],[-46,10],[-21,22],[0,23],[-42,24],[-21,39],[6,41],[24,31],[58,48],[-5,31],[-46,52],[-82,61],[-47,79],[-52,120],[-33,30],[-37,18],[-31,54],[-21,142],[-49,44],[-38,24],[-46,0],[-68,-20],[-44,-65],[-81,-45],[-51,-82],[-49,-17],[-54,9],[-44,33],[-28,67],[-11,121],[-27,50],[-44,50],[-11,55],[-49,41],[-3,49],[-16,20],[-20,148],[-54,26],[-11,42],[-6,171],[-38,55],[-16,79],[10,67],[33,54],[16,51],[27,4],[27,-34],[6,-42],[32,-29],[39,5],[42,42],[23,65],[0,52],[-21,63],[-30,34],[-31,26],[-42,13],[-175,93],[-41,0],[-145,-84],[-38,-50],[-27,-159],[-98,-51],[-87,-4],[-98,33],[-60,47],[-11,62],[44,50],[-3,23],[-30,36],[-6,79],[33,97],[65,75],[16,79],[-45,284],[43,248],[-5,62],[-16,46],[-44,30],[-6,75],[76,129],[5,252],[-17,146],[-22,79],[27,80],[49,67],[10,71],[-6,359],[-27,46],[-44,38],[-17,46],[-32,46],[14,111],[0,100],[51,78],[64,78],[30,17],[50,-17],[40,-34],[55,-17],[103,6],[54,29],[98,95],[19,50],[-86,6],[-102,33],[-29,50],[-15,67],[-87,111],[0,56],[14,50],[87,62],[-7,44],[-51,45],[-73,11],[-65,0],[-73,-28],[-50,-39],[-36,-51],[-73,-5],[-43,44],[-16,262],[29,118],[-15,94],[-95,178],[-36,117],[-30,151],[-15,312],[-1,290],[7,73],[94,256],[72,79],[130,172],[0,112],[-81,301],[-7,212],[-15,78],[-43,45],[-30,61],[6,273],[-14,56],[-8,150],[15,45],[14,117],[-1,100],[22,112],[36,72],[65,73],[65,6],[37,-28],[65,56],[29,61],[65,212],[-16,201],[-21,111],[-44,78],[-8,357],[21,95],[80,100],[36,23],[37,-28],[-8,-67],[-22,-50],[1,-61],[69,-70],[70,11],[32,13],[67,99],[84,65],[53,88],[-9,29],[-40,5],[-87,28],[-29,33],[-15,56],[-8,195],[-29,56],[-29,33],[-58,-6],[-58,-44],[-51,-17],[-94,11],[-37,44],[-7,84],[43,78],[50,62],[-7,66],[-80,139],[-8,135],[-29,38],[-51,-22],[-28,-50],[-73,-28],[-58,27],[-37,51],[-21,61],[6,162],[22,61],[65,11],[80,-16],[29,-17],[58,0],[0,90],[29,61],[29,150],[14,112],[-7,67],[14,61],[29,45],[58,61],[28,89],[-1,391],[87,156],[51,112],[7,44],[50,23],[8,-162],[-22,-50],[15,-12],[94,6],[50,51],[25,73],[170,198],[30,51],[7,75],[-44,55],[-8,29],[-23,29],[-54,6],[-91,55],[-14,44],[11,57],[-6,38],[-54,47],[-84,53],[-129,-8],[-28,5],[-138,89],[-17,37],[-2,30],[16,113],[-3,265],[28,62],[3,124],[-46,143],[-79,39],[-45,11],[-329,30],[-71,77],[-68,57],[-35,59],[16,46],[42,23],[26,45],[-14,91],[18,59],[178,176],[18,51],[51,61],[98,57],[12,36],[-3,61],[73,74],[-10,73],[-28,16],[-12,26],[28,55],[-8,210],[23,41],[2,97],[-7,63],[-63,90],[-7,222],[25,51],[51,57],[33,169],[21,50],[109,146],[40,28],[49,17],[98,11],[0,16],[-26,11],[-16,19],[27,41],[17,71],[212,222],[165,194],[37,63],[21,62],[2,123],[-12,74],[-70,91],[4,50],[21,33],[-53,19],[-12,55],[-68,10],[-56,25],[-56,48],[-31,52],[-12,41],[0,74],[53,74],[-13,41],[4,70],[23,45],[87,47],[84,23],[54,27],[58,49],[9,43],[-7,41],[-31,27],[-70,37],[-2,25],[20,31],[98,65],[5,28],[-44,45],[-68,45],[-58,21],[-64,9],[-119,68],[0,27],[74,34],[-2,22],[-16,21],[0,26],[35,37],[97,142],[3,30],[-14,22],[-24,15],[-3,34],[24,73],[-8,31],[-34,10],[-73,2],[-82,-20],[-37,9],[-9,34],[-1,65],[-35,68],[14,91],[21,36],[96,46],[91,113],[65,46],[-9,34],[-22,24],[5,39],[70,38],[-24,31],[-33,19],[-2,24],[21,21],[-4,43],[-92,9],[-51,-11],[-110,-6],[-56,15],[-28,25],[-5,59],[-19,32],[-72,31],[-28,32],[-87,18],[-21,14],[-159,-9],[-61,28],[-40,0],[-32,-18],[-66,13],[-16,-7],[-42,-1],[-38,15],[-107,-4],[-21,11],[-33,48],[-84,15],[-40,32],[-37,7],[-89,-6],[-47,20],[-82,20],[-58,3],[-70,-12],[-119,-56],[-36,3],[-37,16],[-52,63],[-63,36],[-14,169],[1,150],[-11,70],[28,29],[14,30],[0,25],[60,92],[33,94],[9,75],[28,34],[8,1],[10,-26],[12,-110],[22,-43],[30,-30],[61,-32],[33,-40],[117,-82],[28,-29],[42,-10],[98,-63],[101,-9],[91,24],[68,-33],[89,15],[58,23],[47,22],[9,18],[-21,14],[7,42],[11,5],[64,0],[39,18],[126,99],[75,45],[61,72],[37,13],[35,-13],[35,23],[33,0],[30,-3],[47,-58],[28,-50],[7,-100],[-7,-29],[-23,-24],[3,-85],[40,-101],[19,11],[13,43],[28,30],[5,26],[62,29],[114,166],[11,74],[-15,20],[-2,63],[30,64],[58,51],[63,36],[92,27],[99,12],[0,28],[-13,19],[-5,106],[-12,25],[2,25],[21,21],[0,56],[32,22],[31,2],[56,68],[14,25],[0,23],[23,29],[26,60],[-7,60],[37,87],[-1,39],[-14,12],[-35,10],[-33,32],[0,20],[105,82],[68,31],[7,43],[-9,19],[-38,21],[-12,26],[2,25],[43,53],[20,59],[91,75],[5,128],[46,133],[-4,21],[20,55],[12,99],[18,49],[-7,20],[-18,17],[-28,6],[-10,21],[2,27],[15,19],[2,82],[-27,19],[3,24],[58,29],[49,12],[33,-3],[30,-25],[66,-20],[38,0],[44,15],[39,32],[26,7],[24,-2],[18,-19],[12,-76],[-11,-84],[-37,-68],[0,-22],[-17,-34],[10,-104],[30,-63],[26,-32],[87,-54],[9,-18],[-11,-86],[2,-82],[61,-128],[50,-54],[19,-116],[0,-41],[-10,-23],[57,-60],[26,-3],[49,-41],[25,-43],[24,-17],[30,15],[42,89],[16,63],[59,83],[39,235],[44,54],[54,-30],[25,11],[17,35],[-12,18],[-37,7],[-12,23],[21,28],[68,50],[11,21],[35,16],[52,-10],[55,34],[96,15],[91,32],[89,22],[89,36],[138,72],[77,64],[2,65],[-14,47],[-82,62],[16,72],[-12,121],[-70,206],[-48,-10],[-28,15],[-16,29],[23,27],[31,17],[0,26],[-15,32],[-35,41],[-12,78],[-58,74],[-7,31],[97,94],[59,159],[25,17],[112,-4],[57,9],[67,61],[63,17],[42,20],[281,188],[27,47],[-9,57],[4,31],[70,36],[24,23],[-1,39],[-13,22],[23,36],[37,6],[28,23],[19,50],[0,25],[-21,45],[4,30],[45,8],[33,-27],[30,-2],[54,18],[27,29],[50,0],[32,-14],[54,3],[31,-32],[14,-44],[22,-19],[160,-89],[54,0],[80,22],[18,48],[-21,54],[23,39],[23,16],[0,53],[-9,21],[5,25],[44,56],[2,22],[-16,33],[14,15],[96,-9],[189,-68],[126,-61],[82,-21],[61,-14],[244,-3],[72,-35],[82,-26],[84,27],[386,-11],[126,8],[103,29],[51,44],[219,81],[115,-41],[100,-100],[100,-129],[100,-212],[46,-153],[8,-164],[31,-111],[1,-296],[-29,-64],[-24,-488],[25,-71],[0,-44],[59,-163],[-16,-54],[-34,-38],[-99,-46],[-42,-50],[29,-19],[88,0],[41,-10],[92,-105],[17,-45],[29,-35],[62,-25],[37,70],[17,115],[7,204],[-4,230],[-9,54],[-104,262],[-21,121],[8,214],[37,66],[25,16],[58,7],[42,-10],[12,-19],[8,0],[29,13],[26,22],[62,194],[7,135],[39,94],[-3,7],[-45,11],[-33,38],[-16,47],[-11,81],[16,55],[38,69],[48,56],[5,24],[84,147],[69,94],[91,95],[92,129],[84,153],[-86,68],[-16,63],[-52,63],[-70,329],[5,411],[-13,9],[-12,26],[0,124],[17,72],[27,55],[5,221],[-44,77],[-6,102],[-61,4],[-67,-9],[-22,-34],[-16,-59],[-5,-98],[-28,-128],[-62,-121],[-18,0],[-61,-41],[-122,-106],[-184,-206],[-153,-114],[-88,-155],[-66,-141],[-12,-46],[-37,-41],[-150,-71],[-144,-121],[-120,-189],[-9,-40],[-31,-32],[-101,-51],[-44,-35],[-83,-34],[-159,-26],[-78,2],[-21,13],[-42,-2],[-89,-28],[-274,26],[-88,24],[-131,21],[-146,55],[-228,129],[-16,21],[-56,19],[-41,0],[-43,-12],[-103,-43],[-16,-14],[-68,-24],[-22,0],[-19,-10],[-43,-55],[-37,-12],[-47,0],[-27,8],[-98,-8],[-103,-68],[-47,-7],[-109,2],[-40,13],[-25,21],[-97,53],[-50,-1],[-46,-12],[-41,-28],[-34,2],[-44,12],[-3,19],[29,26],[-98,13],[-103,-10],[-74,-60],[-37,14],[-44,52],[-116,63],[-34,9],[-100,-12],[-22,14],[-6,19],[12,29],[66,89],[113,93],[26,84],[-12,60],[46,46],[31,47],[54,22],[-1,91],[-22,64],[-18,34],[-14,52],[-12,8],[-37,90],[-26,34],[-1,20],[-147,171],[-46,41],[-76,47],[-77,82],[-60,8],[-45,16],[-47,2],[-97,-29],[-56,9],[-9,24],[3,48],[56,79],[43,144],[68,105],[31,19],[38,3],[19,-8],[70,16],[138,11],[47,21],[53,-6],[118,74],[59,0],[178,-23],[87,7],[122,60],[78,-5],[100,-47],[59,0],[26,14],[0,48],[-121,108],[-30,1],[-37,15],[-69,72],[0,33],[15,29],[88,76],[7,201],[-34,52],[-99,-11],[-35,14],[-12,24],[-19,91],[-6,89],[24,64],[-3,151],[44,61],[30,22],[32,1],[15,22],[-46,16],[-26,113],[28,81],[50,55],[9,24],[-6,50],[12,27],[28,19],[44,4],[59,-9],[50,5],[44,14],[12,12],[202,46],[7,17],[-22,17],[-56,7],[-16,16],[2,43],[-139,92],[-123,54],[-62,5],[-24,19],[-26,71],[-12,140],[-72,4],[-22,14],[-6,24],[22,20],[5,19],[46,42],[0,47],[-31,82],[-40,27],[-53,84],[-28,0],[-6,-32],[28,-57],[-3,-33],[-25,-15],[-53,10],[-19,31],[-19,38],[69,67],[-31,26],[-3,27],[34,50],[-4,64],[47,53],[-4,60],[-24,36],[3,7],[-78,2],[-41,-12],[-78,-67],[-162,43],[12,33],[19,8],[7,43],[-116,31],[-47,42],[-25,65],[-91,29],[-25,24],[-96,62],[2,117],[-21,73],[-25,23],[-4,31],[22,174],[-1,108],[6,50],[19,34],[54,56],[30,63],[-115,88],[-47,106],[-77,82],[-13,83],[-45,38],[-69,170],[-4,155],[-31,41],[-49,1],[-21,26],[-40,157],[-28,170],[-44,60],[-60,138],[-69,220],[-31,175],[-48,179],[-13,158],[-151,352],[3,124],[59,168],[142,143],[53,106],[-8,64],[-70,-4],[-43,-20],[-40,-2],[-22,4],[-37,29],[-13,32],[-5,149],[-32,206],[8,185],[-41,21],[-6,27],[46,60],[15,236],[91,84],[21,36],[-3,129],[-54,98],[-13,125],[50,112],[56,75],[81,134],[-4,57],[-31,93],[0,39],[22,41],[15,76],[-3,96],[59,100],[55,35],[26,8],[53,-4],[81,-19],[41,0],[27,19],[16,53],[40,67],[10,38],[77,93],[74,166],[90,56],[54,0],[38,-17],[25,-33],[0,-13],[-56,-51],[6,-14],[90,-24],[31,-45],[-7,-50],[12,-141],[38,-59],[23,-64],[1,-33],[28,-19],[3,-17],[-6,-184],[10,-41],[62,-36],[1,-95],[41,-34],[121,-66],[3,-91],[-34,-46],[-44,-26],[21,-92],[36,-59],[-8,-199],[18,-52],[31,-36],[16,-36],[0,-31],[50,-38],[41,-19],[40,7],[63,60],[15,29],[-16,320],[31,111],[-22,133],[-57,108],[-11,157],[-27,20],[-9,24],[3,122],[12,38],[-29,72],[-3,48],[29,57],[-1,89],[19,21],[37,9],[26,20],[56,138],[5,53],[25,22],[13,75],[0,100],[45,47],[54,-41],[16,-176],[22,-118],[15,-14],[10,-26],[3,-59],[27,-65],[3,-50],[30,-36],[-6,-36],[-19,-17],[1,-238],[92,-41],[84,83],[15,111],[0,241],[-6,34],[-37,33],[6,101],[15,13],[-2,157],[-23,4],[-3,19],[6,208],[12,63],[81,62],[13,19],[3,29],[55,81],[44,17],[50,-2],[41,-36],[50,-22],[183,154],[125,-2],[3,9],[-31,16],[0,73],[19,14],[49,19],[35,-2],[22,-14],[49,-3],[50,0],[28,15],[-6,23],[-28,19],[-12,20],[-19,48],[0,28],[40,52],[74,0],[154,-71],[68,-17],[77,-6],[27,21],[24,39],[58,58],[13,29],[8,83],[-19,26],[-26,14],[-12,26],[9,87],[-4,79],[41,52],[-4,72],[-15,60],[5,143],[116,93],[59,23],[44,-8],[81,-207],[10,-149],[41,-86],[44,-62],[46,-26],[116,-45],[34,-32],[32,-16],[116,-134],[106,-79],[106,-105],[66,-24],[21,41],[-118,169],[-7,53],[-44,100],[-9,84],[62,89],[12,33],[0,53],[52,151],[75,101],[-9,21],[-34,14],[-32,31],[-28,55],[-19,86],[-41,27],[-3,28],[153,112],[93,4],[22,-44],[29,-21],[74,-10],[57,-23],[28,-29],[0,-50],[22,-15],[31,17],[37,39],[122,57],[43,41],[6,41],[19,16],[28,17],[78,3],[41,-15],[131,-112],[62,-100],[22,-127],[20,-36],[56,-7],[28,24],[6,36],[37,43],[14,46],[55,52],[141,46],[33,19],[106,-5],[41,-9],[87,-43],[41,-43],[61,23],[45,39],[72,27],[46,0],[50,9],[6,10],[22,7],[128,-2],[55,28],[20,18],[-10,31],[-49,26],[-54,16],[-12,34],[3,60],[18,28],[3,60],[-12,74],[-25,22],[-10,31],[3,31],[61,65],[58,43],[18,21],[3,20],[-25,93],[4,38],[-41,37],[-51,131],[3,26],[69,62],[15,58],[-9,31],[-34,24],[-47,59],[-13,68],[19,62],[115,95],[28,34],[0,33],[-25,17],[-81,-12],[-44,12],[-54,30],[-34,62],[1,56],[-27,33],[-11,49],[-31,58],[18,106],[15,22],[118,99],[49,21],[123,13],[108,29],[166,74],[259,166],[76,39],[57,46],[92,57],[50,14],[371,-3],[166,12],[67,-2],[85,-15],[237,-64],[182,-20],[336,10],[110,-8],[168,0],[97,-20],[32,-14],[23,-20],[113,-156],[20,-213],[35,-69],[13,-48],[72,-100],[91,-88],[77,-39],[46,-16],[89,1],[42,-24],[82,6],[160,34],[176,71],[94,76],[59,83],[36,35],[161,138],[96,46],[69,-1],[32,-8],[92,-63],[17,-48],[-15,-96],[26,-98],[-9,-156],[-44,-72],[-95,-93],[-12,-45],[-51,-100],[8,-65],[-53,-56],[7,-66],[-16,-32],[18,-52],[18,-21],[114,-58],[116,-31],[110,2],[85,17],[153,45],[166,26],[288,70],[148,11],[138,-8],[47,20],[60,3],[49,-8],[79,0],[84,11],[196,52],[287,113],[244,38],[87,7],[350,-2],[139,9],[60,23],[43,26],[99,104],[9,46],[0,86],[-24,37],[-52,25],[-42,12],[-78,0],[-46,9],[-54,34],[-84,79],[-19,35],[-15,108],[0,38],[48,37],[60,113],[84,55],[145,50],[103,50],[81,28],[139,21],[256,-6],[149,-60],[183,-35],[18,-16],[103,-7],[202,94],[63,7],[25,31],[42,10],[108,-7],[115,18],[53,71],[60,32],[61,13],[91,42],[63,41],[6,102],[72,140],[55,46],[48,-28],[9,35],[-27,38],[37,70],[-16,100],[-37,85],[-3,47],[45,11],[18,42],[31,35],[8,48],[-12,33],[-30,25],[-60,90],[-18,54],[-35,34],[-23,95],[-1,72],[-17,-1],[-55,45],[-36,14],[-30,2],[-33,55],[8,26],[30,28],[139,99],[64,65],[62,132],[-6,104],[-27,74],[-127,83],[-3,30],[21,35],[48,48],[61,13],[126,-56],[55,-49],[79,-85],[33,-102],[-3,-162],[-37,-35],[-36,-51],[-11,-2],[-24,-37],[-3,-60],[-36,-32],[-33,-47],[-21,-53],[15,-95]],[[73938,478773],[85,-124],[108,-193],[61,-83],[70,-123],[0,-89],[61,-100],[8,-100],[16,-35],[38,-47],[23,-47],[0,-82],[16,-36],[31,-29],[15,-47],[0,-88],[31,-47],[54,-30],[100,-135],[77,-235],[0,-64],[-23,-59],[8,-71],[61,-76],[47,-77],[54,-270],[8,-147],[46,-129],[123,-177],[54,-41],[115,-141],[16,-71],[0,-82],[-15,-53],[-46,-106],[-8,-59],[-54,-88],[-53,-41],[-16,-59],[0,-247],[16,-47],[0,-59],[54,-141],[0,-165],[-89,-154],[11,-96],[54,-79],[0,-154],[-125,-156],[-182,-189],[-4,-43],[-14,-20],[0,-244],[11,-30],[36,-49],[35,-30],[26,-41],[21,-69],[-3,-38],[-107,-145],[-14,-215],[-15,-14],[-32,1],[-58,-17],[-121,-84],[-111,30],[-57,-30],[-40,-77],[15,-121],[50,-57],[61,-22],[50,22],[57,-5],[32,-31],[-3,-30],[-18,-27],[-132,-99],[-33,-41],[-64,-44],[-64,-107],[-11,-82],[18,-44],[43,-33],[25,-41],[4,-44],[25,-43],[3,-52],[-7,-34],[-21,-27],[-75,-44],[-14,-134],[-47,-66],[-7,-27],[-25,-39],[-50,-27],[-57,0],[-22,-22],[-61,-11],[-118,41],[-61,39],[-118,24],[-122,5],[-54,17],[-21,43],[-36,36],[-72,19],[-64,0],[-47,-17],[-30,-3],[-23,-29],[-69,-6],[-192,5],[-131,-58],[-62,-59],[-76,5],[-31,-29],[-31,-47],[0,-17],[39,-18],[92,0],[8,-100],[23,-6],[38,-6],[123,41],[31,42],[153,-71],[55,0],[69,-11],[107,-65],[85,-23],[85,0],[92,17],[146,-6],[84,-35],[47,-29],[23,-41],[0,-147],[46,-24],[31,-29],[77,-12],[61,-29],[39,-130],[0,-46],[30,-24],[1,-88],[-39,-30],[-7,-41],[54,-47],[61,-82],[0,-94],[-83,-2],[-36,30],[-43,-49],[-11,-53],[4,-38],[33,-43],[53,-14],[64,30],[51,11],[21,-24],[-29,-17],[-21,-30],[18,-41],[49,-31],[15,-35],[-1,-89],[9,-26],[-29,-47],[-47,-13],[-32,-30],[18,-77],[0,-49],[-10,-36],[-29,-36],[-10,-38],[-9,-4],[18,-61],[46,-65],[-100,-76],[-20,-93],[-61,-25],[-82,-11],[-68,14],[-96,58],[-54,8],[-90,-6],[-35,33],[-76,5],[-36,-13],[-127,-12],[-223,-41],[-76,-35],[-100,-71],[-64,-17],[-115,2],[-50,17],[-86,90],[-47,-3],[-28,-30],[-7,-24],[39,-55],[79,-22],[96,-14],[98,3],[214,-43],[132,-2],[115,-14],[67,-44],[77,-8],[86,-36],[202,-15],[106,-29],[211,-176],[77,-29],[92,-7],[118,102],[87,37],[57,15],[87,14],[182,-7],[19,-88],[-28,-66],[-29,-125],[-38,-44],[-68,-44],[-34,0],[-17,-13],[-45,-6],[1,-172],[-48,-73],[-67,-59],[-50,-63],[60,-84],[86,-22],[58,0],[85,37],[173,0],[77,-37],[173,-212],[29,-67],[115,-95],[29,-124],[-29,-74],[10,-117],[77,-44],[115,7],[105,51],[192,125],[29,89],[76,73],[106,73],[115,45],[105,73],[87,162],[19,95],[57,184],[86,73],[96,59],[13,-7],[124,22],[47,-52],[14,-76],[0,-69],[-18,-63],[-39,-66],[-60,-164],[-39,-152],[12,-63],[-8,-89],[-77,-176],[-23,-100],[38,-53],[22,-11],[14,-30],[-11,-47],[-58,-33],[-58,-50],[-15,-58],[0,-83],[23,-65],[53,-52],[24,-71],[161,118],[38,53],[54,41],[46,94],[115,159],[92,36],[85,5],[107,36],[146,88],[43,2],[22,-8],[28,-16],[4,-31],[-4,-52],[-75,-90],[-28,-52],[-101,-121],[-21,-123],[4,-104],[78,-77],[4,-36],[-39,-13],[-50,2],[-36,-33],[-4,-33],[-35,-54],[-68,-28],[-44,31],[-64,0],[-57,-25],[-68,-74],[11,-72],[-43,-46],[-79,-22],[-25,57],[-40,19],[-78,6],[-44,-12],[-26,6],[-60,-35],[-63,-7],[-52,14],[-23,40],[-67,19],[-52,44],[-99,-41],[-23,-94],[0,-118],[-43,-13],[-22,-34],[-57,15],[-39,33],[-62,76],[-26,15],[-36,2],[1,-82],[-39,-95],[-61,-223],[-31,-59],[0,-223],[-15,-89],[-23,-52],[-77,-77],[-3,-21],[-56,-68],[19,-110],[0,-54],[-29,-22],[-61,4],[-67,72],[-19,48],[-44,33],[-90,40],[-58,11],[-76,-19],[-62,-72],[-95,-66],[-119,-26],[-82,0],[-100,22],[-301,29],[-91,0],[-105,-11],[-200,-48],[-91,-29],[-148,-66],[-133,-7],[-115,-30],[-9,-18],[19,-33],[38,-7],[162,26],[186,65],[396,67],[82,3],[95,-3],[53,-37],[124,-11],[43,-22],[119,-7],[210,-3],[76,29],[82,18],[38,22],[62,19],[105,-8],[38,-47],[62,-19],[72,-3],[48,11],[61,58],[15,77],[19,48],[24,29],[95,54],[33,34],[5,32],[24,37],[0,50],[41,58],[69,54],[21,40],[45,28],[49,14],[86,-30],[13,-86],[15,-37],[79,-65],[84,-105],[16,-53],[93,-159],[30,-77],[39,-217],[31,-70],[23,-30],[7,-35],[77,-53],[31,-41],[-8,-159],[31,-235],[86,-96],[146,-22],[48,-14],[38,-36],[0,-41],[19,-36],[34,-51],[52,-55],[-5,-40],[15,-52],[38,-11],[62,-47],[38,-77],[15,-87],[57,-48],[52,-73],[72,-33],[19,-29],[29,-120],[19,-33],[29,-18],[48,-8],[38,8],[38,40],[12,3],[40,-12],[15,-15],[0,-35],[19,-40],[67,-14],[62,14],[47,22],[67,66],[91,47],[52,0],[34,-10],[33,-29],[5,-26],[-101,-119],[-15,-7],[-23,-136],[31,-59],[8,-88],[67,-37],[267,-14],[119,3],[115,19],[62,22],[53,44],[14,76],[38,33],[105,0],[67,-18],[95,-238],[82,-87],[24,-62],[5,-143],[-34,-47],[-124,-99],[-176,-95],[-139,-44],[-110,-18],[-291,-19],[-90,-11],[-72,-18],[-219,-99],[-86,-69],[-48,-80],[-138,-181],[-107,-200],[15,-124],[1,-323],[-62,-118],[-61,-53],[-23,-47],[0,-223],[-23,-59],[-7,-83],[-16,-29],[-131,0],[-138,-24],[-48,-29],[0,-71],[-72,-63],[-33,-3],[-79,41],[-64,61],[-14,42],[3,34],[38,65],[0,162],[-85,55],[-81,131],[-34,22],[-28,44],[0,69],[-24,92],[-48,95],[36,64],[16,177],[58,150],[4,54],[18,57],[-63,80],[-16,71],[0,119],[-52,36],[-113,51],[-96,18],[-36,0],[-60,-26],[-152,-17],[-73,-40],[-62,-56],[-322,-246],[-118,-134],[-62,-48],[-129,-26],[-58,10],[-65,-18],[-123,-1],[-299,41],[-77,24],[-8,241],[38,165],[100,147],[7,212],[-8,223],[-24,44],[-4,84],[47,88],[76,73],[62,41],[67,61],[48,117],[38,63],[47,62],[58,56],[-24,139],[-48,53],[-19,113],[0,89],[-102,135],[-15,82],[-24,64],[-85,71],[-190,206],[-96,69],[-19,40],[0,66],[14,48],[62,94],[43,45],[20,32],[0,18],[95,88],[5,55],[-15,19],[-96,-8],[-328,-179],[0,-18],[19,-30],[0,-36],[-24,-26],[-62,-22],[-48,0],[-43,-18],[-24,-26],[-14,-69],[0,-26],[14,-7],[67,48],[48,14],[105,-25],[62,-84],[-10,-4],[78,-58],[130,-135],[37,-53],[38,-111],[5,-152],[-18,-64],[-38,-55],[-40,-35],[-65,-8],[-33,-23],[-165,-31],[-70,6],[-86,31],[-45,2],[-19,-8],[-6,-23],[27,-24],[-83,-31],[-27,-2],[-38,-20],[-34,-71],[-8,-45],[5,-90],[-64,-58],[-51,-25],[-40,11],[-22,26],[11,72],[-35,29],[-43,14],[-65,-2],[-21,-39],[-86,-26],[-57,-31],[-50,-13],[-43,19],[-98,196],[-78,30],[-233,23],[-76,40],[-173,46],[-75,38],[-25,-4],[-25,6],[-17,-8],[-60,-76],[-40,-14],[-54,8],[-29,12],[-24,58],[-15,14],[-107,30],[-62,82],[-200,29],[-84,29],[-285,0],[-246,47],[-115,-6],[-58,-88],[-7,-30],[-38,-24],[-121,-49],[-103,-17],[-180,-139],[-107,-42],[-38,-76],[-92,-35],[-85,-71],[-123,-47],[-115,-76],[-69,-77],[-100,-65],[-46,-65],[-23,-94],[0,-330],[-15,-33],[3,-88],[59,-162],[-2,-56],[-24,-35],[-38,-18],[-59,-12],[-51,-21],[-54,-8],[-53,12],[-143,12],[-45,27],[-119,133],[-91,66],[-29,9],[-91,151],[-46,29],[0,200],[22,77],[-60,52],[-28,61],[-59,68],[-54,-2],[-37,20],[-62,18],[-30,42],[8,105],[116,152],[-4,45],[-66,92],[-65,46],[-32,88],[-49,0],[-80,-41],[-86,-25],[-30,-26],[-13,-52],[-19,-21],[-40,-18],[-48,6],[-30,31],[8,22],[32,17],[22,23],[-3,16],[-24,16],[-67,-10],[-27,8],[0,27],[35,27],[92,47],[7,53],[-7,112],[-16,47],[-54,59],[-146,17],[-23,47],[8,59],[55,111],[56,62],[32,15],[13,26],[-64,47],[-105,25],[-107,4],[-45,23],[-97,4],[-102,-23],[-94,-50],[-78,-22],[-18,-22],[-9,-71],[-40,-80],[-46,-35],[-70,4],[-29,33],[-90,13],[-13,-37],[4,-210],[-50,-140],[-45,-18],[-64,-95],[-95,-86],[-8,-66],[-30,-43],[-35,-34],[-75,-47],[-32,-32],[-11,-64],[3,-54],[-48,-10],[-121,14],[-102,43],[-35,19],[-61,52],[-33,7],[-39,-88],[-15,-100],[68,-104],[138,-40],[31,-41],[23,-59],[16,-53],[0,-177],[-7,-176],[-23,-88],[0,-36],[161,-17],[100,-41],[231,-200],[54,-59],[22,-44],[9,1],[-2,-101],[11,-10],[46,37],[13,82],[31,35],[146,6],[0,-8],[40,-4],[5,-21],[-16,-22],[-26,-10],[-51,-5],[13,-31],[38,-32],[78,-31],[62,-48],[27,-44],[46,-8],[92,11],[60,21],[57,6],[102,-2],[76,-42],[128,-29],[545,7],[115,23],[108,-29],[61,-59],[55,-88],[169,-82],[196,-28],[26,10],[51,0],[56,-20],[19,-23],[1,-61],[-36,-27],[-5,-29],[46,-51],[40,-21],[38,-6],[8,19],[40,8],[46,-14],[27,-25],[42,-15],[28,19],[37,13],[70,0],[139,-27],[54,-27],[49,-35],[56,-20],[70,2],[70,33],[66,10],[57,0],[62,-20],[42,-31],[50,-15],[36,-29],[11,-131],[-123,-150],[-29,-77],[-71,-121],[-24,-62],[-19,-95],[0,-77],[-19,-72],[0,-66],[19,-60],[-52,-54],[-67,-11],[-267,-3],[-91,3],[-76,22],[-72,3],[-76,-7],[-67,-44],[-57,-55],[-33,-54],[5,-114],[42,-54],[63,-51],[243,-128],[124,-84],[58,-22],[124,-11],[210,-73],[33,8],[5,15],[-72,69],[-219,138],[-77,41],[-43,32],[-133,70],[-206,138],[-9,84],[38,33],[105,-3],[57,-15],[10,-33],[42,-18],[144,-33],[95,-3],[58,3],[75,30],[115,66],[76,109],[3,134],[49,173],[33,48],[77,160],[133,106],[105,168],[16,64],[112,122],[138,177],[169,94],[208,100],[69,6],[53,-59],[-30,-59],[-23,-123],[-92,-300],[-61,-59],[-54,-88],[-30,-71],[0,-106],[61,-5],[38,70],[62,23],[154,6],[115,-64],[184,-188],[55,-194],[-8,-36],[-69,-64],[-54,-29],[-38,-48],[-8,-47],[100,-59],[54,-64],[92,-35],[116,-18],[61,0],[54,6],[30,24],[24,-24],[-16,-64],[108,-36],[123,30],[75,57],[4,11],[24,10],[33,-22],[0,-89],[12,-66],[49,-71],[4,-34],[0,-40],[-101,-50],[-65,-19],[-105,7],[-61,27],[-31,46],[-65,1],[-29,11],[-33,22],[-29,35],[-320,87],[-84,11],[-123,42],[15,-30],[46,-41],[39,-88],[107,-65],[116,-41],[76,-53],[28,-2],[65,-40],[28,-47],[8,-105],[-28,-37],[-60,-15],[-29,-53],[0,-37],[-24,-50],[-85,-77],[-36,-59],[-20,-56],[-57,-37],[-57,-2],[-177,-65],[39,-136],[30,-70],[16,-106],[30,-59],[24,-23],[84,-35],[238,29],[115,124],[62,-24],[123,-70],[23,-18],[15,-41],[62,12],[38,47],[54,35],[77,0],[53,48],[31,5],[61,41],[39,42],[84,47],[54,135],[46,12],[69,-47],[46,-12],[108,12],[99,-6],[54,-41],[54,-200],[0,-41],[31,-53],[54,-71],[108,-11],[82,10],[55,19],[62,45],[5,32],[-19,59],[64,5],[42,18],[123,-23],[22,44],[-32,33],[0,21],[28,23],[82,26],[61,35],[63,4],[61,-22],[53,-29],[67,-7],[89,-48],[44,-4],[100,77],[61,106],[62,18],[45,-12],[39,-71],[16,-76],[23,-41],[-16,-76],[-138,-177],[-61,-47],[-108,-71],[-76,-12],[-85,-59],[-61,-19],[-53,-58],[-19,-48],[-5,-51],[15,-147],[193,-171],[38,-76],[0,-71],[23,-147],[19,-27],[76,-29],[33,-22],[5,-36],[24,-29],[0,-57],[82,0],[126,60],[143,70],[23,53],[137,59],[147,-6],[84,59],[85,24],[122,111],[100,42],[62,64],[92,18],[76,65],[177,65],[154,117],[99,24],[54,59],[23,53],[46,41],[23,-30],[0,-135],[-30,-65],[-31,-188],[-69,-200],[-54,-17],[-77,17],[-76,-23],[-100,-41],[-69,-54],[-46,-58],[-77,-59],[-69,-118],[-38,-41],[-23,-71],[-46,-58],[8,-60],[38,-117],[31,-153],[0,-64],[-53,-159],[-8,-77],[-146,-141],[-8,-88],[-38,-88],[84,-136],[17,-235],[-8,-165],[31,-76],[-47,-118],[-149,-41],[-8,-18],[-39,-18],[-45,-43],[-152,-216],[-208,-91],[-282,-147],[-154,-63],[-86,14],[-74,-42],[-15,-29],[115,-141],[0,-177],[23,-70],[39,-48],[16,-170],[0,-141],[30,-88],[47,-41],[-254,-101],[-45,-88],[-54,-71],[-15,-76],[-62,-123],[-7,-36],[7,-94],[-23,-88],[-61,-18],[-85,-53],[-45,-88],[-85,-94],[-38,-65],[-23,-70],[0,-65],[-15,-95],[-62,-46],[-77,-136],[1,-176],[-69,-124],[-61,-82],[-54,-171],[-15,-147],[-54,-112],[0,-70],[77,-30],[292,-264],[54,-88],[15,-94],[0,-88],[-92,-89],[-168,-235],[-16,-65],[-14,-371],[7,-64],[31,-106],[8,-100],[31,-65],[69,-58],[46,-89],[0,-117],[47,-135],[-8,-183],[-15,-100],[8,-129],[77,-124],[23,-58],[-192,-230],[-39,-112],[-206,-212],[-69,-112],[-62,-70],[-8,-112],[-22,-76],[46,-91],[88,-60],[19,-121],[0,-351],[-60,-132],[0,-58],[13,-9],[-21,-24],[-7,-36],[107,-165],[8,-70],[-31,-71],[-7,-65],[23,-153],[54,-76],[0,-71],[-31,-112],[23,-58],[16,-100],[77,-29],[46,-59],[7,-218],[-7,-65],[-84,-129],[0,-59],[115,-100],[23,-106],[0,-70],[-53,-106],[-16,-53],[0,-71],[39,-88],[-8,-129],[-53,-106],[-85,-6],[-261,23],[-130,-94],[-176,-218],[-62,-88],[-15,-53],[-15,-165],[16,-52],[45,-48],[177,-46],[62,-35],[23,-24],[22,-47],[1,-47],[-31,-65],[-77,-59],[-45,-53],[-39,-29],[8,-47],[-38,-71],[-16,-65],[-31,-53],[-99,-70],[-23,-36],[-15,-88],[-146,-64],[-77,-48],[0,-164],[-38,-71],[-54,-65],[-115,-82],[-45,-59],[-16,-47],[-38,-24],[-85,0],[-84,36],[-77,5],[-115,-29],[-92,-59],[-77,-24],[-92,-93],[-45,-83],[0,-53],[23,-47],[61,-12],[16,-35],[-39,-41],[-53,29],[-169,-35],[-77,-36],[-23,-41],[0,-35],[31,-82],[99,-47],[0,-47],[-99,-106],[-15,-112],[-46,-70],[-61,-130],[-54,-71],[-38,-35],[-31,-47],[-115,-89],[-123,-64],[-84,-71],[-46,53],[54,88],[-77,88],[-108,30],[-107,-18],[-69,0],[-162,94],[-153,141],[-16,-18],[-38,-11],[-107,-12],[-77,-18],[-84,-41],[-139,-118],[-45,-70],[-23,-100],[0,-47],[69,-130],[-23,-35],[-77,-35],[-92,-12],[-99,0],[-169,17],[-108,-6],[-54,-53],[-92,-29],[1,-41],[-46,58],[0,53],[-39,71],[-46,53],[-77,2],[-88,15],[-40,34],[-45,15],[-60,6],[-89,22],[-205,15],[-46,14],[-271,5],[-46,47],[0,71],[15,53],[-46,29],[-92,35],[-131,100],[-54,94],[-38,47],[-54,6],[-46,-6],[8,-170],[39,-94],[2,-478],[40,-46],[45,-13],[75,-63],[12,-34],[-27,-23],[0,-34],[60,-49],[49,-28],[44,-12],[12,-16],[4,-21],[-16,-22],[-44,-12],[-41,-46],[17,-96],[76,-142],[90,-67],[96,6],[36,-6],[40,-75],[73,10],[60,49],[12,22],[68,34],[69,0],[20,-25],[7,-41],[25,-21],[4,-70],[-36,-25],[-60,-16],[-57,-3],[-45,16],[-87,-6],[-100,-23],[-100,0],[-74,22],[-84,-6],[-149,6],[-49,18],[-36,44],[-44,33],[-8,27],[-61,44],[-72,22],[-44,43],[-33,15],[-113,-3],[-80,-34],[-40,-70],[-28,-13],[-48,12],[-182,167],[-113,15],[-20,28],[-28,6],[-65,-3],[-32,6],[-24,37],[8,18],[44,22],[33,34],[-13,18],[-60,6],[-40,13],[8,68],[40,49],[4,31],[-32,49],[-57,50],[-32,49],[-44,46],[-8,37],[-37,31],[-52,3],[-45,12],[-16,28],[25,65],[-4,61],[-29,28],[-109,56],[-13,17],[-87,38],[-92,23],[-107,53],[-131,30],[-238,99],[-146,88],[-241,216],[-16,-4],[-125,105],[-16,49],[7,4],[7,54],[-15,41],[-62,52],[-78,-3],[-20,22],[0,50],[-41,84],[-52,168],[3,53],[44,55],[21,8],[76,99],[10,20],[-6,39],[52,78],[32,9],[53,0],[74,-5],[53,-18],[208,12],[38,59],[69,65],[115,12],[77,29],[22,41],[-23,36],[-65,38],[-106,28],[-40,21],[-37,34],[-2,34],[-11,9],[0,106],[38,147],[33,86],[18,20],[53,18],[72,83],[-32,34],[-53,-25],[-80,22],[-40,28],[-150,160],[-84,163],[-21,93],[-4,129],[4,124],[24,71],[4,120],[-9,62],[-24,46],[-28,111],[-77,185],[-8,68],[-36,114],[-9,65],[-24,34],[-32,0],[-20,-13],[1,-234],[56,-222],[33,-287],[-20,-262],[-88,-642],[-23,-120],[-40,-53],[-57,-28],[-64,6],[-53,19],[-60,37],[-69,28],[-148,49],[-81,6],[-45,-7],[-76,-43],[-48,-15],[-71,6],[-9,-5],[8,-109],[-16,-96],[-61,-102],[-72,-43],[-80,-18],[-177,18],[-45,24],[-44,75],[-45,46],[-36,59],[-69,157],[-28,126],[-57,77],[-36,95],[-24,35],[-56,52],[-101,135],[-122,105],[-56,84],[77,111],[-5,40],[-40,77],[-53,64],[-100,81],[-109,58],[-52,10],[-57,24],[-80,55],[-105,41],[-49,12],[-52,0],[-64,-25],[-20,-16],[-41,-3],[-32,16],[-56,6],[-12,-34],[28,-19],[0,-43],[48,-21],[146,-31],[241,-83],[149,-157],[198,-274],[8,-90],[-16,-114],[-52,-102],[-36,-46],[-64,-238],[-28,-58],[-177,-3],[-113,-50],[-225,-59],[-620,3],[-97,-41],[-213,-127],[-40,-43],[-157,-129],[-76,-96],[-169,-118],[-96,-145],[-40,-83],[-32,-105],[-44,-93],[4,-58],[48,6],[121,127],[48,71],[20,55],[-5,93],[41,58],[128,96],[222,136],[128,136],[61,86],[47,41],[81,31],[88,15],[126,0],[245,-15],[109,-37],[116,0],[411,-82],[238,-71],[20,-16],[76,3],[33,16],[56,-6],[52,-25],[45,-43],[8,-25],[-4,-27],[-24,-16],[-4,-18],[-11,-2],[-26,-205],[-69,-170],[-77,-130],[-199,-241],[-18,-41],[23,-71],[-15,-53],[-92,-153],[-100,-117],[-8,-65],[16,-65],[0,-76],[-100,-124],[-220,-197],[-40,-45],[-47,-119],[-45,-66],[-14,-64],[-23,-41],[31,-36],[-15,-64],[-38,-18],[-75,0],[-54,8],[-48,-15],[-24,-25],[20,-31],[48,-6],[56,9],[24,-9],[16,-34],[1,-89],[16,-31],[52,-9],[77,-47],[20,-49],[32,-40],[5,-58],[-73,-68],[4,-71],[24,-40],[37,-31],[88,-28],[-7,-59],[-31,-35],[-7,-88],[38,-83],[69,-100],[72,-60],[-8,-68],[-72,-56],[24,-40],[-28,-65],[68,-55],[2,-17],[63,-70],[0,-80],[-24,-31],[8,-12],[113,-34],[32,-18],[48,-34],[41,-49],[64,-3],[73,43],[72,28],[16,52],[-17,62],[4,61],[26,30],[68,-7],[15,-19],[56,-34],[49,-62],[28,-62],[16,-117],[0,-52],[-15,-65],[-40,-93],[0,-67],[12,-50],[44,-40],[85,-49],[121,-40],[4,-37],[-69,-9],[-44,-28],[-38,-45],[-7,-36],[136,-132],[2,-18],[28,-22],[89,-9],[50,18],[133,-25],[92,59],[92,35],[44,27],[55,13],[105,65],[84,30],[209,-2],[41,6],[42,25],[49,8],[107,-12],[123,-53],[-3,-209],[-73,-61],[-39,-15],[-101,-19],[-32,-22],[20,-86],[-1,-43],[-27,-112],[16,-55],[53,-27],[76,12],[16,15],[119,40],[138,65],[76,0],[130,-55],[28,-25],[0,-77],[-8,-34],[-52,-43],[8,-31],[20,-40],[101,-43],[8,-40],[-4,-56],[-20,-58],[-28,-25],[-48,-7],[-11,-11],[0,-46],[39,-60],[69,-11],[0,-47],[-39,-42],[-30,-106],[-48,-22],[-35,0],[-93,-125],[-77,-46],[-77,-1],[-120,11],[-36,-33],[-36,-6],[-91,11],[-77,-12],[0,-53],[91,-33],[37,-43],[12,-34],[0,-71],[-72,-123],[-28,-29],[-101,-58],[-109,-83],[-48,-68],[-48,-13],[-40,0],[-61,56],[-88,61],[-24,3],[-29,34],[-64,13],[-65,58],[-48,6],[-48,40],[-24,-9],[-25,-25],[-8,-28],[-51,-33],[-65,-25],[-73,15],[-52,0],[-20,-21],[5,-25],[56,-43],[0,-46],[-16,-32],[-61,-27],[-100,-10],[-65,-70],[-11,-173],[-16,-43],[-24,-38],[-89,-55],[-48,-40],[-4,-124],[-40,-46],[-12,-49],[-40,-56],[-60,-40],[-45,12],[-124,65],[-138,142],[-52,36],[-4,19],[-40,40],[-8,49],[31,127],[16,376],[48,105],[72,96],[12,49],[-4,44],[-11,4],[5,20],[-23,13],[-83,12],[-45,30],[-28,38],[-61,52],[-16,65],[-36,80],[-12,68],[35,112],[53,83],[-16,76],[-74,78],[-23,5],[-32,37],[-4,117],[140,157],[8,76],[-31,33],[-25,-6],[-61,9],[-4,71],[11,5],[-5,6],[46,76],[15,53],[46,89],[15,76],[-15,53],[-194,24],[-205,0],[-58,14],[-247,-4],[-25,-7],[-93,24],[-36,37],[0,47],[16,40],[44,46],[0,25],[32,92],[-28,108],[20,28],[68,52],[24,32],[-4,43],[-45,21],[-40,0],[-72,15],[-57,47],[-32,0],[-24,-19],[-28,-52],[0,-16],[-76,-40],[-12,-18],[-4,-53],[-36,-25],[-89,-37],[-68,-62],[-40,-15],[-58,-2],[-99,-117],[-46,-71],[-15,-86],[-51,-45],[-77,-124],[-40,-24],[-24,-71],[-64,-47],[-32,6],[-13,19],[0,31],[24,25],[17,37],[-8,18],[-25,0],[-28,-6],[-100,-52],[-133,15],[-72,-7],[-137,-89],[-54,-19],[-3,-135],[61,59],[100,-11],[23,-41],[0,-71],[-18,-122],[-27,-67],[-17,-3],[-42,-30],[-6,-63],[-52,-28],[-31,3],[-22,-15],[-16,-19],[0,-16],[-12,-5],[-162,-31],[-3,-37],[9,-38],[149,-89],[48,-43],[40,-67],[-7,-81],[-17,-28],[-32,-25],[-193,-18],[-44,-22],[-145,-99],[-104,-31],[-37,-33],[-15,-59],[-43,-31],[19,-80],[115,-76],[71,-32],[47,0],[37,-28],[12,-24],[-12,-40],[-24,-22],[0,-31],[12,-31],[-4,-34],[-45,-46],[-35,-19],[-93,-86],[-76,-46],[-12,-31],[-25,-25],[-48,-8],[-15,-56],[39,-25],[13,-25],[0,-43],[-77,-59],[-52,-25],[-72,-58],[0,-43],[88,-32],[25,-27],[64,-25],[57,-12],[96,-6],[52,-21],[41,-28],[20,-90],[36,-46],[0,-68],[-12,-16],[-32,-12],[-76,0],[-24,-12],[-41,-40],[-32,-53],[-24,-68],[-44,-18],[-132,-114],[0,-56],[-25,-56],[-83,-101],[-190,-152],[-52,-18],[-364,26],[-394,-12],[-97,24],[-68,34],[-105,120],[-28,37],[-8,28],[-32,28],[-178,95],[0,-25],[28,-37],[81,-52],[93,-86],[80,-102],[9,-37],[-45,-49],[0,-53],[45,-52],[16,-34],[0,-53],[-48,-49],[-44,-22],[-40,-6],[1,49],[-40,13],[-53,-59],[-76,-106],[-62,-188],[16,-376],[24,-142],[-23,-99],[-83,-166],[4,-18],[24,0],[48,49],[5,16],[28,9],[40,-6],[44,-18],[20,-47],[-8,-77],[-20,-25],[0,-25],[17,-18],[28,0],[26,18],[96,31],[123,-5],[11,-10],[29,-3],[61,-64],[0,-44],[-73,-67],[-148,-50],[-48,-6],[4,-77],[40,-152],[118,-239],[92,-70],[299,0],[299,-64],[31,17],[-62,123],[4,74],[30,56],[78,21],[20,19],[37,52],[90,96],[50,15],[117,69],[120,46],[44,6],[130,-6],[45,-15],[63,-10],[60,-30],[16,-27],[31,-170],[-22,-65],[-108,-65],[-107,-82],[-107,-141],[-76,-136],[-27,-249],[-102,-218],[-21,-62],[-18,-114],[3,-108],[12,-42],[88,-109],[133,-104],[66,-39],[52,-46],[-3,-18],[-25,-24],[-36,-18],[-102,-26],[-480,-46],[-54,-10],[-54,-35],[-48,-11],[-88,0],[-30,9],[-42,0],[-91,-12],[-304,-114],[-97,-43],[-133,-30],[-71,4],[-40,12],[-103,12],[-136,3],[-145,-14],[-249,-51],[-97,-37],[-70,-11],[-183,-48],[-70,-5],[-78,6],[-30,15],[-29,52],[9,222],[14,39],[48,78],[132,195],[32,109],[1,41],[-14,76],[-32,52],[10,93],[-11,35],[-25,29],[-89,67],[-92,8],[-26,-11],[-49,-2],[-79,32],[-21,1],[-245,-124],[-188,-151],[-120,-73],[-241,-94],[-70,10],[-54,34],[-74,75],[-41,60],[-36,84],[-17,105],[-66,267],[-98,63],[-63,24],[-72,23],[-54,8],[-29,17],[-123,15],[-191,4],[-205,25],[-235,86],[-370,76],[-73,7],[-258,-3],[-79,-23],[-52,0],[-93,-53],[-69,-20],[-57,10],[-82,58],[-24,41],[-116,263],[-46,134],[-53,89],[-127,174],[-46,96],[-33,31],[-30,56],[-53,27],[-76,23],[-56,25],[-13,36],[0,68],[16,27],[0,50],[38,55],[14,116],[-40,64],[6,28],[40,28],[3,23],[26,51],[-7,104],[-15,74],[9,27],[28,24],[9,26],[-3,77],[6,9],[-3,17],[-28,28],[-103,46],[-47,45],[-10,52],[28,46],[0,31],[-25,26],[0,61],[9,14],[38,0],[55,-40],[0,-30],[71,-18],[49,11],[54,-16],[74,-2],[56,26],[45,-4],[21,14],[25,-5],[15,9],[-28,55],[-16,12],[3,55],[38,32],[15,50],[54,29],[0,30],[45,70],[39,12],[0,47],[-16,65],[54,70],[14,136],[-27,38],[-46,10],[-22,12],[-14,35],[-20,20],[-41,21],[-37,8],[-25,26],[-7,22],[0,31],[47,82],[31,30],[53,19],[13,22],[-13,36],[9,62],[31,64],[38,44],[-32,35],[-68,29],[-94,-29],[-28,5],[-50,33],[-6,26],[-109,-33],[-100,9],[-53,22],[-38,36],[-28,55],[-34,22],[-69,2],[-28,9],[-47,29],[-13,33],[-3,31],[19,22],[9,38],[0,98],[21,41],[-18,26],[-75,7],[-3,67],[56,65],[3,24],[-3,45],[-41,38],[0,34],[3,17],[72,22],[9,19],[0,67],[-4,36],[-18,28],[-81,24],[-7,26],[13,27],[71,9],[-6,24],[-50,58],[-6,31],[9,40],[17,9],[-2,16],[85,94],[61,-12],[32,-46],[25,-10],[22,-29],[75,-43],[88,-117],[34,-4],[-9,40],[9,43],[-19,43],[-9,161],[18,24],[114,64],[18,57],[-26,15],[-28,0],[-13,14],[3,31],[25,7],[-3,53],[-98,186],[-33,-2],[-13,-9],[0,-18],[-50,-4],[-84,67],[-34,41],[-3,18],[-43,36],[-31,199],[-30,17],[-6,43],[15,79],[21,35],[53,174],[0,64],[28,57],[31,101],[50,33],[53,2],[17,29],[30,5],[75,65],[58,65],[60,26],[99,72],[28,9],[57,-4],[15,-12],[32,-81],[31,-44],[57,-38],[22,-27],[40,-68],[3,-58],[44,-114],[28,-29],[38,-10],[128,-95],[31,-10],[153,-16],[222,53],[50,43],[47,2],[28,-9],[46,-87],[35,-7],[85,8],[55,34],[116,103],[3,42],[-10,24],[10,19],[55,39],[147,-10],[69,-35],[16,0],[34,35],[15,34],[3,50],[-9,108],[-9,36],[-23,28],[-162,91],[-187,-3],[-91,12],[-34,15],[-38,17],[-31,52],[-16,58],[-38,23],[-46,-2],[-78,31],[-44,2],[-37,-9],[-10,-29],[-50,-10],[-40,3],[-19,16],[6,53],[28,16],[60,3],[34,10],[15,19],[0,29],[-40,40],[-3,32],[-88,64],[9,24],[51,4],[12,-2],[9,-19],[25,-5],[40,5],[35,14],[37,42],[35,12],[71,-10],[54,-43],[65,-24],[53,19],[44,32],[56,21],[60,-12],[83,-3],[69,88],[58,39],[45,8],[37,19],[6,19],[-12,41],[3,43],[6,22],[41,50],[0,40],[130,155],[68,0],[4,-8],[66,-14],[52,21],[29,29],[15,72],[16,24],[15,184],[44,29],[59,7],[37,74],[-3,98],[-38,5],[-34,-7],[-84,-48],[-181,-75],[-187,-5],[-50,7],[-38,29],[-18,5],[-29,-15],[-24,-69],[-28,-19],[-28,0],[-10,17],[3,50],[-34,4],[-78,-93],[-53,-225],[-46,-4],[-56,9],[-23,62],[-109,84],[-112,11],[-60,-4],[-75,-17],[-143,-56],[-38,-26],[-49,-69],[-47,-32],[-47,-4],[-53,11],[-69,60],[-19,77],[72,129],[6,31],[21,25],[12,76],[-11,12],[-141,4],[-171,-33],[-41,-25],[-43,-93],[-31,-22],[-26,-14],[-106,-14],[-81,0],[-28,9],[-5,12],[-30,5],[-34,19],[-134,88],[-38,10],[-68,2],[-31,-19],[-75,-12],[-47,16],[-106,19],[-63,37],[-34,38],[-10,40],[9,34],[-15,33],[-82,19],[-27,17],[-13,26],[3,45],[-25,32],[-15,12],[-66,16],[-6,27],[15,55],[19,31],[-63,36],[-16,24],[0,23],[57,2],[35,39],[77,42],[-13,33],[16,19],[9,1],[59,151],[-25,25],[-3,31],[110,75],[77,12],[33,0],[29,-15],[50,10],[0,36],[-31,26],[3,33],[25,27],[6,38],[12,0],[16,15],[-11,61],[-20,25],[9,16],[47,14],[68,6],[31,47],[-25,74],[-53,6],[-47,30],[3,70],[-12,4],[-72,-7],[-37,7],[-10,91],[9,29],[41,14],[-16,15],[-3,19],[15,29],[32,26],[-13,45],[16,65],[9,26],[19,17],[40,14],[7,63],[43,14],[22,-2],[44,12],[68,-3],[34,17],[-3,14],[-56,17],[-28,27],[-50,81],[-53,16],[15,41],[31,19],[0,41],[-12,21],[-41,27],[-3,9],[6,24],[25,29],[28,12],[141,5],[6,16],[-22,18],[-33,10],[0,6],[-80,-7],[-46,29],[-4,23],[10,29],[28,12],[76,80],[23,35],[54,41],[15,47],[-8,44],[-92,9],[9,48],[-22,10],[-53,2],[-22,26],[6,22],[22,14],[10,29],[-10,31],[-41,91],[-78,28],[-12,12],[-1,84],[-37,43],[-7,53],[57,45],[21,31],[-3,63],[-22,21],[-9,58],[9,100],[31,32],[4,33],[23,41],[115,18],[0,46],[20,38],[6,41],[31,57],[58,60],[35,53],[-28,12],[2,37],[-40,71],[-21,14],[-9,33],[24,58],[25,21],[32,-1],[34,26],[-16,33],[15,54],[32,-1],[15,16],[-3,34],[-44,98],[-25,2],[-16,-19],[-33,-19],[-41,29],[9,28],[31,29],[19,31],[15,67],[25,33],[0,96],[-16,59],[-1,170],[-22,63],[-87,10],[-18,12],[-7,28],[34,46],[0,38],[9,19],[51,5],[37,39],[25,45],[-47,131],[12,34],[37,8],[67,34],[45,0],[63,35],[41,-5],[31,-26],[7,-26],[25,-22],[18,-57],[103,-55],[28,-27],[1,-26],[-62,-55],[18,-86],[-17,-56],[-39,-57],[-106,-79],[-6,-12],[22,-19],[72,-19],[81,-36],[45,-24],[46,-42],[16,-82],[0,-153],[116,-64],[72,-51],[0,-9],[22,-17],[78,-19],[47,0],[37,10],[68,43],[10,21],[28,17],[94,3],[37,-36],[-13,-103],[42,-6],[31,30],[23,47],[84,88],[-16,34],[-10,1],[-16,26],[19,20],[15,55],[46,52],[7,59],[-31,24],[-69,-30],[-91,-5],[-53,5],[-32,-12],[-100,0],[-84,-18],[-8,48],[23,35],[54,52],[76,36],[68,48],[9,23],[-3,25],[-22,21],[-27,-3],[-79,92],[-107,18],[-100,-1],[-47,130],[10,3],[0,62],[77,124],[6,27],[47,38],[-12,46],[3,76],[21,34],[78,45],[-18,53],[37,48],[9,48],[-34,47],[-28,19],[-7,17],[41,41],[6,17],[0,100],[-22,36],[31,17],[83,19],[62,24],[153,36],[0,23],[-16,7],[-20,-13],[-25,0],[-6,38],[6,15],[76,71],[124,27],[27,26],[0,15],[23,12],[43,-10],[95,-64],[-12,-53],[0,-47],[10,-9],[-8,-30],[34,-53],[19,-7],[31,19],[88,-11],[228,-122],[31,-27],[73,-107],[18,-46],[0,-45],[16,-46],[43,-19],[23,8],[12,23],[0,27],[28,24],[38,5],[6,7],[-13,62],[-53,67],[-19,36],[-9,48],[-32,43],[-25,60],[-88,73],[-3,101],[12,31],[77,24],[77,-29],[61,-12],[-10,23],[-20,6],[-28,65],[-54,69],[-3,39],[-37,19],[-10,47],[28,96],[124,185],[0,50],[10,32],[37,46],[56,32],[137,26],[50,68],[0,13],[18,13],[1,48],[-109,31],[-47,0],[-69,-31],[-206,-30],[-91,10],[-31,12],[-25,29],[-19,0],[-37,-30],[-69,-19],[-93,7],[-63,29],[-28,19],[-19,115],[-43,128],[-36,17],[-85,141],[-80,56],[-79,31],[-15,139],[-22,35],[-16,22],[-50,38],[-69,29],[-12,14],[51,35],[64,6],[35,-12],[59,-5],[179,5],[61,29],[122,24],[90,3],[61,-19],[102,-5],[21,29],[10,38],[47,34],[18,93],[-3,26],[-16,17],[0,22],[69,100],[34,29],[32,9],[115,3],[83,34],[36,6],[47,-11],[38,-39],[18,-4],[72,-60],[12,-117],[-31,-27],[19,-23],[3,-57],[32,-6],[12,20],[6,52],[19,12],[65,19],[103,51],[-9,57],[6,24],[19,17],[68,3],[30,-5],[17,-11],[38,-53],[-6,-114],[-16,-28],[10,-36],[31,-31],[56,-24],[38,-69],[3,-29],[-12,-50],[-22,-17],[-38,-4],[-40,-32],[19,-29],[69,-45],[46,15],[160,-12],[-19,76],[59,51],[41,-3],[68,-26],[-22,29],[0,36],[-37,105],[-32,45],[0,70],[10,26],[55,24],[82,-2],[19,-5],[10,-12],[39,-10],[19,-31],[35,-28],[17,-42],[42,-38],[162,-47],[29,-26],[19,-3],[18,8],[13,33],[18,8],[57,-5],[28,-24],[56,-7],[47,55],[31,131],[28,41],[-50,24],[-13,24],[-22,17],[6,179],[19,41],[75,55],[-57,-10],[-96,-50],[-91,-31],[-71,-3],[-23,15],[-12,24],[6,11],[53,10],[7,19],[-103,51],[-7,52],[25,31],[81,21],[28,22],[12,31],[29,34],[68,55],[63,12],[50,3],[96,-25],[110,-57],[31,-7],[81,3],[25,14],[52,143],[-27,80],[-9,4],[-38,-2],[-32,-24],[-59,19],[-115,2],[-31,12],[-16,17],[0,19],[22,62],[-32,10],[-40,40],[-10,130],[-53,52],[-41,5],[-37,-12],[-91,-48],[-93,-22],[-28,-24],[-31,-12],[-110,10],[-25,12],[0,16],[44,30],[-3,16],[-26,12],[-121,10],[-153,-68],[-59,-55],[-60,5],[-31,7],[-47,62],[-3,151],[12,63],[-83,24],[-92,0],[-200,-23],[-90,-41],[-25,0],[-47,-14],[-122,-69],[-84,-24],[-62,-6],[-59,-33],[-41,-7],[-85,2],[-34,19],[-12,24],[6,72],[-35,45],[-88,43],[-34,34],[-37,7],[-60,35],[-100,38],[-169,89],[-87,16],[-38,39],[-9,24],[-35,2],[-36,-20],[-101,-21],[-194,11],[-28,27],[3,67],[64,54],[18,32],[154,69],[14,25],[0,28],[40,63],[-7,409],[31,108],[66,115],[7,77],[21,23],[84,19],[80,84],[3,65],[-9,72],[-56,45],[-116,4],[-6,15],[-1,19],[23,41],[93,100],[40,-4],[13,-10],[25,-36],[56,-43],[22,-38],[29,-27],[59,-33],[31,0],[28,10],[31,50],[19,7],[31,1],[57,-32],[31,3],[236,98],[48,31],[40,0],[19,-9],[1,-67],[-16,-26],[19,-27],[28,-9],[37,2],[53,-24],[19,5],[25,41],[-3,31],[31,41],[40,21],[78,0],[91,-28],[22,-17],[36,-54],[114,-70],[78,-12],[32,2],[157,-80],[69,65],[23,94],[54,59],[14,101],[-156,39],[-90,47],[-28,46],[-29,14],[-175,75],[-97,23],[-37,34],[12,60],[-125,40],[-62,40],[-10,24],[-25,22],[-21,2],[-51,24],[-15,-12],[17,-28],[-1,-77],[-16,-51],[-78,-21],[-59,7],[-41,58],[-35,19],[-56,9],[-18,17],[-4,19],[4,7],[40,17],[31,5],[53,22],[31,28],[-12,10],[-103,4],[-34,29],[-69,24],[-166,21],[-44,17],[-19,40],[10,58],[50,19],[80,8],[65,41],[25,2],[39,16],[34,8],[28,-8],[25,3],[19,12],[0,43],[-32,131],[3,34],[75,65],[35,13],[40,57],[7,160],[-124,95],[-93,29],[-94,4],[-31,-12],[-28,-55],[-47,-19],[-56,-5],[-34,12],[-22,26],[-3,39],[18,31],[81,50],[60,55],[3,34],[-16,43],[0,52],[12,99],[16,47],[68,63],[66,36],[93,9],[3,51],[-37,12],[-24,18],[-1,27],[72,65],[53,12],[109,9],[37,31],[22,29],[-6,29],[-25,36],[0,16],[9,17],[31,22],[54,-3],[21,-16],[-3,-60],[75,5],[56,26],[47,34],[60,69],[-35,79],[53,34],[72,31],[31,24],[49,62],[26,74],[65,37],[28,38],[3,33],[-9,29],[-16,4],[-222,-7],[-118,12],[-16,79],[-75,48],[-57,19],[-96,2],[-28,-7],[-100,-63],[-26,12],[-15,29],[3,22],[38,40],[115,70],[150,29],[0,21],[-16,26],[-62,37],[-4,21],[22,14],[75,-4],[47,9],[28,41],[41,24],[59,91],[-10,81],[-100,7],[-84,-36],[-62,-45],[-41,19],[-10,26],[0,76],[16,37],[62,47],[63,65],[2,55],[11,25],[0,123],[22,124],[-2,68],[15,31],[0,29],[-53,74],[-9,31],[27,43],[-9,65],[16,30],[25,22],[72,12],[56,41],[84,101],[37,146],[97,81],[84,5],[116,-105],[25,5],[11,71],[148,60],[87,5],[41,-14],[37,-26],[35,2],[53,22],[31,-3],[53,-18],[25,-20],[16,-16],[0,-51],[-47,-45],[-3,-14],[25,-22],[29,-7],[28,14],[12,17],[19,7],[25,-2],[3,-48],[-28,-45],[3,-31],[35,-20],[62,-12],[22,-28],[122,-38],[9,-41],[-21,-20],[8,-78],[69,12],[61,29],[49,41],[-6,11],[-47,17],[-3,19],[34,29],[166,24],[72,-16],[104,31],[84,55],[24,2],[28,-9],[81,-53],[166,-172],[31,17],[0,40],[-22,19],[-66,118],[-134,86],[-59,23],[-69,89],[-7,29],[6,76],[16,43],[58,102],[99,123],[8,77],[46,70],[23,71],[38,71],[38,106],[23,194],[37,24],[22,0],[25,31],[-54,149],[-40,69],[-85,60],[-50,76],[-86,102],[-70,18],[-69,-12],[-38,-41],[-69,5],[-154,70],[-55,-23],[-62,-65],[-25,-14],[-38,-7],[-34,2],[-28,10],[-19,21],[-22,0],[-93,-33],[-44,-8],[-81,12],[-32,-5],[-34,-9],[-31,-72],[-59,-38],[-44,-5],[-41,9],[-25,12],[-62,89],[-1,62],[11,12],[-26,97],[-25,37],[-44,14],[-31,60],[-16,12],[-26,74],[3,36],[-15,26],[-113,112],[-41,19],[-138,27],[-213,-15],[-123,-48],[-79,0],[-31,31],[0,12],[-131,84],[-108,123],[-7,23],[53,65],[-23,47],[7,48],[-36,51],[-44,6],[-52,35],[-96,31],[-22,24],[-11,80],[-21,60],[13,28],[59,0],[70,-18],[72,13],[24,27],[11,65],[70,70],[10,35],[-27,160],[-75,89],[-16,82],[-30,35],[-8,30],[8,38],[32,8],[81,-10],[214,-2],[123,-18],[36,-15],[86,-94],[48,-29],[121,-33],[168,-87],[72,24],[-9,10],[-30,4],[-21,15],[11,43],[77,24],[54,-26],[3,-17],[-23,-33],[103,58],[51,44],[43,12],[80,49],[40,37],[-18,23],[-48,14],[-36,33],[-48,60],[-78,73],[-65,87],[-37,84],[-3,107],[39,38],[23,41],[177,147],[84,54],[131,100],[104,32],[13,18],[5,50],[-54,149],[-89,105],[-102,90],[-86,31],[-62,6],[-40,-8],[-46,-23],[-126,-29],[-16,-59],[-70,-30],[-40,4],[-54,68],[-53,21],[-129,2],[-169,31],[-97,38],[-59,52],[-127,69],[-59,15],[-36,0],[-10,12],[-34,4],[-32,-4],[-27,-23],[-86,-18],[-54,12],[-46,39],[-13,74],[40,31],[148,24],[34,17],[49,2],[35,-14],[13,-15],[22,2],[34,29],[54,17],[188,10],[105,21],[34,29],[132,166],[8,31],[-17,105],[-46,55],[-29,9],[-21,-3],[-3,-18],[16,-31],[-8,-22],[-27,-11],[-27,13],[-67,63],[-51,19],[-91,72],[-24,34],[-17,66],[3,29],[13,22],[53,53],[8,53],[-108,135],[-16,65],[15,147],[23,104],[24,41],[66,34],[130,125],[31,33],[24,55],[89,56],[110,90],[38,23],[45,7],[38,18],[99,113],[13,39],[-9,21],[0,42],[-60,67],[-23,65],[22,26],[87,51],[2,42],[-10,29],[96,157],[6,54],[25,73],[-8,42],[-46,17],[-8,17],[-24,10],[-44,38],[-101,138],[-14,49],[-2,94],[29,66],[73,59],[36,46],[54,94],[40,94],[24,147],[2,200],[-23,26],[-20,57],[-4,103],[87,138],[80,42],[36,38],[60,91],[4,37],[18,22],[31,94],[23,230],[168,141],[39,-6],[36,-20],[-2,-38],[-32,-17],[2,-14],[20,-16],[35,-6],[70,22],[2,14],[-63,9],[-4,9],[6,13],[44,30],[77,2],[59,-18],[54,-36],[10,-25],[107,-93],[42,-59],[19,-60],[42,-57],[30,-60],[27,-24],[52,-21],[50,3],[9,-32],[-16,-12],[-2,-22],[40,-15],[48,14],[34,0],[65,-27],[14,9],[12,29],[-10,49],[8,0],[3,11],[51,16],[-58,30],[-18,42],[11,94],[-12,32],[16,28],[-12,48],[20,27],[35,22],[36,54],[90,43],[83,79],[32,14],[46,8],[72,-3],[45,26],[58,60],[26,16],[38,0],[61,-19],[40,4],[57,45],[77,6],[60,21],[66,3],[34,15],[71,-7],[132,20],[151,4],[28,26],[-10,26],[-58,26],[-34,24],[-24,32],[0,24],[51,49],[34,25],[60,19],[15,52],[-16,35],[-2,84],[-46,26],[-65,85],[5,48],[47,41],[10,19],[-8,7],[-68,-4],[-45,-23],[-36,-5],[-37,3],[-39,43],[-46,-47],[8,-48],[-16,-29],[-39,-2],[-57,-33],[-22,-18],[-31,-56],[-37,-39],[-45,-17],[-104,-66],[-42,3],[-42,23],[-55,11],[-21,32],[-35,15],[-120,21],[-61,-15],[-4,-7],[-168,35],[-93,12],[-57,50],[-1,16],[-22,22],[-25,90],[0,25],[29,16],[-15,8],[-40,14],[-10,-5],[-14,-55],[-65,-52],[-24,2],[-58,69],[-86,5],[-13,-8],[-26,3],[-33,13],[-28,30],[-43,8],[-18,20],[-7,94],[-52,22],[-63,-14],[-83,15],[-32,28],[-3,35],[-51,80],[-7,46],[29,70],[-33,4],[-72,55],[-18,43],[29,102],[25,50],[79,62],[-8,96],[11,58],[43,44],[71,33],[50,33],[4,25],[-47,21],[-21,28],[-8,93],[25,35],[46,36],[12,63],[35,33],[100,39],[11,27],[39,36],[86,-6],[36,11],[20,28],[15,3],[108,7],[82,-7],[19,-17],[42,-19],[37,-27],[7,-33],[-22,-63],[25,-25],[61,-2],[90,-27],[78,24],[33,28],[26,8],[14,-11],[254,-23],[69,-35],[61,-76],[9,-117],[-28,-33],[7,-47],[40,-22],[35,-8],[99,-3],[116,-52],[10,4],[41,-78],[79,-60],[56,-11],[93,50],[37,27],[82,-5],[43,16],[82,124],[50,19],[53,38],[-7,71],[-79,121],[36,104],[64,55],[75,38],[57,58],[18,47],[35,27],[15,0],[32,-45],[39,-111],[12,-12],[16,-6],[39,3],[16,18],[-1,132],[-49,59],[0,45],[-29,62],[-186,96],[-108,14],[-86,-9],[-32,17],[-14,30],[-4,96],[-18,69],[0,50],[106,31],[37,-16],[29,14],[3,82],[-11,50],[-14,10],[-39,-13],[-25,5],[-11,25],[28,41],[111,54],[-54,17],[-15,23],[0,21],[12,16],[89,69],[50,8],[69,0],[42,-11],[101,-54],[25,-39],[0,-41],[25,-33],[46,-13],[15,22],[-8,44],[11,32],[54,67],[68,43],[38,46],[15,48],[47,12],[54,0],[199,65],[98,13],[42,66],[36,11],[18,-14],[-7,-52],[-36,-36],[61,-30],[61,61],[25,44],[0,90],[9,6],[-30,64],[-1,50],[11,47],[-22,53],[-14,60],[0,57],[-15,44],[-86,49],[-54,63],[-17,38],[0,28],[28,17],[36,-9],[32,17],[-14,123],[-12,38],[-42,36],[-11,25],[-71,82],[9,84],[-14,33],[-48,11],[-52,0],[-34,-19],[-66,-21],[-43,-30],[-65,-11],[-114,29],[-89,81],[-71,146],[-11,43],[0,227],[9,51],[39,121],[33,51],[0,106],[14,99],[66,109],[19,80],[-19,41],[-43,47],[-105,36],[-29,0],[-74,-25],[-73,47],[-5,37],[-20,36],[-57,48],[-34,44],[-5,61],[81,70],[44,62],[-1,102],[-19,19],[10,4],[-6,69],[-19,51],[0,66],[39,29],[19,0],[38,-26],[43,-43],[62,-37],[101,-14],[71,7],[52,37],[38,47],[15,63],[-5,32],[-53,40],[-33,44],[0,44],[24,18],[47,8],[39,-11],[71,14],[105,41],[67,15],[52,0],[225,-44],[38,3],[19,26],[158,95],[57,12],[65,24],[121,1],[153,-55],[120,1],[257,-132],[62,-10],[139,14],[201,77],[133,85],[19,40],[-9,7],[152,139],[48,59],[-34,87],[0,29],[67,70],[62,25],[43,41],[-29,102],[4,164],[91,103],[0,51],[-5,62],[-44,121],[-47,58],[-34,66],[0,76],[4,13],[92,60],[200,88],[306,-47],[224,-14],[53,7],[43,15],[67,-8],[90,66],[19,40],[81,48],[82,37],[47,11],[81,3],[38,-14],[53,-44],[55,-26],[12,-25],[15,-277],[72,-88],[72,14],[23,41],[52,29],[86,22],[48,29],[48,0],[52,15],[10,33],[0,58],[24,18],[19,30],[40,16],[17,39],[-18,35],[-3,44],[39,52],[68,3],[79,14],[72,55],[3,38],[-65,52],[-32,44],[-18,54],[-72,80],[-7,71],[-47,17],[-42,32],[-40,58],[3,49],[33,30],[14,53],[-40,54],[-64,38],[-72,25],[-47,0],[-118,41],[-7,22],[21,35],[32,21],[34,54],[43,42],[71,13],[111,0],[59,-6],[36,-19],[9,8],[-4,55],[-33,38],[-3,33],[25,36],[-4,52],[10,41],[22,36],[-29,30],[-14,38],[10,82],[33,39],[-36,36],[-64,-3],[-40,-22],[-50,-80],[-57,-13],[-108,35],[-54,3],[-93,-14],[-53,5],[-29,27],[-150,45],[-26,27],[-7,27],[-32,3],[-65,-39],[-64,3],[-15,14],[0,38],[-32,30],[-43,19],[-29,55],[-46,19],[-25,0],[-8,27],[-95,72],[0,29],[59,93],[133,70],[39,68],[-10,25],[-69,0],[-46,-25],[-54,-17],[-50,22],[-15,83],[11,74],[89,93],[-7,33],[58,19],[60,6],[26,21],[10,28],[57,49],[86,20],[81,0],[16,19],[57,38],[111,6],[79,-22],[62,-35],[55,-3],[120,36],[47,33],[248,107],[168,-18],[65,2],[37,49],[51,19],[46,-5],[68,-22],[11,-39],[-18,-44],[14,-43],[72,5],[7,70],[22,12],[179,-8],[50,14],[75,-3],[50,-27],[56,-17],[53,-48],[139,-37],[57,12],[519,39],[72,19],[132,121],[29,49],[35,96],[25,41],[44,39],[49,30],[93,11],[79,41],[72,5],[100,-30],[316,-141],[184,-11],[92,88],[193,12],[169,0],[69,-12],[54,-29],[100,-35],[31,-24],[0,-29],[-146,-59],[30,-47],[68,-21],[105,16],[54,3],[32,-8],[29,-16],[-3,-25],[-18,-22],[10,-22],[33,-27],[39,-22],[61,-20],[61,-8],[36,11],[54,-24],[21,-30],[-3,-28],[-101,-40],[-15,-46],[46,-47],[77,-12],[61,-47],[0,-53],[-15,-76],[-46,-65],[0,-41],[38,-65],[77,-53],[0,-27],[244,25],[107,-6],[197,-38],[190,-24],[93,-3],[90,14],[161,38],[52,-1],[35,11],[108,-17],[54,-18],[70,80],[-47,25],[-75,121],[-22,54],[14,74],[72,79],[90,58],[71,91],[0,90],[-54,14],[-79,-6],[-79,33],[-32,49],[-75,74],[-57,36],[-40,66],[-18,57],[-14,63],[0,93],[-18,58],[-69,115],[-47,41],[-143,49],[-133,67],[-125,276],[-11,60],[7,63],[72,60],[86,33],[103,24],[69,-43],[60,-6],[18,50],[-4,49],[-32,49],[-57,36],[-29,33],[-18,54],[11,36],[36,41],[14,44],[-25,39],[7,38],[36,41],[72,0],[-5,69],[26,54],[50,42],[71,32],[47,41],[57,201],[-11,90],[-36,6],[-57,-41],[-43,21],[-3,30],[21,52],[53,88],[4,33],[57,63],[115,72],[43,-6],[36,-28],[0,-24],[-54,-44],[0,-36],[54,-2],[73,20],[0,-15],[81,-35],[93,-63],[29,-44],[-18,-5],[-23,-41],[8,-35],[46,-47],[15,-53],[-54,-41],[-77,-18],[32,-41],[20,-8],[-6,-7],[11,-11],[150,-128],[90,-47],[101,-33],[100,-5],[68,-33],[71,-52],[54,-25],[111,0],[44,-13],[42,-36],[11,-36],[65,-81],[-4,-105],[47,-27],[97,-28],[61,-70],[25,-47],[0,-30],[18,-36],[7,-47],[-3,-46],[-11,-25],[-29,-21],[58,-94],[0,-41],[75,-98],[32,-69],[-7,-74],[22,-49],[4,-91],[21,-13],[31,23],[64,16],[53,-29],[-15,-41],[-77,-12],[5,-5],[-21,-24],[-4,-38],[140,-46],[96,13],[61,28],[86,96],[29,-11],[32,-47],[22,-4],[43,-7],[111,28],[-11,14],[-68,19],[-21,29],[-8,161],[-25,29],[14,38],[72,47],[14,44],[15,3],[46,38],[7,55],[-72,109],[-14,52],[-7,41],[24,50],[4,71],[15,44],[-40,38],[-4,36],[11,21],[36,15],[54,-45],[24,28],[65,123],[-14,17],[-88,-16],[-38,44],[0,41],[-54,12],[0,71],[30,41],[16,41],[15,82],[39,36],[69,17],[23,42],[7,41],[-46,53],[0,23],[46,65],[-8,35],[39,41],[-39,100],[0,41],[31,36],[38,29],[39,18],[38,47],[116,59],[15,29],[46,6],[0,-94],[54,-18],[54,0],[0,36],[46,23],[54,-29],[-31,-53],[-54,-18],[-15,-29],[31,-17],[77,0],[61,35],[31,41],[107,82],[8,65],[-38,41],[76,30],[39,53],[7,41],[31,35],[54,23],[7,83],[24,35],[46,12],[46,-35],[85,-165],[38,-47],[8,-118],[31,-35],[0,-47],[46,-123],[8,-53]],[[55826,389643],[52,-49],[52,-28],[149,3],[169,15],[44,-15],[36,-27],[44,-16],[60,56],[52,31],[64,71],[12,40],[72,40],[97,37],[32,6],[189,0],[51,10],[77,-6],[44,-13],[48,19],[32,25],[278,-18],[-1,-16],[84,-41],[39,-47],[31,-123],[35,6],[41,70],[30,17],[225,74],[124,69],[117,45],[120,16],[66,-1],[99,-16],[36,-36],[25,-47],[28,-14],[26,-2],[41,11],[47,32],[71,-6],[62,-30],[39,0],[18,56],[29,31],[41,16],[75,5],[137,56],[59,-2],[40,-28],[9,-27],[-9,-31],[-65,-99],[-27,-28],[-31,-16],[-79,-10],[2,-25],[99,-64],[59,-15],[50,0],[116,46],[78,-37],[176,-12],[41,8],[56,1],[34,13],[42,61],[46,2],[38,-31],[0,-12],[-60,-56],[-12,-47],[-18,-16],[-61,-32],[-83,-2],[-63,-39],[33,-8],[68,-37],[66,-74],[27,-73],[-171,-183],[-36,-8],[-29,8],[-41,-8],[-59,-38],[-9,-46],[21,-72],[-32,-56],[0,-19],[68,3],[57,23],[74,47],[117,54],[56,-16],[28,-32],[0,-39],[-27,-67],[4,-65],[70,-86],[41,-14],[50,-13],[54,6],[67,38],[46,11],[86,-9],[42,7],[98,43],[106,21],[92,56],[45,2],[52,-28],[165,-36],[59,-33],[79,-21],[97,-102],[20,-50],[-13,-30],[-32,-16],[-47,-8],[-65,-57],[24,-28],[-8,-54],[-57,-48],[-22,-74],[-70,-12],[-39,11],[-94,48],[-39,-11],[-7,-29],[21,-33],[9,-49],[-18,-22],[-54,-17],[-46,-2],[-40,14],[-32,-13],[-31,-31],[-27,-43],[-2,-76],[43,-60],[85,-72],[132,-135],[-9,-313],[5,-200],[30,-222],[86,-39],[99,161],[58,139],[25,24],[47,13],[111,-2],[25,-24],[88,-26],[43,-28],[2,-83],[-22,-21],[-50,-4],[-92,12],[-68,-35],[-25,-78],[0,-83],[32,-43],[99,-87],[18,-26],[18,-31],[-11,-48],[-58,-36],[-43,-8],[-81,-42],[-27,0],[-23,17],[-34,6],[-155,-56],[-23,-109],[-104,-72],[-81,-17],[-40,-19],[-20,-17],[-14,-35],[-34,-30],[-25,-40],[-74,-44],[-43,-36],[-74,-12],[-88,-35],[-52,-10],[-262,10],[-65,28],[-134,-9],[-271,6],[-45,35],[-36,16],[-133,24],[-235,-122],[-143,-47],[-168,-165],[-23,-164],[0,-83],[35,-36],[52,-17],[57,-36],[95,-108],[13,-28],[0,-26],[-11,-19],[-20,-12],[48,-176],[113,-111],[130,-53],[44,-49],[39,-29],[71,-32],[45,-46],[84,-19],[18,-10],[16,-16],[-2,-29],[-46,-40],[1,-26],[79,-118],[34,-32],[38,-4],[30,-34],[153,-82],[79,-56],[23,-33],[-5,-40],[-22,-41],[6,-75],[18,-109],[24,-47],[36,-132],[9,-148],[48,-95],[4,-59],[-8,-21],[0,-83],[-14,-90],[32,-31],[-11,-55],[-79,4],[-3,-19],[14,-24],[43,-19],[20,-30],[-11,-237],[5,-44],[23,-28],[14,-42],[58,-46],[149,-52],[91,-82],[81,-44],[90,-21],[95,22],[40,-6],[41,-26],[14,-42],[-41,-21],[-36,2],[0,-14],[95,-71],[27,-42],[-4,-38],[-167,-195],[5,-57],[-16,-13],[-58,-17],[-137,-18],[-89,-37],[-73,-2],[-83,-14],[-43,11],[-27,29],[-120,73],[-56,45],[-77,22],[-20,44],[-2,31],[-14,17],[-41,19],[-162,7],[-42,14],[-37,3],[-138,-12],[-158,19],[-38,0],[-111,-25],[-43,5],[-27,27],[-6,33],[35,70],[36,49],[5,51],[-16,27],[-104,40],[-75,14],[-135,5],[-83,21],[-129,-6],[-93,18],[-43,22],[-31,32],[-30,63],[-61,19],[-56,2],[-27,-10],[-167,-98],[-277,-236],[-129,-97],[-36,-12],[-29,3],[-16,21],[0,24],[25,52],[2,26],[-9,16],[-18,7],[-23,-5],[-15,-115],[40,-102],[102,2],[52,-28],[41,-70],[21,-79],[-12,-46],[-14,-17],[-32,-14],[3,-30],[-53,-41],[-76,-112],[11,-52],[42,3],[39,-23],[85,-19],[63,23],[113,14],[97,36],[63,14],[19,14],[13,44],[18,24],[29,14],[36,3],[25,-5],[68,-59],[43,-90],[39,-43],[-21,-32],[-4,-85],[45,-98],[-2,-27],[-41,-39],[9,-14],[-20,-21],[-29,-14],[-129,29],[-67,-1],[-26,-11],[-9,-44],[95,-107],[-4,-147],[-24,-25],[-97,-38],[-68,-59],[-27,-54],[-2,-38],[18,-38],[106,-55],[43,-37],[0,-76],[41,-5],[36,-14],[50,-56],[25,-72],[68,-56],[13,-23],[-4,-41],[-36,-27],[-23,2],[-23,16],[-31,7],[-54,-6],[-54,-34],[-23,-26],[-18,-56],[-16,-5],[-58,7],[-61,-30],[-9,-24],[27,-35],[-4,-10],[-30,-25],[-43,-118],[-105,-171],[-34,-26],[-15,-51],[33,-21],[36,-5],[32,-19],[61,-66],[86,-140],[-4,-37],[-18,-29],[-38,-15],[-41,-2],[-32,10],[-36,2],[-58,-28],[-50,-4],[-120,35],[-22,33],[20,53],[-3,23],[68,61],[-1,16],[-16,16],[-92,39],[-11,16],[-49,29],[-52,5],[-52,-24],[-43,-11],[-108,-5],[-154,22],[-135,49],[-21,19],[0,45],[14,12],[27,2],[81,-24],[-7,12],[-85,87],[-24,14],[-25,42],[-121,87],[-29,66],[-75,45],[-25,7],[-183,5],[-92,-21],[-118,-8],[-105,-37],[-51,-64],[8,-56],[-14,-19],[-29,-8],[-44,-40],[-33,-60],[-19,3],[-32,22],[-69,69],[-67,19],[-34,20],[-68,127],[-25,31],[-38,11],[-23,-9],[-17,-25],[-73,-38],[-92,-75],[-50,-79],[-67,-183],[-25,-15],[-104,1],[-62,-41],[-21,-80],[-2,-158],[20,-38],[15,-6],[0,-12],[40,-39],[187,-108],[66,-22],[75,-43],[167,28],[29,19],[18,-9],[2,-62],[-38,-65],[-52,-34],[-165,-55],[-132,-64],[-143,-178],[-205,-370],[-66,-71],[32,-51],[-7,-66],[-43,-56],[-101,-34],[-27,-19],[16,-82],[-14,-14],[-65,12],[-16,-14],[7,-13],[27,-13],[-7,-40],[-34,-12],[-41,17],[-2,-43],[57,0],[20,-10],[18,-40],[34,-42],[5,-29],[-28,-65],[-44,-34],[-18,3],[-12,17],[21,51],[-12,3],[-39,-39],[-73,-111],[-68,-41],[-77,-59],[-53,-6],[-54,59],[-100,64],[-145,76],[-86,67],[-99,14],[-41,-6],[-106,-57],[-13,-59],[-34,-22],[-38,-44],[-27,-71],[11,-65],[48,-78],[7,-29],[-2,-113],[11,-21],[41,-31],[17,-29],[39,21],[70,2],[65,-7],[30,-11],[34,-33],[74,2],[57,-45],[72,-95],[21,-18],[47,-17],[22,-27],[33,-99],[58,-67],[59,-109],[16,-78],[-29,-158],[-2,-121],[-10,-40],[22,-56],[22,4],[34,31],[32,-5],[22,-17],[9,-59],[-9,-167],[-11,-31],[-56,-44],[-34,-13],[-25,10],[-15,19],[-37,-7],[-24,-23],[-18,-32],[0,-58],[-20,-19],[-84,-5],[-63,13],[0,35],[25,21],[-64,2],[-35,-12],[-138,1],[-136,62],[-40,9],[-90,0],[-44,10],[-88,42],[-63,59],[-84,12],[-97,-6],[-38,-15],[-99,-70],[-101,-42],[-30,-7],[-60,11],[-34,-4],[-59,-24],[-9,-12],[0,-28],[12,-16],[-5,-14],[-15,-24],[-57,-40],[-48,-12],[-92,-7],[-99,-32],[-84,-43],[-148,-42],[-48,-28],[-31,-26],[0,-19],[90,-51],[21,-34],[83,-12],[38,-39],[21,-51],[-2,-38],[18,-10],[52,-89],[32,-22],[38,-16],[39,4],[13,5],[20,36],[108,-10],[25,-7],[61,-34],[52,-65],[-2,-29],[-34,-14],[-38,-104],[0,-118],[-24,-23],[-52,28],[-16,-4],[-7,-17],[86,-57],[-9,-25],[-47,-31],[-11,2],[2,40],[-41,-7],[23,-45],[-5,-14],[-48,-18],[-112,-79],[-9,-65],[-34,-59],[-2,-31],[12,-33],[76,-33],[89,-116],[14,-101],[-49,-118],[-21,-24],[-21,2],[-88,105],[-53,47],[-77,29],[-78,-3],[-46,-30],[-34,-79],[-38,-44],[-52,-28],[-120,-7],[-33,-12],[-77,-9],[-54,12],[-91,45],[-63,20],[-27,0],[-58,-41],[-30,-39],[-11,-75],[-72,-122],[-11,-53],[-29,-37],[-122,-68],[-45,-14],[-174,-22],[-85,-41],[-91,2],[-11,-12],[23,-43],[-9,-11],[-54,-3],[2,-12],[9,0],[21,-28],[-5,-44],[-29,-20],[-4,-26],[15,-18],[3,-26],[-9,-16],[-46,-32],[-76,-20],[-32,18],[0,24],[-34,38],[-29,-12],[-47,-44],[-32,-15],[-43,-7],[-75,8],[-90,-74],[-134,-172],[5,-92],[-14,-51],[-38,-12],[-61,2],[-43,10],[-65,54],[-93,34],[-20,19],[-16,25],[-5,41],[-51,71],[-4,31],[-32,49],[-67,94],[-81,27],[-84,77],[-25,132],[-9,15],[-72,16],[-32,59],[0,27],[14,20],[-45,28],[-28,1],[-137,-71],[-54,-6],[-61,4],[-27,17],[-7,14],[18,28],[68,24],[-21,12],[-29,-7],[-49,-31],[-77,-28],[-43,0],[-29,9],[2,34],[13,12],[-27,9],[-24,-4],[-39,-33],[-65,-39],[-86,-4],[-93,7],[-76,24],[-165,36],[-147,49],[-153,109],[-105,138],[-57,114],[-32,40],[-26,143],[-7,532],[15,153],[-7,381],[25,49],[49,145],[114,233],[37,112],[96,90],[-6,43],[11,12],[-3,30],[153,180],[40,65],[60,215],[23,51],[65,82],[19,70],[-1,142],[13,26],[-4,40],[12,57],[1,46],[-10,36],[9,46],[25,49],[195,225],[42,94],[42,237],[67,126],[30,81],[79,120],[59,112],[116,106],[0,68],[-21,27],[8,188],[-9,20],[0,47],[75,147],[55,65],[98,78],[47,8],[31,24],[-1,129],[39,186],[16,58],[63,107],[16,47],[11,102],[32,62],[5,74],[23,94],[56,104],[37,179],[74,170],[69,124],[61,93],[34,36],[1,16],[40,68],[65,77],[28,50],[5,63],[32,92],[-2,80],[-15,58],[-25,39],[-15,44],[0,60],[21,42],[168,146],[23,55],[23,134],[58,117],[-49,138],[-82,97],[0,63],[35,79],[84,109],[39,76],[80,107],[6,91],[-7,121],[-40,92],[-63,73],[-176,126],[-14,37],[-51,54],[-11,52],[-38,38],[-92,176],[38,177],[52,77],[5,58],[53,101],[23,111],[29,44],[4,62],[25,79],[28,49],[52,57],[11,109],[18,31],[61,61],[-2,55],[-47,49],[-3,34],[12,36],[58,106],[86,56],[59,20],[46,73],[-23,62],[-126,61],[-24,40],[-5,103],[79,150],[5,32],[-5,40],[-26,36],[-116,-11],[-54,-56],[-147,-75],[-37,-13],[-68,0],[-9,-6],[-39,-116],[-36,-65],[-95,-115],[-44,-16],[-47,9],[-59,27],[-139,5],[-5,63],[21,45],[95,129],[-2,23],[-14,9],[-68,-16],[-49,-31],[-9,-26],[-35,-44],[-63,-39],[-47,-18],[-81,-4],[-133,-25],[-31,3],[-62,24],[-110,-83],[-37,-18],[-38,0],[-124,41],[-21,31],[-11,64],[-33,23],[-163,12],[-22,10],[-19,50],[3,103],[49,113],[13,114],[27,22],[15,135],[-31,10],[-58,88],[-26,16],[-21,63],[-35,28],[-45,13],[-186,19],[-56,-23],[-31,-38],[-30,-22],[-30,-9],[-44,18],[-12,54],[88,92],[30,80],[-19,137],[14,63],[182,221],[46,93],[51,77],[56,142],[60,101],[16,43],[45,61],[4,48],[12,7],[16,38],[-4,45],[-66,108],[-9,48],[4,38],[21,48],[87,58],[37,44],[-1,170],[21,143],[16,54],[71,81],[62,-4],[16,10],[63,-3],[67,-54],[16,-33],[0,-38],[29,-38],[46,-35],[41,-29],[51,-22],[128,-25],[37,-77],[9,-118],[38,-28],[70,3],[41,19],[88,3],[41,-34],[80,-90],[74,-16],[38,-15],[57,-32],[42,-45],[29,-16],[46,-16],[50,-6],[74,48],[12,54],[47,81],[-5,41],[8,44],[41,35],[63,3],[91,49],[25,76],[74,83],[71,7],[75,25],[45,55],[8,47],[112,134],[17,52],[-1,86],[54,38],[50,64],[24,96],[71,28],[33,-6],[16,-16],[26,-108],[21,-42],[62,54],[78,26],[9,48],[95,67],[13,32],[16,112],[24,44],[146,74],[37,35],[8,86],[-62,51],[-63,39],[-54,19],[-37,28],[-13,45],[0,111],[-21,36],[-41,35],[-33,19],[-28,4],[-25,24],[-126,-6],[-37,13],[-50,-1],[-71,58],[-17,41],[0,39],[13,44],[33,38],[58,7],[71,-10],[53,-19],[58,13],[0,93],[-20,38],[-100,134],[-46,38],[-17,35],[29,42],[-31,64],[-84,23],[-85,6],[-91,-29],[-99,-231],[-41,-35],[-62,-38],[-46,0],[-83,19],[-41,-13],[-29,-19],[-50,-10],[-25,16],[0,61],[53,153],[37,179],[100,105],[16,61],[-30,142],[20,54],[-1,127],[46,60],[19,44],[54,56],[34,63],[23,18],[30,13],[35,0],[46,-32],[102,-50],[170,-68],[82,-64],[38,-8],[74,0],[88,-16],[91,3],[127,62],[88,32],[82,9],[130,-7],[109,-41],[149,-83],[111,-28],[64,-40],[87,-28],[30,-36],[23,-111],[64,-76],[41,-29],[204,-13],[87,-20],[71,-7],[58,31],[76,57],[66,30],[77,24],[159,127],[41,43],[35,99],[57,92],[43,47],[37,6],[128,0],[201,37],[160,41],[100,34],[93,-37],[56,-9],[201,-77],[165,-50],[237,-101],[229,-126],[116,-43],[84,-43],[173,-117],[105,-102],[80,-40],[84,-59],[69,-24]],[[43945,438075],[100,-71],[59,-23],[253,-58],[52,9],[36,31],[63,10],[30,0],[46,-15],[13,-30],[-13,-40],[4,-34],[43,-2],[52,8],[40,12],[36,24],[34,5],[66,-18],[43,-38],[-10,-78],[33,-19],[50,19],[0,55],[23,74],[0,43],[39,23],[60,0],[96,-40],[63,-44],[13,-30],[-43,-51],[0,-35],[4,-16],[43,-45],[66,8],[0,15],[-20,25],[-40,26],[10,35],[30,15],[53,-2],[53,-56],[33,-86],[27,-15],[33,-5],[63,-48],[-10,-31],[6,-22],[24,-23],[30,-51],[-10,-38],[30,-20],[53,3],[49,-8],[47,-18],[33,0],[36,-20],[40,5],[43,-5],[7,-53],[36,-25],[20,-31],[-3,-28],[66,-33],[-6,-42],[-37,-29],[-7,-18],[10,-17],[-16,-41],[34,-33],[49,-28],[10,-25],[-33,-30],[10,-64],[-42,-50],[10,-74],[-24,-33],[3,-10],[27,-15],[14,-28],[-4,-23],[-53,-36],[-6,-27],[50,-112],[0,-56],[-27,-58],[0,-36],[8,-25],[19,-23],[4,-28],[-10,-25],[-50,-26],[-23,-27],[7,-33],[36,-10],[24,-15],[16,-46],[-39,-51],[13,-12],[0,-31],[-23,-23],[-33,-5],[-20,-15],[0,-46],[-33,-25],[24,-59],[-24,-60],[7,-29],[-26,-25],[-10,-25],[7,-92],[-80,-35],[57,-94],[0,-33],[-46,-61],[-10,-35],[7,-54],[16,-25],[7,-35],[-16,-51],[-25,-14],[-47,-75],[-67,-66],[-98,-122],[-30,-60],[13,-69],[-13,-30],[7,-23],[26,-10],[70,-5],[43,15],[73,8],[42,15],[83,61],[23,89],[30,17],[22,77],[29,27],[38,0],[23,13],[36,-2],[50,-33],[23,-155],[4,-136],[-49,-57],[0,-50],[49,-28],[27,-5],[17,-33],[-4,-20],[-16,-20],[-47,-31],[-23,-26],[10,-27],[1,-48],[-33,-102],[-4,-86],[9,-44],[-31,-68],[0,-71],[6,-25],[15,-14],[10,-171],[26,-13],[13,-23],[10,-66],[-23,-88],[-36,-51],[-3,-23],[17,-76],[-37,-40],[-25,-2],[-35,-20],[-130,-6],[-10,-21],[-173,-23],[-7,-20],[40,-21],[105,-16],[97,-39],[66,-51],[20,-30],[24,-173],[1,-170],[-39,-83],[-15,-117],[70,-195],[8,-70],[-7,-81],[133,-95],[59,-84],[17,-159],[-3,-92],[-62,-91],[-63,-61],[3,-20],[54,-30],[19,-34],[4,-27],[0,-58],[-29,-38],[-45,-383],[0,-158],[-61,-141],[-49,-191],[1,-46],[-82,-142],[-92,-53],[-122,-31],[-77,0],[-10,15],[-99,68],[-83,94],[-30,18],[-33,12],[-175,0],[10,-28],[53,-30],[13,-20],[53,-193],[47,-96],[76,-20],[155,-3],[113,41],[58,13],[61,-7],[60,-41],[19,-38],[17,-66],[7,-145],[-52,-86],[-53,-58],[-152,-155],[-25,-5],[-58,-108],[-33,-139],[-22,-20],[-43,-88],[0,-24],[16,-15],[-48,-121],[-63,-46],[-43,-69],[-109,-109],[-244,-157],[-20,-31],[-23,-70],[-25,-15],[-61,-59],[-153,-88],[-161,-36],[-115,-82],[-38,-112],[33,-94],[-21,-25],[24,-54],[54,-23],[49,-92],[-76,-88],[-146,-230],[-146,-107],[-94,-26],[-178,-91],[-76,-48],[-53,-21],[-79,-5],[-23,-18],[-13,-54],[-65,-26],[-122,-67],[-117,2],[-30,25],[-56,5],[-24,-15],[-9,-56],[-43,-7],[-66,2],[-116,51],[-56,15],[-63,10],[-172,4],[-47,31],[-56,68],[-63,48],[-102,33],[-50,8],[-109,-3],[-119,-44],[-89,-53],[-56,-61],[0,-35],[80,-53],[86,-84],[30,-48],[3,-38],[-45,-68],[-54,-52],[-3,-50],[11,-7],[-1,-112],[-13,-66],[4,-74],[-36,-56],[-17,-45],[46,12],[40,21],[53,10],[82,43],[30,23],[82,97],[67,25],[36,38],[79,56],[86,43],[123,-6],[69,-59],[74,-80],[75,-34],[13,-21],[7,-32],[-57,-43],[-23,-31],[-13,-28],[1,-30],[13,-46],[37,-35],[6,-23],[33,-35],[26,-11],[27,8],[20,-13],[-3,-63],[-60,-31],[-13,-27],[23,-41],[50,-5],[17,-20],[26,-43],[21,-69],[32,-43],[4,-28],[-10,-25],[-30,-13],[-43,-5],[-36,0],[-50,25],[-6,-10],[16,-20],[34,-18],[-1,-12],[20,-8],[47,-61],[0,-45],[-20,-28],[-56,-29],[-3,-22],[-30,-28],[-73,-10],[-62,-44],[-37,-13],[-152,-8],[-26,-20],[-6,-91],[-36,-71],[-27,-28],[-30,-10],[-56,0],[-238,32],[-132,5],[-59,-25],[-162,-99],[-13,-66],[20,-64],[0,-53],[-39,-66],[0,-58],[-37,-71],[-16,-66],[-56,-87],[-52,-55],[-10,-26],[6,-25],[27,-26],[0,-17],[-49,-45],[-96,-201],[6,-68],[14,-19],[-3,-76],[-89,-84],[-16,-94],[-43,-42],[-45,-21],[-22,-75],[4,-34],[-12,-89],[-17,-48],[-3,-56],[-23,-48],[-6,-53],[-60,-16],[-43,28],[-30,74],[-52,15],[-14,50],[33,29],[49,177],[5,173],[-77,53],[-64,62],[-27,4],[-82,32],[-47,3],[-93,91],[-69,20],[-73,0],[-59,-44],[-120,44],[-19,58],[-40,61],[43,50],[33,23],[122,-12],[63,-51],[72,-10],[34,18],[9,61],[99,81],[30,41],[17,33],[-1,38],[23,58],[93,165],[-16,421],[-24,194],[-208,258],[-130,123],[-62,130],[-9,547],[-16,111],[-353,300],[-124,141],[-115,170],[-99,192],[-16,172],[-54,135],[-136,139],[-20,53],[0,145],[6,63],[17,46],[-1,147],[-123,306],[0,43],[-50,168],[-83,86],[-10,35],[23,33],[23,-5],[142,3],[60,23],[39,26],[0,92],[-27,128],[22,92],[22,37],[44,3],[75,-47],[106,34],[281,183],[101,102],[66,88],[119,105],[101,165],[146,106],[190,271],[23,112],[53,182],[74,137],[0,89],[-18,78],[-66,95],[4,108],[28,28],[76,118],[0,70],[-77,112],[-16,94],[-31,100],[-7,97],[-16,12],[-3,33],[23,28],[30,15],[43,5],[40,-6],[43,28],[53,20],[16,37],[23,8],[33,-5],[19,-19],[115,4],[-2,32],[39,49],[41,149],[-1,85],[-23,46],[-8,206],[-39,83],[-8,70],[0,282],[33,221],[-8,65],[27,30],[52,18],[33,3],[30,70],[7,68],[-17,14],[-7,33],[7,28],[49,28],[63,76],[19,2],[50,31],[4,46],[-57,83],[-7,86],[19,87],[23,25],[44,25],[11,18],[-18,26],[6,23],[50,17],[36,-10],[63,0],[23,5],[10,21],[-6,17],[-70,36],[-13,28],[0,35],[19,38],[34,18],[52,8],[3,33],[-46,17],[3,28],[20,20],[30,13],[10,16],[-14,20],[0,25],[180,112],[42,3],[33,40],[26,18],[-96,36],[0,25],[89,81],[0,36],[-32,33],[2,81],[33,33],[53,32],[-33,34],[-50,-20],[-89,-82],[-53,-20],[-43,5],[-17,17],[13,48],[43,24],[-13,25],[-70,20],[-13,23],[10,86],[-37,23],[-115,25],[-176,-52],[-39,-24],[-4,-50],[-17,-27],[-71,-22],[-58,0],[-71,18],[-42,62],[-58,41],[-100,36],[-42,36],[0,36],[71,23],[-12,49],[-36,28],[-13,68],[46,28],[119,-10],[13,33],[-26,20],[-63,13],[-17,38],[33,48],[37,10],[29,58],[7,41],[-14,13],[-23,-23],[-23,-5],[-30,10],[-13,41],[20,27],[26,8],[17,25],[-23,15],[0,31],[9,15],[47,21],[-14,35],[-23,28],[3,36],[30,37],[3,56],[86,23],[-20,79],[16,20],[62,3],[29,16],[146,-23],[84,118],[38,94],[-8,129],[92,129],[252,224],[6,18],[88,59],[36,41],[-1,86],[-16,28],[0,31],[16,22],[66,46],[40,51],[6,106],[43,31],[96,48],[82,81],[7,31],[-17,45],[-33,28],[3,38],[30,26],[66,33],[17,43],[26,30],[122,52],[30,43],[62,-5],[34,22],[42,8],[20,-10],[30,10],[7,12],[43,4],[18,57],[2,59],[39,20],[47,-15],[59,20],[40,29],[36,45],[218,1],[147,9],[42,-32],[29,-63],[30,-27]],[[47080,385465],[80,-5],[34,-10],[43,-34],[4,-74],[26,-23],[44,-5],[84,-34],[7,-36],[-11,-18],[4,-49],[-47,-59],[-10,-28],[1,-54],[-51,-44],[-77,-33],[-26,-21],[-53,-64],[-21,-41],[0,-38],[-37,-53],[1,-65],[28,-31],[43,-17],[6,-23],[-6,-26],[-31,-28],[-44,-7],[-73,-33],[-22,-188],[0,-63],[33,-28],[14,-31],[-7,-26],[-33,-30],[-17,-34],[27,-33],[47,-13],[33,-23],[4,-75],[43,-56],[-6,-101],[-40,-92],[0,-41],[-36,-147],[4,-31],[50,-38],[43,-49],[37,-10],[37,-29],[7,-30],[-43,-57],[39,-31],[-6,-23],[43,10],[34,39],[-4,118],[50,80],[-20,75],[80,71],[-40,57],[26,36],[37,28],[3,158],[27,53],[43,39],[53,6],[77,-24],[7,70],[73,72],[57,31],[57,0],[67,-33],[47,-8],[100,-82],[21,-39],[133,-31],[37,-33],[11,-43],[-4,-37],[-60,-146],[-26,-116],[-3,-28],[13,-5],[33,28],[23,36],[27,87],[53,116],[10,108],[13,5],[-43,180],[-30,24],[-114,5],[-71,35],[-100,31],[-60,57],[-15,42],[-166,108],[-30,11],[-24,28],[0,47],[33,74],[4,39],[-14,28],[0,26],[50,23],[7,26],[-14,64],[23,44],[46,43],[8,147],[16,21],[30,15],[74,-5],[27,-20],[23,-28],[20,-59],[38,-59],[27,-6],[79,6],[21,-47],[-11,-53],[48,-52],[53,-5],[30,-24],[23,-53],[-5,-29],[12,-195],[47,-23],[24,126],[16,16],[21,59],[56,49],[37,18],[112,-3],[39,-18],[63,-2],[35,-73],[38,-33],[85,-7],[43,2],[34,16],[20,38],[23,24],[56,30],[36,2],[42,19],[40,-2],[110,-28],[60,-42],[40,3],[108,44],[50,0],[60,-7],[37,-18],[50,-45],[117,32],[44,-2],[36,-16],[14,-23],[-6,-267],[-14,-29],[-3,-67],[-12,-20],[5,-41],[27,-31],[24,-57],[17,-110],[-6,-75],[-49,-77],[-6,-95],[31,-382],[1,-118],[23,-100],[216,-261],[47,-34],[33,-43],[161,-139],[20,-44],[1,-26],[-37,-93],[-37,-143],[-63,-85],[-47,-44],[-26,-59],[-40,-39],[-19,-63],[0,-109],[97,-77],[29,2],[17,-28],[14,-59],[0,-46],[-27,-57],[-3,-54],[-43,-151],[-37,-39],[-65,-30],[-34,-49],[-75,-68],[-10,-28],[-33,-16],[-26,-2],[-24,7],[-17,16],[-4,20],[-88,-6],[-82,-25],[-100,52],[-101,12],[-213,0],[-51,5],[-28,19],[-20,1],[-86,-17],[-33,-32],[-30,-15],[-30,-8],[-37,3],[-37,12],[-6,43],[-24,20],[-122,17],[-61,-33],[-41,-8],[-58,-70],[-25,-66],[-27,-16],[-130,-11],[-33,74],[-26,13],[-65,14],[-104,43],[-34,5],[-30,13],[-10,31],[-13,13],[-64,18],[-130,15],[-50,12],[-228,-2],[-30,-13],[-46,0],[-28,2],[-43,29],[-90,6],[-47,14],[-110,0],[-50,10],[-44,67],[-44,36],[11,41],[-48,31],[-7,77],[-36,64],[-1,31],[24,44],[36,15],[-3,31],[-34,39],[-26,61],[-24,8],[-40,-34],[-30,0],[-30,5],[-4,26],[-32,14],[-74,-94],[-84,-72],[-53,-18],[-87,-70],[-67,-36],[-28,-1],[-35,-19],[-50,-3],[-54,15],[-27,26],[-5,28],[-49,50],[-10,92],[-30,-3],[-27,-13],[-3,-33],[-27,-21],[-43,-2],[-24,28],[-3,39],[17,58],[46,3],[40,-13],[41,8],[0,23],[-48,44],[-10,26],[7,56],[9,10],[-3,78],[24,30],[55,38],[3,57],[-25,21],[-3,44],[16,49],[43,52],[-8,123],[25,40],[23,6],[10,31],[-13,26],[-30,17],[-12,16],[-25,0],[-37,18],[-17,44],[3,87],[27,34],[41,13],[88,68],[22,83],[-53,47],[-22,30],[-6,37],[9,20],[30,28],[0,26],[-26,13],[-101,165],[23,68],[0,116],[-20,11],[-14,26],[3,107],[44,34],[29,7],[74,90],[10,40],[20,20],[35,14],[16,30],[-38,100],[-47,24],[-26,-9],[-44,24],[-14,41],[20,46],[-9,5],[-8,39],[-3,87],[-34,69],[-23,23],[-23,60],[1,60],[-12,45],[51,109],[-14,58],[-27,36],[6,31],[40,49],[30,23],[137,36],[14,31],[-1,49],[42,50],[3,32],[-31,36],[9,91],[77,105],[64,23],[66,-33],[104,41],[54,0],[13,36],[86,93],[61,13],[40,-5],[10,-26],[27,-15]],[[72716,486135],[5,-7],[101,-1],[81,-24],[16,-36],[1,-39],[10,-14],[24,-4],[8,-20],[-6,-12],[-59,-12],[-36,-21],[58,-19],[58,1],[22,-13],[13,-35],[35,-16],[3,-24],[44,-54],[12,-50],[13,-16],[43,-26],[-1,-40],[-28,-19],[-1,-44],[9,-16],[12,-13],[67,-15],[24,-13],[10,-116],[34,-50],[-19,-30],[0,-23],[41,-28],[37,-5],[49,-23],[33,-39],[-14,-52],[14,-25],[57,-57],[0,-14],[-20,-28],[-19,-2],[-33,-22],[-5,-33],[-13,-17],[-23,-11],[7,-81],[21,-37],[32,-18],[54,-7],[7,-9],[-3,-40],[-18,-20],[0,-15],[51,-23],[9,-19],[0,-79],[-3,-25],[-42,-34],[31,-56],[-2,-107],[-9,-7],[-28,4],[-41,35],[-17,-3],[4,-53],[25,-76],[119,-197],[107,-129],[34,-27],[120,-174],[4,-41],[29,-46],[-11,-92],[12,-54],[-14,-38],[13,-36],[31,-51],[75,-53],[18,-16],[2,-15],[68,-50],[20,-49],[-3,-58],[-19,-39],[-22,-20],[-17,-50],[10,-12],[22,-5],[15,-12],[3,-35],[-48,-17],[-4,-44],[-15,-12],[-50,-5],[-74,-68],[-61,-15],[-139,-9],[-30,-30],[-120,-26],[-118,-3],[-41,15],[-59,53],[-12,35],[-103,90],[-51,6],[-64,52],[-32,29],[-44,79],[-38,32],[-19,-1],[-13,-19],[-33,2],[-72,49],[-31,38],[-24,48],[7,34],[20,34],[16,6],[22,-10],[12,8],[-68,39],[-10,38],[13,9],[35,4],[-31,22],[-49,-5],[-100,26],[-24,19],[4,18],[19,9],[5,20],[-49,1],[-5,16],[9,11],[-65,36],[-2,44],[26,26],[-8,31],[2,71],[36,39],[45,9],[-15,42],[11,34],[-47,57],[-112,46],[-39,3],[-11,-56],[19,-35],[-10,-1],[5,-8],[-49,1],[-28,7],[-56,32],[-65,11],[-66,36],[-94,10],[-46,36],[-5,14],[0,17],[26,29],[-75,22],[0,35],[21,31],[-22,1],[-18,-35],[-83,-34],[-41,-2],[-35,8],[-9,22],[-22,6],[-36,-23],[-51,-6],[-48,20],[-86,-5],[-21,6],[-52,21],[-47,35],[-6,94],[-49,45],[-31,2],[-48,-5],[-52,-19],[-6,-24],[-43,-17],[-23,-28],[-35,-19],[-17,-69],[-100,-44],[-44,16],[-42,6],[-84,-7],[-33,-13],[-11,-11],[-5,-46],[-85,-68],[-29,-7],[-35,6],[-26,16],[-12,20],[-41,21],[-19,-2],[-20,-29],[-27,4],[-29,39],[-21,-11],[-31,-74],[-30,-7],[-57,13],[-7,17],[-28,24],[-45,-18],[-57,7],[-33,-20],[-7,-18],[16,-59],[-5,-22],[-25,-19],[-62,-26],[-70,-2],[-52,10],[-25,15],[-6,14],[15,33],[-24,39],[27,28],[16,5],[24,-5],[2,10],[-46,51],[-43,8],[-42,26],[-43,59],[-29,25],[-25,58],[-47,67],[-45,118],[-39,23],[-28,-13],[-17,-21],[-22,1],[-21,10],[-9,17],[26,20],[46,-4],[8,8],[-12,57],[-26,44],[-53,8],[-43,-43],[-26,-3],[-58,32],[-73,18],[-25,22],[11,14],[-5,18],[-81,16],[-23,11],[-37,45],[-3,19],[-16,9],[-4,123],[13,26],[51,22],[38,-1],[80,-37],[31,8],[27,58],[26,10],[30,-21],[24,2],[23,11],[15,-1],[21,18],[-43,59],[6,19],[31,29],[-4,53],[42,51],[10,54],[-6,15],[-71,27],[-8,55],[43,44],[52,-4],[24,6],[-13,61],[14,22],[32,18],[64,-2],[20,9],[10,20],[75,5],[37,29],[32,4],[33,-17],[0,-20],[20,-12],[150,46],[46,-2],[30,7],[30,10],[17,21],[46,22],[26,-3],[16,-11],[28,1],[27,5],[44,22],[96,5],[27,-3],[17,-14],[37,17],[35,41],[94,17],[55,-2],[54,-26],[24,-1],[30,13],[39,-12],[67,3],[68,-53],[30,21],[47,13],[16,32],[53,-6],[65,76],[30,24],[52,10],[67,1],[29,55],[13,7],[55,20],[85,8],[33,-21],[37,-47],[-7,-52],[62,-97],[1,-38],[-9,-9],[20,-10],[15,1],[58,24],[34,38],[20,62],[52,28],[-2,24],[-50,28],[-9,19],[18,39],[33,2],[58,-36],[25,-5],[47,20],[5,26],[37,27],[-3,10],[-25,4],[-44,-18],[-38,-34],[-26,-2],[-29,23],[-14,28],[14,17],[47,20],[25,31],[18,62],[84,69],[61,8],[4,12],[42,22],[61,8],[87,-15],[66,-21],[40,-57],[-1,-15],[-15,-9],[15,-56],[-7,-13],[18,-7],[28,12],[13,18],[40,1],[8,6],[-18,28],[-20,0],[-38,35],[0,22],[10,9],[46,-1],[17,-12],[5,10],[-28,33],[-8,33],[7,33],[18,16],[23,16],[37,8],[84,-3],[45,-18],[27,-23]],[[67243,398646],[14,-129],[62,-77],[65,-153],[45,-43],[119,-80],[70,-30],[27,-20],[26,1],[17,-13],[3,-13],[-82,-90],[7,-32],[30,-13],[32,-27],[0,-34],[-11,-13],[-34,5],[-27,-13],[-69,-127],[-48,-27],[-111,-21],[-123,-51],[-69,-58],[-79,-95],[-35,-2],[-51,-98],[-12,-62],[-22,-39],[-7,-101],[-35,-39],[-27,-19],[-79,-16],[-52,0],[-48,-10],[-41,-19],[-73,-6],[-34,-13],[-8,4],[-97,-22],[-69,0],[-76,-52],[-84,-101],[-18,-32],[-30,-25],[-61,-113],[-35,-43],[-3,-42],[-14,-31],[7,-53],[-7,-20],[1,-146],[34,-57],[3,-39],[-30,-77],[-14,-96],[-16,-21],[-29,-121],[13,-71],[-26,-82],[14,-127],[36,-60],[14,-52],[-6,-98],[-35,-53],[-3,-78],[-17,-50],[-24,-37],[-52,-40],[-27,-8],[-52,-50],[-120,-45],[-73,-58],[-93,-111],[-66,-118],[-19,-83],[-29,-60],[-38,-150],[-29,-171],[-23,-67],[-24,-40],[-16,-87],[-23,-32],[1,-21],[-18,-30],[-34,-24],[-14,-26],[0,-49],[-10,-43],[-24,-39],[-20,-122],[-55,-82],[-52,-34],[-24,-27],[-69,-29],[-20,29],[-7,40],[-50,119],[-78,52],[-115,29],[-61,36],[-192,52],[-141,13],[-28,16],[-14,18],[-59,24],[-41,10],[-175,11],[-48,7],[-42,19],[-17,16],[-24,71],[-62,59],[-7,79],[-42,37],[4,18],[21,14],[27,0],[34,16],[0,129],[28,93],[-1,227],[28,50],[38,20],[76,76],[105,51],[4,18],[124,142],[149,100],[10,61],[45,59],[62,58],[110,79],[40,4],[39,64],[-7,56],[13,22],[-6,21],[-49,2],[-68,93],[-35,18],[-97,13],[-34,19],[-17,37],[3,88],[51,225],[54,307],[-13,41],[0,40],[24,48],[31,29],[7,32],[-31,81],[17,64],[55,53],[37,24],[45,78],[14,54],[3,87],[17,56],[49,61],[17,66],[51,111],[117,148],[14,64],[30,34],[107,63],[127,112],[76,45],[78,11],[56,52],[107,48],[34,8],[27,-13],[38,-5],[93,29],[56,3],[24,-14],[36,0],[269,-51],[92,-47],[84,-65],[58,-75],[70,-57],[18,-32],[3,-34],[42,-46],[0,-36],[17,-21],[37,73],[25,27],[-20,34],[2,77],[-14,11],[-10,306],[81,155],[15,4],[17,19],[10,26],[-21,20],[7,33],[56,32],[-18,55],[-52,88],[-3,47],[15,4],[20,22],[51,4],[53,-9],[99,15],[107,30],[38,35],[12,35],[-17,39],[0,79],[69,93],[45,32],[3,13],[41,37],[28,16],[28,-18],[44,-80],[14,-114],[0,-42],[-51,-143]],[[65318,390093],[38,-89],[8,-82],[-18,-52],[2,-34],[32,-47],[0,-61],[27,-54],[66,-72],[22,-109],[-2,-44],[-30,-74],[-79,-108],[-23,-17],[-46,7],[-71,-74],[-54,-129],[-6,-43],[-16,-19],[0,-31],[57,-108],[7,-103],[26,-65],[47,-69],[207,-223],[138,-88],[87,-41],[154,-36],[50,-30],[57,-83],[30,-164],[3,-142],[-201,-272],[-75,-76],[-42,-37],[-67,-12],[-53,-23],[-132,-103],[-22,-34],[-2,-40],[-17,-39],[-65,-76],[-53,-96],[-67,-29],[-22,-1],[-51,-61],[-19,-37],[0,-32],[-54,-68],[-43,-14],[-16,2],[-48,-33],[-43,-57],[-5,-32],[-82,-132],[-22,-81],[-39,-6],[-102,-222],[-61,-100],[-8,-82],[40,-47],[-8,-14],[10,-36],[79,-25],[48,-35],[27,-38],[18,-48],[0,-76],[-30,-31],[45,-63],[-3,-29],[-44,-26],[-10,-43],[30,-23],[17,-57],[-2,-29],[-20,-11],[-30,17],[-20,0],[7,-27],[65,-29],[-7,-9],[-1,-89],[-16,-28],[-7,-54],[-53,-70],[-37,-35],[-45,-17],[-31,-3],[-9,-10],[0,-46],[-84,-123],[-34,-22],[-8,-65],[-81,-46],[-26,-42],[-50,-30],[-37,-10],[-60,15],[-87,62],[-103,120],[-122,283],[-8,94],[-1,477],[15,70],[31,83],[38,59],[23,176],[22,100],[46,100],[61,59],[38,53],[-3,48],[34,46],[-2,54],[23,53],[42,39],[2,29],[-17,49],[-48,43],[-7,23],[-1,28],[15,33],[-49,21],[-13,27],[-10,80],[-15,27],[-25,9],[-5,44],[-25,54],[5,48],[-12,21],[-33,5],[-30,-9],[-49,-33],[-20,-23],[-8,-26],[3,-88],[-8,-27],[-42,-25],[-47,-10],[-37,11],[-8,16],[-35,8],[-28,1],[-22,-9],[-35,-2],[-19,12],[-1,20],[28,62],[12,71],[47,40],[10,26],[3,48],[-3,12],[-12,0],[-58,-65],[-92,-18],[-39,-28],[-25,-4],[-20,-19],[-8,-50],[-29,-48],[-52,-29],[-48,-69],[-52,-4],[-57,44],[-10,14],[7,11],[-13,13],[38,24],[22,26],[10,43],[43,28],[-3,40],[37,47],[23,15],[62,10],[35,43],[-9,70],[-24,-6],[-22,11],[-13,35],[40,61],[-5,80],[17,52],[3,44],[-8,25],[-30,5],[-67,-9],[-32,6],[-8,9],[-27,2],[-38,-12],[-92,18],[-67,29],[-22,1],[-70,-19],[-23,12],[-12,44],[-119,54],[-77,-41],[-12,-15],[-3,-50],[-31,-54],[-138,-146],[-53,-17],[-107,4],[-137,68],[-62,6],[-18,60],[30,42],[22,59],[38,52],[129,61],[7,16],[48,30],[12,36],[50,62],[-5,59],[-28,25],[-114,34],[-11,39],[-54,58],[6,54],[18,7],[50,67],[12,34],[-24,75],[-12,75],[-21,3],[-5,27],[15,88],[-42,38],[-3,19],[12,61],[30,45],[0,34],[57,53],[26,3],[49,41],[87,39],[160,-2],[124,14],[75,-6],[52,8],[30,9],[59,58],[55,38],[47,0],[38,-9],[0,-23],[37,-4],[67,23],[68,-2],[27,-9],[25,-42],[23,-18],[17,-32],[1,-24],[21,-16],[110,-19],[0,-22],[77,-40],[30,-64],[38,2],[15,28],[19,14],[36,-2],[49,-31],[30,-40],[-8,-42],[-51,-62],[22,-47],[7,-42],[1,-58],[-12,-19],[-6,-67],[23,-12],[10,-23],[5,-72],[18,-14],[37,-4],[37,12],[37,46],[60,52],[15,25],[62,38],[94,4],[36,-30],[17,-5],[22,-52],[70,-79],[1,-76],[30,-47],[49,-11],[95,36],[49,-8],[8,-9],[35,10],[7,15],[-5,53],[10,4],[18,33],[58,6],[35,19],[69,59],[31,77],[8,70],[7,171],[-24,58],[-38,59],[-97,111],[-5,28],[0,31],[29,46],[24,19],[26,47],[0,77],[23,70],[30,159],[24,46],[-16,34],[8,65],[-15,27],[-3,71],[-32,34],[-5,21],[6,19],[-28,100],[2,55],[12,21],[32,24],[8,47],[60,75],[82,25],[52,3],[37,22],[-2,17],[-23,25],[13,17],[72,25],[15,13],[22,29],[-1,48],[16,19],[29,-4],[8,-13],[-7,-64],[8,-94]],[[45186,426689],[15,-11],[57,4],[37,17],[31,27],[44,7],[75,-14],[43,22],[22,3],[89,-53],[38,-59],[-7,-88],[-92,-147],[-53,-218],[-61,-123],[-15,-95],[1,-446],[-15,-200],[1,-459],[33,-594],[46,-147],[1,-294],[20,-206],[-15,-9],[-56,-95],[-28,-201],[-46,-118],[-6,-143],[69,-136],[1,-46],[40,-79],[41,-50],[62,-31],[66,-77],[109,-78],[157,-163],[289,-370],[19,-48],[33,-37],[57,-113],[72,-104],[39,-94],[84,-135],[8,-81],[-13,-55],[4,-108],[56,-180],[0,-100],[-19,-71],[-80,-68],[-2,-62],[-13,-41],[-34,-43],[2,-30],[-44,-50],[-54,42],[-77,82],[-38,100],[-1,105],[-15,106],[-31,112],[-112,205],[-34,-12],[-43,-88],[-3,-211],[-13,-164],[7,-37],[-16,-26],[0,-60],[-21,-50],[1,-122],[26,-40],[18,-60],[-5,-54],[-23,-11],[-31,-39],[-6,-41],[25,-71],[0,-29],[-28,-41],[22,-28],[0,-41],[-31,-41],[3,-91],[6,-14],[41,-29],[52,-93],[2,-21],[-76,-5],[-21,-26],[-6,-39],[43,-29],[47,-4],[41,-14],[30,-64],[-21,-25],[-9,-57],[6,-120],[17,-20],[-6,-235],[-41,-44],[-18,-36],[-13,-34],[0,-55],[-40,-57],[-37,0],[-101,19],[-37,17],[-34,47],[-47,41],[-234,-63],[-68,19],[-26,15],[-12,90],[-19,34],[-19,24],[-78,52],[-6,29],[0,36],[25,31],[3,26],[-4,130],[56,110],[-6,16],[-50,0],[-25,-12],[-15,-23],[-32,-22],[-53,-2],[-18,31],[12,88],[-9,14],[-7,72],[22,93],[24,24],[69,25],[43,76],[3,41],[69,43],[15,48],[38,55],[24,24],[51,24],[-1,153],[-10,29],[-3,103],[-41,93],[-14,157],[-43,44],[-9,23],[0,173],[-24,93],[11,60],[-10,74],[10,34],[37,64],[-1,22],[-28,64],[-37,196],[11,55],[-11,169],[-39,193],[-85,165],[-22,82],[-43,44],[-13,29],[-4,160],[59,84],[28,22],[0,57],[-14,18],[-12,86],[-31,35],[-46,89],[-19,51],[6,39],[-16,27],[-112,90],[-66,119],[-87,94],[-288,184],[-18,19],[-69,30],[-146,98],[-162,364],[-56,11],[-12,22],[-69,70],[-97,74],[-50,112],[-6,50],[-4,160],[22,87],[59,74],[78,67],[90,46],[59,-5],[19,-19],[0,-77],[19,-21],[47,-15],[68,3],[57,17],[6,29],[-16,38],[-35,48],[-37,19],[12,57],[-21,26],[-38,10],[-63,102],[7,27],[196,34],[75,89],[-10,23],[-47,24],[-28,2],[-19,15],[0,38],[47,39],[0,23],[-22,48],[18,12],[39,4],[46,44],[16,99],[-48,26],[-9,47],[96,91],[75,43],[50,8],[23,-8],[70,1],[100,93],[7,59],[48,59],[19,166],[-6,4],[-4,186],[43,89],[28,172],[16,24],[3,64],[-13,46],[12,24],[34,31],[33,16],[55,7],[75,-17],[72,-78]],[[71786,438493],[0,-53],[-31,-123],[-69,-36],[-69,-53],[-15,-58],[-184,-95],[-62,-52],[-30,-65],[-69,-36],[-85,-23],[-229,-124],[-169,-36],[-100,-11],[-114,-37],[-38,-45],[-25,-51],[-41,-122],[-6,-56],[-74,-89],[-54,-100],[-107,-77],[-69,-35],[-23,-77],[-77,-47],[-30,-65],[-85,-53],[-31,-70],[-15,-71],[-115,-35],[-99,-12],[-139,-188],[-53,-95],[-38,-46],[0,-277],[15,-170],[85,-77],[116,-82],[107,-24],[215,-23],[130,-23],[46,-41],[0,-89],[-15,-59],[-77,-58],[-107,-65],[-115,-53],[-146,-41],[-46,-24],[-115,-18],[-46,-53],[-69,-129],[-15,-59],[23,-59],[0,-94],[24,-171],[84,-70],[70,-223],[76,-106],[1,-95],[-13,-62],[-105,-80],[-38,-46],[-33,-10],[-40,2],[-14,8],[-52,0],[-26,19],[-182,42],[-42,21],[-21,27],[-49,27],[-38,10],[-45,48],[-31,3],[-56,-19],[-41,35],[-40,99],[-54,-12],[-25,14],[-28,0],[-57,24],[-37,-39],[-100,-11],[-30,41],[68,53],[108,64],[69,24],[31,53],[-48,26],[-45,-1],[-15,22],[4,66],[17,32],[4,32],[-11,27],[-24,15],[-56,-2],[-52,29],[-73,11],[-52,21],[-62,0],[-45,-35],[-49,-16],[-160,-3],[-141,6],[-182,-48],[-261,11],[-92,-17],[-161,-166],[-95,-24],[-109,-2],[-46,5],[-97,50],[-10,22],[20,24],[22,14],[76,23],[76,-8],[28,-10],[34,55],[56,65],[22,81],[37,57],[17,51],[24,32],[28,19],[16,40],[92,48],[121,76],[94,30],[90,-2],[98,-25],[111,-71],[38,-13],[56,-3],[102,-50],[102,-6],[201,-59],[27,-25],[75,-9],[35,-13],[51,-40],[67,-29],[80,26],[31,24],[24,32],[7,35],[-25,77],[-55,99],[-11,51],[-10,84],[0,174],[10,38],[-10,16],[7,26],[-22,47],[-75,23],[-112,-31],[-73,-8],[-26,7],[-54,-31],[-62,-2],[-32,7],[-41,-21],[-94,-5],[-28,2],[-31,19],[-84,27],[-128,-3],[-70,5],[-52,8],[-22,20],[-130,20],[-60,2],[-48,38],[-122,34],[-73,51],[-27,37],[-35,22],[-54,65],[-100,188],[-3,22],[-35,33],[-1,213],[18,32],[-11,88],[4,51],[59,5],[24,-11],[70,-64],[36,13],[19,-11],[35,-2],[21,-10],[31,-29],[10,-37],[42,-38],[35,-16],[174,-8],[38,6],[55,39],[14,118],[32,12],[19,26],[78,47],[10,24],[-15,54],[0,38],[-47,35],[-133,11],[-41,8],[-18,13],[14,70],[48,74],[7,47],[-7,13],[-281,97],[-18,8],[-27,36],[-127,58],[-61,-41],[0,-8],[-38,-5],[-10,44],[-60,74],[-17,68],[-90,48],[-18,32],[0,27],[27,24],[60,7],[3,11],[57,39],[48,52],[31,16],[61,13],[28,16],[18,-10],[90,10],[21,19],[44,73],[28,30],[1,68],[24,40],[47,24],[13,27],[-1,82],[7,29],[21,22],[69,34],[32,40],[76,3],[163,-139],[0,-26],[32,-58],[31,-27],[70,-27],[65,-37],[84,-67],[49,-26],[142,-67],[70,-63],[-7,-70],[-17,-16],[-40,3],[-254,-121],[-19,-2],[-45,-21],[-14,-32],[4,-35],[17,-34],[111,-56],[22,-21],[34,-14],[45,-5],[39,-27],[76,-31],[35,-30],[34,-58],[-22,-8],[4,-10],[-61,-53],[5,-14],[-8,-27],[7,-30],[41,-52],[73,-35],[80,-51],[77,-18],[20,-16],[38,0],[22,8],[102,127],[71,64],[62,84],[46,37],[108,29],[99,1],[23,13],[54,0],[42,10],[34,19],[4,109],[13,18],[-9,60],[-11,2],[-25,24],[-27,64],[3,31],[28,30],[101,5],[38,15],[31,35],[25,5],[37,25],[28,3],[88,-20],[92,25],[32,29],[43,63],[5,72],[-24,23],[-3,26],[37,38],[104,14],[88,-36],[31,0],[8,10],[22,-6],[38,59],[0,65],[-96,59],[-38,37],[-7,24],[-21,14],[-18,34],[0,74],[-10,22],[-21,19],[-66,29],[-45,45],[7,38],[77,87],[85,0],[329,-53],[200,-88],[115,6],[92,77],[154,17],[130,89],[146,6],[107,58],[-23,48],[54,47],[123,41],[92,-24],[84,60],[138,52],[61,-46],[-53,-36]],[[61358,396554],[18,-2],[43,14],[73,2],[19,-7],[84,5],[83,-17],[17,-15],[-10,-18],[-5,-80],[-38,-52],[-20,-93],[-44,-38],[-19,-57],[-22,-30],[-79,-57],[-22,-5],[-13,-48],[-23,-38],[-44,-41],[-72,-46],[-39,-7],[-106,0],[-72,-20],[-176,-97],[-110,-83],[-44,-15],[-14,-21],[2,-16],[22,-20],[15,-33],[-7,-29],[21,-16],[17,-39],[8,-60],[-15,-27],[0,-31],[37,-101],[56,-25],[35,-31],[8,-20],[6,-192],[-22,-62],[-13,-15],[-19,-163],[-41,-25],[-6,-12],[-61,-26],[-13,-16],[-75,-6],[-56,7],[-44,40],[-10,18],[2,46],[17,24],[-1,58],[20,47],[-2,73],[-29,72],[20,43],[1,65],[-19,37],[-39,36],[-19,37],[-37,34],[-70,51],[-62,24],[-25,3],[-21,-6],[-18,-44],[-27,-34],[-42,-26],[-30,-2],[-50,18],[-68,10],[-56,36],[-105,20],[-32,20],[-12,22],[-27,11],[-29,-4],[-27,-25],[-92,-57],[-80,-111],[-120,-81],[-8,-25],[-50,-60],[-29,-67],[-35,-34],[-71,-10],[-45,1],[-110,40],[-35,43],[-24,15],[-91,6],[-143,38],[-118,75],[-23,37],[-41,106],[-27,11],[-51,56],[4,20],[89,70],[23,39],[2,58],[-10,37],[-34,67],[19,43],[-6,13],[-47,10],[-77,-4],[-64,16],[-105,2],[-91,-31],[-38,-2],[-70,13],[-114,48],[-57,44],[-39,79],[-89,68],[-72,50],[-62,14],[-96,63],[-70,27],[-52,11],[-245,19],[-40,11],[-31,41],[0,57],[-24,25],[-19,189],[-8,34],[-31,36],[-2,67],[42,88],[62,61],[-2,7],[-50,6],[-6,13],[6,15],[17,18],[27,3],[22,-3],[15,-33],[31,14],[6,49],[21,52],[46,35],[153,52],[80,35],[77,14],[73,27],[239,31],[62,26],[100,-2],[138,-31],[48,-31],[3,-13],[42,-18],[112,-16],[78,-39],[71,-10],[142,-39],[51,-34],[51,0],[57,-15],[40,-17],[14,-27],[50,-24],[43,-11],[62,-35],[42,-4],[14,35],[37,-1],[45,-28],[40,-3],[128,4],[82,13],[115,89],[45,4],[89,49],[36,0],[49,-25],[11,-41],[-7,-50],[33,-68],[105,-100],[21,-28],[4,-20],[19,-12],[-4,-11],[45,-34],[66,-31],[147,-49],[68,-45],[120,-19],[97,0],[47,9],[114,64],[57,94],[0,71],[-17,58],[-33,38],[-6,28],[68,24],[19,22],[46,104],[83,73],[51,27],[38,58],[95,24],[20,-6],[30,-28],[49,-21],[4,-80],[-33,-138],[0,-108],[26,-92],[98,-91]],[[45262,389291],[57,-15],[146,-4],[43,-35],[64,-29],[43,-2],[39,9],[163,62],[69,3],[41,0],[8,-67],[111,-28],[43,-2],[141,59],[69,11],[67,-18],[21,-32],[8,-65],[-43,-59],[0,-72],[36,-51],[8,-61],[-21,-44],[-37,-26],[-35,-17],[-45,-6],[-8,-29],[3,-69],[13,-93],[-13,-38],[-14,-16],[0,-61],[-39,-76],[-24,-11],[-59,-4],[-85,-50],[-8,-69],[19,-48],[27,-30],[88,-31],[8,-65],[-18,-39],[-69,-74],[2,-53],[-55,-56],[-53,-88],[38,-59],[-23,-71],[-82,-37],[6,-110],[11,-28],[-26,-119],[-17,-50],[-44,-31],[-54,-58],[-5,-33],[-24,-41],[-8,-70],[0,-27],[19,-26],[141,-10],[51,-18],[16,-60],[-8,-23],[-35,-34],[-5,-45],[-29,-35],[-72,-7],[-61,19],[-32,25],[-13,28],[-41,25],[-30,-59],[-22,-164],[22,-20],[26,-42],[24,-8],[162,82],[48,2],[19,-29],[-5,-51],[-27,-25],[-16,-121],[-50,-36],[-48,2],[-43,20],[-21,20],[-11,28],[-27,19],[-38,-59],[-11,-34],[12,-29],[-15,-60],[-75,-67],[-18,-29],[0,-27],[-27,-79],[-21,-154],[-29,-68],[-32,-35],[-28,-8],[-21,-375],[-38,-118],[1,-88],[13,-17],[8,-37],[9,-183],[16,-20],[0,-71],[-53,-58],[-22,-56],[3,-61],[-21,-39],[-5,-80],[-18,-38],[-48,-25],[-72,44],[-8,82],[-26,66],[-20,18],[-11,27],[2,30],[-61,165],[0,111],[-54,171],[-77,94],[-168,117],[-62,94],[-2,22],[-38,42],[-29,345],[-5,245],[-41,191],[0,63],[-21,43],[-25,126],[-24,56],[-58,75],[-81,154],[-34,122],[0,135],[37,72],[179,161],[60,35],[-60,53],[-58,34],[-61,22],[-61,6],[-41,37],[4,54],[-41,40],[-16,48],[110,25],[118,104],[45,81],[28,91],[8,79],[-5,97],[-41,110],[-41,78],[-33,207],[0,97],[36,84],[49,82],[48,44],[42,129],[11,332],[16,32],[61,13],[69,-3],[98,-54],[62,-19],[57,-56],[45,-28],[73,-19],[160,-25]],[[62302,386366],[0,-35],[91,6],[39,-41],[7,-35],[46,-53],[100,-23],[99,-6],[39,-12],[8,-82],[30,-106],[-30,-71],[-31,-41],[31,-23],[30,-41],[146,-54],[54,-70],[53,-147],[8,-153],[54,-70],[54,-36],[122,-147],[31,-46],[8,-65],[38,-53],[108,-106],[15,-41],[53,-59],[-7,-135],[-46,-47],[-38,-71],[0,-270],[-38,-59],[-38,-124],[-61,-12],[-15,47],[0,65],[30,47],[15,65],[0,70],[-23,124],[-23,71],[-108,111],[-23,47],[-114,59],[-16,64],[-61,-46],[-92,-42],[-84,-59],[-45,-47],[-100,-6],[-92,-24],[-99,-52],[-191,5],[-16,47],[-84,18],[-69,47],[-15,53],[-84,64],[-123,-17],[-7,47],[45,41],[-76,29],[-115,30],[-107,-1],[-138,-11],[-137,-83],[-130,-130],[-16,-52],[-91,-36],[-61,-35],[-84,-30],[-77,-47],[0,-53],[-336,-253],[46,-29],[100,-30],[84,-47],[-16,-41],[-38,-47],[-114,-47],[-61,-106],[-15,-77],[0,-70],[23,-71],[-8,-64],[-22,-48],[7,-41],[-46,-53],[-38,-23],[8,-94],[-8,-47],[-61,-47],[-92,11],[-92,118],[-23,58],[0,206],[-161,336],[-31,88],[-8,70],[-31,65],[0,224],[23,211],[-199,177],[-31,52],[-69,71],[-46,77],[-23,64],[-85,164],[0,77],[31,100],[7,106],[69,153],[53,94],[160,188],[77,30],[298,-5],[77,-30],[115,-112],[31,-129],[-8,-59],[1,-323],[38,-53],[69,-12],[30,-18],[0,-29],[24,-23],[15,17],[0,65],[22,129],[77,12],[46,-23],[-8,-36],[-46,-76],[54,-47],[46,-6],[0,41],[99,12],[31,41],[-8,89],[7,158],[31,30],[38,135],[0,112],[-39,118],[0,41],[31,53],[76,17],[38,59],[8,41],[53,42],[69,29],[222,12],[84,-6],[77,24],[0,59],[37,82],[39,30],[130,35],[421,36],[91,17],[54,-11],[8,-47],[-61,-48]],[[184455,469312],[-706,5],[-503,491],[259,660],[178,331],[153,330],[608,365],[809,131],[633,-4],[-129,-487],[-79,-389],[198,-449],[-408,-465],[-1013,-519]],[[64620,440362],[94,-4],[31,-20],[57,-6],[54,25],[134,10],[184,36],[70,47],[130,17],[76,48],[98,35],[80,0],[65,-39],[84,-13],[28,-16],[16,-19],[13,-66],[-3,-24],[-13,-18],[-31,-16],[-67,-6],[-68,-25],[-29,-43],[13,-26],[18,-18],[16,-36],[65,-54],[84,-16],[92,0],[162,-76],[-8,-65],[-69,-71],[15,-56],[16,-25],[-2,-20],[-55,-30],[-47,-86],[-49,-18],[-77,-106],[-31,-65],[-4,-49],[-15,-30],[0,-60],[50,-50],[31,-98],[36,-38],[40,-239],[13,-30],[26,-34],[57,0],[61,-38],[86,-158],[5,-45],[44,-35],[29,-41],[3,-18],[-3,-16],[-34,-24],[-130,-68],[-13,6],[-31,-38],[-21,-10],[-59,2],[-31,59],[-67,-37],[-179,-10],[-18,-12],[-34,-6],[-97,19],[-23,20],[-24,47],[-43,46],[-22,5],[-31,42],[-21,12],[-89,14],[-68,66],[-5,21],[-92,60],[-71,-3],[-19,-31],[-115,-24],[-75,-26],[-60,-6],[-71,30],[-88,-12],[-42,12],[-36,26],[-24,30],[-4,23],[-25,22],[-115,23],[-112,-14],[-2,-44],[-31,-18],[-79,2],[-20,14],[-8,77],[-8,20],[-16,5],[0,18],[-21,17],[0,66],[-31,70],[-5,38],[-34,14],[-100,80],[-33,41],[-63,116],[-38,46],[-36,63],[-47,100],[-24,105],[-25,16],[8,104],[79,116],[37,78],[16,15],[91,60],[68,35],[125,18],[93,32],[42,82],[52,53],[23,12],[13,27],[-47,24],[-32,33],[-38,2],[-18,26],[-3,20],[21,260],[54,88],[92,18],[154,-35],[46,-29],[84,-124],[6,-150],[39,-31]],[[57152,469618],[0,-92],[56,-87],[18,-56],[-4,-64],[-23,-26],[3,-51],[66,-64],[94,-130],[10,-17],[-10,-6],[17,-5],[0,-27],[-12,-20],[-74,-30],[-91,-63],[-122,-111],[-29,-37],[-13,-36],[5,-51],[-137,-56],[-113,-10],[-55,-23],[-12,-58],[-22,-23],[-238,-170],[-37,-54],[-29,-22],[-49,-25],[-32,0],[-21,43],[-71,-30],[-62,-95],[-73,-16],[-68,17],[-43,-13],[-34,10],[-36,55],[-123,62],[-84,28],[-96,4],[-61,-8],[-48,-16],[-94,-3],[-176,67],[-22,25],[-20,51],[10,60],[-7,43],[-18,27],[-44,37],[-20,113],[7,188],[61,95],[49,51],[22,40],[9,141],[-13,90],[-18,35],[-26,6],[-5,20],[26,10],[25,-3],[11,9],[30,-26],[44,20],[2,48],[28,5],[135,87],[31,27],[13,54],[57,-7],[52,-50],[79,-27],[184,4],[39,13],[61,7],[137,61],[45,0],[30,-29],[37,-18],[73,-1],[32,8],[9,33],[35,13],[66,-1],[58,26],[60,2],[109,59],[78,6],[42,-26],[47,12],[76,52],[55,48],[18,29],[38,17],[31,-11],[18,-29],[12,-86],[35,-49]],[[46921,429125],[30,-25],[-10,-102],[13,-31],[-20,-35],[-79,-76],[-37,-61],[-42,-23],[-31,-3],[-243,-341],[0,-39],[48,-68],[3,-59],[-12,-21],[-29,-14],[-72,-63],[-7,-72],[-39,-50],[-29,-60],[-23,-27],[-30,-22],[-16,-3],[-30,-48],[-3,-56],[-141,-274],[-30,-68],[-16,-72],[-72,-107],[-19,-73],[-39,-25],[-35,-72],[-67,-41],[-39,-40],[-12,-60],[-64,-37],[-50,-4],[-59,-20],[-47,5],[-44,33],[-24,5],[-25,3],[-57,-18],[-43,7],[-11,25],[5,27],[-48,36],[-32,0],[-71,-47],[-77,-3],[-32,10],[-21,51],[-61,23],[-37,24],[-38,27],[-24,31],[-16,36],[0,71],[149,226],[84,80],[16,28],[22,80],[31,51],[42,33],[81,-5],[21,23],[11,31],[0,60],[24,47],[39,152],[30,41],[15,60],[92,200],[53,41],[38,53],[62,53],[39,128],[-4,26],[35,63],[-3,47],[12,34],[59,26],[35,-16],[90,-13],[47,13],[27,24],[0,30],[-47,43],[4,35],[-7,23],[-30,3],[-32,19],[3,55],[29,20],[0,28],[54,59],[3,25],[22,27],[69,13],[48,-15],[4,47],[37,10],[25,-4],[28,-21],[-5,-47],[34,-38],[63,-15],[74,7],[131,105],[35,19],[35,2],[35,-13],[39,-36],[42,-8],[33,-17],[15,-20],[24,-18],[30,-6],[62,-52]],[[52676,432546],[20,-33],[82,-77],[92,-54],[60,-53],[10,-64],[-10,-69],[5,-150],[63,-201],[27,-61],[87,-131],[72,-62],[99,-63],[14,-19],[-9,-31],[-95,-65],[-41,-39],[-33,-81],[-19,-11],[-466,-161],[-55,-7],[-58,14],[-263,104],[-137,3],[-13,8],[-87,10],[-187,47],[-94,17],[-31,14],[-29,29],[-15,31],[6,62],[50,41],[50,26],[84,19],[165,5],[34,20],[25,48],[40,45],[34,19],[100,108],[29,63],[6,121],[-60,84],[-34,19],[-125,7],[-231,-122],[-109,-96],[-140,-51],[-118,3],[-304,116],[-140,65],[-35,29],[-53,64],[-15,36],[0,36],[21,36],[58,52],[2,53],[-94,91],[0,93],[9,17],[53,40],[131,0],[53,-8],[34,-25],[38,-9],[110,-7],[64,-33],[69,-6],[118,18],[163,36],[169,4],[232,66],[146,-17],[30,59],[-22,18],[-13,26],[-3,98],[19,27],[40,26],[41,0],[46,36],[28,7],[82,-9],[15,-17],[7,-62],[-10,-58],[41,-67],[75,-71],[0,-26]],[[60144,433880],[20,-34],[65,-31],[60,-3],[56,9],[29,22],[40,4],[76,-62],[61,-28],[48,0],[88,37],[49,3],[36,-18],[56,-37],[-20,-65],[0,-37],[73,-132],[32,-35],[52,-33],[20,-52],[1,-32],[-36,-24],[-113,-40],[-68,-47],[-36,-12],[-61,15],[-60,-15],[-89,-99],[-28,3],[-36,49],[4,99],[-8,37],[-29,40],[-36,31],[-44,15],[-56,6],[-53,16],[-116,126],[-49,28],[-48,0],[-48,-10],[-89,-70],[-52,-66],[-4,-111],[65,-79],[36,-99],[0,-47],[-12,-37],[-28,-33],[-8,-136],[-32,-56],[-44,-34],[-68,-9],[-350,67],[-117,9],[-36,9],[-36,-3],[-49,-37],[-44,3],[-68,75],[-13,79],[-80,124],[-25,62],[-97,74],[-221,228],[-24,43],[-37,30],[-20,62],[-4,133],[20,77],[40,49],[32,93],[60,43],[89,25],[140,6],[246,-46],[189,-68],[49,-9],[172,-3],[45,10],[28,21],[36,32],[60,73],[92,44],[41,3],[48,-3],[48,-21],[17,-26],[24,-15],[88,-18],[37,-40],[24,-102]],[[45761,445579],[53,-1],[83,19],[72,-6],[54,-20],[40,-33],[17,-36],[7,-34],[-17,-39],[-76,-77],[-119,-81],[-438,-132],[-53,-23],[-243,-154],[-79,-64],[-93,-94],[-95,-159],[-199,-237],[-109,-115],[-3,-103],[11,-67],[23,-43],[64,-49],[49,-95],[56,-60],[57,-89],[8,-61],[-57,-42],[-4,-14],[-67,-26],[-172,1],[-114,39],[-112,56],[-62,73],[0,29],[-77,229],[-6,95],[-35,172],[-30,45],[-49,162],[-14,17],[-46,182],[-14,10],[-56,130],[-6,54],[-18,26],[-8,41],[-9,233],[-1,106],[18,20],[9,34],[50,9],[59,34],[79,57],[22,30],[62,36],[115,39],[62,-6],[28,-13],[29,-21],[42,-58],[115,-93],[130,-58],[67,-6],[185,16],[101,28],[234,4],[171,53],[184,89],[37,35],[-12,28],[19,13],[51,-6],[30,-29]],[[50140,388657],[32,-24],[56,-10],[85,-45],[53,-75],[-4,-151],[-31,-127],[-44,-67],[8,-183],[31,-111],[11,-98],[-26,-38],[0,-47],[-22,-117],[-54,-124],[-7,-71],[-108,-143],[-13,-85],[-19,-30],[-26,-17],[-98,6],[-52,84],[-51,58],[0,126],[-32,34],[-40,27],[-49,-4],[-94,-61],[-53,-23],[-46,10],[-79,120],[0,50],[-18,34],[-27,21],[-71,5],[-36,-8],[-36,10],[-17,73],[-136,125],[-35,3],[-31,21],[-13,69],[-15,17],[-15,82],[30,59],[15,83],[19,32],[5,77],[36,30],[-1,38],[14,28],[31,34],[79,31],[61,71],[77,41],[22,22],[15,41],[26,27],[31,11],[40,103],[30,29],[108,151],[-4,67],[17,41],[34,5],[11,26],[31,31],[58,41],[85,24],[89,-3],[71,-24],[54,-34],[62,-17],[27,-21],[-4,-75],[-120,-127],[-43,-63],[116,-95]],[[48685,388719],[39,-28],[51,-7],[8,-10],[0,-49],[-45,-80],[-34,-32],[-7,-109],[-47,-82],[10,-34],[-23,-38],[-39,-30],[-28,-38],[-15,-148],[-36,-76],[-49,-206],[-22,-42],[2,-75],[-11,-80],[-52,-126],[19,-57],[49,-63],[0,-27],[-32,-39],[-2,-70],[-20,-24],[-31,-19],[-20,-81],[-19,-16],[-28,-50],[-26,-23],[-24,-1],[13,-85],[-9,-73],[-44,-50],[6,-65],[-11,-25],[-44,-45],[-31,-73],[-23,-88],[0,-65],[-45,-65],[-86,-50],[-193,-28],[-44,-22],[-26,-27],[-114,-41],[-55,-75],[0,-102],[-13,-23],[-16,-4],[-2,-11],[-89,-76],[-45,-10],[-30,1],[-15,7],[-6,17],[12,43],[-3,54],[30,56],[4,67],[-38,200],[50,116],[45,68],[-24,51],[-2,33],[33,93],[30,33],[65,48],[12,50],[-24,113],[11,43],[0,76],[22,24],[49,22],[56,0],[8,20],[34,8],[26,20],[-15,36],[4,73],[11,26],[20,18],[6,79],[30,39],[4,47],[20,49],[0,85],[24,133],[-6,24],[-17,12],[-20,40],[55,53],[10,30],[-72,161],[15,222],[17,22],[0,23],[50,49],[30,13],[42,-19],[10,-46],[-15,-169],[14,-55],[50,3],[64,59],[5,112],[19,25],[30,17],[21,3],[41,-9],[24,20],[162,216],[32,64],[15,64],[26,37],[41,4],[40,-5],[37,30],[79,35],[55,-20]],[[76942,484631],[78,-19],[26,-13],[60,-9],[86,-47],[28,-29],[12,-23],[1,-32],[-47,-61],[1,-52],[-9,-14],[-29,-20],[-33,-63],[-56,-7],[-8,-7],[-21,-55],[-62,5],[-40,25],[-29,34],[-214,-37],[-78,-25],[-111,-15],[-141,-85],[-181,-145],[-24,-36],[22,-129],[-39,-93],[-9,-82],[2,-92],[17,-54],[-11,-46],[-99,-163],[-6,-25],[-33,-39],[-41,-95],[-46,-40],[-63,-86],[-6,-42],[-14,-24],[-73,-76],[-37,-74],[-135,-153],[-17,-40],[-9,-61],[17,-50],[18,-7],[-4,-30],[-17,-8],[-68,0],[-22,-25],[-13,-36],[-52,8],[-31,30],[0,13],[20,40],[34,38],[-3,29],[-32,30],[-58,23],[-27,28],[-4,17],[34,73],[-25,16],[2,41],[19,32],[0,20],[-25,99],[-49,73],[-45,38],[-27,93],[-4,56],[-27,52],[-56,55],[-45,103],[0,101],[27,54],[96,68],[67,67],[47,63],[57,36],[44,41],[27,45],[47,28],[103,28],[114,79],[41,19],[76,112],[34,23],[84,90],[61,98],[17,98],[39,35],[15,55],[20,13],[81,5],[32,12],[13,64],[24,43],[36,29],[61,16],[72,-6],[34,9],[230,-9],[63,24],[148,4],[26,-12],[42,-39]],[[65396,384222],[158,-63],[85,28],[71,5],[29,-72],[89,-100],[11,-32],[1,-55],[59,-68],[18,-58],[6,-100],[-6,-23],[-36,-28],[-71,-109],[-54,-106],[-10,-4],[-6,-25],[-41,-32],[-83,-41],[-47,4],[-32,12],[-14,-4],[-43,42],[-82,23],[-30,-23],[-33,-73],[-30,-38],[0,-77],[39,-65],[38,-100],[8,-76],[31,-106],[15,-123],[0,-112],[-38,-100],[-107,-141],[-30,-95],[-84,-70],[-31,18],[31,117],[38,65],[0,65],[-31,17],[-15,135],[-92,153],[-230,100],[-138,41],[-84,47],[-99,41],[-31,77],[-16,117],[0,212],[22,211],[54,142],[99,124],[7,158],[47,30],[145,41],[11,12],[167,-3],[65,36],[76,63],[139,16],[85,-30]],[[62518,480849],[43,-59],[19,-79],[-20,-90],[-31,-41],[-123,-94],[-61,-30],[-6,-17],[-58,-43],[-61,-83],[-35,-17],[-70,-67],[-161,-70],[-76,-46],[-125,-22],[-192,-124],[-53,-71],[-2,-21],[-21,-17],[-46,-83],[-35,-29],[-11,-31],[-35,-35],[-68,-124],[-9,-95],[-20,-26],[-20,-73],[-58,-37],[-49,-60],[-11,-57],[-58,-33],[-40,-60],[-29,-27],[-32,-15],[-48,-7],[-35,5],[-17,17],[9,31],[-24,57],[-87,42],[-28,42],[0,13],[-38,42],[-32,95],[-26,20],[-12,24],[-9,91],[9,19],[29,14],[63,-7],[24,18],[37,66],[25,124],[18,37],[26,22],[40,62],[153,104],[14,33],[8,110],[4,158],[-13,31],[15,19],[55,36],[69,122],[43,27],[57,15],[127,5],[9,26],[-46,11],[-24,29],[4,33],[86,40],[46,9],[26,35],[52,35],[69,40],[89,27],[90,57],[54,7],[55,-24],[29,-5],[108,17],[16,18],[101,23],[129,-6],[91,-11],[22,-11],[20,-23],[72,-38]],[[41970,406524],[41,0],[53,-17],[112,0],[58,-15],[42,-27],[105,-8],[49,8],[217,10],[30,-10],[43,-29],[47,-6],[80,-54],[20,-23],[0,-25],[-175,-127],[8,-16],[26,-15],[30,-8],[15,-40],[-47,-39],[-28,-79],[-14,-8],[-17,-39],[-75,-78],[11,-32],[-13,-41],[-97,-129],[-38,-108],[-40,-53],[-20,-46],[-10,-56],[13,-232],[-60,-41],[-38,-2],[-108,33],[-146,118],[-88,38],[-49,32],[-212,181],[-37,5],[-49,25],[-53,56],[-78,115],[-41,106],[-12,141],[8,62],[75,121],[96,128],[7,26],[77,85],[4,31],[37,41],[69,35],[26,-17],[25,-2],[30,42],[33,2],[23,-2],[35,-17]],[[73491,461624],[-65,-16],[-48,12],[-50,-3],[-11,-55],[-93,-131],[-32,-86],[-4,-152],[17,-93],[85,-152],[-8,-80],[-33,-56],[-52,-57],[121,-128],[33,-165],[24,-52],[5,-269],[-20,-47],[-41,-59],[-12,-40],[-69,-56],[-20,-28],[-28,-15],[-19,1],[-18,-33],[-38,71],[0,64],[-47,106],[-61,65],[-31,70],[-77,71],[-100,47],[-146,30],[-99,0],[-8,46],[7,83],[46,135],[15,112],[23,300],[0,182],[38,130],[0,94],[46,129],[15,129],[69,106],[177,12],[230,0],[100,-17],[75,-49],[35,-14],[53,-40],[32,-53],[-16,-49]],[[57099,397958],[27,-29],[87,0],[103,-68],[111,-92],[27,-48],[7,-70],[-9,-30],[-39,-25],[-109,-30],[-60,-3],[-45,19],[-72,69],[-121,-17],[-268,0],[-238,30],[-121,71],[-99,72],[-82,44],[-63,60],[-60,42],[-31,18],[-86,32],[-34,31],[-33,36],[-15,42],[-13,120],[6,102],[75,61],[99,25],[121,2],[112,-9],[223,-60],[178,-73],[108,-79],[51,-14],[103,-76],[63,-35],[97,-118]],[[46146,423342],[91,-308],[32,-63],[6,-167],[16,-65],[44,-62],[128,-411],[-2,-137],[54,-116],[-2,-30],[-23,-20],[-39,-2],[-23,6],[-78,49],[-81,64],[-27,31],[-3,17],[-109,123],[-34,62],[-50,62],[-119,127],[-10,31],[-72,93],[-34,81],[18,43],[81,101],[15,105],[19,43],[56,65],[0,26],[-40,29],[-60,-12],[-78,-5],[-171,7],[-66,19],[-25,34],[44,103],[0,31],[24,26],[162,117],[9,51],[-28,100],[-7,89],[-37,60],[34,52],[66,12],[40,-9],[128,-144],[100,-133],[51,-132],[0,-43]],[[63609,393417],[79,-8],[48,-23],[6,-17],[24,-22],[69,-27],[26,-25],[44,-75],[-7,-88],[-39,-147],[-45,-59],[-92,-41],[-84,-177],[-115,-94],[-23,-65],[-13,-4],[-1,-21],[-68,-36],[-33,-3],[-83,-101],[0,-19],[-25,-31],[-4,-132],[-21,-19],[-64,-3],[-39,26],[-17,33],[0,32],[-55,53],[-74,125],[67,82],[-3,13],[81,115],[0,40],[-12,16],[0,21],[-29,59],[-17,63],[0,75],[30,134],[46,59],[29,22],[1,27],[108,78],[32,40],[94,74],[23,40],[32,18],[26,4],[98,-12]],[[49401,431768],[-12,-167],[-10,-37],[0,-110],[-11,-82],[-16,-31],[-4,-103],[-9,-26],[-29,-34],[-29,-72],[-23,-29],[-56,-48],[-31,-51],[-33,-26],[-40,-14],[-29,3],[-42,21],[-17,30],[-2,58],[-15,28],[-15,1],[-56,-42],[-50,-21],[-75,-2],[-42,8],[-87,59],[-34,61],[-15,88],[10,151],[65,87],[39,24],[67,0],[77,-19],[19,-17],[17,-52],[53,-95],[27,-38],[35,-27],[21,-42],[13,1],[18,23],[-8,63],[-46,67],[-4,30],[8,31],[13,8],[31,1],[10,22],[131,136],[-4,172],[-40,5],[-19,-33],[-35,-28],[-36,2],[-23,13],[-4,16],[2,54],[43,177],[-10,56],[-11,6],[-8,27],[-6,74],[10,131],[30,51],[-16,18],[0,69],[16,59],[38,26],[-8,33],[-45,43],[-10,45],[23,32],[19,11],[25,0],[12,-20],[47,-39],[30,-59],[62,-176],[67,-43],[71,-32],[15,-32],[-6,-43],[7,-68],[-15,-106],[-31,-124],[-4,-133]],[[52287,431197],[88,-34],[138,-92],[1,-21],[-100,-112],[-18,-189],[3,-76],[-21,-84],[-34,-30],[-42,-61],[-49,-29],[-78,-10],[-100,14],[-90,-36],[-74,-15],[-82,12],[-40,17],[-28,21],[-79,31],[-2,22],[-51,51],[-38,76],[8,65],[92,45],[3,31],[-25,64],[-37,39],[-23,126],[4,83],[23,12],[39,44],[65,24],[100,24],[205,1],[69,8],[87,-5],[86,-16]],[[59245,385016],[-20,-32],[-46,11],[-53,30],[-196,150],[-39,53],[-33,66],[-9,90],[-51,49],[-27,96],[8,185],[33,48],[15,107],[81,76],[24,7],[42,46],[69,34],[9,17],[35,25],[34,3],[38,-12],[7,-8],[30,-5],[71,-36],[136,-15],[29,-14],[27,-33],[66,-20],[-93,-103],[1,-77],[-30,-55],[-6,-53],[-45,-60],[-21,-54],[-21,-25],[-27,-76],[40,-83],[-9,-34],[-33,-35],[9,-30],[27,-28],[9,-34],[-9,-39],[-9,-17],[-14,-4],[-4,-40],[-45,-71]],[[59159,398026],[139,-13],[60,-22],[17,-15],[63,-28],[23,-53],[-10,-148],[28,-71],[2,-33],[37,-57],[-21,-31],[-169,-92],[-19,0],[-60,-31],[-51,-11],[-59,-2],[-157,3],[-146,30],[-129,47],[-80,38],[-91,85],[-12,28],[4,60],[35,55],[18,12],[40,7],[11,30],[66,21],[48,27],[29,4],[93,54],[52,25],[41,7],[95,46],[7,10],[85,21],[11,-3]],[[50936,433873],[39,-3],[24,-14],[35,-7],[32,-29],[22,-122],[1,-176],[-11,-20],[-1,-34],[-62,-128],[-10,-101],[-28,-32],[-10,-68],[-53,-82],[-39,-39],[-10,-42],[-25,-40],[-52,-21],[-92,35],[0,53],[-47,64],[-14,5],[-7,83],[-10,27],[-25,23],[-90,40],[-10,21],[-3,16],[17,46],[-17,43],[17,59],[-2,26],[16,21],[58,25],[36,6],[21,17],[-2,23],[-13,7],[-4,47],[-27,18],[-31,3],[-17,11],[-9,24],[-21,17],[-2,29],[11,17],[31,14],[20,32],[34,18],[20,0],[18,-15],[14,1],[-14,66],[58,31],[30,-3],[37,21],[58,12],[47,-3],[62,-22]],[[50212,429551],[-62,-29],[-38,-30],[1,-370],[17,-51],[101,-59],[23,-25],[15,-83],[6,-284],[-31,-89],[-48,-29],[-52,3],[-28,15],[-45,8],[-53,-8],[-58,4],[-33,17],[-46,141],[-9,79],[0,189],[25,56],[-20,75],[8,51],[-19,131],[-21,33],[-54,34],[-38,40],[-16,46],[12,69],[54,55],[95,42],[22,0],[57,-25],[16,12],[8,55],[67,71],[0,29],[35,29],[41,17],[20,2],[41,-16],[29,-34],[-3,-19],[-28,-50],[23,-71],[0,-14],[-14,-17]],[[54685,468031],[24,-10],[50,-1],[90,-41],[39,1],[28,-25],[3,-14],[-40,-49],[-19,-51],[-10,-65],[5,-103],[-11,-48],[-25,-28],[-39,-93],[-117,-207],[-61,-46],[-42,-54],[0,-27],[16,5],[26,29],[30,16],[20,42],[32,2],[5,-41],[-11,-38],[-43,-9],[-3,-11],[35,-36],[0,-17],[-22,-9],[-28,30],[-26,7],[-10,-9],[27,-24],[9,-27],[-50,-28],[-24,-4],[-33,14],[-13,29],[-20,17],[-46,13],[-19,12],[-40,60],[-52,46],[1,31],[103,159],[15,251],[7,29],[20,27],[-4,121],[-15,98],[-26,48],[-35,35],[-68,24],[-11,15],[24,36],[9,60],[7,7],[35,0],[59,-18],[120,-70],[82,-34],[42,-27]],[[59912,474272],[-5,-35],[-17,-12],[-18,-43],[-26,-7],[-11,-11],[-6,-41],[15,-24],[-7,-33],[-65,-52],[-90,-41],[-65,7],[-145,87],[-68,54],[-12,51],[-46,94],[-18,14],[-21,1],[-22,13],[-38,43],[-5,84],[19,41],[25,27],[72,51],[69,114],[122,100],[54,7],[107,-42],[32,-35],[0,-75],[77,-113],[29,-148],[64,-76]],[[77594,467717],[-92,-5],[-39,18],[-46,41],[-2,18],[-39,21],[-28,39],[3,34],[31,40],[-4,36],[-15,48],[-8,76],[-100,212],[0,70],[25,133],[90,79],[108,159],[31,64],[169,166],[55,28],[32,-7],[3,-98],[-80,-142],[-35,-112],[-76,-127],[-19,-66],[0,-80],[26,-49],[-7,-34],[-14,-13],[0,-95],[37,-105],[9,-158],[23,-34],[22,-81],[0,-29],[-19,-30],[-41,-17]],[[79666,468079],[26,-24],[32,2],[25,13],[30,-2],[36,-20],[-9,-119],[-10,-25],[-19,-22],[-31,-17],[-41,26],[-9,89],[-60,-40],[-55,-55],[-60,-82],[-14,-127],[-28,-27],[-56,-110],[-26,-29],[-34,-12],[-47,4],[-16,13],[-49,-11],[-14,4],[-33,20],[-116,108],[-24,35],[22,49],[-5,64],[-33,66],[14,48],[19,23],[85,63],[26,47],[90,57],[59,69],[70,26],[57,17],[113,-6],[77,-65],[8,-50]],[[64078,474926],[62,-17],[20,-38],[-8,-46],[48,-36],[15,-48],[-15,-14],[-72,-17],[-20,-12],[-18,-24],[-19,-8],[-36,0],[-20,9],[-20,-3],[-17,-14],[-8,-21],[13,-56],[-10,-13],[-20,-4],[-20,6],[-35,-27],[-18,-15],[-42,-75],[-133,-119],[-93,-36],[-77,11],[-53,57],[-10,64],[15,46],[25,13],[10,15],[35,113],[7,108],[31,38],[29,65],[22,21],[66,33],[135,48],[145,6],[86,-10]],[[50078,434037],[2,-13],[25,-6],[21,-24],[67,-28],[11,-108],[31,-49],[-6,-29],[25,-96],[-16,-31],[-27,-12],[-26,4],[-12,15],[-20,2],[-54,-65],[-23,-65],[-76,-41],[-59,5],[-48,24],[-54,9],[-7,37],[-21,8],[-16,82],[-80,109],[9,104],[22,6],[31,35],[5,20],[-13,12],[-8,41],[30,44],[0,64],[77,58],[84,0],[111,-54],[19,-11],[6,-19],[-10,-28]],[[46419,420211],[46,-23],[138,18],[54,-41],[116,-147],[84,-182],[46,-77],[16,-70],[-53,-53],[-31,-65],[-69,-59],[-100,17],[-61,53],[15,71],[-39,94],[-38,53],[-54,53],[-15,88],[-39,59],[-123,135],[-15,64],[68,42],[54,-30]],[[63060,476440],[22,-34],[47,-11],[168,-86],[1,-16],[21,-17],[7,-31],[-26,-59],[-18,-19],[-83,-31],[-257,-134],[-138,-27],[-65,15],[-18,19],[0,66],[-38,93],[23,68],[25,21],[30,11],[-11,29],[-19,2],[-10,10],[5,26],[27,23],[43,16],[33,25],[15,35],[54,12],[49,0],[42,-27],[17,-1],[25,12],[9,13],[20,-3]],[[80210,469283],[68,-6],[51,6],[56,-3],[63,-45],[18,-23],[8,-32],[5,-94],[63,-137],[-17,-27],[-81,10],[-131,29],[-39,17],[-123,16],[-94,22],[-15,11],[-13,69],[-54,77],[-69,17],[-41,22],[30,81],[30,17],[-19,33],[0,53],[29,5],[24,32],[21,7],[43,0],[34,-23],[4,-33],[56,-74],[33,-16],[60,-11]],[[73035,462464],[-92,-95],[-69,-11],[-8,53],[-23,41],[-62,-12],[-53,47],[7,47],[-23,76],[-31,48],[0,117],[15,89],[62,58],[69,47],[85,36],[99,-47],[62,-18],[8,-47],[-46,-71],[-23,-64],[-39,-65],[-15,-59],[23,-94],[54,-23],[0,-53]],[[63787,441525],[-89,5],[-30,11],[-77,60],[-34,49],[-18,4],[-16,28],[0,57],[31,113],[48,108],[31,28],[34,12],[62,48],[84,-6],[23,-35],[45,-87],[13,-113],[43,-106],[7,-166],[-25,-12],[-132,2]],[[62603,398020],[-20,-31],[-20,-12],[-49,-12],[-132,39],[-42,5],[-61,30],[-68,-11],[-57,10],[-17,17],[-5,117],[10,23],[57,45],[4,48],[-11,42],[16,46],[73,13],[37,17],[80,-6],[49,-39],[84,-43],[15,-20],[27,-15],[74,-88],[-4,-111],[-9,-18],[-18,-11],[1,-15],[-14,-20]],[[50302,433221],[15,-6],[9,-19],[0,-30],[-26,-61],[-163,-155],[-15,0],[-44,-26],[-24,-3],[-48,9],[-24,13],[-14,30],[-3,40],[-19,19],[-77,30],[-23,51],[-8,76],[28,50],[10,9],[16,-1],[113,65],[36,13],[47,32],[42,7],[24,12],[26,25],[24,41],[32,18],[34,-8],[37,-196],[-5,-35]],[[77786,459667],[-84,-18],[-77,77],[-39,59],[200,129],[23,30],[69,47],[161,-71],[192,-17],[62,-24],[0,-64],[-131,-83],[-77,-17],[-92,-36],[-115,-12],[-92,0]],[[46899,381418],[-126,-16],[-199,10],[-27,13],[-33,43],[-3,45],[66,54],[34,16],[61,11],[74,50],[115,104],[82,33],[42,-1],[53,-17],[15,-16],[24,-57],[0,-84],[-49,-68],[1,-56],[-10,-20],[-59,-38],[-61,-6]],[[63767,443043],[24,-108],[33,-62],[-4,-67],[-36,-28],[-48,-9],[-89,27],[-56,34],[-13,46],[0,142],[-18,4],[-94,-38],[-45,34],[-4,62],[20,114],[0,145],[22,25],[-6,20],[8,17],[16,6],[28,-9],[41,-37],[40,-87],[181,-231]],[[76334,478485],[4,-63],[-12,-15],[-21,-77],[-21,-23],[2,-65],[-98,-87],[-14,-2],[-39,-30],[-41,-56],[-32,-4],[-30,7],[-42,45],[-9,28],[-45,56],[-16,47],[-31,41],[-2,72],[37,39],[71,54],[162,33],[83,4],[36,14],[43,0],[15,-18]],[[50477,388728],[-25,-28],[-30,-7],[-62,10],[-69,32],[-45,3],[-25,25],[-1,38],[54,57],[72,54],[6,31],[99,137],[29,32],[26,17],[31,41],[13,2],[11,15],[66,2],[40,-15],[20,-23],[22,-46],[6,-48],[-16,-34],[-66,-66],[-41,-88],[-36,-30],[-79,-111]],[[44156,385955],[17,-10],[31,0],[16,-9],[7,-28],[-21,-57],[29,-16],[5,-33],[-12,-71],[-12,-22],[-31,-11],[-2,-27],[26,-27],[22,-42],[-12,-21],[-31,-8],[-26,11],[-72,62],[-21,-4],[-24,9],[-47,37],[-67,27],[-53,44],[-26,41],[23,108],[67,113],[28,26],[50,7],[76,-12],[29,-26],[14,-41],[17,-20]],[[47665,388985],[4,-149],[-8,-76],[-23,-77],[-22,-135],[-30,-241],[-63,-84],[-32,-22],[-38,4],[-26,20],[-6,39],[30,62],[5,32],[21,23],[8,27],[-24,59],[-1,77],[-23,21],[-14,31],[-2,88],[58,72],[26,98],[45,49],[21,64],[56,43],[32,2],[6,-27]],[[65388,432651],[-77,-12],[-30,18],[-8,35],[8,82],[-207,94],[-24,59],[8,52],[23,30],[92,0],[77,-29],[115,-24],[115,-46],[46,-36],[0,-100],[-38,-65],[-54,-41],[-46,-17]],[[47705,387838],[63,-27],[12,-40],[-25,-106],[-33,-44],[-6,-43],[-15,-29],[-154,-193],[-30,-19],[-82,0],[-39,21],[-24,57],[118,125],[27,47],[17,11],[11,-2],[28,32],[-4,63],[11,34],[59,104],[36,15],[30,-6]],[[46586,426922],[-26,-10],[-26,2],[-44,19],[-16,52],[8,64],[25,43],[2,24],[44,106],[69,94],[33,26],[59,13],[40,-14],[20,-40],[2,-41],[-21,-50],[-3,-69],[-99,-162],[-29,-14],[-38,-43]],[[68354,462095],[-3,-21],[-26,-13],[-42,6],[-22,11],[-9,21],[-48,35],[-5,23],[-22,11],[-16,65],[-28,13],[-19,21],[-5,38],[93,87],[70,50],[22,9],[134,20],[61,29],[28,-2],[20,-12],[-2,-21],[-33,-28],[-7,-19],[-84,-54],[-70,-76],[-23,-85],[38,-38],[-2,-70]],[[66682,440393],[-4,-64],[10,-28],[0,-54],[-19,-20],[10,-10],[-4,-17],[-27,-35],[-37,-5],[-37,5],[-46,52],[-7,40],[-55,26],[-26,125],[-28,1],[-56,21],[-68,14],[3,30],[-10,2],[23,18],[68,24],[97,-3],[169,-73],[44,-49]],[[60490,389370],[8,-26],[0,-101],[-15,-19],[-34,-18],[6,-3],[-10,-21],[-37,-14],[-34,0],[-33,-13],[-94,-75],[-23,-8],[-40,4],[-40,23],[-9,23],[-20,19],[12,60],[35,48],[64,61],[25,2],[20,11],[45,50],[20,6],[60,-10],[32,12],[25,0],[37,-11]],[[52820,450473],[-59,8],[-51,18],[-76,118],[2,26],[13,18],[73,42],[20,20],[15,3],[98,-1],[108,-45],[18,-28],[-8,-33],[21,-81],[-6,-28],[-19,-6],[-48,2],[-43,-25],[-58,-8]],[[76716,454208],[-30,0],[-79,22],[-98,106],[-30,52],[-30,31],[-19,53],[0,75],[-40,30],[10,38],[39,0],[70,15],[19,-23],[20,-30],[0,-30],[79,-83],[10,-106],[29,-60],[50,-45],[0,-45]],[[60115,476396],[-24,-65],[-53,-11],[-39,52],[0,24],[-76,5],[-1,42],[46,94],[0,47],[31,76],[208,-123],[23,-29],[0,-36],[-31,-29],[-46,-17],[-38,-30]],[[62349,386895],[25,-10],[5,-102],[13,-31],[21,-12],[1,-28],[-11,-22],[-26,-15],[-16,2],[-71,-81],[-38,-1],[-35,21],[-38,52],[4,105],[27,30],[-8,30],[18,40],[22,25],[64,13],[43,-16]],[[62092,397383],[12,-12],[25,-4],[23,-25],[8,-62],[-23,-35],[0,-22],[37,-70],[-14,-32],[0,-28],[-26,-9],[-28,-22],[-25,6],[-33,24],[-31,11],[-17,26],[-39,126],[17,72],[56,50],[58,6]],[[71870,477724],[-53,-3],[-54,11],[-36,44],[-25,63],[10,52],[-25,3],[-28,27],[0,33],[25,16],[35,0],[33,11],[-36,55],[-4,52],[12,6],[-1,22],[50,-36],[69,-134],[3,-93],[54,-85],[-29,-44]],[[76962,465776],[-19,-24],[-16,-2],[-28,-28],[-3,-31],[-29,-32],[-20,1],[-31,-29],[-3,-23],[-51,-7],[-35,7],[-19,20],[-7,26],[29,42],[0,24],[-13,20],[-54,29],[3,20],[87,-10],[39,32],[11,34],[58,34],[35,3],[25,-3],[48,-41],[13,-42],[-20,-20]],[[46833,445070],[-45,4],[-18,34],[24,47],[21,91],[69,79],[16,34],[62,25],[25,18],[27,1],[54,-34],[-2,-33],[-138,-151],[-3,-33],[-27,-52],[-65,-30]],[[78246,464301],[29,-24],[-17,-16],[-53,-3],[-12,-16],[5,-27],[-9,-18],[-27,-2],[-111,42],[-33,42],[-14,0],[-9,13],[-98,16],[-22,14],[-16,-1],[-13,35],[25,24],[47,12],[44,0],[16,45],[43,11],[12,-2],[69,-88],[60,-35],[84,-22]],[[65188,442178],[-18,-2],[-21,61],[-41,21],[-33,59],[29,111],[107,18],[39,-6],[46,-53],[6,-84],[-40,-49],[-6,-27],[-68,-49]],[[49503,430148],[101,-11],[76,5],[11,-13],[-5,-41],[-86,-35],[-25,-28],[-49,-32],[-61,13],[-36,-10],[-54,2],[-9,6],[-3,58],[33,42],[-17,38],[2,36],[21,12],[62,-17],[39,-25]],[[60535,385741],[-38,-64],[-46,99],[-8,48],[-46,46],[-15,77],[68,94],[92,-82],[54,-29],[0,-42],[-38,-58],[0,-47],[-23,-42]],[[50193,389369],[-46,-65],[-18,2],[-36,-28],[-42,-5],[-91,9],[-28,41],[1,23],[40,63],[40,37],[68,19],[30,23],[40,2],[38,-28],[4,-93]],[[70281,438740],[1,-69],[-28,-26],[-55,-30],[-24,-29],[-44,-17],[-51,0],[-51,21],[-25,26],[5,68],[33,47],[61,15],[55,-2],[57,30],[22,-1],[26,-12],[18,-21]],[[44504,413295],[-48,-14],[-49,-3],[-38,8],[-32,54],[-7,54],[11,17],[63,64],[44,20],[80,-20],[29,-48],[-9,-94],[-44,-38]],[[61463,434329],[24,-9],[101,-3],[28,-28],[-4,-28],[-44,-25],[-51,-1],[-103,-23],[-96,-72],[-32,-3],[-11,9],[-9,34],[0,56],[24,22],[52,27],[8,53],[12,9],[52,0],[49,-18]],[[61945,395993],[-81,10],[-26,29],[-37,73],[3,40],[22,22],[2,34],[10,11],[25,7],[64,1],[66,-59],[-2,-132],[-15,-21],[-31,-15]],[[62291,434630],[57,-5],[30,-13],[77,-77],[37,-82],[13,-5],[10,-22],[3,-36],[-9,-7],[-24,-3],[-67,33],[-63,55],[-16,51],[-63,27],[-57,8],[-21,14],[3,30],[18,23],[43,14],[29,-5]],[[57359,378839],[-62,0],[-61,23],[-46,35],[-8,59],[23,12],[61,12],[62,88],[68,6],[39,-29],[-15,-36],[-39,-29],[0,-76],[-22,-65]],[[74562,462626],[-48,13],[-29,32],[4,94],[41,51],[42,31],[35,15],[66,5],[16,-7],[17,-38],[-6,-37],[-41,-40],[-17,-34],[-58,-56],[-4,-19],[-18,-10]],[[63353,391744],[-20,1],[-46,27],[-62,84],[-12,61],[27,75],[25,19],[29,4],[23,-9],[1,-43],[80,-90],[0,-89],[-16,-28],[-29,-12]],[[48965,388985],[-26,2],[-10,16],[-2,39],[62,87],[21,17],[25,9],[45,0],[47,-3],[69,-18],[7,-13],[-21,-71],[-54,-18],[-77,-40],[-86,-7]],[[62757,392400],[22,-14],[5,-25],[32,-27],[8,-48],[-7,-39],[-22,-26],[-72,-17],[-54,7],[-11,19],[29,40],[-11,38],[-49,33],[-14,35],[20,26],[124,-2]],[[47004,428499],[-68,-1],[-49,24],[-10,60],[45,47],[29,6],[119,3],[29,-6],[11,-16],[-10,-53],[-15,-19],[-81,-45]],[[51311,429226],[-49,-11],[-134,3],[-44,33],[-5,40],[13,28],[16,14],[78,7],[69,0],[22,-7],[19,-31],[15,-76]],[[78602,464490],[-19,-4],[-26,7],[-12,28],[-84,46],[-5,18],[29,16],[8,14],[45,12],[28,41],[15,3],[28,0],[19,-11],[10,-33],[62,-33],[3,-14],[-22,-37],[-71,-30],[-8,-23]],[[63343,438874],[-17,-9],[-24,6],[-82,56],[-66,60],[0,15],[54,50],[44,-3],[115,-97],[9,-37],[-9,-22],[-24,-19]],[[61556,431518],[-34,2],[-24,18],[-18,28],[0,26],[39,66],[30,10],[30,0],[33,-9],[31,-19],[30,-50],[6,-31],[-15,-9],[0,-12],[-30,-16],[-78,-4]],[[59091,432568],[-31,-18],[-46,23],[-38,47],[-54,24],[-8,53],[47,35],[53,0],[46,-35],[46,-71],[-15,-58]],[[59269,467639],[-86,-11],[-29,11],[-28,-6],[-47,14],[-29,41],[0,30],[43,28],[33,8],[57,-3],[79,-47],[7,-65]],[[45726,423039],[92,-22],[15,-21],[0,-19],[-29,-31],[0,-13],[19,-25],[-2,-11],[-15,-6],[-61,-2],[-73,49],[-14,31],[-3,39],[24,27],[23,7],[24,-3]],[[72562,462531],[59,-9],[18,-11],[2,-19],[-2,-12],[-41,-28],[-29,-44],[-38,-12],[-96,11],[-9,41],[38,48],[19,17],[79,18]],[[45786,424591],[-23,-29],[-46,11],[-69,70],[-1,54],[62,47],[53,-6],[8,-12],[16,-135]],[[45656,424320],[-30,-53],[-23,29],[7,83],[61,106],[39,-18],[23,-53],[0,-53],[-77,-41]],[[71899,462276],[-28,0],[-12,13],[1,45],[133,63],[62,-4],[19,-35],[-19,-14],[-131,-68],[-25,0]],[[72708,458697],[-29,-15],[-6,-23],[-56,-31],[-76,5],[-17,8],[-9,19],[33,50],[62,23],[61,4],[28,-9],[9,-31]],[[45801,424850],[-39,-24],[-46,6],[-15,82],[7,41],[23,18],[38,0],[62,-17],[-30,-106]],[[50292,432955],[58,-14],[31,-29],[9,-74],[-22,-17],[-49,3],[-15,14],[-3,25],[-26,15],[-17,1],[-9,14],[5,32],[-7,7],[45,23]],[[61167,433729],[12,-49],[-21,-30],[-18,1],[-48,-15],[-45,12],[-30,23],[-7,37],[33,28],[124,-7]],[[46655,421264],[-22,-5],[-34,14],[-44,36],[-6,28],[9,39],[6,17],[22,9],[56,3],[15,-17],[7,-100],[-9,-24]],[[50053,428461],[44,-12],[16,-33],[-1,-49],[-36,-23],[-33,4],[-34,30],[-23,32],[5,33],[26,22],[36,-4]],[[49440,432527],[-22,0],[-37,15],[-5,24],[68,93],[38,6],[23,-23],[1,-44],[-51,-68],[-15,-3]],[[61263,397445],[-34,0],[-39,34],[-4,47],[31,30],[46,1],[53,-36],[-2,-32],[-20,-10],[-19,-30],[-12,-4]],[[61508,433988],[42,-20],[-6,-42],[-33,-19],[-64,-9],[-21,7],[-8,23],[14,25],[49,35],[27,0]],[[45807,422782],[-27,0],[-20,13],[-10,26],[8,24],[14,11],[42,6],[24,-4],[14,-15],[5,-31],[-2,-15],[-12,-8],[-36,-7]],[[45730,423433],[-29,-1],[-30,12],[-3,47],[12,15],[49,6],[29,-25],[0,-29],[-28,-25]],[[63144,439184],[-41,-1],[-39,24],[0,35],[14,16],[39,0],[36,-18],[3,-44],[-12,-12]],[[147492,34045],[8,-171],[-16,-82],[-7,-241],[-61,-42],[-105,-17],[-119,-46],[-123,-95],[-83,-94],[-22,-106],[29,-95],[61,-106],[74,-199],[76,-112],[30,-65],[98,-112],[263,-171],[106,-35],[105,-24],[105,-6],[49,11],[185,-5],[83,29],[249,135],[121,12],[105,0],[151,-18],[105,0],[241,29],[91,-18],[84,-30],[37,-35],[22,-53],[83,-123],[113,-59],[120,-47],[68,-77],[45,-70],[83,-83],[105,-41],[113,-30],[30,-53],[-23,-53],[-83,-70],[0,-65],[68,-30],[105,-11],[113,11],[91,41],[53,-17],[30,-47],[0,-47],[-23,-71],[-1,-341],[-83,-106],[-60,-53],[-30,-41],[15,-77],[180,-129],[98,-165],[-30,-53],[0,-123],[14,-173],[-74,-207],[-16,-100],[-152,-80],[-37,-99],[-38,-41],[7,-71],[8,-41],[37,-53],[15,-153],[90,-136],[211,-106],[121,-94],[37,-18],[0,-58],[-121,-130],[-37,-59],[-1,-170],[38,-71],[143,-141],[90,-53],[45,-71],[30,-112],[15,-158],[15,-48],[-15,-41],[-38,-41],[-8,-47],[-52,-64],[-1,-142],[23,-76],[0,-77],[-16,-64],[8,-124],[-31,-76],[-8,-124],[-30,-53],[-105,-76],[-30,-71],[-23,-159],[14,-300],[30,-70],[8,-65],[37,-59],[90,-59],[166,-70],[233,-207],[-15,-47],[-8,-176],[-23,-147],[-45,-35],[-90,-100],[-23,-42],[-8,-288],[-68,-106],[-143,-117],[-61,-100],[-8,-359],[38,-112],[67,-70],[98,-130],[7,-77],[-7,-158],[-61,-65],[-8,-94],[15,-118],[0,-141],[83,-118],[98,-59],[32,-8],[12,-33],[83,-59],[91,-36],[165,-93],[106,-42],[226,-47],[256,-36],[98,-29],[68,-42],[135,-129],[60,-89],[83,-147],[59,-147],[38,-47],[23,-53],[37,-129],[0,-48],[-53,-152],[-15,-83],[30,-70],[97,-83],[136,-94],[165,-194],[294,-130],[37,-41],[30,-53],[38,-218],[45,-177],[14,-159],[-37,-82],[-128,-129],[-76,-94],[-46,-82],[0,-54],[38,-82],[83,-65],[7,-41],[0,-258],[30,-54],[82,-35],[68,-65],[30,-53],[8,-65],[-38,-82],[0,-47],[52,-176],[68,-30],[90,6],[106,-36],[67,-41],[68,0],[249,88],[196,94],[68,24],[53,11],[112,-12],[61,-23],[52,-48],[38,-58],[75,-59],[68,-83],[256,-153],[7,-41],[23,-35],[45,-30],[98,-6],[75,-29],[48,-32],[65,-69],[68,-35],[52,-6],[53,-29],[30,-6],[23,-36],[-15,-41],[-159,-35],[-38,-47],[91,-47],[45,-12],[75,-53],[53,-53],[60,-30],[120,-82],[166,-29],[38,-42],[37,-70],[0,-65],[30,-89],[7,-52],[38,-95],[45,-76],[7,-53],[-19,-40],[5,-137],[-45,-141],[-121,-170],[-68,-41],[-68,-65],[-75,-18],[-98,89],[-75,188],[-294,83],[-67,47],[-159,65],[-74,12],[-91,41],[-53,35],[-67,94],[0,83],[-15,123],[-60,59],[-75,142],[-23,100],[-240,106],[-144,12],[-150,0],[-121,-12],[-113,-94],[-256,-159],[-257,-135],[-135,-146],[-31,-118],[-86,-152],[17,-101],[52,-152],[30,-59],[45,-42],[61,-41],[67,-24],[188,-29],[361,-212],[46,-30],[53,-53],[112,-30],[136,-47],[82,-41],[38,-76],[8,-74],[33,-45],[79,-17],[23,-41],[0,-76],[-15,-54],[-61,-111],[-30,-147],[-1,-230],[8,-47],[45,-106],[75,-41],[30,0],[15,-12],[91,-18],[135,-64],[30,-59],[128,-124],[37,-82],[0,-100],[23,-100],[67,-65],[91,-71],[83,-35],[383,-113],[135,-64],[46,-41],[52,-83],[68,-135],[-30,-89],[-83,-52],[-91,-118],[-75,-35],[-339,0],[-128,30],[-324,147],[-67,18],[-129,59],[-105,24],[-82,-8],[-250,-74],[-166,-130],[-120,-64],[-53,-65],[0,-177],[-53,-58],[-203,-94],[-98,-29],[-61,-30],[-68,-47],[0,-29],[22,-77],[0,-82],[-37,-59],[-61,-35],[-128,-94],[-22,-77],[112,-123],[30,-106],[-38,-59],[-90,-35],[-158,0],[-98,-18],[-151,-99],[-38,-36],[-60,-122],[7,-7],[0,-212],[52,-135],[151,-230],[113,-106],[29,-53],[76,-17],[60,-30],[75,-82],[0,-77],[38,-70],[22,-106],[-38,-53],[-45,-36],[-159,-88],[-30,-29],[-60,-106],[-18,-75],[-27,-43],[-53,-23],[-83,-29],[-189,-47],[-142,24],[-136,70],[-166,18],[-241,-6],[-128,-94],[-135,-117],[-46,-41],[-60,-77],[7,-70],[38,-41],[38,-24],[29,-124],[61,-35],[75,-12],[60,-35],[0,-59],[-8,-35],[-53,-42],[-60,-29],[-173,-111],[-38,-47],[-8,-35],[23,-112],[45,-89],[75,-76],[30,-59],[113,-59],[23,-41],[-1,-118],[-30,-77],[-8,-58],[61,-53],[82,-42],[75,-129],[-30,-194],[-8,-188],[-30,-106],[-68,-59],[-76,-12],[-143,-52],[-39,-43],[-163,-90],[-129,-30],[-30,-61],[-31,-29],[-52,-88],[-1,-59],[-15,-59],[7,-218],[45,-117],[38,-65],[37,-165],[30,-82],[0,-41],[-68,-71],[-15,-200],[-23,-141],[22,-106],[0,-71],[38,-47],[60,-47],[38,-59],[37,-123],[45,-59],[90,-41],[151,-7],[143,-17],[90,-48],[98,-6],[90,24],[68,29],[136,-11],[128,-71],[98,-42],[127,-129],[61,-100],[-8,-212],[-118,-173],[-175,-186],[-101,-79],[-67,-103],[-90,-111],[-83,-65],[-46,-53],[-75,-65],[-15,-29],[-30,-29],[0,-83],[82,-112],[38,-76],[-1,-130],[-37,-41],[-53,-11],[-158,-89],[-23,-65],[-211,-328],[-106,-77],[-136,-64],[-97,-18],[-68,0],[-196,47],[-105,1],[-53,-24],[-30,-47],[-53,-259],[-61,-170],[-37,-36],[-174,-111],[-83,-6],[-173,-112],[-75,6],[-23,36],[0,47],[-75,88],[-22,47],[-7,253],[-8,65],[-23,58],[-90,95],[-7,29],[-68,53],[-52,18],[-83,41],[-38,71],[-67,41],[-53,65],[-105,83],[-6,40],[-46,44],[-3,14],[-28,7],[-113,71],[-45,47],[-60,42],[-15,23],[0,47],[-45,82],[-45,18],[-68,6],[-204,36],[-361,0],[-105,-6],[-121,-23],[-105,-47],[-354,-6],[-203,-49],[-8,-97],[-241,-224],[-53,-17],[-1,-206],[-113,-259],[-37,-47],[-68,-59],[-23,-53],[7,-53],[23,-53],[60,-76],[0,-35],[30,-54],[0,-117],[15,-59],[120,-194],[22,-53],[0,-42],[-121,-141],[-37,-52],[-23,-59],[0,-100],[-26,-248],[18,-29],[0,-47],[-91,-235],[-121,-106],[-127,-76],[-144,-118],[-113,-106],[-98,-147],[-8,-76],[-143,-412],[-31,-194],[-53,-118],[-83,-88],[-37,-35],[-121,-35],[-68,6],[-37,23],[-75,12],[-68,0],[-159,-82],[-75,0],[-128,6],[-143,41],[-113,24],[-67,0],[-113,-12],[-234,48],[-376,147],[-83,18],[-188,76],[-52,13],[-61,41],[-45,47],[0,23],[-60,47],[-68,24],[-188,12],[-45,53],[-128,118],[-60,129],[16,112],[22,100],[68,59],[53,94],[68,70],[75,36],[98,0],[60,11],[45,35],[61,71],[15,47],[52,18],[46,5],[37,18],[98,88],[8,124],[-8,45],[-44,2],[-46,12],[-128,53],[-127,94],[-113,124],[-45,76],[15,106],[60,41],[31,135],[113,83],[67,12],[113,81],[15,77],[-7,106],[-45,59],[-68,30],[-180,58],[-38,42],[-7,53],[23,129],[75,164],[8,65],[-45,53],[-8,30],[-60,82],[0,47],[8,47],[98,12],[128,-53],[97,18],[68,29],[76,59],[75,94],[113,76],[38,59],[-8,141],[-22,47],[-7,171],[-15,35],[-53,47],[-105,30],[-76,18],[-105,0],[-83,-12],[-120,-65],[-61,-52],[-37,-65],[-16,-59],[-128,-88],[-83,-48],[-158,-5],[-83,12],[-52,18],[-113,64],[-23,53],[-60,47],[-67,36],[-91,88],[-112,88],[-61,77],[1,141],[-30,36],[-91,65],[-22,46],[-8,47],[-90,95],[-68,23],[-105,53],[-173,136],[-83,18],[-120,41],[-76,35],[-67,242],[1,258],[90,83],[45,53],[0,146],[8,54],[22,52],[53,35],[46,-17],[67,-12],[31,12],[37,35],[91,94],[37,77],[31,29],[135,82],[15,47],[38,36],[23,100],[0,53],[-143,64],[-75,0],[-53,-11],[-61,-24],[-45,-35],[-30,-41],[-53,-36],[-60,-11],[-60,-47],[-68,-94],[-61,-18],[-44,30],[-53,53],[-45,23],[-23,24],[0,29],[30,35],[38,0],[60,18],[30,35],[-15,47],[8,42],[60,17],[53,-29],[90,0],[166,82],[0,65],[-60,112],[-60,64],[-45,36],[-60,23],[-76,6],[-45,-6],[-68,-111],[-106,-35],[-233,11],[-128,42],[-195,164],[-60,65],[-23,71],[-113,171],[-75,58],[-166,95],[-82,59],[-8,52],[181,136],[38,147],[0,35],[-82,136],[-15,46],[-76,77],[-75,53],[-98,47],[0,47],[46,24],[128,59],[128,35],[68,35],[68,47],[68,23],[127,6],[46,35],[-8,130],[-45,47],[-158,77],[-128,23],[-30,30],[-15,52],[0,60],[23,52],[105,48],[98,23],[91,6],[196,100],[37,52],[8,48],[-30,23],[-121,12],[-97,-6],[-91,-29],[-83,12],[-60,70],[2,28],[-77,37],[-151,35],[-226,66],[-256,35],[-90,41],[-75,71],[23,59],[90,94],[8,65],[60,58],[30,71],[-112,118],[-174,76],[-38,41],[1,41],[-113,142],[0,29],[75,53],[53,-6],[23,6],[52,42],[31,52],[0,71],[15,47],[31,40],[-69,172],[-52,58],[-68,42],[-83,6],[-105,-6],[-129,-70],[-60,-77],[-38,-24],[-90,1],[-90,-36],[-121,-129],[0,-65],[-15,-52],[-46,-71],[-75,-71],[-75,-17],[-128,6],[-128,47],[-83,41],[-83,94],[-44,100],[-83,95],[-31,17],[-37,89],[-45,164],[0,35],[-38,71],[-60,30],[-60,59],[-83,58],[-82,106],[-46,36],[-37,53],[-53,135],[0,147],[38,65],[143,59],[114,5],[44,-23],[83,-24],[144,-29],[185,5],[42,21],[68,52],[45,65],[-7,330],[7,94],[31,59],[30,144],[-30,94],[-106,53],[-30,82],[46,30],[60,59],[15,70],[-7,65],[-98,118],[-37,70],[10,49],[-72,10],[-68,30],[-128,29],[-60,59],[-22,59],[0,112],[120,106],[16,59],[0,47],[-31,46],[-75,24],[-22,59],[-23,183],[-14,47],[-76,65],[-60,29],[-83,29],[-90,6],[-83,-35],[-234,-123],[-136,-88],[-113,-36],[-90,30],[-22,47],[0,306],[-22,82],[-38,24],[-98,-12],[-45,53],[-60,42],[-53,58],[-23,41],[-15,65],[-7,118],[15,53],[53,59],[30,117],[53,83],[0,170],[-37,83],[-106,135],[-308,330],[-211,188],[-180,135],[-482,183],[-128,6],[-204,-5],[-128,-18],[-97,-29],[-98,-59],[-189,-88],[-136,-12],[-98,6],[-158,65],[-52,47],[-75,100],[0,47],[45,77],[60,46],[18,1],[21,26],[137,63],[5,205],[-15,71],[-45,46],[-105,153],[-60,154],[-83,129],[-165,159],[-121,83],[-143,82],[-241,112],[-467,183],[-278,41],[-347,29],[-166,-11],[-234,-70],[-127,-65],[-53,-76],[-1,-165],[-52,-71],[-159,-282],[0,-89],[-23,-147],[-60,-52],[-158,-36],[-272,0],[-248,30],[-75,18],[-188,124],[-15,82],[0,76],[75,124],[98,65],[106,35],[55,0],[232,53],[99,61],[-17,298],[-30,176],[38,59],[61,47],[150,47],[68,5],[22,24],[23,53],[0,47],[-15,65],[-22,47],[-76,41],[-150,59],[-45,29],[-98,83],[-38,59],[1,70],[75,106],[75,35],[68,18],[102,92],[18,61],[1,76],[-23,130],[-75,41],[-30,41],[-136,89],[-52,23],[-324,95],[-83,47],[-30,76],[0,47],[23,88],[0,83],[-15,118],[15,58],[45,94],[114,153],[45,94],[60,95],[8,76],[-8,224],[8,64],[46,71],[0,70],[-15,71],[37,112],[-7,100],[-38,41],[-98,41],[-331,0],[-64,6],[-19,59],[0,147],[15,60],[76,146],[38,53],[195,189],[61,40],[61,54],[135,70],[68,47],[30,82],[-7,83],[-30,141],[-18,25],[-200,140],[-94,7],[-125,-37],[-121,-46],[-165,-12],[-121,53],[-15,36],[0,46],[38,77],[8,64],[-23,83],[-38,47],[-143,94],[-45,59],[-15,65],[8,341],[46,141],[69,82],[-19,40],[68,83],[38,23],[113,47],[128,0],[249,-35],[15,-47],[45,-24],[15,12],[21,67],[124,87],[68,112],[106,47],[188,64],[144,77],[90,82],[15,182],[-143,71],[-4,25],[-28,-2],[-83,47],[-45,35],[-68,17],[-150,0],[-76,54],[-52,6],[-46,-6],[-30,-53],[0,-65],[-15,-29],[-45,-30],[-136,-17],[-30,-65],[-8,-41],[-67,-65],[-76,-17],[-83,-6],[-173,53],[-68,0],[-105,77],[-83,106],[-37,147],[-23,629],[8,53],[38,30],[98,111],[53,35],[128,24],[369,-1],[32,25],[15,36],[38,23],[159,147],[45,59],[0,265],[23,88],[15,23],[75,53],[83,0],[241,-135],[90,-15],[106,28],[30,28],[91,53],[90,111],[99,165],[22,100],[91,270],[0,471],[-22,88],[-60,101],[-91,29],[-90,77],[-37,76],[-31,94],[-7,94],[7,71],[24,88],[22,194],[30,59],[15,94],[-9,64],[0,123],[-15,41],[-165,148],[7,24],[31,23],[75,53],[75,35],[114,76],[30,35],[188,94],[181,136],[159,64],[52,36],[8,23],[0,100],[45,88],[53,77],[98,106],[211,82],[219,17],[30,24],[15,35],[30,24],[61,5],[37,-35],[53,-88],[70,-32],[67,15],[68,0],[121,-41],[67,-35],[390,-45],[130,148],[255,83],[76,4],[30,-14],[341,-1],[128,24],[98,0],[128,-30],[52,-35],[0,-41],[31,-89],[67,-59],[196,-112],[219,-71],[75,-41],[226,-59],[324,18],[15,41],[-7,53],[18,47],[111,-3],[136,17],[98,0],[219,77],[120,105],[83,59],[83,41],[121,147],[15,76],[113,35],[60,83],[227,206],[75,129],[68,29],[144,18],[226,88],[75,77],[105,-42],[46,-29],[30,-59],[-23,-47],[-105,23],[-121,-5],[-83,-53],[-45,-47],[-98,-47],[7,-112],[136,-12],[38,59],[30,70],[83,24],[136,-18],[97,-41],[38,-77],[45,-23],[136,100],[38,94],[-75,124],[0,52],[15,48],[-53,41],[-30,52],[60,60],[-52,52],[-76,-35],[-90,6],[-23,53],[-98,12],[-30,29],[45,65],[106,47],[83,59],[91,153],[158,12],[83,46],[30,54],[28,1],[54,43],[75,41],[38,5],[83,0],[136,-47],[68,-6],[142,6],[68,18],[76,0],[37,-30],[0,-29],[-68,-47],[-98,-18],[-75,-47],[-23,-53],[15,-76],[46,-71],[131,-48],[396,-93],[264,23],[233,70],[76,41],[30,76],[0,54],[-30,23],[-15,65],[98,47],[158,0],[83,23],[-7,59],[60,47],[181,47],[75,35],[113,12],[106,-24],[30,-29],[0,-130],[-23,-70],[23,-94],[90,-24],[76,6],[75,17],[60,30],[121,117],[60,36],[76,-6],[75,-30],[45,-41],[68,-88],[128,-59],[52,-53],[-15,-106],[53,-77],[91,-53],[67,-64],[90,-12],[23,41],[0,29],[38,47],[68,-18],[15,-29],[0,-64],[-30,-48],[0,-76],[74,-36],[53,18],[23,41],[23,18],[98,-47],[22,12],[-7,64],[15,259],[-30,53],[-75,41],[-68,71],[23,88],[38,41],[141,6],[3,-21],[75,-76],[68,-47],[68,-30],[113,5],[0,71],[-53,77],[0,47],[76,0],[68,-35],[45,76],[83,0],[90,-30],[45,-88],[45,35],[8,101],[-67,70],[-91,59],[-45,18],[-166,47],[-52,-24],[-68,-17],[-68,71],[-38,52],[16,65],[-30,53],[0,41],[37,36],[46,-42],[112,-64],[98,58],[30,47],[106,-5],[60,29],[-22,58],[-203,60],[-16,88],[-7,217],[16,65],[22,22],[7,22],[-8,60],[-113,35],[-106,0],[-60,-35],[-23,-83],[-60,-29],[-15,35],[16,141],[0,71],[-15,29],[0,54],[37,46],[53,18],[113,0],[106,-12],[68,-41],[83,-24],[97,-6],[113,24],[136,58],[310,153],[52,35],[38,47],[189,94],[301,0],[106,23],[82,35],[91,12],[75,-6],[8,-88],[23,-24],[90,24],[45,35],[120,24],[265,82],[82,11],[204,6],[0,18],[-97,106],[15,65],[90,35],[241,-6],[106,-54],[60,-47],[75,-29],[106,-12],[90,18],[91,111],[0,53],[22,65],[23,35],[76,29],[82,-6],[68,-35],[0,-94],[-76,-129],[0,-41]],[[106269,88804],[99,-15],[83,0],[68,-18],[15,-41],[189,-24],[166,-29],[128,-65],[181,-118],[23,-41],[60,-58],[38,-54],[0,-41],[249,-88],[264,-112],[114,-153],[37,-94],[-7,-35],[-129,-6],[-90,-47],[-83,-76],[-38,-65],[-45,-41],[-23,-100],[-98,-159],[0,-83],[-15,-88],[-38,-147],[-23,-53],[38,-88],[22,-148],[0,-82],[30,-141],[46,-88],[15,-128],[25,-14],[0,-59],[-3,-44],[-32,-69],[-60,-41],[-46,-20],[-40,-61],[-24,-57],[0,-108],[31,-141],[-14,-34],[-39,-30],[-57,-11],[-280,-2],[-102,-20],[-25,-22],[-57,-124],[-4,-91],[18,-70],[50,-55],[63,-58],[295,-111],[152,-11],[103,-16],[216,-72],[68,3],[110,41],[64,-3],[46,-41],[14,-61],[25,-50],[49,-39],[62,-32],[80,-23],[85,-36],[71,-52],[159,-94],[61,-17],[134,-8],[185,11],[195,44],[92,36],[152,92],[51,107],[38,33],[61,28],[89,80],[95,55],[68,0],[202,36],[81,-3],[72,-31],[6,-60],[128,-224],[24,-78],[12,-105],[17,-49],[102,-155],[224,-103],[33,-2],[135,-47],[20,-19],[43,-3],[223,-103],[106,-66],[46,-36],[96,-105],[106,-152],[146,-125],[39,-22],[72,-90],[268,-103],[89,-47],[85,-33],[88,-70],[83,-39],[233,-140],[177,-139],[96,-99],[21,-76],[32,-29],[60,-86],[145,-271],[36,-160],[24,-69],[11,-240],[-29,-150],[-14,-160],[4,-146],[159,-227],[156,-147],[46,-96],[-14,-89],[28,-22],[21,-47],[7,-55],[36,-69],[21,-91],[-4,-48],[22,-44],[78,-86],[109,-179],[11,-78],[35,-105],[22,-27],[13,-1],[47,-63],[0,-41],[-11,-42],[-106,-63],[-29,-28],[-67,-99],[-50,-31],[-21,-46],[-36,-188],[-35,-34],[10,-96],[-14,-53],[-32,-28],[-49,-16],[-61,-63],[-28,-50],[-92,-92],[-75,-30],[-53,-36],[-39,-47],[-14,-63],[-50,-45],[-64,-30],[-89,-63],[-35,-37],[-25,-41],[-53,-33],[-28,-36],[-54,-22],[-70,0],[-40,17],[-56,41],[-238,14],[-64,19],[-45,31],[-47,5],[-92,-22],[-92,72],[-42,44],[-33,103],[22,99],[-7,36],[-107,160],[1,59],[10,41],[50,33],[11,39],[-4,33],[-21,22],[-50,20],[-205,212],[-75,102],[-142,274],[-52,31],[-40,38],[-131,172],[-50,47],[-116,83],[-298,141],[-298,100],[-315,124],[-330,116],[-89,44],[-141,39],[-110,20],[-149,16],[-614,0],[-92,-5],[-195,-34],[-163,-79],[-124,-103],[-32,-52],[-50,-31],[-78,-22],[-212,39],[-192,3],[-213,-11],[-241,-30],[-117,-39],[-120,-69],[-96,-141],[-25,-64],[-60,-58],[-107,-284],[-32,-36],[-252,-163],[-163,-172],[-112,-71],[-203,-52],[-104,-18],[-104,-33],[-85,-48],[-81,-92],[-80,-26],[-85,4],[-109,44],[-113,7],[-109,19],[-71,22],[-57,37],[-47,74],[-66,33],[-156,11],[-161,-4],[-160,23],[-175,3],[-327,81],[-99,15],[-189,52],[-194,70],[-349,151],[-53,48],[-85,140],[-56,173],[0,44],[14,34],[0,58],[-47,52],[-185,59],[-85,11],[-76,77],[-42,67],[-28,125],[-29,48],[-14,55],[81,15],[56,-21],[85,29],[15,47],[-10,218],[-89,261],[-67,107],[-2,18],[-40,19],[-38,44],[-104,59],[-5,62],[71,82],[5,40],[28,63],[43,44],[128,107],[99,99],[62,33],[42,34],[33,81],[29,33],[75,37],[71,73],[97,72],[17,39],[0,118],[-26,6],[-58,-32],[-51,-72],[-101,-66],[-134,-131],[-93,-72],[-134,-6],[-34,39],[-8,144],[25,86],[76,78],[58,46],[287,91],[92,40],[202,157],[92,52],[68,79],[134,118],[92,59],[17,39],[-109,-13],[-76,-33],[-84,-26],[-210,-105],[-134,0],[-59,14],[-59,32],[-101,-19],[0,-145],[-17,-131],[-140,-83],[-124,-31],[-50,-30],[-7,-44],[-42,-80],[-50,-19],[-39,8],[-53,49],[-60,86],[-43,39],[-57,17],[-71,5],[-124,105],[-53,17],[-74,5],[-167,-2],[-78,-11],[-60,-26],[-61,-41],[-24,-47],[0,-119],[-22,-52],[-60,-47],[-29,-36],[-35,-83],[-46,-53],[0,-35],[18,-31],[117,-91],[35,-50],[0,-66],[-53,-39],[-43,-11],[-114,5],[-80,46],[-93,37],[-163,40],[-26,18],[-69,19],[-75,51],[-18,0],[-78,33],[-209,199],[-78,44],[-50,61],[4,216],[28,212],[-24,158],[-103,202],[-121,83],[-85,44],[-53,86],[-82,99],[-46,36],[-42,50],[-36,22],[-35,39],[-8,20],[-28,18],[-25,36],[-7,36],[4,163],[-25,100],[-3,154],[-25,119],[-43,100],[-10,96],[64,64],[3,12],[56,10],[4,19],[93,92],[60,16],[46,28],[46,47],[96,155],[-7,139],[64,36],[379,94],[151,63],[82,64],[63,99],[7,53],[25,69],[6,275],[-44,187],[-7,64],[13,69],[-56,59],[-45,132],[-12,69],[6,118],[57,74],[25,59],[88,132],[0,64],[19,64],[89,216],[44,74],[113,123],[25,54],[89,108],[94,98],[82,30],[57,44],[133,138],[69,9],[195,157],[64,0],[50,-23],[188,-33],[113,-42],[113,18],[61,53],[83,17],[68,100],[22,53],[99,48],[68,123],[75,24],[151,-136],[75,-41],[0,-94],[-30,-71],[8,-106],[90,-70],[38,-42],[98,-23],[166,-6],[220,53],[143,0],[219,76],[60,30],[91,82],[68,23],[144,95],[158,129],[204,177],[68,117],[90,59],[38,153],[250,35],[234,0],[286,153],[99,-23],[98,-65],[91,-47],[181,-54],[166,-70],[121,-17],[98,-42],[97,-26]],[[135294,48288],[0,-41],[38,-49],[-10,-106],[20,-49],[82,-87],[24,-41],[0,-45],[34,-46],[72,-60],[5,-113],[24,-34],[183,-23],[49,-38],[48,-71],[72,-76],[29,-68],[0,-60],[24,-181],[-5,-185],[62,-94],[59,-64],[-5,-98],[-34,-35],[-15,-67],[0,-57],[24,-83],[5,-102],[-25,-418],[-1,-268],[34,-91],[29,-116],[87,-181],[77,-68],[19,-34],[63,-65],[53,-11],[141,4],[91,-8],[39,-22],[48,-34],[97,-159],[125,-105],[53,-61],[73,-56],[164,-102],[236,-65],[54,-34],[86,-75],[126,-72],[39,-30],[116,-64],[115,-34],[121,-83],[111,-27],[160,8],[5,-10],[10,2],[81,-38],[68,-53],[15,-45],[62,-49],[382,-227],[178,-166],[29,-90],[-10,-185],[29,-75],[33,-46],[0,-98],[-38,-79],[-39,-41],[-97,-163],[-5,-98],[24,-22],[68,3],[67,-52],[20,-34],[-10,-121],[-20,-64],[-92,-94],[-96,-71],[-121,-50],[-49,-45],[-38,-60],[-117,-106],[-246,-131],[-48,-4],[-73,-30],[-73,-49],[-77,-79],[-68,-136],[-39,-109],[-53,-30],[-58,-15],[-140,0],[-48,-8],[-106,-41],[-59,-38],[-125,-286],[-29,-155],[-1,-76],[-29,-97],[-5,-68],[-87,-121],[4,-252],[-29,-45],[-183,-133],[-131,-210],[-87,-102],[-68,-49],[-131,-75],[-82,-106],[-111,-83],[-43,-68],[-78,-241],[-136,-230],[-415,-143],[-131,-11],[-111,72],[-58,15],[-82,-8],[-82,-48],[-107,-42],[-251,-75],[-193,-7],[-92,-12],[-155,-56],[-198,22],[-67,0],[-107,-22],[-151,-64],[-13,-30],[0,-110],[-33,-126],[-18,-5],[-3,-16],[-140,-56],[-72,-72],[-92,-68],[-179,-93],[-73,-50],[-111,-173],[-150,-101],[-125,-102],[-204,-34],[-140,-72],[-39,-60],[-57,-56],[-199,-106],[-174,-105],[-72,-57],[-24,-60],[0,-79],[57,-117],[63,-64],[5,-129],[-49,-60],[-140,-60],[-150,-83],[-217,-101],[-24,-31],[-92,-71],[-54,-57],[-43,-98],[-20,-86],[-33,-65],[-15,-56],[-39,-287],[-78,-86],[-33,-53],[-54,-42],[-72,-41],[-208,-109],[-271,-125],[-120,-71],[-83,-94],[-164,-155],[-150,-101],[-96,-98],[-102,-68],[-121,-30],[-58,0],[-97,-19],[-48,-19],[-63,-45],[-164,0],[-73,12],[-43,22],[-58,53],[-24,49],[-43,41],[-107,23],[-33,46],[-29,101],[-49,23],[-57,11],[-266,231],[-34,56],[-5,60],[10,46],[25,45],[0,128],[-131,155],[-139,139],[-49,30],[-18,18],[-1,13],[-92,83],[-63,38],[-72,19],[-179,-4],[-58,-14],[-53,74],[-19,46],[-10,56],[5,169],[63,68],[72,61],[78,124],[49,57],[96,45],[24,19],[39,41],[19,45],[-24,125],[-48,49],[-63,23],[-130,30],[-19,30],[14,64],[63,56],[63,27],[72,45],[73,72],[58,158],[-5,72],[-43,136],[-39,71],[-48,132],[-121,242],[-23,124],[-121,222],[-19,117],[-39,102],[-178,193],[-58,30],[-58,19],[-73,11],[-280,31],[-48,19],[-43,41],[-34,76],[-10,60],[0,49],[44,60],[53,34],[150,19],[126,0],[48,30],[34,34],[72,38],[73,26],[159,37],[222,230],[73,41],[106,35],[189,147],[29,52],[-4,178],[67,128],[-19,445],[-12,36],[-123,141],[-58,26],[-92,61],[-47,94],[-5,60],[9,57],[-24,271],[0,219],[73,102],[-5,53],[-14,37],[-68,95],[-43,79],[-24,68],[1,203],[-54,302],[1,181],[48,76],[10,56],[-15,113],[58,132],[1,241],[9,53],[88,95],[126,71],[91,19],[68,3],[295,4],[92,-8],[57,-26],[97,-79],[67,-34],[112,-19],[96,-45],[82,-53],[97,-80],[43,-22],[44,-12],[58,-3],[77,26],[150,90],[92,34],[193,136],[112,64],[53,41],[67,109],[54,69],[145,124],[43,45],[20,42],[106,78],[73,42],[58,15],[125,0],[63,-11],[92,-38],[63,-94],[14,-68],[43,-53],[213,-159],[116,-102],[68,-37],[101,-19],[73,7],[304,147],[92,27],[82,33],[58,45],[111,113],[25,129],[0,60],[24,60],[10,147],[24,57],[58,41],[20,38],[48,57],[48,37],[256,49],[223,98],[76,16],[124,-2],[22,-10],[53,0],[48,26],[54,7],[48,19],[39,34],[14,45],[5,87],[44,42],[130,-8],[111,60],[150,-8],[29,19],[78,8],[62,-4],[54,-27],[48,-7],[58,7],[48,27],[44,38],[101,3],[73,-30],[154,-4],[44,15],[-14,42],[-73,109],[0,53],[39,53],[63,41],[33,49],[-14,57],[-43,18],[-126,19],[-33,16],[-15,-9],[-49,16],[-82,8],[-72,26],[-68,15],[0,49],[49,57],[183,135],[49,102],[15,162],[-10,283],[73,79],[34,106],[68,102],[24,52],[-5,310],[73,98],[-9,75],[-34,23],[-44,15],[-43,30],[-68,56],[-24,38],[-14,57],[0,120],[53,163],[0,45],[-28,68],[-34,166],[29,132],[-4,41],[-97,140],[-44,26],[-33,38],[-34,53],[0,45],[44,56],[92,71],[110,-55],[160,-1],[58,30],[9,27],[39,37],[150,-4],[39,-37],[0,-72]],[[118404,103709],[90,-24],[76,0],[128,18],[146,-1],[68,-35],[85,-22],[62,-26],[109,-66],[265,-37],[21,6],[98,-2],[136,-59],[302,-200],[75,-65],[53,-77],[83,-247],[15,-118],[7,-317],[45,-94],[23,-518],[-69,-323],[-119,-341],[-138,-96],[-33,-77],[-48,-30],[-137,-11],[-197,-133],[-23,-53],[-35,-172],[56,-47],[5,-99],[-161,-174],[-19,-66],[-86,-106],[-42,-33],[-350,-225],[-176,-136],[-298,-188],[-80,25],[-14,19],[-14,77],[52,56],[61,26],[43,29],[47,51],[67,45],[61,11],[198,14],[34,22],[9,30],[33,33],[34,7],[99,52],[42,33],[67,140],[118,122],[0,22],[-23,11],[-95,3],[-57,-29],[-104,-74],[-203,-81],[-78,3],[-61,-71],[-106,-77],[-60,-65],[11,-3],[-29,-18],[-14,-32],[-33,-6],[0,-32],[-76,-89],[-47,-37],[-75,-85],[-44,-25],[-20,-24],[-3,-20],[-43,-26],[-61,0],[-86,34],[-193,-41],[-33,-26],[-52,-63],[-76,-62],[-71,-11],[-85,0],[-133,-15],[-104,-44],[-104,-74],[-109,-217],[5,-70],[52,-74],[47,-33],[137,0],[33,-30],[5,-84],[-62,-137],[-10,-77],[-32,-63],[-67,-47],[-175,-4],[-52,-29],[-19,-96],[0,-59],[-75,-308],[-39,-39],[-66,-14],[-189,-4],[-33,-7],[-29,-59],[76,-48],[14,-59],[0,-70],[38,-48],[61,-41],[29,-33],[56,-96],[62,-77],[66,-11],[61,4],[64,22],[169,-60],[75,-44],[71,-70],[85,-166],[127,-143],[81,-78],[56,-81],[19,-155],[34,-22],[35,-57],[111,-39],[57,-11],[66,-29],[28,-52],[10,-107],[137,-92],[38,-48],[14,-48],[42,-59],[52,-51],[57,-85],[66,-155],[245,-324],[24,-100],[33,-66],[-8,-40],[60,-30],[71,-52],[19,-59],[52,-51],[90,-140],[23,-89],[0,-272],[38,-67],[38,-37],[94,-128],[90,-82],[104,-18],[94,-41],[53,-41],[80,-95],[54,-29],[17,-27],[160,-92],[81,-11],[40,6],[139,-28],[152,-11],[137,-45],[33,-40],[42,-29],[34,-85],[14,-140],[47,-52],[71,-103],[94,-188],[19,-59],[-47,-66],[-34,-32],[15,-33],[15,-82],[23,-59],[60,-24],[4,-35],[49,-34],[19,-44],[9,-85],[-4,-81],[-39,-81],[-42,-59],[0,-81],[14,-52],[28,-51],[14,-63],[57,-106],[-14,-60],[-67,-58],[-75,-49],[-81,-29],[-38,-66],[15,-63],[0,-63],[-22,-13],[-17,-62],[-45,-47],[-45,-94],[-8,-100],[5,-86],[22,-17],[38,-100],[-14,-59],[-67,-55],[-179,-4],[-80,-25],[-20,-56],[67,-40],[94,-44],[66,-56],[58,-158],[100,-65],[45,-64],[-15,-233],[22,-65],[15,-182],[-7,-30],[-76,42],[-121,0],[-113,58],[-30,6],[-98,0],[-45,36],[-76,41],[-37,-17],[-129,23],[-30,29],[-113,54],[-16,47],[38,59],[8,41],[-106,100],[-68,47],[0,41],[-30,35],[-117,1],[-28,29],[4,44],[81,63],[-33,33],[-156,15],[-52,15],[-52,26],[-48,7],[-80,33],[-75,44],[-43,11],[-85,0],[-81,-62],[-85,-118],[-24,-88],[-4,-155],[-15,-63],[-38,-63],[18,-24],[-31,-118],[-15,-129],[-68,-159],[-22,-122],[-33,-37],[-81,-40],[-57,-8],[-127,49],[-59,85],[-29,-3],[-53,64],[6,53],[-26,14],[-19,81],[-38,8],[-51,0],[-19,-19],[-10,-44],[-38,-52],[-33,-25],[-62,-22],[-100,-1],[-108,-33],[-175,-6],[-128,-38],[-151,4],[-71,23],[-103,0],[-67,-23],[-28,-51],[-5,-55],[-19,-59],[0,-74],[-24,-41],[-62,-62],[-23,-44],[-5,-192],[-19,-52],[14,-132],[38,-40],[52,-19],[62,-8],[65,-18],[90,-48],[53,-123],[52,-60],[15,-53],[45,-83],[-30,-58],[-129,-65],[-68,36],[-23,70],[-165,71],[-91,6],[-60,-42],[-16,-99],[31,-54],[75,-23],[-7,-129],[14,-18],[23,-65],[46,0],[90,-23],[53,-65],[7,-36],[-37,-29],[-69,-12],[-83,-35],[38,-124],[23,-29],[-23,-76],[-7,-83],[-31,-76],[-38,-30],[0,-29],[23,-50],[-30,-41],[-38,-12],[-23,-47],[-7,-53],[-53,-12],[-98,65],[-45,12],[-76,53],[-53,6],[-38,-41],[30,-59],[0,-47],[-30,-89],[-203,65],[-137,88],[-83,36],[-98,12],[-113,-12],[-83,-24],[-83,30],[-53,65],[0,65],[-38,70],[8,53],[-45,65],[-15,59],[-68,141],[-151,206],[0,70],[-98,159],[-22,65],[-53,41],[0,65],[-23,53],[38,118],[0,70],[-8,88],[-30,77],[-22,141],[-7,141],[15,77],[0,88],[-10,13],[-4,60],[-54,62],[53,59],[22,83],[0,93],[-37,142],[53,18],[30,111],[83,12],[-8,64],[-75,30],[-68,53],[15,77],[45,61],[-37,77],[-38,0],[-8,82],[107,136],[75,0],[106,-12],[98,6],[30,-83],[46,-6],[67,18],[61,-41],[-15,-94],[60,-24],[226,-36],[6,-13],[84,2],[48,-22],[13,-43],[76,0],[83,-36],[-14,-23],[35,-49],[33,-22],[48,-15],[80,59],[66,33],[20,0],[34,35],[5,28],[-16,40],[9,121],[24,60],[10,1],[61,65],[-6,40],[12,28],[-8,41],[8,41],[37,12],[53,0],[36,-21],[39,-5],[-1,-37],[-80,-55],[-19,-44],[0,-52],[85,-118],[0,-55],[33,-52],[9,-40],[95,-85],[80,-92],[76,-71],[52,-14],[0,30],[-19,44],[-95,85],[-23,40],[-43,44],[-19,45],[0,132],[-14,74],[33,29],[95,30],[22,57],[-9,7],[-8,53],[30,35],[15,88],[-12,77],[19,22],[95,33],[19,50],[-113,83],[-30,36],[-15,41],[0,52],[-53,36],[-278,7],[-5,13],[-45,-5],[-43,15],[24,33],[28,18],[10,45],[75,4],[113,-30],[15,41],[31,35],[-8,41],[53,-6],[67,-48],[79,10],[34,19],[46,88],[-52,131],[14,40],[30,21],[23,40],[-4,30],[-23,40],[5,24],[-30,35],[0,59],[91,41],[0,47],[30,129],[76,12],[60,0],[38,-41],[15,-47],[45,-65],[17,-49],[16,-8],[33,-85],[10,-52],[0,-184],[9,-29],[132,-96],[14,-41],[5,-81],[-71,-140],[-10,-63],[-33,-69],[-23,-129],[-48,-104],[0,-33],[20,-33],[179,-26],[118,-103],[33,-15],[71,18],[62,37],[23,26],[10,37],[42,62],[52,30],[19,41],[34,36],[61,41],[66,26],[118,3],[62,19],[104,47],[34,37],[9,181],[-38,44],[-80,59],[-19,26],[6,19],[-18,10],[0,107],[-21,19],[38,73],[-28,67],[0,47],[-24,34],[14,33],[38,0],[99,-22],[62,-23],[42,-3],[43,19],[34,5],[5,43],[29,10],[-2,7],[147,33],[52,38],[-23,80],[9,45],[47,73],[29,19],[28,4],[28,25],[-137,11],[-71,19],[-85,0],[-62,-26],[-118,-81],[-66,-15],[-56,89],[-10,40],[-24,30],[-4,287],[14,63],[19,41],[114,62],[127,44],[194,133],[67,15],[28,29],[-47,11],[-147,4],[-76,-15],[-85,-33],[-260,0],[-19,30],[0,24],[-16,4],[30,77],[10,2],[5,40],[19,44],[0,88],[-5,38],[-66,36],[-90,15],[-42,-7],[-48,-30],[-19,-51],[-43,-55],[-61,-22],[-66,7],[-104,48],[-57,14],[-47,38],[-99,58],[-95,15],[-57,-15],[-38,-55],[-9,-51],[14,-48],[-62,-96],[-9,-107],[101,-14],[7,-47],[-68,-42],[-38,-41],[-75,-47],[-38,-41],[38,0],[30,-35],[0,-77],[-60,-17],[-144,-6],[-91,-24],[-75,-29],[-60,0],[-69,24],[-7,-75],[-24,-30],[-85,-33],[-24,-29],[-11,-50],[8,-13],[0,-59],[-38,-52],[-61,0],[-45,52],[-53,42],[-37,-6],[-46,-36],[-60,-17],[0,-41],[30,-35],[-38,-48],[-116,-29],[-42,-82],[-53,-36],[-167,-11],[0,82],[-62,53],[-103,-45],[-12,-38],[7,-69],[-14,-30],[-95,-11],[-28,-22],[0,-15],[-24,-40],[-33,-7],[-35,12],[-16,-5],[-68,21],[-65,-10],[-14,-52],[26,-36],[136,-106],[60,-35],[76,0],[0,-29],[-83,-65],[7,-71],[46,-59],[-8,-141],[-23,-76],[-128,-165],[-106,-65],[-91,-29],[-30,35],[-45,30],[-38,41],[-98,59],[-121,5],[-38,-35],[-53,-11],[-7,58],[-68,242],[38,164],[30,218],[-30,118],[0,53],[-53,76],[-22,76],[8,142],[37,82],[0,65],[-22,127],[-38,126],[-7,88],[-38,187],[-45,137],[0,106],[-105,153],[-46,35],[-37,77],[-8,117],[75,-65],[33,-3],[50,40],[67,30],[125,0],[65,10],[196,82],[91,59],[0,77],[68,17],[46,-34],[-9,68],[-66,96],[-114,81],[-151,92],[-331,111],[-61,11],[-38,-14],[-48,-89],[-47,-40],[-67,-115],[-9,-51],[-81,-85],[-37,15],[-25,42],[-125,112],[-45,59],[-38,18],[-12,-9],[-25,18],[-47,77],[-14,129],[-42,62],[-119,15],[-109,34],[-23,69],[-76,140],[-80,45],[-24,48],[-14,63],[-28,51],[-52,52],[-28,40],[-46,13],[-84,154],[-31,14],[-14,40],[0,37],[47,67],[-10,114],[-23,40],[-76,74],[-42,26],[-29,29],[13,88],[38,76],[48,21],[20,-8],[56,-3],[34,14],[28,26],[99,15],[19,22],[0,25],[-19,23],[-56,7],[-97,-2],[-87,55],[-50,-2],[-93,-54],[-42,-4],[-162,7],[-53,53],[-151,276],[-22,69],[90,2],[30,59],[7,45],[-27,115],[-29,55],[-42,52],[-38,77],[-9,74],[4,74],[-16,14],[23,76],[35,52],[15,2],[104,92],[24,29],[2,16],[69,21],[69,-12],[134,115],[67,33],[56,41],[-56,103],[-85,77],[-19,41],[-38,40],[-57,37],[-47,11],[-57,-3],[-142,-81],[-127,13],[-30,-3],[-66,56],[-37,15],[-43,41],[-18,55],[0,35],[-32,39],[-8,203],[-27,36],[-9,114],[48,107],[-5,81],[-19,29],[0,56],[33,48],[0,37],[43,103],[0,55],[-61,155],[-52,184],[-33,70],[-24,77],[-85,111],[-5,59],[5,37],[19,33],[80,-44],[52,0],[10,40],[-5,111],[-61,136],[-10,100],[10,47],[28,41],[123,81],[62,15],[118,84],[33,48],[10,37],[42,48],[279,30],[81,18],[80,7],[279,11],[95,11],[66,26],[81,3],[85,45],[156,99],[199,33],[85,22],[161,89],[87,97],[3,50],[104,129],[66,44],[43,63],[5,51],[23,48],[86,66],[142,89],[364,158],[61,10],[76,100],[62,41],[57,59],[-10,136],[-23,41],[-24,84],[43,67],[50,44],[16,43],[24,6],[43,110],[37,58],[29,67],[5,62],[-66,166],[-24,115],[-14,228],[5,203],[85,103],[123,96],[123,36],[57,29],[76,27],[76,18],[132,28],[257,35],[219,71],[159,17],[83,71],[121,65],[59,22],[105,-33],[76,-4],[251,36],[42,34],[48,59],[52,44],[199,29],[61,22],[119,96],[37,14],[70,62],[136,-6],[75,-17],[76,-47],[53,-53]],[[52294,174720],[158,-41],[114,-7],[44,-108],[149,-103],[343,-278],[79,-102],[149,-102],[114,-96],[105,-109],[237,-156],[194,-143],[350,-176],[123,-88],[149,-137],[282,-306],[166,-293],[229,-551],[211,-551],[115,-361],[1,-183],[-53,-307],[-43,-150],[-18,-102],[-12,2],[76,-99],[63,-31],[67,-8],[114,-116],[114,-238],[26,-109],[88,-238],[71,-272],[-183,-661],[-88,-191],[-17,-204],[1,-218],[97,-531],[-246,54],[-315,-55],[-184,-54],[-167,-96],[-219,-75],[-280,-197],[-122,-109],[-26,-157],[9,-122],[17,-69],[-140,-68],[-228,-68],[-70,-82],[-131,-34],[-158,-55],[-184,-95],[-324,-48],[-167,-7],[-385,-35],[-307,-7],[-219,0],[-228,20],[-175,48],[-141,61],[-236,88],[-202,157],[-193,163],[-228,129],[-132,20],[-57,40],[-74,-88],[-35,-68],[-79,61],[-106,0],[-78,-116],[-131,-40],[-158,-14],[-193,20],[-167,109],[-193,0],[-297,-76],[-202,-14],[-140,7],[-140,-7],[-220,7],[-166,-34],[-88,-69],[-263,-41],[-499,-21],[-280,95],[-9,61],[8,103],[-61,0],[-193,142],[-97,109],[-9,123],[26,136],[0,163],[-18,123],[-96,95],[-317,224],[-70,102],[-105,109],[-1,368],[-53,116],[-36,340],[-17,198],[69,435],[26,109],[105,136],[52,205],[0,347],[25,443],[-18,81],[-90,78],[-21,55],[7,437],[30,315],[88,97],[0,35],[-23,47],[-8,41],[15,59],[15,188],[-45,136],[14,376],[83,206],[113,182],[113,118],[220,59],[189,1],[288,-47],[167,-106],[84,-35],[67,-70],[69,-13],[182,7],[98,41],[136,24],[144,-6],[99,-53],[121,-111],[53,-65],[61,-53],[0,-47],[106,0],[205,59],[143,112],[137,41],[121,18],[295,6],[652,-34],[113,17],[318,189],[114,130],[52,82],[0,135],[-61,53],[8,83],[45,158],[7,65],[114,53],[121,35],[60,36],[68,124],[53,270],[-46,77],[-60,29],[-83,18],[-39,52],[0,48],[15,41],[76,6],[38,-24],[76,24],[60,41],[99,12],[30,47],[53,141],[22,112],[-8,171],[-106,123],[-99,211],[-37,54],[-54,11],[0,47],[-22,42],[-38,23],[-31,147],[106,47],[76,6],[76,-5],[68,-36],[23,-53],[0,-106],[167,-129],[161,-143],[88,-103],[350,-183],[71,-75],[44,-75],[105,-88]],[[82662,112388],[48,-12],[26,-20],[16,-27],[0,-70],[31,-92],[67,-55],[71,-22],[59,-61],[-6,-73],[7,-14],[80,-50],[80,-15],[180,4],[45,12],[144,-15],[120,0],[47,-32],[278,-14],[72,-27],[19,-22],[12,-39],[2,-164],[10,-67],[-12,-112],[-39,-47],[-2,-15],[-25,-20],[-62,-116],[-26,-84],[-9,-62],[0,-117],[28,-52],[4,-112],[-38,-92],[-4,-94],[-76,-110],[-7,-32],[-92,-179],[-89,-94],[-29,-50],[-51,-62],[-102,-94],[-195,-219],[-46,-82],[1,-80],[-23,-45],[-65,-84],[7,-115],[-9,-40],[-84,-116],[0,-14],[28,-58],[0,-88],[54,-71],[0,-256],[45,-74],[3,-35],[-131,-211],[-3,-65],[-22,-67],[0,-55],[-45,-82],[-38,-129],[-77,-107],[-16,-7],[-91,-133],[-10,-46],[-130,-198],[0,-20],[-52,-141],[-27,-121],[7,-325],[40,-90],[56,-69],[189,-318],[122,-137],[61,-114],[36,-43],[102,-58],[57,-71],[310,-294],[242,-171],[226,-194],[288,-200],[393,-341],[260,-175],[48,-67],[39,-30],[187,-100],[72,-47],[35,-13],[115,-22],[68,0],[226,-46],[378,-170],[415,-141],[221,-106],[73,-20],[120,-54],[131,-69],[89,-61],[60,-52],[368,-146],[287,-81],[283,-64],[148,-13],[63,-22],[26,-18],[115,-25],[50,-2],[91,-24],[36,-1],[15,-7],[129,-153],[9,-21],[18,-8],[26,-27],[32,-102],[114,-44],[7,-16],[39,-32],[201,-45],[47,-4],[202,-119],[61,-54],[66,-103],[-13,-164],[-35,-80],[-54,-74],[-6,-24],[5,-46],[-16,-137],[-2,-125],[-12,-53],[4,-33],[-8,-12],[-7,-189],[-31,-40],[-21,-44],[2,-30],[-49,-76],[-10,-32],[7,-59],[-54,-47],[-48,-25],[-54,-7],[-45,-30],[-172,-22],[-130,-33],[-83,-5],[-151,10],[-210,-4],[-118,-36],[-45,0],[-70,-20],[-60,8],[-64,52],[-52,25],[-140,27],[-115,52],[-100,16],[-89,43],[-121,6],[-82,49],[-41,55],[-39,25],[-67,5],[-76,62],[-160,60],[-153,27],[-86,43],[-51,7],[-55,-5],[-41,-13],[-192,-20],[-73,-17],[-137,-7],[-61,2],[-114,26],[-30,42],[-90,6],[-106,-12],[-98,30],[-76,35],[-38,41],[0,136],[-44,22],[-2,60],[-14,8],[-55,-33],[-84,54],[-117,7],[-181,0],[-58,13],[-32,37],[-64,112],[-172,74],[-80,17],[-26,17],[-113,25],[-46,41],[-99,49],[-139,25],[-34,22],[-21,4],[-123,80],[-75,23],[-74,45],[-108,47],[-136,50],[-139,15],[-185,114],[-76,42],[-60,18],[-45,34],[-125,25],[-132,-13],[-242,77],[-136,76],[-53,12],[-136,6],[-58,28],[-95,22],[-78,34],[-50,8],[-9,65],[-118,125],[-38,14],[-58,5],[-166,82],[-22,35],[0,85],[44,99],[-6,47],[-29,30],[-77,50],[-73,27],[-45,12],[-172,15],[-99,58],[-57,64],[-7,47],[-19,28],[-32,27],[-115,67],[-47,17],[-42,30],[-71,102],[-31,22],[-45,13],[-134,109],[-35,50],[-23,99],[-22,42],[-24,17],[-6,59],[-149,28],[-37,58],[-50,184],[-12,232],[-87,87],[-162,212],[-820,754],[-124,203],[-74,213],[-112,164],[-12,164],[-50,297],[52,101],[16,348],[-19,104],[-55,139],[-9,85],[12,97],[48,176],[0,95],[16,18],[37,251],[12,251],[348,445],[297,532],[174,212],[0,68],[34,81],[4,130],[25,64],[0,99],[-29,177],[-59,61],[37,191],[17,154],[39,92],[205,92],[180,45],[53,51],[38,59],[83,95],[10,57],[54,60],[29,22],[191,50],[32,35],[19,64],[22,32],[48,23],[83,-5],[35,-10],[84,-57],[44,-20],[163,-35],[118,-5],[125,-18],[233,165],[47,13],[105,4],[74,-12],[48,3],[86,52],[51,52],[77,52],[137,75],[99,82],[38,14],[93,58],[38,11],[30,24],[88,4]],[[120450,89242],[35,-14],[53,14],[51,60],[34,22],[162,-4],[98,-29],[68,5],[92,-24],[9,-12],[51,-19],[36,-33],[54,-29],[55,-4],[14,-15],[27,-9],[89,-4],[42,14],[88,-17],[62,22],[53,-6],[10,-19],[-34,-56],[8,-16],[20,-9],[38,-3],[18,2],[88,54],[0,47],[18,7],[75,-18],[128,-100],[44,-50],[6,-104],[38,-56],[22,-68],[14,-123],[-9,-43],[37,-92],[50,-44],[95,-54],[18,-22],[15,-49],[137,-105],[20,-34],[43,-27],[62,-17],[14,-20],[30,-125],[44,-83],[60,-66],[31,-20],[86,-104],[68,-103],[46,-92],[32,-108],[71,-81],[158,-91],[54,-41],[21,-28],[30,-69],[8,-81],[96,-110],[54,-39],[66,-30],[13,-15],[2,-21],[-50,-74],[2,-90],[-30,-25],[-56,-17],[-53,-41],[-48,-9],[-30,-36],[12,-44],[73,-72],[74,-28],[106,-57],[27,-24],[7,-42],[-1,-25],[-15,-33],[-20,-28],[-30,-23],[-64,-22],[-56,-1],[-38,-36],[-18,-34],[-27,-106],[5,-132],[20,-39],[16,-21],[141,-63],[8,-25],[-22,-60],[10,-34],[46,-48],[0,-77],[34,-68],[0,-17],[-42,-55],[-10,-26],[8,-64],[12,-22],[-16,-14],[-32,5],[-20,20],[-32,3],[-34,-14],[-54,-38],[-42,-107],[-22,-89],[4,-59],[76,-103],[33,-22],[48,26],[39,-5],[11,-10],[2,-23],[2,-70],[-16,-48],[-47,-67],[19,-67],[-2,-50],[-80,-82],[-10,-28],[-66,-86],[-8,-34],[2,-74],[11,-34],[25,-7],[12,-20],[24,-82],[-18,-95],[-50,-61],[-8,-37],[2,-31],[30,-37],[2,-22],[-64,-64],[8,-22],[22,-4],[37,15],[23,-4],[10,-69],[51,-25],[18,-19],[-20,-29],[-34,-25],[-4,-82],[-36,-85],[4,-22],[38,-18],[18,-76],[18,-31],[8,-67],[-10,-32],[-22,-28],[-50,-17],[-78,-69],[-10,-18],[0,-89],[22,-89],[-18,-29],[-80,-8],[-34,-20],[-87,-78],[-23,-64],[-2,-37],[10,-15],[40,-16],[26,-25],[10,-18],[-6,-22],[-18,-8],[-38,3],[-120,53],[-147,13],[-64,24],[-20,60],[-38,24],[-127,52],[-66,17],[-104,87],[-48,22],[-37,5],[-35,32],[-43,2],[-86,71],[-72,18],[-39,21],[-27,30],[-39,6],[-96,55],[-131,168],[-144,102],[-91,96],[-43,16],[-127,109],[-140,62],[-123,31],[-32,24],[-32,34],[-48,115],[-84,58],[-213,82],[-46,0],[-56,-11],[-30,8],[-74,42],[-51,47],[-94,57],[-10,0],[-16,-42],[-22,-12],[-44,28],[2,22],[26,24],[0,27],[-80,73],[-119,83],[-24,9],[-34,-2],[-30,-26],[-44,-3],[-30,11],[-97,63],[-28,-3],[-30,8],[-164,145],[-6,50],[21,21],[-2,60],[-58,115],[-56,40],[-142,95],[-422,154],[-17,19],[-41,9],[-136,73],[-54,19],[-79,13],[-58,42],[-152,41],[-4,50],[18,24],[34,23],[8,18],[-6,17],[-99,8],[-47,-21],[-115,-14],[-66,69],[-36,16],[-6,28],[-34,34],[-8,31],[-26,18],[-79,14],[-26,56],[-88,18],[-74,33],[20,84],[-10,30],[-31,29],[0,40],[-13,33],[-71,78],[-48,32],[-84,21],[-28,19],[-30,0],[-110,99],[-45,22],[-38,12],[-60,-1],[-147,137],[-57,11],[-52,22],[-14,19],[-3,61],[-21,21],[19,28],[43,21],[14,27],[-24,99],[-14,12],[9,63],[-18,29],[0,30],[34,49],[6,47],[-32,59],[-64,62],[-39,21],[-94,6],[-16,15],[10,36],[60,31],[17,17],[1,61],[-12,29],[2,17],[22,19],[8,3],[45,-16],[16,-25],[86,69],[92,3],[46,-21],[66,-2],[24,16],[19,26],[74,5],[14,21],[73,40],[26,6],[51,-45],[54,-29],[6,-40],[-18,-30],[0,-25],[42,-85],[28,-7],[18,-17],[56,-11],[23,-24],[108,-24],[44,-31],[94,-9],[42,11],[28,22],[32,49],[-9,82],[33,30],[109,66],[15,18],[17,0],[28,31],[20,46],[90,38],[24,0],[46,-26],[32,1],[38,45],[123,39],[16,73],[49,56],[5,90],[20,25],[2,17],[-15,85],[21,22],[41,12],[83,-6],[278,70],[-2,34],[-62,58],[-50,76],[-2,136],[-38,109],[-15,265],[-14,68],[-66,70],[-74,61],[-10,36],[0,26],[56,83],[82,35],[4,13],[-22,17],[-4,20],[6,61],[49,87],[38,23],[89,34],[118,-9],[51,-28],[29,-5],[82,-2],[73,-80],[12,-74],[18,-24],[59,-38],[8,-17],[6,-70],[-50,-66],[-3,-42],[42,-138],[39,8],[46,86],[32,5],[32,-5],[57,-53],[234,-41],[39,-28],[14,-25],[68,-50],[0,-63],[-40,-42],[-88,-55],[-8,-42],[39,-79],[89,-119],[7,-25],[-7,-36],[-29,-58],[7,-28],[117,-119],[25,-44],[46,-22],[36,0],[156,-108],[113,-63],[53,-62],[11,-38],[-7,-91],[-21,-42],[14,-85],[99,-36],[46,-31],[39,-63],[25,-6],[25,17],[14,35],[0,152],[25,53],[14,179],[-35,42],[-21,44],[-18,169],[39,72],[59,34],[13,29],[-8,19],[-82,53],[4,17],[-20,11],[-32,33],[-29,97],[-22,33],[-7,108],[71,43],[-3,23],[-29,13],[-47,2],[-48,17],[-37,31],[-72,155],[11,168],[37,27],[16,29],[3,25],[-14,22],[-119,40],[-32,21],[-22,18],[-30,51],[-129,101],[-35,19],[-74,70],[19,44],[24,14],[30,35],[24,5],[-1,78],[16,23],[32,-2],[90,-48],[38,-23],[68,-64]],[[124106,94948],[0,-59],[22,-52],[60,-89],[20,-75],[54,-83],[24,-63],[9,-73],[5,-155],[-33,-113],[4,-267],[24,-132],[13,-185],[-9,-202],[-28,-100],[9,-99],[71,-155],[75,-77],[38,-133],[-5,-74],[-62,-73],[-42,-103],[-24,-100],[-28,-74],[-5,-51],[-11,-11],[0,-67],[77,-239],[89,-100],[18,-60],[16,-13],[68,-6],[136,-76],[68,-59],[18,-56],[64,-39],[52,-60],[14,-51],[9,-111],[76,-70],[61,-26],[15,-36],[-24,-48],[0,-26],[18,-26],[57,-22],[10,-29],[-10,-70],[5,-48],[23,-41],[62,-55],[-19,-151],[-57,-110],[70,-67],[-22,-58],[-152,-142],[-45,-53],[-98,-17],[-182,-88],[-37,-77],[-68,-35],[-129,-6],[-38,47],[-30,94],[-87,76],[-48,20],[-52,51],[-14,23],[0,44],[-19,29],[-52,71],[-28,25],[-38,19],[-28,41],[0,44],[-33,16],[-114,107],[-6,34],[-135,46],[-57,0],[-81,-41],[-28,26],[-9,81],[-81,74],[-33,44],[-9,138],[-28,109],[9,22],[-9,18],[-52,44],[-62,19],[-37,26],[-67,29],[-94,1],[-52,36],[-38,41],[-14,37],[-29,33],[-42,18],[-79,59],[-22,53],[-5,66],[-69,29],[-14,40],[52,74],[-19,37],[-52,3],[-42,19],[23,63],[-14,11],[-61,3],[-10,26],[24,33],[61,26],[20,52],[75,29],[47,37],[-38,122],[0,47],[20,30],[56,25],[43,4],[28,-22],[57,63],[81,7],[156,-4],[75,-22],[57,-37],[73,-84],[8,73],[28,15],[118,-4],[47,11],[-18,22],[-119,48],[-18,254],[-33,37],[-71,19],[-14,33],[28,29],[28,52],[85,11],[5,40],[-28,41],[-161,37],[-90,52],[-80,66],[-52,77],[-90,107],[-122,63],[-24,55],[-57,81],[-129,116],[-27,-5],[-28,-25],[-71,-12],[-62,70],[-4,56],[28,66],[-24,70],[-89,103],[43,37],[56,22],[38,29],[33,236],[67,129],[5,96],[61,136],[5,52],[24,44],[52,52],[0,29],[-15,26],[-32,7],[-48,-7],[-104,-63],[-80,0],[-166,100],[-56,55],[-53,104],[-118,118],[-138,179],[-36,19],[-104,34],[-38,22],[-66,129],[0,92],[23,44],[29,37],[57,41],[80,25],[132,11],[93,-3],[75,22],[151,65],[188,41],[62,33],[236,18],[66,19],[33,19],[156,33],[143,-1],[51,-18],[85,-80],[15,-82],[68,-165],[75,-70],[143,-195],[61,-47],[60,-94],[76,-6],[67,-59],[8,-76],[68,-106],[15,-59],[30,-59],[8,-118]],[[126446,127821],[44,-35],[4,-35],[51,-34],[20,-38],[32,-28],[36,-20],[23,-27],[56,-4],[21,-20],[14,-31],[0,-134],[-36,-66],[3,-45],[16,-17],[28,-14],[81,-11],[42,3],[17,-70],[30,-41],[-14,-24],[-16,-4],[-11,-31],[16,-13],[33,13],[20,0],[14,-17],[-23,-67],[31,-46],[0,-26],[-19,-44],[-6,-58],[50,-73],[-5,-49],[-28,-15],[-15,-41],[0,-69],[15,-66],[-93,-56],[-49,-130],[-15,-18],[-20,-88],[9,-61],[27,-39],[11,-53],[98,-128],[0,-22],[-9,-23],[-11,-7],[-83,8],[-6,-75],[-17,-56],[6,-33],[28,-20],[86,-30],[14,-15],[-3,-35],[-58,-26],[-23,-41],[14,-50],[25,-11],[76,-4],[30,-14],[28,-24],[8,-71],[-3,-19],[-30,-44],[5,-35],[20,-34],[103,-57],[9,-24],[-23,-54],[2,-98],[20,-50],[14,-11],[39,0],[17,-17],[0,-26],[-31,-37],[-48,-35],[-14,-30],[21,-70],[47,-42],[24,-49],[40,-50],[97,-78],[151,-83],[44,-23],[103,-31],[67,-2],[47,23],[22,0],[5,-16],[-12,-29],[11,-28],[64,-2],[47,-13],[78,-79],[56,-41],[72,-26],[37,35],[87,10],[69,-71],[42,-18],[19,-30],[-8,-26],[-19,-11],[-40,4],[-22,-10],[-6,-55],[-22,-24],[-75,-20],[-17,-21],[-6,-89],[20,-43],[-11,-67],[5,-26],[39,-13],[45,38],[36,-8],[8,-22],[-8,-17],[-28,-14],[9,-25],[46,-57],[16,-64],[14,-7],[68,-3],[35,-28],[8,-20],[30,-27],[2,-41],[24,-28],[4,-52],[-92,-93],[-56,-21],[-29,2],[-78,-34],[-86,-12],[-44,-14],[-27,-20],[-30,-105],[-44,-27],[-14,-29],[-5,-58],[39,-23],[77,-97],[26,-18],[92,-22],[25,-16],[12,-20],[8,-79],[20,-22],[0,-49],[12,-42],[91,-68],[42,-51],[17,-9],[4,-40],[-27,-32],[-18,-7],[-72,-65],[-24,-37],[8,-126],[-12,-24],[0,-29],[48,-67],[37,-29],[62,-20],[89,31],[17,-4],[-4,-9],[21,-11],[2,-17],[-10,-16],[-54,-53],[-15,-33],[-2,-29],[23,-49],[-14,-30],[-2,-61],[22,-49],[101,-148],[20,-137],[10,-19],[-18,-124],[-14,-16],[9,-34],[30,-40],[44,9],[76,40],[27,-3],[25,-34],[-5,-23],[-18,-17],[-20,-8],[-93,-3],[-25,-19],[57,-35],[7,-100],[53,-62],[4,-117],[-9,-67],[45,-89],[25,-69],[11,-74],[72,-115],[-4,-70],[-19,-55],[-19,-20],[-56,-28],[-73,-14],[-102,11],[-115,120],[-77,149],[-36,36],[-60,40],[-19,3],[-20,-12],[-12,-25],[-30,-11],[-38,56],[-67,18],[-94,4],[-169,-34],[-193,-65],[-187,-140],[-15,-58],[-1,-52],[-19,-41],[-84,-89],[-8,-33],[-36,-247],[9,-156],[-27,-71],[-20,-121],[-36,-72],[-4,-64],[-76,-94],[-30,-56],[0,-22],[-39,-69],[-4,-63],[186,-323],[91,-76],[129,-148],[0,-18],[-42,-20],[-2,-33],[10,-11],[90,3],[25,-11],[17,-46],[-29,-31],[-55,-26],[-14,-16],[-2,-15],[38,-26],[14,-34],[-6,-31],[-48,-40],[-14,-33],[1,-106],[26,-45],[-12,-98],[-73,-178],[-120,-192],[-26,-139],[-37,-50],[-33,-24],[-83,-52],[-36,-2],[-25,20],[-15,25],[-11,68],[13,58],[27,46],[2,29],[-36,65],[-16,66],[-53,70],[-28,57],[-23,124],[-99,115],[-94,76],[2,27],[22,11],[31,67],[54,-8],[30,9],[80,103],[4,126],[-8,2],[-6,23],[-50,43],[-20,28],[-14,63],[-70,75],[-134,8],[-11,31],[23,22],[23,44],[74,22],[100,71],[52,71],[21,108],[-7,51],[-58,39],[-14,35],[92,111],[10,72],[-108,100],[-37,47],[-91,41],[15,28],[112,51],[23,19],[70,80],[142,170],[27,54],[37,39],[21,94],[-15,164],[-23,41],[-67,36],[-31,41],[0,159],[-16,28],[-28,17],[-16,25],[2,24],[26,8],[34,-6],[30,-17],[29,4],[34,27],[16,29],[-2,50],[-49,94],[-42,29],[-34,3],[-26,-10],[-55,1],[-46,36],[-50,7],[-25,26],[0,27],[18,25],[63,31],[16,24],[0,32],[-23,48],[2,59],[-46,29],[-37,47],[-4,94],[77,39],[103,73],[66,0],[119,-23],[36,8],[183,103],[44,66],[4,49],[13,20],[20,0],[40,-39],[46,8],[25,30],[30,19],[37,94],[8,76],[23,54],[-15,87],[-135,91],[-64,79],[-12,28],[-8,119],[-44,27],[-77,126],[-4,28],[-14,23],[-37,17],[-20,23],[4,25],[20,28],[67,35],[44,66],[8,46],[-4,28],[-24,26],[6,51],[82,58],[-5,28],[-82,55],[-20,34],[-6,35],[30,104],[20,34],[48,34],[-2,35],[-24,70],[0,25],[22,43],[0,33],[-8,18],[-48,17],[-29,58],[-6,32],[14,55],[-6,22],[-52,44],[-14,116],[-24,80],[-24,45],[-6,64],[-25,32],[-82,68],[-119,67],[-29,30],[4,79],[19,40],[34,11],[58,70],[6,51],[-9,16],[1,34],[-17,24],[-31,8],[-25,20],[-6,68],[-18,46],[-127,30],[-22,12],[-26,45],[-61,8],[-18,15],[-12,140],[-38,52],[-25,73],[-30,21],[-2,21],[44,71],[5,46],[-101,91],[-15,46],[-29,26],[-115,55],[-59,21],[-14,21],[-4,53],[-44,70],[20,20],[-6,23],[-47,24],[-26,46],[-26,23],[-81,41],[-61,66],[3,20],[34,43],[0,33],[54,18],[20,41],[-4,10],[34,36],[-80,98],[28,38],[4,23],[-73,117],[2,54],[-12,27],[-36,26],[-14,22],[15,85],[77,66],[-2,25],[-44,57],[-1,46],[13,33],[72,57],[14,51],[14,19],[-6,15],[-34,22],[-38,38],[2,39],[22,37],[96,16],[65,51],[10,29],[-8,77],[10,41],[35,21],[39,2],[14,8],[-2,23],[-74,60],[-49,66],[-6,27],[8,22],[32,28],[-3,15],[-75,65],[-15,53],[-23,29],[-11,35],[-8,76],[63,34],[17,23],[51,0],[34,8],[-12,26],[-18,14],[0,112],[27,9],[33,-5]],[[92339,105988],[89,-16],[69,1],[77,-61],[44,-53],[38,-88],[23,-14],[67,-71],[24,-54],[11,-55],[73,-109],[19,-50],[38,-47],[70,-159],[185,-226],[1,-41],[17,-23],[31,-17],[25,0],[58,-70],[45,-82],[21,-75],[28,-41],[19,-63],[75,-75],[28,-75],[20,-20],[50,-28],[43,-41],[-10,-91],[38,-30],[-11,-26],[-41,-21],[-10,-13],[7,-40],[41,-49],[31,-17],[22,-70],[33,-12],[15,-19],[2,-40],[-14,-17],[-3,-19],[10,-15],[0,-63],[-30,-38],[37,-114],[52,-36],[-7,-82],[-24,-48],[0,-31],[-22,-52],[-74,-71],[-34,-13],[-74,-63],[-45,-26],[-68,-9],[-85,0],[-85,-57],[-46,-4],[-85,17],[-51,-4],[-107,-27],[-63,14],[-34,27],[-62,6],[-91,-29],[23,-106],[0,-47],[-17,-6],[-40,13],[-46,27],[-11,22],[-62,44],[-102,53],[-17,1],[-8,28],[-36,46],[-7,38],[-53,57],[-61,93],[-54,42],[0,89],[-15,47],[-71,68],[-41,8],[-114,75],[-68,18],[-80,44],[-136,53],[-68,83],[-85,45],[-40,57],[-85,62],[-85,40],[-39,57],[-29,62],[-113,110],[-12,58],[-72,105],[-24,70],[-59,56],[-2,117],[-9,18],[8,159],[19,70],[12,5],[31,50],[-5,40],[34,129],[47,116],[5,56],[48,67],[105,77],[65,62],[160,81],[129,82],[120,53],[455,130],[105,11]],[[75194,120512],[42,-22],[103,-22],[200,-160],[182,-102],[294,-223],[53,-27],[206,-171],[94,-179],[-18,-115],[-54,-82],[-32,-89],[-38,-252],[3,-96],[13,-67],[41,-102],[26,-23],[31,-1],[172,-79],[33,-134],[-43,-159],[-119,-51],[-339,7],[-76,-18],[-74,-5],[-140,15],[-112,30],[-220,42],[-207,5],[-280,125],[-69,68],[-25,6],[-90,47],[-19,29],[-96,95],[-61,85],[-38,74],[-35,40],[-74,169],[1,13],[-17,24],[-6,84],[16,125],[19,67],[35,63],[37,171],[195,353],[38,51],[23,68],[160,216],[42,47],[79,57],[144,3]],[[135911,31695],[-61,-24],[-120,24],[-249,29],[-135,6],[-61,54],[-38,85],[-29,150],[7,64],[-7,136],[-22,59],[-38,35],[-45,77],[-8,117],[-90,71],[-37,47],[-16,35],[-7,124],[-37,177],[-38,58],[-38,24],[-45,71],[30,41],[-8,16],[31,25],[38,47],[45,23],[0,35],[30,30],[98,0],[23,-6],[7,-94],[15,-53],[128,-82],[0,-54],[128,-135],[6,-177],[69,-23],[98,-100],[98,-136],[406,-335],[-7,-41],[-76,-65],[-22,-106],[-1,-65],[-22,-164]],[[133170,44968],[-122,7],[-113,192],[-128,110],[-42,52],[-28,41],[-34,99],[1,155],[-19,29],[0,41],[23,40],[104,63],[109,52],[66,10],[128,48],[95,0],[155,-22],[29,-29],[0,-41],[-29,-96],[5,-143],[18,-45],[52,-44],[71,-37],[128,-41],[103,-66],[47,-66],[10,-41],[0,-29],[-47,-41],[-241,-44],[-109,-52],[-85,-21],[-95,-63],[-52,-18]],[[120222,53066],[-74,-20],[-54,28],[-24,0],[-57,-20],[-32,9],[7,85],[-14,25],[-71,59],[-24,33],[0,47],[71,138],[10,71],[-24,48],[-121,94],[-14,58],[18,74],[64,69],[14,31],[0,36],[28,33],[50,30],[35,6],[71,-3],[28,-33],[85,-61],[29,-31],[99,-55],[60,-80],[99,-74],[53,-15],[50,-27],[35,-39],[14,-47],[7,-99],[-7,-39],[-35,-42],[-82,-72],[-28,-46],[-64,-70],[-39,-27],[-135,-52],[-28,-22]],[[140592,44936],[-144,-76],[-75,-18],[-83,24],[-98,6],[-91,18],[-45,41],[-98,23],[-38,0],[-105,106],[-30,83],[30,59],[46,23],[37,65],[68,35],[91,18],[52,23],[-7,53],[23,42],[91,23],[75,-41],[52,-48],[23,-47],[90,-29],[8,-82],[83,-18],[60,-36],[-15,-70],[-53,-23],[53,-60],[0,-94]],[[129465,50631],[135,-10],[135,-65],[59,-11],[174,0],[19,-40],[0,-30],[-52,-55],[-26,-55],[-13,-86],[-25,-55],[-39,-51],[-64,-15],[-142,46],[-59,0],[-167,45],[-90,0],[-52,-10],[-38,-25],[-78,5],[-32,56],[0,45],[13,45],[-32,55],[0,21],[13,20],[26,15],[19,30],[103,60],[65,70],[148,-5]],[[129913,115061],[12,-24],[84,-91],[22,-15],[50,-17],[57,-58],[62,-13],[10,-13],[-17,-13],[-88,7],[-31,-9],[-48,-26],[-48,-45],[-26,-5],[-29,11],[-53,58],[-105,39],[-98,4],[-43,18],[-46,8],[-26,0],[-26,-21],[-77,-3],[-86,125],[-12,63],[-70,26],[-124,0],[-7,69],[2,9],[27,0],[57,-37],[82,6],[54,-12],[91,4],[20,-9],[17,2],[23,18],[31,2],[18,-7],[16,-25],[108,-9],[65,4],[40,20],[51,11],[28,-2],[26,-18],[7,-32]],[[128228,50612],[-26,-30],[-110,10],[-58,30],[-109,96],[-19,35],[-7,76],[32,25],[33,10],[135,0],[264,-46],[52,-35],[-45,-40],[-65,-20],[-64,-30],[-13,-81]],[[146851,37308],[-7,-24],[-60,-47],[-38,0],[-23,65],[-30,0],[-15,29],[0,24],[31,47],[75,35],[45,12],[37,0],[76,29],[53,35],[0,-64],[-68,-59],[-45,-18],[-31,-64]],[[125944,128265],[-26,-31],[0,-18],[25,-23],[8,-27],[-33,-24],[0,-27],[-20,-9],[-20,9],[-32,45],[-41,31],[-4,25],[-30,28],[0,17],[18,18],[16,4],[29,-14],[52,0],[14,27],[20,5],[26,-19],[-2,-17]],[[128250,115301],[12,-4],[45,10],[29,-25],[19,-46],[0,-19],[-16,-15],[-17,-7],[-67,24],[-5,56],[-62,34],[-19,20],[9,41],[48,-4],[24,-65]],[[128918,115051],[-27,2],[-45,37],[26,15],[48,2],[98,-28],[5,-15],[-26,-9],[-79,-4]],[[44034,385275],[18,-11],[93,11],[63,-16],[9,-24],[18,-7],[19,-21],[18,-38],[24,-14],[21,-65],[2,-51],[9,-23],[37,-41],[25,-85],[72,4],[34,-47],[85,0],[37,-7],[20,-14],[25,-26],[30,-127],[67,-79],[46,-35],[27,-55],[2,-53],[-31,-41],[-6,-54],[49,-48],[23,-52],[2,-32],[-30,-65],[8,-132],[111,-24],[22,-13],[9,-26],[-2,-19],[-18,-21],[-47,-36],[-27,-33],[9,-111],[23,-51],[25,-15],[61,35],[15,33],[34,12],[41,-4],[11,-19],[7,-41],[21,-24],[11,-35],[2,-38],[-4,-37],[-18,-22],[-7,-30],[43,-86],[23,-162],[-20,-191],[-17,-57],[-81,-155],[22,-112],[-77,-130],[1,-138],[-9,-19],[-33,-21],[-28,-3],[-24,8],[-32,0],[-54,-26],[-22,-34],[18,-25],[56,-1],[43,-16],[0,-49],[25,-34],[190,-179],[27,-55],[111,-66],[111,-92],[9,-26],[-12,-91],[-55,-43],[-41,-15],[-99,22],[-111,-59],[-52,-44],[-65,-114],[-36,-97],[-116,-172],[-79,-148],[-42,-137],[-7,-43],[18,-38],[0,-30],[-25,-64],[-2,-61],[-22,-61],[4,-31],[46,-38],[7,-19],[0,-66],[-11,-33],[-73,-58],[0,-27],[-33,-33],[-7,-17],[9,-63],[-16,-10],[-2,-117],[-24,-107],[36,-42],[27,-12],[52,50],[16,28],[0,67],[34,58],[89,73],[36,50],[13,101],[41,63],[31,12],[97,0],[17,7],[6,36],[178,141],[66,65],[31,43],[67,45],[34,4],[25,-19],[2,-26],[-4,-33],[-38,-52],[-14,-66],[0,-122],[3,-19],[63,-22],[14,-16],[0,-21],[-5,-22],[-47,-23],[-63,14],[13,27],[-27,-7],[-54,-102],[9,-24],[48,-16],[13,-17],[9,-21],[3,-61],[-20,-36],[-2,-68],[-23,-33],[-63,-52],[-13,-62],[-20,-40],[-5,-84],[32,-13],[18,17],[13,76],[25,47],[91,104],[159,137],[76,178],[47,156],[54,80],[56,50],[13,55],[30,63],[-1,33],[-13,14],[6,65],[68,38],[93,31],[24,16],[39,50],[32,18],[1,16],[-24,24],[-3,17],[12,26],[-5,24],[-16,4],[-30,-20],[-6,-46],[-27,-21],[-31,-5],[-14,17],[-2,40],[58,53],[16,79],[20,24],[52,21],[32,-2],[24,-29],[-31,-66],[-29,-12],[-3,-37],[23,-10],[79,-9],[22,-26],[12,-41],[25,-20],[75,-22],[128,0],[36,30],[47,12],[46,52],[31,18],[174,40],[214,75],[212,17],[40,9],[141,0],[62,23],[75,6],[59,-13],[11,-10],[2,-20],[54,-30],[181,-29],[74,-4],[37,-10],[158,-5],[146,-42],[25,-10],[25,-26],[-6,-54],[7,-19],[81,-17],[20,2],[25,17],[18,-2],[86,-64],[61,-35],[38,-7],[56,30],[21,26],[15,54],[19,19],[130,94],[34,40],[20,4],[56,-18],[93,-64],[174,-67],[30,-16],[42,-41],[34,-18],[61,-10],[32,-24],[-7,-75],[-47,-87],[0,-26],[32,-62],[7,-56],[-47,-104],[52,-87],[-5,-27],[-47,-51],[-15,-41],[27,-70],[0,-63],[19,-103],[22,-23],[6,-52],[-31,-66],[-45,-43],[-9,-66],[-29,-44],[-18,-15],[-49,-3],[-30,-11],[-70,-40],[-51,-37],[-7,-26],[2,-30],[32,-44],[4,-26],[25,-12],[21,8],[4,45],[16,19],[-16,30],[-5,47],[23,20],[38,16],[10,-4],[-10,-103],[7,-215],[-20,-89],[3,-92],[-119,-186],[-32,-22],[-210,-361],[-82,-174],[-13,-193],[-16,-31],[-34,-23],[-38,-47],[-81,-161],[-238,-336],[-27,-105],[-65,-113],[-33,-132],[-13,-20],[3,-125],[-12,-204],[-36,-57],[-16,-51],[-238,-280],[-109,-67],[-175,-184],[-31,-15],[-71,-169],[-30,-150],[-74,-212],[0,-88],[39,-56],[40,-36],[-6,-45],[-52,-92],[-15,-217],[-16,-96],[-20,-43],[-21,-232],[54,-391],[14,-29],[11,-73],[23,-52],[77,-104],[50,-118],[0,-36],[-5,-42],[-114,-106],[-18,-40],[-16,-111],[-76,-113],[9,-9],[18,14],[52,75],[24,56],[11,60],[34,77],[50,50],[70,17],[49,-31],[95,-90],[115,-135],[-6,-48],[34,-96],[0,-55],[-16,-39],[-113,-78],[-53,-19],[56,-4],[137,84],[43,41],[12,25],[-3,26],[-45,77],[2,15],[28,11],[258,-87],[72,-43],[257,-68],[189,-21],[216,-58],[141,-92],[40,-48],[42,-28],[22,-1],[113,-62],[28,-28],[9,-44],[55,-50],[24,-158],[-38,-71],[-84,-100],[-99,-76],[-37,-44],[-5,-62],[-21,-15],[-67,-37],[-132,-38],[-152,-59],[-66,-14],[-2,-13],[17,-8],[72,17],[32,-8],[14,-22],[-9,-21],[7,-11],[139,-15],[215,21],[60,-3],[71,-19],[74,44],[96,30],[92,-4],[43,-10],[80,-73],[29,-38],[4,-64],[-7,-24],[-74,-70],[1,-21],[34,-27],[29,-11],[41,4],[135,74],[72,12],[49,-1],[79,-44],[34,-61],[60,-61],[-8,-22],[-36,-41],[-68,-48],[-39,-39],[0,-18],[18,-17],[34,-11],[74,-13],[85,-4],[149,16],[19,4],[53,42],[43,10],[22,-7],[32,-29],[89,-42],[24,-9],[33,5],[22,19],[8,21],[142,47],[82,56],[13,13],[-3,52],[17,29],[36,19],[85,26],[103,-6],[64,12],[45,0],[26,-13],[36,-35],[46,-11],[40,-23],[5,-23],[-11,-13],[35,-35],[110,-2],[35,-17],[24,-25],[10,-30],[-3,-77],[-3,-24],[-57,-83],[-29,-15],[-53,-5],[-29,-21],[0,-56],[-18,-40],[-80,-58],[-120,-56],[-24,-2],[-44,13],[-54,47],[-47,-4],[-19,-20],[5,-55],[-15,-12],[-24,-1],[-46,21],[-21,-4],[-5,-12],[-1,-72],[49,-44],[7,-33],[19,-20],[2,-58],[-14,-33],[-17,-9],[-75,-3],[-14,-14],[23,-34],[-22,-39],[54,-74],[0,-23],[-18,-38],[1,-47],[30,-45],[-7,-24],[-77,-34],[-8,-90],[34,-59],[19,-10],[43,6],[41,18],[32,-7],[19,-15],[5,-19],[-38,-44],[-1,-19],[13,-27],[115,-26],[77,-32],[21,-16],[5,-43],[-24,-17],[-9,-73],[-13,-15],[-60,-26],[-118,-4],[-47,10],[-7,12],[-91,12],[-137,51],[-59,4],[-2,-5],[-48,-3],[-36,20],[-87,1],[-33,14],[-29,-18],[-60,0],[-34,14],[-10,17],[-77,21],[-113,-11],[-123,-60],[-39,5],[-19,24],[-1,23],[-23,20],[-30,-33],[-9,-22],[82,-128],[9,-34],[-9,-16],[-63,-47],[-128,-41],[-88,-53],[-55,7],[-55,28],[-84,19],[-80,4],[-53,14],[-99,48],[-36,28],[-19,54],[9,54],[38,91],[-20,25],[-55,42],[-22,5],[-62,-33],[-42,-5],[-67,25],[-67,49],[-58,129],[5,136],[8,33],[34,56],[-5,26],[-29,26],[-5,39],[-21,31],[-27,-51],[-48,-28],[-70,-64],[-55,-37],[-73,-1],[-82,68],[-29,45],[1,81],[45,71],[1,35],[-7,19],[-48,26],[-29,37],[-58,-16],[-22,-18],[-55,-70],[-11,-36],[-45,-60],[-44,-12],[-87,9],[-137,60],[-63,54],[-19,26],[-2,43],[2,34],[16,43],[-5,34],[-82,20],[-32,19],[-36,32],[-38,54],[0,26],[15,21],[60,29],[58,53],[-7,8],[-51,31],[-26,4],[-12,-6],[0,-16],[17,-28],[-13,-15],[-53,-31],[-44,-14],[-53,0],[-42,32],[-22,-13],[8,-28],[81,-45],[50,-53],[14,-49],[2,-71],[22,-25],[17,-44],[5,-67],[49,-99],[-5,-52],[-25,-20],[-57,21],[-66,88],[-63,47],[-31,20],[-58,4],[-92,-45],[-7,-13],[15,-4],[82,8],[54,-17],[6,-16],[-1,-47],[-45,-72],[-27,-67],[-78,-62],[-125,-19],[-15,-14],[75,-13],[139,-69],[83,2],[91,-14],[80,26],[65,5],[33,-10],[17,-13],[10,-34],[-42,-52],[-2,-33],[-29,-27],[-4,-69],[-13,-15],[-5,-50],[-56,-55],[-43,-4],[-49,-36],[-77,-2],[-52,14],[-41,-4],[-36,-21],[-32,-7],[-62,-2],[-37,11],[-19,20],[-21,-3],[-47,-32],[-29,-7],[-7,-12],[16,-67],[-4,-28],[-53,-102],[-3,-37],[65,-12],[76,-24],[28,0],[12,23],[26,22],[60,18],[34,-2],[75,-23],[87,0],[19,-10],[12,-32],[34,-13],[70,0],[45,-21],[8,-64],[-44,-78],[-49,-54],[-29,-8],[-52,3],[-47,21],[-25,0],[-39,-19],[-73,3],[-34,-19],[-5,-32],[30,-17],[84,-14],[50,-18],[70,-46],[21,-26],[32,-20],[45,-61],[5,-19],[99,37],[5,75],[30,56],[62,35],[58,15],[13,31],[50,60],[84,29],[56,-1],[78,-10],[86,-33],[19,-16],[50,-77],[89,-50],[8,-18],[-1,-19],[-11,-8],[5,-16],[30,-9],[64,2],[60,-11],[12,-35],[-37,-20],[-2,-11],[9,-9],[51,-16],[31,-26],[0,-30],[-15,-5],[-7,-18],[-186,-71],[-65,-42],[-39,-37],[-4,-17],[10,-16],[30,-6],[73,13],[33,-9],[61,-27],[26,-20],[36,-66],[-9,-27],[-65,-65],[-6,-42],[122,-76],[83,-81],[28,-17],[61,-15],[39,3],[11,18],[65,40],[75,-5],[97,-47],[106,4],[89,21],[12,18],[-2,20],[-36,30],[-15,47],[17,23],[119,63],[-31,68],[0,50],[48,49],[64,-6],[45,22],[29,23],[-5,75],[15,19],[55,26],[48,49],[97,37],[140,15],[41,-24],[36,-4],[12,8],[70,0],[38,-27],[1,-34],[-29,-18],[-12,-42],[-87,-72],[-15,-74],[-3,-129],[52,-90],[-7,-53],[-16,-11],[0,-19],[30,-72],[31,-30],[85,-58],[105,-104],[20,-45],[-42,-42],[-161,-31],[-68,3],[-43,-28],[-32,-7],[-50,7],[-37,19],[-28,24],[-12,38],[-17,15],[-151,-25],[-39,-16],[-16,-30],[-23,-11],[-80,-8],[-53,-17],[-27,-17],[-55,-13],[-113,7],[-152,-30],[-119,4],[-62,14],[-97,-29],[-77,-1],[-65,-39],[-118,-30],[-46,-4],[-120,6],[-68,77],[-24,11],[-14,-14],[-10,-64],[-44,-66],[-71,-55],[-35,-14],[-39,1],[-62,45],[-27,12],[-15,-5],[-2,-163],[31,-10],[12,-38],[-17,-82],[-30,-52],[-9,-37],[-1,-28],[25,-22],[19,5],[13,24],[40,8],[27,-5],[24,17],[17,37],[58,13],[27,-2],[31,11],[168,105],[111,17],[44,43],[46,23],[155,4],[67,-16],[5,16],[22,8],[36,-9],[38,-23],[44,-52],[0,-15],[-28,-10],[-8,-11],[88,-41],[61,-41],[71,-16],[105,-66],[9,-25],[-36,-42],[-1,-58],[-17,-23],[-53,-8],[-44,3],[-34,-36],[-2,-194],[-56,-88],[-50,-16],[-41,-1],[-84,-43],[-81,-85],[-5,-22],[-28,-22],[-264,-102],[-58,-4],[-89,14],[-134,88],[-15,21],[0,28],[24,27],[55,24],[-37,49],[-7,50],[38,18],[10,17],[-18,38],[-54,10],[-34,-11],[-48,-47],[-97,-47],[-80,-55],[-215,-95],[-68,-10],[-24,-11],[-60,-59],[-20,-33],[-134,-78],[-69,-13],[-92,3],[-44,13],[-45,24],[-66,78],[-3,49],[18,35],[-17,16],[-6,28],[30,28],[10,39],[-61,61],[-2,52],[27,45],[34,34],[33,12],[140,14],[68,17],[34,80],[31,41],[82,71],[15,28],[12,64],[-11,24],[-99,71],[-45,51],[14,32],[55,69],[1,65],[-19,51],[2,80],[148,153],[-2,16],[-73,5],[-62,33],[-38,4],[-99,-28],[-20,1],[-49,11],[-54,29],[-77,2],[-56,-30],[-51,-6],[-7,-29],[-32,-22],[-36,1],[-17,18],[0,20],[-10,5],[-33,-2],[-10,-9],[-16,-69],[-52,-27],[-87,-9],[-60,-65],[0,-43],[19,-44],[41,-7],[92,36],[60,-4],[44,-12],[14,-13],[-7,-26],[-142,-45],[-17,-25],[-14,-138],[-52,-168],[-4,-78],[-65,-95],[-44,-37],[-31,-17],[-24,-2],[-27,-21],[-2,-22],[15,-19],[54,-41],[12,-31],[-4,-30],[-288,-65],[-80,-37],[7,-26],[56,-9],[38,-30],[10,-39],[51,-59],[7,-28],[4,-66],[-50,-48],[-56,-15],[-22,-39],[68,-71],[21,-5],[55,-34],[60,15],[45,44],[60,18],[55,41],[34,10],[7,23],[22,9],[48,-5],[101,-48],[22,-16],[63,-80],[12,-50],[48,-53],[28,-50],[24,-18],[22,-43],[35,-41],[8,-65],[-13,-27],[-4,-46],[-17,-50],[-42,-22],[-38,-3],[-26,9],[-82,56],[-44,20],[-54,16],[-71,-5],[-77,-48],[-65,-26],[-39,-8],[-48,-24],[-63,-14],[-46,-25],[-13,-18],[5,-17],[44,-22],[32,-43],[-10,-68],[-74,-32],[-50,-40],[-30,-48],[-42,-9],[-35,-27],[-59,8],[-5,17],[-58,58],[-116,36],[-32,-12],[23,-29],[23,-8],[-4,-34],[-56,-41],[-31,-4],[-37,12],[-57,62],[-31,19],[-13,-9],[-3,-41],[13,-17],[86,-56],[5,-68],[-17,-64],[28,-83],[-7,-72],[-27,-83],[-53,-44],[-13,-106],[-21,-47],[-88,-99],[-40,-13],[-18,-25],[-50,-10],[-10,-12],[1,-17],[43,-34],[19,-52],[19,-18],[37,-10],[59,5],[73,-24],[22,-26],[-1,-29],[-39,-67],[-124,-81],[-23,-27],[-3,-43],[50,-65],[8,-24],[31,-28],[7,-43],[33,-47],[2,-51],[-21,-59],[65,-77],[9,-18],[0,-54],[-37,-75],[-60,-61],[-33,-12],[-75,-6],[-50,53],[-30,-24],[-29,-57],[-5,-57],[-20,-65],[-24,-22],[-21,-87],[2,-17],[77,-81],[16,-27],[30,3],[9,79],[36,64],[27,24],[102,56],[41,16],[98,15],[47,0],[156,-44],[77,-38],[60,-75],[31,-15],[92,-76],[19,-33],[3,-85],[-20,-19],[-22,2],[-36,31],[-9,-13],[12,-64],[14,-28],[22,-5],[0,25],[38,4],[24,-13],[32,-89],[28,-35],[-3,-255],[-25,-16],[-36,-65],[5,-76],[-12,-73],[-17,-36],[-64,-57],[7,-31],[24,-25],[27,-50],[5,-39],[48,-50],[12,-63],[-22,-19],[-3,-69],[-46,-65],[26,-26],[2,-19],[37,-49],[35,-158],[-31,-55],[-41,-46],[-32,-151],[15,-5],[11,-14],[-2,-35],[-28,-15],[-67,-13],[-64,-57],[-26,-10],[-36,-31],[6,-33],[44,13],[104,6],[52,32],[28,0],[29,-12],[64,-59],[6,-49],[41,-37],[58,-74],[-1,-170],[-29,-97],[-129,-192],[-80,-70],[-112,-56],[10,-10],[50,-6],[50,11],[107,0],[32,-13],[18,-18],[-3,-113],[-15,-48],[21,-51],[0,-25],[-16,-15],[-35,-128],[-19,-183],[-37,-162],[-34,-60],[-31,-34],[23,-24],[0,-13],[-48,-27],[-45,-4],[-15,-47],[-14,-16],[10,-13],[35,-16],[65,2],[63,-20],[33,-34],[5,-21],[-18,-165],[10,-128],[7,-29],[34,-46],[13,-71],[-4,-87],[35,-110],[15,-107],[57,-101],[-5,-184],[-52,-92],[-34,-186],[-90,-256],[-46,-226],[-28,-57],[-86,-118],[-22,-20],[-85,-176],[-110,-141],[-2,-32],[-51,-169],[-63,-129],[-3,-56],[-133,-134],[-39,-55],[-17,-118],[-12,-21],[-22,-13],[-45,-2],[-9,-19],[1,-38],[-52,-94],[-16,-60],[16,-33],[5,-39],[-49,-83],[-337,-444],[-158,-167],[-41,-60],[-216,-141],[-130,-64],[-111,-36],[-183,-42],[-145,0],[-106,14],[-78,-4],[-93,76],[-133,73],[-143,41],[-105,0],[0,-15],[23,-12],[88,-7],[80,-20],[76,-58],[51,-88],[0,-58],[-19,-20],[-54,0],[-60,15],[-406,187],[-57,12],[-38,25],[-244,28],[-426,161],[-174,26],[-172,37],[-47,-10],[16,-32],[54,-29],[155,-61],[165,-39],[83,-31],[248,-119],[142,-57],[60,-14],[61,-5],[114,17],[70,3],[66,-7],[67,-27],[35,-27],[38,-119],[0,-37],[-12,-39],[-32,-39],[-38,-41],[-89,-67],[-110,-136],[-64,-42],[-129,-54],[-260,-13],[-67,-19],[-56,-5],[-39,5],[-44,-22],[-91,-88],[-76,-125],[-38,-107],[-13,-88],[26,-15],[47,12],[107,189],[79,97],[168,108],[86,15],[171,0],[104,20],[86,44],[205,195],[118,73],[285,133],[152,95],[39,4],[168,-36],[58,8],[48,19],[54,10],[197,2],[105,47],[175,15],[78,16],[83,33],[57,37],[65,98],[55,60],[47,91],[-7,4],[0,29],[78,68],[70,46],[180,176],[30,12],[48,6],[80,42],[135,168],[-10,124],[22,41],[10,168],[25,48],[80,140],[70,75],[90,122],[15,27],[0,29],[15,40],[23,34],[87,86],[10,21],[42,38],[61,34],[95,149],[27,120],[40,41],[-10,195],[29,35],[13,67],[25,37],[43,98],[22,30],[80,56],[75,15],[66,64],[90,162],[16,65],[-19,50],[-61,36],[-12,25],[-31,26],[-27,7],[-15,27],[0,41],[14,48],[-7,73],[72,194],[-16,152],[11,78],[18,27],[-13,33],[-1,35],[37,117],[-7,27],[7,84],[63,102],[12,41],[28,34],[10,101],[34,3],[-19,6],[-66,59],[-17,90],[10,27],[15,14],[95,-10],[15,2],[10,23],[-103,2],[-31,17],[-6,21],[-21,-1],[-17,21],[-21,48],[0,134],[-10,100],[10,132],[87,185],[2,123],[25,24],[-8,182],[-60,63],[-28,46],[-3,120],[30,50],[12,6],[6,34],[-21,13],[-2,21],[13,56],[44,98],[20,134],[32,82],[-2,65],[60,64],[0,23],[40,71],[32,89],[46,68],[32,106],[90,149],[44,147],[55,68],[6,29],[22,27],[190,162],[153,105],[48,97],[22,216],[125,155],[33,56],[15,12],[31,3],[24,25],[-1,39],[38,33],[32,7],[5,103],[48,53],[81,29],[132,-2],[46,-10],[12,-19],[151,4],[28,-25],[35,-14],[90,2],[35,-7],[55,43],[10,30],[23,27],[160,72],[33,50],[25,18],[47,8],[43,-2],[141,-29],[30,23],[-20,36],[-28,9],[-12,15],[2,27],[53,42],[40,11],[58,0],[37,-14],[18,-21],[40,11],[42,26],[46,42],[15,27],[-13,60],[22,31],[98,27],[31,45],[55,-2],[100,-85],[81,-46],[105,4],[101,54],[84,17],[63,55],[63,-12],[118,-44],[281,-29],[139,-40],[42,-4],[48,-17],[148,-89],[83,-12],[141,-34],[37,8],[53,31],[25,-2],[10,-11],[108,-28],[15,-19],[3,-44],[25,-39],[-32,-17],[-46,-1],[-75,-27],[-47,-40],[-75,-157],[13,-88],[29,-45],[100,-94],[144,-91],[73,-10],[53,-25],[28,-31],[20,-32],[7,-37],[-25,-60],[18,-189],[20,-6],[0,-39],[-27,-72],[53,-36],[5,-16],[-7,-23],[-34,-5],[-13,-75],[-19,-14],[-24,-78],[-51,-48],[-9,-83],[-33,-47],[-23,-8],[-62,-128],[7,-79],[31,-32],[-3,-19],[-32,-49],[-5,-29],[-30,-58],[-18,-17],[-53,-17],[-47,-113],[-5,-73],[8,-18],[60,-61],[91,13],[55,-7],[15,-20],[-10,-26],[-23,-12],[-12,-39],[15,-23],[41,-29],[67,-17],[35,10],[3,26],[25,18],[55,8],[20,-10],[-5,-25],[-20,-25],[15,-52],[-5,-29],[-30,-25],[-20,0],[-55,34],[-33,12],[-40,0],[-60,-41],[-23,-23],[-19,-43],[-18,-13],[-70,38],[-53,-6],[-103,-50],[-160,-99],[-66,-50],[-47,-138],[-23,-92],[-4,-56],[13,-60],[32,-41],[133,-28],[55,-35],[29,-38],[16,-106],[38,-83],[46,-20],[80,12],[197,-105],[62,-13],[50,-25],[76,-6],[22,-15],[-7,-27],[-50,-14],[-78,-44],[-26,-2],[-50,-28],[-23,-142],[9,-136],[33,-23],[40,-52],[8,-48],[-5,-25],[-43,-33],[-18,-5],[-31,-60],[35,-100],[67,-40],[5,-19],[-2,-39],[-47,-45],[5,-100],[-10,-23],[-32,-26],[-21,-34],[1,-115],[39,-59],[-7,-124],[-54,-47],[-38,-105],[-10,-62],[-53,-39],[-47,-50],[-20,-29],[-5,-33],[21,-176],[39,-41],[34,-12],[19,13],[35,2],[28,-14],[8,-44],[43,-64],[-5,-31],[-33,-31],[-37,-125],[-39,-51],[-27,-19],[-50,-25],[-25,-4],[-27,10],[-23,23],[-55,9],[-78,2],[-30,9],[-74,-54],[-1,-140],[-5,-32],[-39,-69],[-8,-126],[40,-15],[15,-35],[53,-54],[18,-31],[-36,-60],[-60,-19],[-110,-74],[-91,-36],[-19,-39],[8,-82],[31,-80],[26,-29],[8,-22],[-70,-98],[-60,-60],[-21,-6],[-72,-75],[-12,-29],[3,-53],[17,-5],[6,-61],[92,-59],[53,-58],[32,-65],[-39,-141],[-60,-65],[-39,-30],[-60,-23],[-42,-46],[1,-154],[-9,-19],[4,-11],[46,-35],[0,-100],[-83,-153],[-84,-100],[-15,-30],[0,-116],[54,-52],[15,-56],[0,-20],[-27,-34],[-18,-8],[-24,-45],[27,-25],[5,-19],[-7,-23],[-47,-17],[-116,-128],[0,-55],[20,-54],[-2,-64],[-15,-28],[-53,-72],[-30,-21],[-70,-20],[-25,-54],[18,-69],[-3,-42],[5,-18],[31,-33],[-3,-17],[-32,-22],[-91,-27],[-47,-50],[5,-60],[28,-52],[20,-8],[15,-37],[0,-52],[28,-27],[5,-15],[0,-31],[-10,-19],[-14,-7],[-36,-68],[-10,-49],[46,-108],[64,-56],[16,-25],[23,-83],[-13,-58],[-35,-84],[-2,-46],[15,-102],[-135,-188],[-29,-7],[-19,-61],[-80,-56],[-19,-4],[-19,-61],[-45,-29],[-8,-36],[10,-56],[69,-109],[61,-37],[30,-29],[10,-46],[-20,-52],[0,-28],[13,-36],[-5,-21],[-20,-24],[5,-38],[-8,-24],[-32,-38],[-10,-33],[-132,-87],[-61,-93],[-47,-35],[-42,-14],[-18,-17],[-15,-48],[3,-29],[24,-40],[3,-45],[15,-21],[48,-29],[14,-18],[1,-135],[-23,-53],[-132,-27],[-13,-34],[18,-88],[15,13],[63,-16],[28,-23],[10,-25],[12,-69],[-5,-61],[18,-48],[-16,-65],[26,-128],[0,-106],[-79,-122],[-5,-41],[-13,-17],[-80,-54],[-67,-79],[-68,-41],[-34,-2],[-80,-91],[-15,-82],[53,-112],[59,-73],[0,-27],[-17,-25],[0,-25],[-28,-41],[-7,-30],[-23,-26],[-24,-23],[-17,0],[-102,-71],[-32,-26],[-17,-30],[-35,-126],[5,-91],[30,-75],[-2,-20],[-28,-20],[-4,-124],[15,-36],[-51,-119],[-42,-37],[-42,-15],[-71,-66],[-52,-22],[-2,-69],[15,-29],[55,-54],[-22,-147],[8,-136],[-106,-106],[-39,-17],[-31,-35],[5,-71],[8,-16],[33,-23],[2,-37],[58,-27],[38,-50],[12,-31],[3,-40],[45,-49],[20,-61],[-2,-55],[8,-21],[22,-13],[5,-23],[-7,-93],[23,-93],[-46,-36],[-3,-26],[-54,-106],[-83,-118],[-25,-83],[-1,-54],[-18,-19],[-28,-10],[-40,-2],[-68,60],[-6,36],[-44,36],[-40,1],[-33,11],[-27,24],[-31,13],[-12,29],[5,11],[22,9],[5,21],[-17,44],[-58,44],[-72,81],[-94,55],[-65,69],[-78,62],[-24,31],[-29,7],[-15,42],[-3,76],[-35,33],[-5,60],[-15,31],[-70,17],[-15,-43],[-36,-13],[-67,9],[-45,-37],[-28,-11],[-40,7],[-22,-48],[7,-29],[15,-9],[8,-19],[-10,-20],[-35,-14],[-8,-48],[-2,-260],[26,-45],[17,-75],[0,-64],[64,-117],[23,-71],[0,-54],[32,-55],[5,-91],[-4,-43],[-17,-16],[1,-99],[32,-100],[42,-61],[35,-83],[5,-62],[-70,-64],[-32,-19],[-56,-12],[-105,-16],[-271,2],[-65,35],[-90,25],[-35,51],[-54,30],[-60,0],[-35,17],[-17,23],[22,43],[-7,36],[-45,23],[-22,3],[-85,66],[-19,-5],[-38,6],[-28,19],[-22,25],[-13,31],[-2,60],[-50,73],[-66,-11],[-23,-31],[-30,0],[-22,46],[-111,-29],[-11,-186],[-18,-32],[-45,-10],[-73,21],[-32,23],[-33,64],[2,83],[-20,11],[-90,-15],[-55,-20],[-56,19],[-132,13],[-36,-7],[-37,14],[-46,39],[-2,42],[-72,75],[-8,147],[-61,89],[-54,129],[-115,58],[-99,-6],[-84,-30],[-15,-49],[-42,-26],[-68,-23],[-24,-1],[-6,-25],[-13,-5],[-14,-23],[15,-31],[8,-191],[12,-10],[13,-44],[-5,-27],[-20,-14],[0,-19],[-61,-53],[4,-29],[-23,-25],[31,-42],[3,-21],[-129,-83],[-54,0],[-252,264],[-61,112],[-17,-7],[-11,70],[8,35],[54,39],[5,17],[-12,21],[-108,80],[-35,34],[-43,26],[-96,94],[-88,39],[-115,1],[-55,45],[-63,22],[-13,-7],[3,-18],[55,-55],[-22,-32],[13,-19],[82,-30],[33,-29],[128,-66],[53,-63],[7,-45],[-17,-12],[-344,-19],[-165,-24],[-90,2],[-16,21],[-22,-2],[-98,-35],[-20,-14],[-72,-21],[-25,-13],[-11,-18],[23,-19],[45,0],[203,29],[98,6],[48,-4],[150,10],[316,-9],[78,-17],[36,-15],[37,-59],[0,-86],[35,-51],[-2,-38],[-25,-17],[-40,-6],[-15,29],[4,40],[-22,8],[-10,15],[7,64],[-22,8],[-30,0],[-163,-62],[-125,-93],[-28,-58],[0,-79],[-12,-68],[-40,-64],[-31,-25],[0,-25],[99,-103],[-2,-40],[11,-40],[29,-22],[18,-96],[25,-58],[4,-172],[22,-10],[15,-27],[20,-79],[-2,-22],[-85,-86],[-22,-71],[-108,-60],[2,-96],[-10,-21],[-15,-8],[-15,2],[-20,23],[-5,-7],[-10,-62],[30,-43],[0,-21],[-17,-24],[1,-106],[69,-106],[59,-41],[49,43],[33,-11],[67,-41],[84,-10],[40,-3],[90,24],[30,-11],[50,-5],[107,0],[57,-95],[-3,-31],[-16,-15],[-47,18],[-34,0],[-23,-29],[-14,-59],[-19,-15],[-91,2],[-97,-10],[-53,-26],[-20,-26],[-10,-54],[-27,-8],[-207,-21],[-33,-10],[-81,2],[-5,29],[-15,-1],[-106,-48],[-41,-41],[-66,-8],[-39,49],[-22,-6],[-97,13],[-120,82],[-71,23],[-50,54],[-23,3],[-43,-29],[-51,-59],[-3,-62],[14,-116],[-27,-33],[-47,-23],[-53,-14],[-42,5],[-90,-28],[-55,-62],[-67,-20],[-120,38],[-42,35],[-47,-45],[-30,-59],[-38,-130],[-107,-61],[-10,-18],[17,-20],[-6,-19],[184,-90],[56,-46],[17,-29],[7,-46],[-33,-29],[-71,-33],[-10,-23],[10,-47],[-6,-23],[-120,-51],[-27,-47],[-27,-77],[-29,-10],[-50,7],[-38,18],[-14,26],[-148,21],[-25,-6],[-57,2],[-117,44],[-294,79],[-120,8],[-31,15],[-127,-15],[-67,15],[-33,18],[-231,-5],[-60,10],[-40,20],[-104,5],[0,-25],[-80,-57],[7,-14],[57,21],[33,1],[37,-21],[14,-23],[0,-42],[-16,-10],[-46,-96],[-32,-126],[11,-48],[-3,-72],[-27,-34],[-10,-28],[-3,-67],[-9,-20],[74,-69],[61,-12],[66,-64],[39,-18],[3,-31],[-37,-5],[-30,-23],[11,-31],[26,-15],[27,15],[23,26],[30,-11],[31,-56],[-3,-52],[-27,-23],[-47,-23],[-16,-23],[36,-15],[14,-50],[-30,-67],[0,-85],[14,-64],[-9,-22],[237,-311],[10,4],[10,51],[13,23],[30,10],[44,1],[56,-8],[31,-33],[-21,-36],[11,-18],[70,-26],[27,23],[27,0],[20,-18],[6,-28],[-6,-34],[-94,-41],[-33,-2],[-6,-72],[15,-77],[115,-141],[10,-7],[63,13],[62,54],[60,112],[7,99],[30,7],[5,22],[30,11],[87,-8],[107,6],[40,15],[53,44],[27,38],[10,132],[-27,59],[-81,123],[-7,29],[17,28],[87,42],[17,41],[46,69],[40,16],[24,0],[26,-13],[4,-75],[37,-53],[23,-21],[34,-2],[33,-13],[44,-32],[24,-76],[0,-135],[-20,-121],[3,-41],[7,-33],[31,-49],[16,2],[13,47],[54,15],[7,11],[-54,56],[-17,64],[0,42],[90,139],[-7,57],[-27,38],[0,42],[76,134],[-33,38],[3,116],[33,54],[37,13],[43,0],[10,-12],[64,-23],[154,-163],[31,-95],[-7,-108],[20,-106],[1,-54],[24,-77],[-4,-44],[-30,-26],[-87,-39],[-3,-41],[37,-41],[40,-10],[50,3],[37,-13],[94,-108],[7,-47],[30,-33],[74,-131],[94,-137],[37,-46],[36,-13],[20,8],[-20,69],[0,46],[-37,50],[-20,48],[-7,178],[16,82],[-3,42],[-67,121],[-30,92],[-41,55],[-47,90],[-20,105],[3,101],[17,49],[23,23],[150,88],[60,10],[57,0],[91,-23],[49,-2],[34,28],[17,36],[53,23],[50,11],[127,68],[-20,7],[-20,38],[-30,34],[-41,164],[0,68],[57,46],[6,49],[-57,62],[-33,61],[-40,39],[-37,0],[-27,-15],[-47,-8],[-74,18],[-80,5],[-23,20],[-4,18],[17,44],[-10,26],[-34,13],[-77,77],[-3,41],[23,33],[87,19],[117,0],[24,-18],[36,0],[70,59],[51,29],[100,18],[153,-8],[18,-6],[60,-41],[45,-102],[32,0],[77,-31],[54,-51],[94,-180],[26,-106],[1,-39],[20,-41],[63,-74],[4,-70],[13,-34],[41,-25],[103,8],[97,23],[130,-2],[51,34],[36,38],[0,26],[-7,28],[-43,59],[-11,122],[-33,15],[-27,25],[-40,60],[-34,28],[-44,77],[0,31],[21,28],[27,4],[23,38],[70,26],[287,39],[54,-3],[67,-32],[259,21],[65,-11],[84,20],[76,44],[39,43],[32,13],[10,22],[43,43],[47,29],[200,16],[65,26],[68,12],[8,13],[29,13],[124,11],[40,18],[77,108],[3,106],[-40,67],[-34,15],[-207,2],[-84,11],[-114,30],[-156,3],[-77,10],[-51,13],[-15,13],[-77,18],[-75,2],[-57,33],[0,8],[-94,80],[-77,5],[-30,-16],[-47,8],[-3,41],[17,42],[16,36],[27,17],[-2,145],[92,29],[27,20],[19,46],[-50,47],[-50,69],[-10,90],[-48,47],[0,23],[17,21],[4,25],[-114,80],[3,44],[32,0],[-42,36],[-7,23],[13,62],[37,23],[63,3],[34,33],[-64,34],[6,62],[41,29],[13,38],[60,15],[20,13],[110,121],[107,73],[80,121],[20,13],[73,-36],[-6,-24],[-40,-20],[0,-18],[14,-18],[23,-5],[23,-37],[27,-23],[41,0],[23,24],[0,74],[28,63],[-6,30],[-50,16],[-36,2],[-70,44],[-4,64],[30,57],[135,7],[52,-13],[40,-13],[6,-49],[39,1],[12,18],[33,16],[48,-3],[10,-12],[1,-46],[-17,-27],[-40,-26],[-120,-44],[-5,-58],[-34,-119],[0,-115],[52,-44],[106,-52],[108,-65],[41,-10],[103,21],[131,3],[39,-10],[30,-21],[11,-81],[34,-92],[10,-84],[-20,-93],[8,-93],[102,-51],[69,-11],[100,11],[53,59],[0,94],[-24,35],[-7,71],[106,71],[114,21],[73,2],[98,-12],[40,-19],[20,-20],[137,-21],[50,-20],[77,-15],[134,-60],[53,-2],[128,62],[36,10],[37,8],[103,3],[107,-35],[23,-54],[-8,-70],[-37,-123],[-69,-30],[-69,-82],[8,-36],[69,-129],[62,-65],[60,-38],[85,-17],[51,-24],[64,65],[74,2],[30,-18],[68,-77],[45,6],[21,15],[90,2],[20,-12],[20,-54],[48,-19],[26,-50],[-38,-65],[-68,-88],[19,-31],[14,-3],[4,-43],[-77,-78],[-8,-35],[-36,-51],[-23,-112],[7,-26],[57,-21],[47,17],[63,-1],[81,-33],[23,-3],[27,-20],[0,-101],[-33,-26],[-60,-69],[10,-80],[44,-103],[-17,-31],[-40,-21],[-17,-18],[17,-18],[24,-5],[-4,-47],[-30,-5],[-30,-15],[-22,-86],[-107,-6],[-45,-35],[-71,-79],[-2,-24],[-20,-26],[-67,-41],[-46,-10],[-253,52],[-115,-35],[-19,1],[-79,-104],[-4,-70],[55,-30],[14,-26],[-23,-15],[-34,2],[-28,17],[-55,-43],[99,-47],[42,2],[26,22],[33,8],[34,0],[23,-13],[20,-20],[14,-31],[-70,-83],[0,-26],[23,-17],[44,-11],[46,3],[101,-54],[7,-13],[46,-33],[7,-75],[23,-16],[18,-28],[10,-64],[12,-21],[-5,-8],[20,-25],[0,-34],[-37,-15],[-20,-21],[0,-31],[-20,-41],[-64,-75],[7,-33],[27,-46],[91,-26],[20,-39],[-13,-38],[16,-93],[10,-16],[4,-108],[10,-28],[-53,-44],[0,-31],[27,-33],[70,-24],[7,-23],[-37,-20],[-57,5],[-37,-18],[-10,2],[0,-42],[54,-59],[21,-13],[153,-27],[17,-28],[10,-57],[-20,-36],[-54,-21],[-70,-8],[-30,-34],[0,-15],[71,-56],[47,-98],[-11,-41],[-63,-57],[-47,-57],[-6,-139],[7,-18],[-10,-41],[-113,-101],[-54,-13],[-48,23],[-59,-39],[-10,-25],[-41,-23],[-22,-66],[10,-30],[-31,-21],[-29,-57],[13,-25],[50,-52],[14,-33],[4,-49],[-14,-44],[-33,-38],[-47,-13],[-191,-16],[-76,-42],[-97,-121],[-50,-31],[-95,-96],[15,-2],[20,-36],[-26,-33],[-7,-24],[-110,-107],[-16,-29],[26,-152],[31,-38],[37,-16],[30,5],[13,11],[59,7],[131,-4],[17,-45],[0,-35],[-6,-34],[-54,-59],[-29,-268],[-17,-31],[-64,-23],[-45,-77],[0,-71],[-25,-72],[-2,-36],[-38,-30],[-19,-47],[-47,5],[-22,25],[-151,70],[-20,31],[-81,-17],[9,-71],[-10,-48],[5,-75],[-19,-69],[71,-113],[28,-1],[11,-13],[23,-54],[10,-31],[0,-129],[20,-33],[4,-34],[-74,-54],[-80,-95],[-45,-18],[-93,-62],[-15,-18],[-77,-39],[-106,-73],[-70,-116],[-20,-53],[-51,-52],[-93,-70],[-126,-116],[-7,-49],[10,-54],[57,-80],[3,-82],[14,-31],[30,-23],[19,14],[23,-11],[38,12],[40,-5],[34,-28],[33,-8],[47,-36],[74,-26],[16,-35],[0,-31],[-19,-49],[-47,-54],[0,-34],[-16,-34],[-47,3],[-25,15],[-39,-34],[-8,-30],[6,-23],[36,0],[30,10],[23,-13],[4,-36],[-20,-28],[-20,-59],[-30,-29],[-67,-8],[-50,10],[-27,19],[-50,-3],[-3,-46],[39,-80],[31,-99],[31,-65],[0,-47],[-31,-59],[-99,-70],[-76,-13],[-84,-47],[-7,-70],[-38,-71],[-137,-88],[-8,-76],[-15,-48],[-38,-41],[-138,-101],[-19,-44],[30,-44],[0,-23],[-101,-106],[16,-253],[57,-64],[42,1],[30,-18],[27,-59],[1,-108],[11,-28],[19,-23],[30,-12],[40,-30],[54,-85],[26,-97],[-15,-57],[9,-8],[10,-49],[-3,-44],[-64,-62],[-101,-24],[-112,-97],[-87,-34],[14,-18],[47,-5],[16,-18],[4,-31],[-60,-98],[-17,-44],[-97,-111],[-79,-11],[-43,-37],[16,-19],[-4,-41],[-30,-16],[-80,-5],[-39,-72],[6,-83],[-3,-28],[-17,-26],[-47,-28],[-33,-10],[-30,0],[-36,-49],[0,-123],[-30,-112],[-38,-47],[-8,-59],[9,-47],[24,-40],[0,-29],[-26,-59],[16,-44],[-6,-28],[-14,-21],[-46,-38],[-101,-11],[-13,6],[-25,-25],[-60,-93],[7,-48],[31,-41],[-8,-41],[-53,-53],[-145,-12],[-30,-35],[16,-177],[32,-54],[21,-104],[-30,-59],[-46,-30],[-23,-47],[15,-35],[-7,-118],[24,-99],[-24,-48],[-68,12],[-23,47],[-8,100],[-38,41],[-15,35],[-39,35],[-56,0],[-37,8],[-34,25],[-20,39],[-3,148],[-48,22],[-40,41],[-7,62],[60,52],[135,73],[-1,37],[22,42],[37,21],[6,15],[5,38],[-8,30],[-43,34],[-13,26],[-125,64],[-54,9],[-39,-8],[-53,0],[-110,15],[5,66],[-24,76],[0,63],[-29,6],[-29,18],[-26,69],[6,72],[-11,75],[10,13],[-25,22],[-88,32],[-39,27],[-14,37],[-1,55],[-90,76],[-48,19],[-16,20],[1,40],[42,30],[10,28],[-7,50],[-25,40],[-74,26],[-7,20],[10,35],[-69,-6],[-51,43],[-46,17],[-47,-9],[-15,-13],[-5,-34],[-22,-6],[-9,-24],[-31,-26],[-45,-16],[-40,3],[-44,14],[-69,-29],[-52,7],[-27,14],[-19,24],[24,65],[-24,19],[-39,10],[-111,9],[-55,25],[-84,-18],[-35,-15],[-37,-1],[-39,7],[-73,35],[-89,82],[-50,64],[-20,48],[-41,35],[-32,16],[-111,14],[-41,-12],[-98,-73],[-71,-24],[-53,1],[-81,19],[-35,18],[-42,40],[-64,5],[-62,-20],[-71,-50],[-39,-30],[-81,-90],[-65,-48],[-3,-22],[11,-33],[-10,-17],[-54,-24],[-10,-22],[-1,-20],[35,-55],[-7,-52],[-25,-1],[-47,26],[-59,13],[-53,-37],[-11,-18],[-2,-56],[-12,-17],[-50,-10],[-39,5],[-54,39],[-78,24],[-62,-2],[-53,-19],[-93,3],[-46,-11],[-28,5],[-20,11],[0,13],[-56,33],[-61,67],[-61,22],[-47,41],[-91,100],[-45,69],[-25,24],[-63,36],[-13,58],[-64,70],[-36,11],[-20,32],[-131,110],[-74,35],[-100,1],[-89,21],[-198,145],[-97,108],[-123,17],[-86,85],[-8,21],[-58,48],[-115,26],[-32,14],[-59,85],[3,27],[-15,21],[-54,0],[-22,13],[-16,52],[49,86],[5,74],[35,30],[-7,15],[9,33],[-5,73],[-67,105],[9,33],[-5,27],[-65,132],[17,82],[-27,31],[28,35],[34,65],[-15,41],[-66,40],[-26,25],[-59,189],[1,88],[18,45],[36,28],[116,21],[36,13],[72,49],[30,56],[103,49],[87,145],[4,64],[27,50],[69,71],[22,2],[-8,111],[-72,67],[-141,97],[-295,147],[-112,73],[-71,61],[-29,45],[-26,60],[-6,56],[-21,40],[39,110],[27,28],[21,112],[86,80],[69,87],[0,33],[60,167],[71,100],[10,35],[29,35],[15,39],[-56,25],[-148,20],[-61,17],[-98,49],[-201,67],[-166,82],[-88,68],[-159,82],[-74,34],[-85,21],[-82,67],[-39,20],[-48,-41],[-15,-142],[-15,-16],[0,-56],[25,-78],[-3,-48],[-89,-83],[8,-12],[38,-7],[17,-34],[-12,-50],[-15,-22],[-71,-31],[-49,-4],[-44,3],[-32,22],[0,25],[24,34],[-7,2],[-100,-32],[-42,-50],[-12,-33],[-64,-64],[-126,-98],[-96,-114],[-157,-91],[0,-47],[-8,-13],[-22,-19],[-90,-143],[-48,-26],[-35,-54],[-36,-12],[-52,1],[-47,13],[-27,19],[-19,35],[-89,8],[-29,16],[-19,40],[66,151],[-16,30],[-7,68],[57,113],[5,27],[105,184],[30,100],[15,98],[-10,250],[-23,26],[-10,31],[-21,151],[10,41],[-27,65],[-16,87],[-61,64],[-5,46],[-17,34],[-34,37],[-83,30],[-87,3],[-55,17],[-23,26],[-63,42],[-15,59],[-4,65],[-27,26],[-15,37],[-38,11],[-72,43],[-68,101],[-73,65],[-84,48],[-53,17],[-20,0],[-35,-23],[-24,-29],[-42,-10],[-43,9],[-33,16],[-5,20],[8,47],[92,172],[22,63],[8,66],[31,91],[-1,62],[-74,35],[-46,38],[-22,37],[-80,181],[-15,60],[-31,65],[-17,5],[-10,24],[-2,94],[25,57],[0,49],[84,144],[108,97],[80,112],[-16,68],[36,134],[-18,0],[-29,24],[-2,54],[14,17],[-16,86],[29,25],[49,13],[29,0],[35,-1],[40,-38],[23,10],[30,50],[30,11],[26,-6],[28,-26],[25,1],[46,25],[24,3],[42,-4],[32,-12],[80,-6],[143,6],[46,10],[88,-6],[69,-27],[37,-31],[56,-24],[52,-7],[339,-177],[55,3],[19,29],[5,42],[-6,82],[93,168],[18,13],[42,57],[29,54],[-7,27],[14,18],[30,10],[-12,21],[2,44],[16,27],[21,3],[47,-22],[73,-19],[25,-16],[63,-120],[12,-186],[17,-35],[-21,-51],[1,-25],[37,-45],[-1,-23],[-45,-68],[28,-22],[36,-14],[62,-11],[217,-1],[32,-11],[26,-32],[68,-52],[46,1],[40,15],[78,70],[315,230],[29,30],[22,66],[21,31],[211,134],[49,62],[38,81],[0,128],[37,94],[0,157],[15,100],[-22,60],[-4,64],[-36,86],[-3,65],[-19,38],[-54,48],[2,55],[-24,32],[-10,7],[-87,11],[-86,-40],[-38,-8],[-16,-32],[12,-40],[-11,-20],[-49,-29],[-23,-2],[-27,-25],[-46,-82],[-17,-14],[-130,-62],[-127,-10],[-56,6],[-33,9],[-50,40],[-50,55],[-7,22],[13,104],[77,238],[53,53],[104,64],[22,34],[16,71],[61,63],[12,22],[2,44],[-11,27],[-59,61],[-125,85],[-14,27],[0,29],[-49,63],[15,59],[-34,-6],[-8,-24],[-39,-27],[-79,-29],[-31,3],[-25,10],[-19,56],[-40,47],[-32,31],[-25,5],[-21,-71],[-44,-66],[-3,-117],[7,-28],[34,-32],[15,-41],[-2,-68],[-17,-36],[24,-51],[30,-23],[14,-148],[59,-117],[22,-15],[7,-41],[-15,-131],[-7,-20],[-20,-17],[2,-78],[-10,-66],[-55,-119],[-2,-85],[-15,-36],[-9,-144],[43,-51],[-13,-29],[-46,-21],[-62,-5],[-84,0],[-97,13],[-47,-20],[-27,0],[-129,5],[-48,11],[-85,32],[-39,26],[-67,29],[-21,25],[-30,3],[-26,16],[-64,70],[-22,45],[-83,68],[-95,15],[-49,-30],[-38,-3],[-173,12],[-132,99],[-77,39],[-159,27],[-21,22],[-27,13],[-67,4],[-44,-64],[-71,-65],[-20,-8],[-133,1],[-40,4],[-30,11],[-5,90],[18,22],[27,12],[-10,20],[-25,11],[-4,21],[2,21],[23,43],[-18,25],[0,31],[-14,26],[-54,38],[10,83],[-50,98],[-37,35],[-24,76],[-106,140],[-38,27],[-33,43],[-21,11],[-48,81],[-74,92],[-36,32],[-43,26],[-50,46],[-23,7],[-100,4],[-36,10],[-20,81],[38,135],[12,84],[22,23],[96,62],[13,15],[-33,-1],[-51,-14],[-35,1],[-15,17],[20,32],[-4,16],[-15,-9],[-2,7],[-29,-2],[-37,17],[-18,18],[5,55],[-34,40],[-65,130],[-95,104],[-59,83],[-10,31],[-24,27],[-2,28],[-34,41],[-7,57],[-19,21],[-24,21],[-45,20],[-27,4],[-39,28],[-13,-5],[-15,-48],[-53,9],[-45,39],[-19,52],[-53,45],[-2,53],[14,38],[0,37],[79,70],[7,24],[30,39],[116,30],[44,2],[54,-20],[59,27],[91,123],[53,129],[46,59],[55,139],[-26,56],[33,130],[29,66],[-20,221],[11,27],[38,43],[3,18],[-38,32],[-11,24],[14,41],[26,24],[17,36],[20,68],[21,17],[-38,129],[-189,133],[-90,26],[-2,30],[39,67],[4,34],[16,24],[-5,60],[-33,31],[-9,30],[-61,41],[-13,25],[-32,27],[-22,64],[-3,47],[-16,16],[-134,68],[-25,22],[-8,89],[11,32],[22,45],[20,-15],[73,106],[18,109],[40,67],[24,17],[216,22],[1,12],[-141,-1],[-34,8],[-14,23],[43,31],[-43,0],[-157,87],[-80,63],[-112,45],[-22,27],[-37,21],[-44,10],[-44,26],[-40,42],[-41,23],[-78,66],[-5,61],[25,63],[32,36],[20,116],[8,82],[-4,189],[-15,0],[-15,-64],[-15,-268],[-46,-86],[-49,-57],[-35,-80],[-20,-69],[10,-36],[-2,-69],[-18,-27],[-31,-12],[-47,28],[-91,95],[-26,16],[-88,10],[-57,41],[-5,22],[-43,11],[-140,5],[-169,-12],[-115,-36],[-120,-21],[-71,14],[-29,31],[-46,-32],[-23,-43],[18,-77],[-22,-52],[44,-111],[-6,-31],[-24,-13],[-14,-26],[10,-26],[-5,-26],[-38,-35],[10,-62],[-17,-17],[-30,-8],[-14,-14],[0,-18],[14,-18],[22,-6],[5,-43],[-3,-25],[-31,-33],[1,-94],[-34,-56],[-9,-97],[-18,-36],[23,-34],[2,-68],[-13,-95],[-17,-37],[-20,-10],[-107,-18],[-105,-51],[-158,-98],[-15,-47],[-20,-24],[-161,-61],[-28,-17],[-27,-125],[-13,-18],[-59,1],[-31,11],[-20,14],[-95,34],[-24,20],[-76,33],[-32,68],[-90,131],[-5,59],[-33,41],[-17,92],[-30,51],[-12,49],[-26,24],[-13,29],[-31,89],[-5,47],[-118,172],[-1,30],[22,7],[17,16],[-2,40],[-29,14],[-13,-2],[-21,16],[-12,55],[-169,353],[-1,62],[-10,25],[-73,97],[-7,56],[-24,26],[-44,116],[10,31],[-107,-1],[-35,19],[7,51],[42,42],[-11,17],[1,38],[-28,28],[-7,25],[9,35],[49,70],[14,191],[-17,140],[-40,162],[21,214],[-12,113],[2,142],[5,27],[24,18],[48,12],[19,27],[52,32],[15,62],[1,115],[-20,52],[-76,94],[-4,23],[1,263],[10,39],[-35,31],[0,21],[38,13],[0,65],[22,26],[-10,253],[-18,37],[-37,33],[-31,20],[-32,-5],[-25,10],[-4,77],[49,62],[76,36],[6,88],[59,62],[19,42],[-9,25],[-76,32],[-27,30],[-9,66],[51,52],[11,34],[98,64],[-5,78],[22,25],[50,19],[98,12],[56,24],[58,55],[96,32],[25,22],[66,92],[-29,2],[-24,13],[2,46],[13,25],[-12,55],[15,51],[-5,24],[-9,15],[-96,-26],[-115,-18],[-39,2],[-22,11],[4,52],[-7,19],[-53,48],[-10,31],[-4,133],[-51,104],[-12,150],[-36,71],[-66,69],[-15,54],[-82,29],[-6,20],[11,88],[31,53],[25,17],[18,83],[-57,70],[1,166],[8,28],[30,40],[37,33],[61,35],[-8,16],[-38,18],[-34,28],[-12,31],[0,67],[14,26],[4,52],[-8,25],[-52,36],[-55,65],[10,51],[15,18],[-2,25],[-64,31],[-15,25],[12,59],[-9,75],[-54,82],[-16,61],[12,30],[25,21],[29,48],[-1,69],[-47,53],[-69,28],[-34,50],[-16,121],[41,40],[16,75],[-35,45],[-9,139],[-21,50],[-32,36],[-9,82],[-39,40],[-35,18],[-46,2],[-31,14],[-84,64],[-44,46],[-20,3],[-38,-17],[-115,10],[-177,-68],[-51,1],[-45,15],[-25,36],[-16,61],[20,72],[-4,36],[-14,11],[-2,67],[61,90],[101,97],[127,88],[78,73],[69,17],[50,45],[52,134],[18,336],[-19,17],[-13,-4],[-47,-143],[-61,-94],[-10,-44],[-102,-158],[-90,-61],[-54,-5],[-35,13],[-9,16],[10,47],[-2,191],[8,52],[-15,44],[3,100],[-4,48],[-12,19],[-62,73],[-83,58],[-65,28],[-186,54],[-81,3],[-22,-9],[-150,-197],[-65,-64],[-74,-109],[-40,-30],[-45,-1],[-36,6],[-77,44],[-17,1],[-37,-69],[-9,-87],[-33,-38],[-118,-35],[-15,-21],[0,-29],[-14,-21],[-60,-49],[-131,-70],[-20,-24],[-76,-52],[-77,-33],[-52,-6],[-42,6],[-23,12],[-101,12],[-37,24],[-22,29],[-32,68],[-72,81],[-46,68],[-45,81],[-43,110],[-43,28],[4,58],[-16,56],[9,33],[36,31],[47,19],[36,2],[9,14],[-22,14],[-3,19],[25,45],[7,36],[20,23],[5,35],[-44,72],[-14,85],[-15,4],[-23,31],[-59,136],[-52,77],[-43,46],[-34,22],[-41,21],[-101,24],[-27,26],[-48,28],[-20,39],[-7,52],[2,58],[29,46],[68,43],[21,23],[57,129],[13,89],[20,43],[40,54],[28,28],[62,24],[138,22],[-1,69],[-20,86],[0,54],[40,63],[63,130],[60,233],[16,21],[13,43],[114,177],[16,39],[21,26],[35,22],[111,16],[85,54],[11,36],[-36,42],[-25,71],[14,99],[33,61],[-34,76],[2,149],[63,103],[75,30],[59,34],[4,44],[-8,117],[-44,48],[-24,102],[-30,67],[-13,185],[0,72],[23,139],[29,73],[-2,124],[11,76],[70,16],[120,-2],[177,31],[63,27],[117,77],[90,28],[111,70],[90,41],[132,156],[66,136],[8,149],[-9,34],[-57,39],[-42,2],[-94,30],[-21,26],[-12,62],[-54,35],[-19,23],[-21,123],[15,50],[36,17],[110,28],[16,21],[6,48],[21,14],[66,17],[48,28],[36,39],[75,41],[203,69],[4,117],[56,133],[0,117],[30,46],[78,63],[48,14],[84,0],[33,-14],[93,14],[42,13],[57,50],[49,16],[171,33],[86,39],[79,-9],[102,7],[81,-11],[18,-11],[36,-7],[69,7],[27,-16],[33,2],[0,35],[-31,23],[0,103],[46,89],[363,378],[17,4],[42,40],[36,88],[0,23],[-21,9],[-15,-2],[-43,141],[-24,28],[-21,9],[-33,-3],[-39,-32],[-30,-5],[-27,23],[18,35],[-3,18],[-18,7],[-6,15],[26,32],[43,21],[96,21],[0,23],[18,35],[20,18],[36,9],[4,36],[36,51],[-7,57],[27,65],[39,37],[64,43],[20,6],[39,-11],[16,-22],[18,-71],[68,-92],[48,-10],[38,3],[31,-10],[14,-21],[-5,-57],[26,-120],[81,-80],[23,-60],[54,-95],[30,-80],[124,-135],[14,-28],[34,-161],[184,-198],[65,-27],[25,-30],[79,-38],[205,-46],[111,-4],[22,7],[43,40],[25,12],[33,-3],[62,-60],[-9,-67],[-18,-27],[46,-21],[5,7],[35,0],[45,-40],[48,-147],[-5,-63],[12,-14],[13,-53],[-6,-35],[-32,-49],[9,-10],[-13,-37],[-47,-54],[0,-29],[77,-62],[72,-82],[23,-75],[19,-156],[15,-6],[12,-19],[2,-65],[34,-33],[2,-48],[18,-25],[23,-6],[23,-59],[-5,-56],[-76,-92],[-20,-1],[-30,-22],[3,-24],[58,-82],[23,-95],[29,0],[41,-12],[36,-26],[50,-100],[19,-165],[3,-135],[45,-69],[27,-15],[16,-53],[-68,-108],[-43,-90],[28,-57],[12,-105],[39,-50],[72,-62],[45,-61],[0,-24],[14,-19],[20,-11],[54,13],[43,-7],[50,-29],[38,-7],[43,3],[18,14],[94,2],[30,21],[45,3],[13,9],[-6,26],[17,201],[29,91],[11,97],[35,95],[57,82],[2,28],[-11,23],[-28,13],[-22,40],[0,26],[6,31],[25,40],[7,37],[47,43],[31,9],[86,-26],[50,-61],[7,-22],[61,-57],[63,-30],[23,-20],[33,-11],[32,-3],[36,10],[22,26],[5,26],[29,46],[23,20],[33,7],[38,0],[55,-15],[29,-17],[25,-46],[36,-41],[20,-33],[5,-26],[-20,-49],[0,-133],[-8,-28],[-79,-92],[0,-17],[23,-120],[59,-40],[11,-28],[0,-170],[12,-64],[-5,-26],[-49,-51],[-29,-50],[-7,-52],[5,-19],[14,-7],[11,-21],[0,-29],[-58,-101],[0,-38],[-7,-3],[0,-25],[59,-78],[7,-29],[7,-260],[12,-51],[-20,-87],[-41,-43],[-78,-132],[0,-242],[25,-16],[16,-80],[95,-99],[57,-146],[0,-28],[154,-152],[59,-24],[70,-17],[36,-25],[18,-1],[2,14],[-21,12],[-119,48],[4,18],[14,5],[0,14],[54,22],[-45,33],[-32,68],[-39,50],[-2,43],[-36,68],[-2,24],[15,18],[-63,114],[0,24],[42,59],[3,26],[101,117],[51,21],[70,47],[39,10],[76,47],[47,16],[77,2],[33,9],[86,-20],[34,6],[14,17],[-9,42],[2,80],[37,18],[7,65],[-22,24],[0,44],[24,130],[-1,139],[14,25],[43,43],[-7,22],[-63,10],[-16,30],[0,92],[-21,27],[-3,77],[-24,68],[10,114],[-13,19],[-5,76],[7,125],[-35,151],[2,262],[29,45],[-14,41],[16,62],[17,198],[19,27],[3,174],[20,194],[-7,28],[-54,82],[-3,51],[9,41],[74,94],[9,96],[22,54],[16,93],[0,53],[36,45],[-11,9],[-39,-6],[-102,39],[-72,125],[-27,118],[-84,-6],[-88,-17],[-60,-23],[-63,5],[-18,14],[-14,43],[13,45],[11,21],[84,75],[0,22],[-73,49],[-11,78],[-18,18],[2,24],[63,65],[36,63],[71,75],[3,28],[67,66],[60,133],[37,129],[3,70],[23,48],[7,118],[31,32],[4,17],[-24,26],[2,24],[33,118],[47,45],[16,76],[13,21],[-4,211],[-31,71],[-24,22],[-59,9],[-25,13],[-20,30],[-54,42],[-57,117],[0,77],[29,97],[58,68],[5,40],[-16,27],[-21,15],[20,84],[50,49],[4,28],[0,34],[-38,27],[-16,29],[-5,93],[27,42],[205,21],[16,21],[95,26],[20,16],[-59,18],[-11,38],[45,99],[17,164],[36,61],[13,78],[13,14],[-16,25],[-40,13],[-27,144],[-59,134],[0,34],[17,27],[48,33],[0,12],[-10,50],[-60,105],[18,128],[-19,74],[13,48],[22,27],[1,18],[20,18],[-3,61],[-45,120],[-5,178],[11,33],[32,39],[13,33],[99,347],[76,65],[207,27],[29,26],[11,30],[-17,57],[-78,14],[-82,32],[-110,95],[-110,121],[-21,116],[-8,290],[-28,121],[-14,121],[-7,132],[7,111],[95,80],[165,22],[19,64],[-19,9],[-42,68],[-21,106],[109,216],[7,158],[95,165],[-7,47],[-55,74],[27,94],[103,85],[65,-4],[92,8],[79,-21],[75,6],[45,47],[-6,23],[61,105],[0,53],[-21,42],[-75,43],[-69,26],[-42,79],[0,95],[34,105],[76,59],[68,89],[-2,101],[-45,12],[-2,6],[-68,-29],[-36,16],[4,54],[13,31],[-7,140],[49,37],[70,-33],[19,-24],[38,-12],[101,16],[32,12],[34,40],[25,-3],[49,-25],[41,16],[117,83],[32,6],[21,59],[7,57],[0,74],[-28,90],[-55,58],[-117,47],[-185,37],[-82,31],[-21,80],[-21,184],[13,85],[62,74],[75,179],[-28,52],[14,38],[109,16],[21,69],[47,73],[-13,37],[-49,27],[-61,0],[-55,-59],[-55,16],[-76,42],[-103,74],[-96,89],[-14,111],[14,95],[-1,269],[104,117],[11,36],[-14,47],[16,49],[36,34],[23,53],[4,161],[45,114],[24,166],[1,159],[25,103],[2,135],[-10,87],[9,45],[102,106],[-15,193],[-49,74],[-17,44],[23,29],[32,22],[13,-1],[32,-40],[-5,144],[30,39],[53,194],[7,95],[24,51],[13,148],[27,51],[9,43],[222,278],[61,44],[124,49],[18,13],[4,16],[-18,7],[-17,-2],[-64,-38],[-43,0],[-18,17],[0,160],[96,111],[66,13],[20,-14],[12,-73],[-21,-21],[-6,-23],[4,-43],[-8,-62],[20,-37],[68,5],[42,15],[32,29],[13,33],[5,95],[19,75],[-30,23],[-13,37],[-145,52],[-14,64],[41,47],[62,37],[55,-10],[130,0],[90,-74],[23,-9],[93,59],[0,103],[-75,48],[-179,73],[-45,-25],[-82,10],[-9,11],[2,62],[86,155],[11,83],[23,23],[8,22],[13,160],[59,64],[-12,97],[18,75],[23,24],[22,82],[26,46],[18,14],[0,116],[21,121],[34,90],[75,95],[75,74],[81,58],[11,25],[0,35],[-15,39],[-31,13],[-35,1],[-14,20],[0,27],[49,70],[34,33],[32,11],[17,68],[0,91],[27,95],[55,111],[109,137],[0,64],[13,79],[109,290],[14,201],[40,184],[123,264],[40,470],[48,85],[109,137],[54,85],[185,227],[34,105],[41,85],[89,111],[239,428],[40,105],[144,243],[55,90],[52,14],[19,23],[18,57],[-2,101],[11,48],[74,92],[25,20],[22,74],[26,34],[16,81],[77,147],[85,115],[38,89],[32,46],[4,63],[18,43],[83,120],[25,28],[25,13],[20,-4],[-4,-42],[-18,-33],[38,9],[41,54],[51,21],[127,-52],[-2,-54],[-30,-15],[-26,-47],[-2,-22],[-38,-83],[4,-86],[-45,-42],[-2,-78],[-16,-28],[-61,-57],[-11,-118],[-39,-50],[6,-32],[-9,-94],[-18,-24],[-74,-7],[-30,-14],[-6,-127],[-56,-102],[-11,-115],[-38,-36],[-64,-27],[-17,-22],[-18,-60],[-27,-27],[-16,-33],[-20,-95],[-52,-110],[-24,-83],[-79,-115],[-36,-80],[-54,-67],[-9,-39],[7,-71],[-13,-38],[-41,-52],[-2,-24],[32,-44],[-5,-29],[-76,-37],[-14,-24],[14,-54],[-67,-85],[18,-17],[43,-19],[27,-28],[38,7],[27,19],[2,23],[30,28],[29,3],[34,-8],[9,-29],[47,13],[99,113],[56,46],[43,68],[2,30],[-15,19],[-82,47],[-70,10],[-14,16],[-6,54],[40,46],[38,2],[23,-7],[32,9],[58,35],[2,19],[39,49],[81,64],[71,90],[21,47],[6,113],[56,120],[32,128],[53,69],[6,36],[93,125],[36,92],[36,36],[54,31],[96,10],[51,23],[46,48],[54,32],[44,51],[20,45],[13,92],[60,110],[76,63],[35,83],[103,140],[46,91],[22,112],[20,19],[20,58],[23,31],[42,18],[114,3],[67,-24],[68,-37],[34,-34],[14,-29],[9,-54],[-14,-29],[6,-195],[-25,-122],[11,-72],[7,-212],[-24,-123],[4,-57],[-46,-41],[2,-14],[72,6],[11,-18],[25,14],[18,37],[34,24],[-2,68],[-14,24],[4,49],[59,66],[-14,13],[-50,16],[0,107],[45,87],[-6,58],[10,115],[38,29],[5,19],[23,21],[29,17],[56,7],[41,-7],[52,-20],[126,-18],[43,-24],[41,-192],[-4,-42],[-25,-51],[-7,-161],[84,89],[14,25],[4,124],[31,68],[74,68],[38,52],[20,93],[19,22],[-37,51],[-4,26],[2,21],[23,42],[-3,19],[-11,17],[-54,30],[-28,81],[-49,12],[-9,16],[-30,68],[-5,100],[36,61],[-4,71],[16,50],[70,96],[-6,66],[9,47],[29,41],[36,29],[88,12],[16,26],[0,20],[17,10],[34,75],[-20,6],[-9,12],[0,22],[20,25],[27,15],[3,37],[-25,28],[-27,15],[-7,36],[9,20],[47,40],[14,22],[2,47],[11,23],[22,19],[64,5],[60,-12],[37,9],[13,10],[31,73],[84,58],[45,48],[43,28],[36,47],[29,17],[38,14],[154,0],[31,20],[27,5],[25,-1],[27,-35]],[[27929,290979],[60,-10],[146,-7],[11,-12],[19,-1],[65,-28],[103,-139],[34,-26],[111,-44],[85,-56],[110,-88],[92,-92],[31,-87],[107,-106],[22,-12],[33,-56],[12,-56],[-32,-29],[-44,-19],[-30,-42],[0,-34],[-52,-62],[-8,-31],[21,-37],[47,-12],[0,-8],[22,-7],[6,-15],[-2,-15],[-49,-53],[1,-56],[16,-2],[10,-102],[23,-6],[2,123],[11,10],[16,0],[12,-5],[12,-26],[-7,-57],[5,-30],[22,-26],[6,-32],[37,-48],[32,0],[59,27],[9,26],[2,111],[23,80],[0,60],[-12,33],[-48,49],[-107,71],[-3,15],[23,41],[91,30],[67,6],[124,-8],[114,-29],[335,-167],[28,-33],[37,-21],[17,-36],[444,-341],[117,-118],[165,-137],[73,-48],[59,-17],[87,21],[59,-21],[66,-56],[12,-21],[64,-42],[60,-55],[31,-11],[16,-31],[64,-51],[96,-53],[96,-93],[103,-77],[51,-59],[41,-29],[80,-113],[32,-63],[17,-134],[-39,-116],[-48,-55],[-34,-25],[-91,-111],[-20,-74],[-77,-171],[7,-139],[-22,-92],[11,-190],[19,-71],[89,-109],[46,-70],[28,-90],[78,-148],[25,-88],[96,-179],[71,-167],[30,-24],[99,-116],[34,-72],[5,-69],[-21,-47],[-88,-141],[-71,-81],[-36,-121],[8,-200],[68,-108],[8,-42],[-12,-35],[-102,-114],[21,-49],[30,-29],[-7,-124],[38,-100],[35,-40],[73,-33],[78,-73],[41,-23],[105,-102],[37,-63],[-7,-19],[-32,-11],[-109,-14],[-39,-28],[-16,-50],[21,-19],[123,-21],[87,-42],[212,-44],[111,2],[169,22],[66,-6],[53,-19],[37,-25],[31,-37],[42,-172],[114,-176],[72,-95],[116,-94],[73,-40],[34,-28],[192,-95],[102,-21],[62,-39],[89,-40],[110,-24],[114,-39],[85,-49],[41,-60],[21,-162],[-14,-46],[13,-65],[-3,-134],[18,-44],[9,-81],[-9,-49],[-21,-38],[0,-30],[-18,-38],[-50,-387],[-111,-365],[-91,-184],[-22,-134],[-34,-78],[-45,-181],[0,-141],[-19,-78],[14,-57],[16,-174],[-13,-180],[-32,-117],[-47,-120],[0,-204],[21,-53],[34,-47],[21,-116],[32,-44],[137,-116],[30,-46],[55,-122],[96,-98],[64,-99],[60,-222],[1,-251],[11,-149],[77,-364],[174,-269],[68,-73],[35,-163],[62,-117],[53,-56],[155,-127],[130,-146],[50,-128],[33,-162],[7,-85],[-15,-211],[-64,-210],[-84,-109],[7,-37],[46,-78],[1,-158],[11,-81],[-8,-136],[9,-55],[29,-65],[8,-125],[-2,-90],[-12,-44],[-61,-160],[-38,-44],[-32,-18],[-169,-25],[-89,3],[-319,142],[-57,39],[-87,14],[-225,-19],[-301,-158],[-50,-19],[-157,-88],[-43,-50],[-77,-49],[-146,-140],[-71,-89],[-13,-48],[-6,-160],[41,-48],[50,-166],[28,-53],[48,-51],[20,-38],[-9,-43],[5,-97],[17,-63],[45,-76],[65,-67],[66,-24],[34,9],[47,42],[41,16],[41,7],[37,-4],[11,-15],[-15,-53],[-100,-92],[-48,-32],[-87,-90],[-47,-33],[-53,-19],[-38,-1],[-187,-53],[-75,-7],[-226,-2],[-153,-29],[-54,-14],[-266,-108],[-276,-150],[-47,-43],[-539,-369],[-235,-188],[-79,-50],[-223,-200],[-254,-296],[-134,-137],[-84,-126],[-24,-3],[-112,-166],[-223,-371],[-6,-79],[-57,-97],[-78,-100],[-60,-165],[-22,-254],[-6,-253],[8,-188],[30,-88],[16,-166],[61,-145],[113,-221],[84,-106],[30,-51],[99,-107],[34,-32],[95,-31],[132,-19],[288,-62],[232,-82],[105,-25],[251,-75],[228,-24],[52,-2],[37,9],[59,-5],[87,-32],[50,-42],[35,-3],[29,-16],[128,-125],[109,-63],[27,-28],[5,-23],[94,-47],[112,-113],[5,-62],[-12,-56],[-41,-71],[-8,-93],[-110,-117],[-59,-16],[-68,-49],[-72,-71],[-26,-48],[-115,-129],[-78,-45],[-34,-30],[-56,-90],[-37,-26],[-86,-85],[-48,-92],[-65,-87],[-35,-68],[-77,-76],[-280,-173],[-33,-34],[-30,-47],[-32,-73],[-95,-53],[-357,-118],[-73,-39],[-9,-13],[-91,-56],[-80,-69],[-70,-100],[-41,-84],[-20,-3],[-27,-23],[-7,-25],[27,-17],[41,-71],[0,-49],[-59,-72],[14,-108],[-11,-26],[-31,-32],[-35,-85],[-60,-112],[-75,-194],[-84,-112],[-122,-37],[-165,-97],[-30,-26],[-49,-68],[-62,-121],[-88,-75],[-83,-53],[-23,-59],[-38,-47],[-24,-55],[75,-113],[7,-59],[-19,-74],[-3,-74],[-52,-45],[-29,-13],[-58,-80],[-2,-36],[-16,-30],[-93,-113],[-106,-48],[-117,-25],[-182,11],[-98,-1],[-72,-8],[-48,-22],[-2,-11],[-96,-73],[-155,-64],[-442,-121],[-84,-32],[-185,-37],[-222,5],[-82,12],[-82,0],[-123,-11],[-214,-64],[-66,-12],[-298,-8],[-171,10],[-107,34],[-39,23],[-39,40],[-73,55],[-123,54],[-101,79],[-75,37],[-209,7],[-119,17],[-399,82],[-134,38],[-130,26],[-76,38],[-65,50],[-28,66],[-30,28],[-183,56],[-119,75],[-191,82],[-305,199],[-446,346],[-20,39],[-96,115],[-154,137],[-38,19],[-55,13],[-149,67],[-18,20],[-214,121],[-37,34],[-241,75],[-48,37],[-64,35],[-51,46],[-255,91],[-185,38],[-57,2],[-120,31],[-178,19],[-161,36],[-35,22],[-189,54],[-162,33],[-50,27],[-94,30],[-175,48],[-110,14],[-303,0],[-169,23],[-296,-1],[-184,-8],[-228,-30],[-75,-18],[-48,-39],[-81,-104],[-43,-74],[-80,-74],[-54,-25],[-57,-44],[-193,-207],[1,-9],[-33,-23],[-121,-130],[-58,-42],[-71,-71],[-115,-71],[-105,-76],[-147,-66],[-133,-28],[-82,-35],[-127,-41],[-367,-45],[-460,-15],[-59,2],[-109,26],[-148,7],[-82,22],[-183,23],[-34,12],[-66,46],[-134,73],[-15,48],[0,78],[-16,21],[-91,26],[-27,18],[-10,18],[8,46],[-15,110],[27,44],[14,53],[42,74],[37,39],[107,58],[27,69],[27,32],[48,21],[43,0],[98,43],[50,46],[122,81],[125,140],[41,35],[39,66],[102,99],[61,38],[29,26],[23,0],[62,39],[-3,65],[-11,22],[-80,62],[-14,22],[-3,127],[52,116],[32,34],[136,261],[64,79],[49,23],[66,18],[41,26],[74,77],[35,91],[39,42],[31,134],[43,85],[39,47],[81,68],[100,61],[135,31],[218,235],[46,67],[55,56],[3,14],[86,113],[35,25],[80,111],[-39,226],[13,109],[36,55],[-25,58],[-2,65],[30,44],[37,242],[44,79],[71,76],[35,93],[7,87],[-8,42],[61,126],[39,32],[14,25],[-1,99],[-33,53],[33,100],[91,118],[106,65],[68,59],[76,36],[189,17],[61,32],[16,18],[25,85],[15,246],[-44,94],[-89,297],[-100,199],[-23,70],[-9,194],[-99,171],[-16,112],[-69,99],[-57,54],[-28,64],[-126,182],[-18,47],[-93,139],[-79,174],[-91,167],[-266,352],[-79,66],[-36,92],[-86,81],[-50,65],[-7,-3],[-153,170],[-92,118],[-175,176],[-244,217],[-252,164],[-61,12],[-137,0],[-126,-22],[-34,-25],[-38,-11],[-77,0],[-116,26],[-82,-1],[-96,25],[-107,5],[-30,12],[-25,32],[-25,14],[-57,7],[-37,14],[-11,21],[9,90],[48,51],[29,58],[-3,106],[-11,53],[26,92],[5,57],[-12,36],[-123,116],[-28,42],[14,21],[52,21],[16,23],[4,25],[-2,30],[-14,23],[-29,21],[2,30],[-69,123],[-32,300],[0,200],[-47,182],[-16,118],[0,59],[13,37],[56,57],[20,189],[-7,111],[-83,197],[2,376],[32,321],[23,106],[45,123],[53,54],[45,170],[15,94],[-5,71],[-42,141],[-5,84],[-148,228],[-30,141],[-1,76],[-38,117],[-77,147],[-16,106],[-61,100],[-8,135],[19,42],[57,26],[23,110],[-1,204],[-39,104],[-2,503],[31,146],[64,24],[48,30],[20,39],[18,47],[8,108],[61,24],[22,82],[0,106],[-15,47],[-34,59],[-5,59],[-12,23],[-102,70],[-60,65],[-11,25],[0,72],[-21,42],[-30,21],[-54,22],[-54,71],[-15,58],[-8,100],[-54,100],[7,159],[-15,76],[-1,136],[53,229],[98,124],[137,100],[319,260],[95,68],[61,19],[18,-5],[23,-23],[9,-56],[19,-23],[18,-69],[1,-157],[-25,-105],[9,-50],[174,-106],[238,-88],[65,-35],[190,-27],[53,-13],[25,-83],[62,-71],[59,-17],[71,35],[54,71],[93,83],[73,34],[112,-4],[36,4],[43,19],[219,8],[71,23],[27,16],[121,36],[263,120],[45,53],[174,95],[228,177],[129,153],[55,33],[190,197],[91,62],[69,62],[36,51],[20,37],[2,54],[44,55],[30,65],[121,182],[23,54],[0,41],[-23,28],[50,43],[27,56],[18,104],[43,62],[-50,56],[40,21],[107,31],[37,22],[52,63],[101,235],[66,247],[-11,110],[-21,56],[-10,113],[-30,54],[-5,24],[0,26],[20,19],[57,-3],[70,-19],[89,-46],[23,-25],[81,-35],[109,-5],[145,6],[159,65],[190,124],[135,146],[137,91],[263,274],[77,54],[87,127],[46,44],[7,21],[108,105],[119,17],[50,39],[43,20],[43,8],[144,-3],[43,-10],[84,-42],[76,1],[85,12],[81,15],[73,30],[43,23],[69,64],[59,125],[51,67],[12,40],[72,119],[57,198],[23,141],[4,100],[-30,291],[-81,144],[-65,72],[-61,50],[-106,63],[-16,46],[8,63],[36,73],[141,99],[79,36],[109,4],[42,-9],[72,13],[133,47],[154,72],[231,83],[54,1],[50,11],[78,49],[50,69],[20,152],[52,0],[110,-18],[38,2],[62,39],[52,4],[133,-24],[75,-36],[68,-1],[151,41],[104,72],[41,43],[20,46],[67,58],[106,65],[46,65],[62,57],[17,93],[23,32],[107,71],[37,13],[145,137],[32,10],[75,64],[54,70],[41,83],[7,44],[16,32],[61,67],[85,63],[4,26],[27,38],[93,78],[46,18],[70,-9],[42,11],[45,24],[46,4],[117,-19],[40,21],[61,7],[33,14],[129,11],[34,14],[44,6],[77,4],[92,0],[36,-11],[59,-34],[180,-59],[88,15],[84,71],[7,21],[49,38],[30,37],[29,41],[21,74],[63,79],[21,23],[91,55],[198,86],[116,33],[228,4],[109,-13]],[[38977,334034],[97,-7],[85,16],[46,18],[66,91],[42,14],[25,-13],[6,-279],[-25,-142],[4,-30],[-13,-84],[-44,-59],[-6,-157],[30,-48],[55,-24],[74,-2],[65,18],[122,-48],[48,-29],[58,-52],[212,-114],[73,-55],[54,-28],[113,-41],[103,-58],[12,-69],[-30,-42],[3,-37],[-30,-50],[23,-12],[23,5],[35,45],[45,27],[33,9],[41,-4],[130,-46],[52,-41],[67,-19],[233,-30],[30,-9],[78,23],[57,52],[38,20],[181,-3],[56,-31],[57,-49],[39,-23],[35,-38],[25,-92],[0,-82],[29,-44],[44,-23],[34,-35],[19,-46],[0,-36],[-19,-32],[-2,-35],[35,-75],[-53,-82],[42,-39],[12,-21],[-56,-64],[19,-41],[28,-12],[37,-53],[20,-56],[3,-43],[32,-11],[78,-2],[21,-11],[10,-14],[2,-38],[80,-93],[27,-17],[6,-28],[30,-19],[42,-5],[34,10],[39,-10],[26,-16],[13,-25],[7,-60],[12,-23],[42,-33],[-2,-97],[-7,-29],[-35,-51],[16,-53],[-45,-41],[-7,-37],[2,-27],[35,-67],[-5,-20],[-57,-48],[-9,-34],[5,-149],[18,-35],[30,-25],[88,-3],[20,-15],[5,-35],[-30,-57],[0,-27],[40,-48],[9,-47],[19,-20],[83,-14],[23,-16],[18,-25],[9,-37],[49,-61],[-2,-17],[-47,-23],[5,-43],[-29,-50],[4,-23],[83,-64],[14,-25],[-7,-40],[19,-18],[39,-14],[16,-20],[5,-60],[34,-41],[-2,-51],[-13,-23],[-21,-23],[-14,0],[-35,-31],[18,-15],[1,-19],[28,-19],[126,-37],[33,-18],[25,-28],[0,-36],[19,-16],[30,-10],[48,-41],[7,-53],[-11,-50],[-46,-64],[-14,-35],[37,-27],[34,-6],[24,-24],[-7,-18],[5,-44],[30,-19],[27,-76],[-20,-53],[14,-26],[46,-46],[0,-27],[-11,-20],[-49,-19],[-6,-20],[34,-16],[0,-29],[-61,-71],[-68,-53],[-107,-28],[-26,7],[-60,-4],[-28,-14],[-20,-23],[-16,-36],[0,-73],[9,-28],[46,-53],[97,-66],[44,-14],[102,-9],[-17,-41],[-222,-59],[-47,47],[-2,30],[-16,30],[-51,57],[-65,27],[-66,0],[-40,-17],[-27,-64],[-32,-12],[-28,2],[-25,14],[-53,-10],[-48,-40],[-28,1],[-21,-13],[-25,17],[-28,41],[-23,9],[-48,-2],[-53,-34],[-64,6],[-79,-26],[-15,-82],[16,-100],[122,-171],[84,-70],[8,-47],[-15,-88],[-61,-77],[-84,-83],[-122,-76],[-602,-154],[-190,-59],[-404,-30],[-216,-119],[-142,-57],[-170,2],[-174,-101],[-123,-60],[-16,-38],[37,-16],[28,0],[46,7],[19,10],[200,24],[230,6],[64,-7],[100,-67],[33,-12],[66,6],[33,19],[77,-6],[57,9],[46,-12],[16,-25],[4,-26],[-24,-37],[-4,-39],[33,-78],[-13,-26],[-24,-19],[4,-31],[57,-13],[90,7],[18,9],[31,2],[129,-5],[39,-59],[-15,-53],[-115,-6],[-60,-59],[0,-76],[-17,-17],[24,-99],[58,-79],[41,-28],[153,-69],[31,-2],[65,9],[74,-14],[58,3],[17,38],[98,35],[100,-6],[129,36],[77,59],[13,64],[-25,12],[-13,16],[2,49],[83,29],[50,-13],[16,-21],[29,-9],[21,6],[32,38],[53,3],[13,-19],[4,-33],[41,-63],[47,-124],[30,-117],[107,-100],[192,-82],[144,-29],[84,-47],[100,-35],[99,-18],[131,3],[37,31],[136,35],[16,14],[84,-17],[-7,-77],[-16,-53],[62,-117],[46,-24],[99,6],[45,35],[76,6],[92,-5],[8,-30],[-159,-82],[-60,-59],[-54,-83],[-30,-176],[8,-47],[46,-65],[8,-64],[99,-118],[16,-58],[-15,-89],[-61,-88],[-46,-159],[0,-71],[-53,-53],[-84,-24],[-129,-1],[-66,-38],[-91,-103],[-232,-35],[-84,24],[-45,-24],[-96,-11],[-57,-48],[-3,-37],[-23,-47],[-31,-26],[-135,-76],[-77,-35],[-165,-19],[-166,48],[-1,8],[-33,16],[-49,0],[-82,-19],[-159,-16],[-86,-19],[-245,-143],[-2,-27],[-53,-74],[-84,-95],[-30,-82],[-7,-182],[-38,-24],[-47,36],[-160,84],[-197,43],[-47,19],[-221,52],[-260,17],[-136,0],[-305,-50],[-134,-97],[-164,-65],[-212,-142],[-198,-106],[-130,-130],[-76,-94],[-38,-65],[-59,-3],[-15,25],[-107,78],[-81,13],[-107,34],[-82,10],[-115,-1],[-32,26],[-135,22],[-78,3],[-205,-1],[-65,-6],[-85,-54],[-21,-3],[-119,-63],[-73,-29],[-40,-4],[-42,20],[-67,15],[-32,70],[-29,31],[-45,16],[-65,0],[-70,-25],[-229,-1],[-121,-15],[-42,-20],[-86,-13],[-94,-53],[-90,-64],[-53,-25],[-327,8],[-66,-15],[-234,0],[-159,24],[-70,0],[-253,41],[-37,35],[-78,50],[-119,9],[-65,16],[-120,60],[-221,188],[-221,153],[-23,43],[-102,110],[-21,34],[-25,73],[-14,121],[-107,89],[-152,175],[-55,96],[-130,115],[-14,39],[-1,115],[15,46],[149,102],[46,21],[161,68],[142,38],[182,71],[42,30],[13,27],[11,4],[72,168],[52,21],[31,31],[19,36],[31,15],[32,58],[18,15],[-20,144],[1,66],[-51,263],[-102,329],[-21,34],[-36,136],[-25,53],[-37,142],[-41,101],[-3,39],[-51,47],[-70,28],[-40,53],[-10,26],[117,35],[217,-17],[48,2],[99,19],[35,-1],[106,-55],[99,-5],[150,-23],[45,9],[21,13],[42,3],[69,-9],[168,54],[117,-7],[32,-16],[44,-5],[166,-2],[163,29],[55,26],[137,36],[421,-109],[134,6],[82,12],[60,13],[67,35],[51,14],[84,6],[60,25],[56,34],[34,44],[94,57],[59,18],[113,121],[42,82],[71,94],[11,61],[-46,182],[13,189],[20,44],[23,132],[50,86],[7,36],[-2,135],[-40,94],[-12,97],[-9,164],[7,62],[-35,77],[-8,65],[-20,11],[-23,30],[-9,32],[4,30],[-14,45],[-35,8],[-39,37],[-55,29],[-46,-15],[-48,-47],[-16,-36],[-51,-27],[-48,14],[-14,18],[-3,29],[30,32],[28,12],[13,25],[-13,14],[13,64],[42,77],[-9,24],[-35,20],[-12,44],[14,20],[28,7],[36,-11],[58,16],[28,-30],[-5,-41],[-25,-51],[32,-62],[39,1],[40,23],[52,71],[11,55],[-68,56],[-17,78],[21,108],[22,66],[24,8],[70,111],[-20,18],[-58,7],[-62,40],[-157,-53],[-41,16],[-3,73],[11,99],[-55,128],[-49,41],[-46,15],[-285,270],[-45,80],[-48,62],[-36,24],[-22,39],[0,22],[-40,99],[-23,32],[-81,72],[-37,50],[-6,36],[-42,30],[-5,70],[29,43],[14,154],[30,58],[67,80],[4,42],[21,24],[14,217],[27,135],[-13,26],[0,149],[41,132],[16,92],[27,31],[15,37],[-3,41],[14,57],[67,106],[-36,82],[9,43],[92,129],[2,39],[-16,34],[55,103],[48,2],[12,-11],[42,-10],[33,60],[-1,136],[41,59],[9,54],[-5,96],[23,50],[52,45],[30,59],[55,66],[0,101],[18,52],[0,72],[46,31],[55,25],[14,60],[69,87],[99,61],[85,23],[78,65],[129,6],[53,85],[-6,70],[63,71],[46,20],[32,34],[29,72],[23,164],[25,41],[67,55],[116,67],[16,80],[-22,45],[5,26],[105,58],[99,7],[69,39],[58,71],[30,13],[34,-2],[23,-11],[17,-25],[2,-112],[23,-46],[24,-6],[82,-143],[86,-87],[85,-47],[47,-18],[41,-5]],[[69756,371372],[46,-88],[46,-47],[192,-129],[191,-100],[160,-29],[214,0],[253,-71],[76,-41],[145,-58],[207,-148],[314,-287],[138,-200],[23,-88],[54,-89],[122,-170],[122,-141],[39,-65],[8,-206],[-31,-97],[-99,-135],[-122,-195],[-38,-199],[-8,-100],[0,-118],[16,-59],[115,-170],[107,-94],[84,-230],[46,-35],[46,-65],[23,-129],[61,-65],[23,-47],[76,-64],[47,-53],[76,-112],[0,-53],[130,-188],[16,-82],[76,-118],[153,-159],[31,-70],[69,-118],[176,-264],[107,-124],[77,-59],[107,-105],[30,-53],[31,-59],[15,-71],[8,-117],[-15,-65],[-54,-100],[130,-200],[46,-135],[31,-41],[8,-212],[138,-106],[122,-118],[84,-11],[61,6],[77,41],[213,-6],[62,-29],[53,-59],[46,-82],[8,-159],[107,-94],[61,-74],[38,-117],[85,-106],[38,-206],[38,-82],[0,-53],[31,-71],[84,-17],[23,-41],[69,-71],[46,-83],[8,-23],[-8,-182],[8,-53],[54,-65],[84,-29],[61,-47],[-38,-53],[-54,-30],[-15,-64],[0,-48],[92,-41],[84,-11],[7,-29],[8,-83],[-53,-94],[53,-70],[-7,-100],[-38,-48],[-8,-58],[46,-59],[53,-6],[69,-53],[8,-118],[84,-200],[123,-164],[53,-18],[99,-5],[54,-65],[16,-448],[-16,-111],[-68,-71],[-77,-165],[-106,-129],[-169,-182],[-243,-206],[-84,-65],[-100,-6],[-84,-18],[-137,-41],[-145,-65],[-161,-35],[-267,29],[-138,30],[-84,41],[-390,276],[-161,64],[-68,71],[7,117],[-122,124],[-8,153],[-15,70],[-62,77],[-7,82],[-38,130],[-31,64],[-54,77],[-91,82],[-54,70],[-69,54],[0,93],[-176,230],[-84,88],[-69,94],[-23,71],[-76,82],[-222,171],[-92,190],[-100,106],[-45,94],[-8,53],[-108,94],[-137,218],[-92,123],[-191,124],[-69,59],[-146,99],[-53,88],[-115,6],[-99,18],[-38,59],[30,47],[23,65],[8,76],[-69,53],[-84,12],[-122,70],[-69,53],[-16,71],[31,23],[107,47],[84,94],[76,47],[92,24],[206,130],[69,35],[7,53],[-122,35],[-99,-6],[-62,-53],[-84,0],[-68,-18],[-145,24],[-284,176],[-160,47],[-138,-29],[-84,-41],[-129,-106],[-84,-106],[30,-54],[-53,-47],[-92,-6],[-175,30],[-131,5],[-129,48],[-138,64],[-184,23],[-221,71],[-299,364],[-92,94],[-61,118],[-168,276],[-54,200],[-23,141],[-46,100],[-8,65],[-123,135],[38,206],[-53,47],[-62,106],[-53,12],[-115,147],[-8,76],[-114,188],[-115,47],[-222,106],[-237,58],[-191,12],[-321,70],[-390,-6],[-76,12],[-107,41],[-138,12],[-54,-6],[-107,-60],[-144,-17],[-138,-6],[-46,-12],[-46,41],[-15,47],[-77,47],[15,42],[-69,70],[-15,76],[-53,118],[-146,159],[-107,11],[-161,65],[-69,70],[-23,83],[-61,53],[16,47],[122,12],[99,29],[92,71],[76,135],[7,94],[84,82],[115,95],[145,0],[245,47],[305,-17],[252,106],[314,94],[313,171],[145,130],[61,129],[38,165],[389,406],[99,118],[130,123],[23,88],[99,48],[84,147],[31,88],[15,188],[114,106],[23,65],[115,100],[-16,53],[-23,12],[-68,-6],[-47,17],[0,65],[-15,70],[8,77],[53,0],[53,-47],[54,-76],[54,-47],[61,-142],[69,-41],[99,-40],[46,-59],[31,-24],[-15,-41],[0,-41],[53,-47],[8,-77],[39,-23],[68,41],[23,41],[69,83],[214,29],[53,30],[31,88],[7,64],[-54,165],[24,88],[-39,24],[31,59],[45,-9],[214,0],[84,-29],[54,-47],[130,6],[130,47],[46,6],[46,-12],[76,-47]],[[77910,383223],[123,-3],[46,-23],[10,-69],[34,-17],[-6,-73],[51,-40],[0,-41],[17,-31],[15,-110],[17,-33],[0,-22],[-40,-40],[0,-21],[14,-23],[75,-9],[17,-11],[11,-22],[6,-76],[124,-44],[17,-48],[-12,-34],[3,-20],[23,-8],[83,7],[39,-15],[61,-59],[46,-100],[46,-59],[124,-4],[56,5],[23,-59],[-12,-34],[0,-65],[44,-11],[122,-4],[15,-18],[-9,-27],[-28,-8],[-83,0],[-37,-18],[-9,-63],[-17,-21],[29,-57],[17,-66],[0,-33],[-40,-63],[11,-25],[57,-57],[41,-57],[108,-90],[15,-20],[8,-53],[0,-55],[-54,-37],[-51,-11],[-44,-33],[10,-18],[76,16],[18,-27],[63,-24],[37,0],[40,20],[20,-51],[-3,-92],[-14,-57],[49,-33],[17,-22],[23,-47],[0,-28],[-26,-51],[-28,-31],[-12,-33],[-26,-114],[3,-117],[-39,-44],[-3,-74],[-99,-229],[-19,-93],[3,-53],[-28,-15],[-78,-13],[1,-8],[-47,-30],[-8,-12],[-2,-91],[-24,-24],[-17,-6],[-26,-32],[-7,-82],[-39,-65],[-4,-25],[46,-45],[11,-27],[-9,-33],[-49,-55],[0,-24],[63,-128],[29,-19],[72,-16],[8,-48],[-25,-37],[5,-27],[32,-16],[60,3],[66,57],[37,15],[31,0],[55,-35],[111,-19],[37,-20],[15,-18],[22,-101],[92,-29],[99,-58],[54,-48],[19,-47],[-9,-67],[23,-33],[20,-11],[8,-53],[-42,-46],[6,-28],[28,-37],[18,-93],[-14,-35],[-58,-35],[-2,-22],[14,-49],[-32,-35],[-37,-7],[-8,-16],[2,-65],[-19,-53],[-75,-123],[-71,-70],[-40,-25],[-72,-3],[-8,-33],[-66,-67],[-23,-49],[-66,-86],[-31,-61],[-46,-42],[-6,-26],[161,-115],[25,-26],[7,-29],[8,-92],[-15,-26],[-48,-42],[-94,-55],[0,-24],[28,-9],[38,2],[71,24],[109,-8],[31,-22],[55,-5],[51,-15],[60,-68],[6,-65],[-17,-41],[-106,-35],[-6,-29],[32,-22],[-14,-35],[31,-44],[17,-79],[32,-29],[20,-35],[-23,-20],[-29,-2],[-42,22],[-41,-5],[-28,-22],[-63,-17],[-23,-16],[-11,-26],[0,-13],[63,-88],[68,-29],[146,-33],[23,-35],[-29,-61],[12,-78],[-17,-13],[-38,-2],[-54,33],[-11,-11],[37,-207],[-11,-33],[-40,-50],[17,-47],[0,-28],[-8,-24],[-24,-20],[0,-90],[-42,-89],[-26,-26],[-23,-95],[9,-46],[-29,-25],[0,-27],[-12,-19],[9,-28],[-25,-19],[-32,-5],[-34,-15],[-57,-51],[-120,-66],[-43,-49],[-6,-99],[-17,-30],[-17,-18],[-26,-9],[-40,-1],[-23,-9],[58,-62],[22,-82],[-31,-17],[-8,4],[-41,-9],[9,-68],[-17,-26],[-26,-18],[-49,-18],[-59,-4],[-83,6],[-43,-24],[-60,-2],[-52,11],[-7,14],[-56,24],[-69,-17],[-46,-41],[1,-35],[14,-33],[-11,-33],[-20,-15],[-6,-53],[-40,-68],[-23,-22],[-34,-20],[-40,-9],[-40,7],[0,22],[-17,28],[-43,18],[-34,2],[-78,-53],[-5,-29],[-29,-22],[-29,-9],[-37,0],[-14,18],[11,57],[-108,95],[-104,53],[-59,17],[-158,-4],[-17,17],[63,112],[-29,14],[-14,26],[40,35],[6,20],[-15,9],[-77,-40],[-17,0],[-69,59],[43,71],[-49,31],[-20,28],[-3,27],[-28,53],[-26,24],[-34,11],[-20,24],[2,141],[-34,83],[-54,36],[-49,8],[-37,-32],[-17,-5],[-46,13],[-60,66],[-4,85],[-18,82],[-53,18],[-5,44],[-15,13],[-88,20],[-24,22],[0,28],[-20,9],[-39,-2],[-35,-22],[-31,4],[-34,18],[-38,46],[-54,36],[-46,67],[-200,97],[-29,24],[-6,66],[-31,24],[2,20],[-17,11],[-11,27],[-57,35],[-83,24],[-12,26],[5,41],[-45,12],[-29,29],[-20,66],[-34,42],[-3,41],[-57,18],[-31,20],[-12,35],[17,26],[20,11],[0,20],[-26,11],[-5,20],[20,37],[2,25],[40,33],[86,0],[31,24],[32,11],[38,40],[-2,47],[50,29],[2,76],[29,39],[49,33],[28,44],[89,42],[0,11],[-31,11],[-20,-2],[-192,-80],[-97,-81],[-35,-49],[-71,-37],[-112,24],[-48,29],[-33,52],[-23,18],[-62,77],[0,47],[-38,64],[-51,55],[-5,28],[14,46],[-20,35],[-6,66],[-17,11],[-37,-9],[-37,33],[-54,11],[-29,-15],[-81,-20],[-28,0],[-106,-42],[-28,-1],[-32,-32],[-43,-2],[-78,24],[-28,24],[-38,58],[-12,66],[13,34],[-9,31],[-48,36],[-12,41],[-20,7],[-17,28],[-3,31],[-32,16],[-37,6],[-8,31],[-34,37],[5,25],[29,30],[24,12],[-4,50],[12,58],[42,39],[20,37],[-40,90],[3,62],[23,48],[51,64],[26,60],[8,64],[-20,54],[0,47],[38,43],[62,136],[0,106],[43,54],[17,88],[37,64],[8,52],[17,29],[35,31],[5,26],[83,172],[18,118],[85,104],[37,108],[34,64],[2,68],[52,63],[23,88],[76,71],[15,117],[54,95],[46,65],[107,88],[76,200],[0,88],[46,82],[15,83],[69,82],[8,49],[42,73],[23,76],[60,60],[9,98],[94,179],[92,130],[37,110],[31,26],[20,73],[31,62],[60,68],[12,53],[443,567],[76,65],[31,52],[100,112],[48,147],[19,12],[23,46],[-4,31],[13,29],[21,39],[30,24],[20,62],[48,66],[69,39],[115,32],[51,0],[78,-2],[42,-16],[106,-18],[75,-22],[185,-30]],[[793,339969],[80,-8],[41,-11],[18,-17],[-25,-70],[37,-34],[311,-53],[187,-98],[37,-36],[81,-32],[110,-22],[51,-19],[40,-17],[85,-59],[59,-17],[186,-14],[70,12],[65,23],[148,91],[41,44],[12,57],[26,29],[44,28],[61,0],[52,20],[245,-2],[86,22],[80,10],[141,1],[68,-5],[50,-12],[125,-5],[323,-80],[134,0],[83,-19],[74,-3],[476,-1],[70,-7],[117,-32],[146,-25],[170,-3],[34,-19],[94,-90],[39,-25],[106,-31],[58,-9],[126,-76],[94,-35],[81,-48],[29,-48],[-9,-136],[25,-46],[-4,-47],[-12,-10],[6,-42],[-30,-83],[4,-35],[16,-22],[-16,-24],[1,-15],[26,-41],[0,-16],[-46,-43],[-14,-25],[-19,-120],[-122,-200],[-16,-98],[0,-47],[22,-61],[0,-85],[22,-46],[30,-22],[43,-15],[12,-17],[-50,-135],[-37,-55],[-6,-43],[-29,-45],[4,-121],[26,-63],[24,-96],[-18,-130],[28,-83],[3,-53],[52,-111],[1,-31],[15,-31],[23,-228],[57,-44],[79,0],[35,-27],[-23,-55],[0,-23],[42,-109],[133,-249],[69,-241],[11,-51],[0,-76],[-12,-46],[-41,-85],[-96,-104],[-49,-77],[-54,-60],[-13,-51],[-56,-81],[-16,-37],[-2,-49],[-23,-38],[-40,-248],[-22,-19],[-27,-12],[-173,-4],[-43,-11],[-35,-18],[-69,-113],[-54,-17],[-115,-8],[-35,-10],[-132,-74],[-36,-54],[-29,-22],[-23,-13],[-28,-1],[-36,4],[-91,73],[-26,10],[-108,123],[-218,179],[-241,150],[-218,47],[-194,26],[-264,3],[-199,-90],[-104,0],[-169,24],[-80,31],[-197,7],[-143,-38],[-68,8],[-218,47],[-189,61],[-212,88],[-395,127],[-11,-7],[-83,3],[-72,-18],[-84,6],[-33,-8],[-41,-27],[-33,-11],[-37,0],[-52,-32],[-20,-22],[-2,-19],[13,-27],[70,-70],[4,-49],[-6,-1],[2,-11],[-16,0],[-25,10],[-20,31],[-80,30],[-32,34],[0,40],[12,42],[64,31],[1,22],[-41,33],[-29,13],[-59,4],[-27,-14],[-15,-13],[23,-27],[0,-32],[-19,-15],[-22,-5],[-77,14],[-54,40],[-13,27],[2,33],[16,21],[68,10],[10,12],[-4,68],[-219,184],[-38,89],[-17,80],[-4,121],[-11,31],[-20,10],[-40,48],[-10,25],[-60,40],[-6,16],[6,38],[67,46],[-2,18],[-33,47],[-52,46],[-155,205],[-81,71],[9,42],[-36,68],[4,27],[51,52],[-6,49],[17,53],[-6,66],[11,62],[-7,132],[17,71],[75,78],[-13,116],[6,55],[26,33],[93,67],[51,106],[63,70],[6,58],[24,81],[21,30],[113,104],[12,65],[97,113],[34,58],[-11,121],[-15,71],[-16,25],[-19,60],[-17,15],[0,32],[-112,176],[-99,109],[-116,106],[-95,59],[-58,46],[-37,11],[-29,20],[-53,22],[0,99],[22,47],[152,5],[315,85],[188,97],[145,162],[35,89],[-2,57],[-19,23],[-25,19],[-103,25],[4,31],[29,12],[40,2]],[[73835,380074],[3,-49],[32,-36],[-2,-50],[-62,-67],[-28,-8],[21,-64],[0,-82],[-49,-45],[22,-42],[10,-48],[-27,-33],[-20,-55],[-50,-41],[-27,-11],[-5,-25],[15,-23],[5,-52],[-12,-19],[7,-26],[-5,-48],[-5,-13],[-17,-11],[6,-71],[39,-57],[7,-72],[-5,-25],[-29,-42],[2,-61],[-17,-29],[20,-103],[45,-77],[72,-77],[25,-51],[-13,-58],[-57,-50],[-45,-13],[-25,4],[-57,-26],[-66,-9],[-24,12],[-24,-2],[-20,-11],[10,-18],[22,-6],[30,-34],[25,-117],[80,-101],[119,-33],[18,-17],[2,-52],[-7,-14],[12,-12],[28,-6],[25,13],[44,0],[50,-28],[18,-48],[55,-90],[12,-101],[18,-56],[75,-148],[62,-53],[12,-23],[28,-111],[60,-7],[77,7],[22,-9],[-2,-79],[42,-49],[5,-45],[-22,-32],[-50,-36],[-40,-2],[-22,-14],[-27,-38],[-16,-75],[-71,-115],[-21,-50],[-27,-13],[-42,-8],[-18,-21],[38,-84],[0,-23],[-62,-40],[-52,-46],[0,-8],[25,-11],[77,15],[35,-34],[2,-23],[-10,-22],[-62,-11],[-23,-17],[-7,-54],[58,-55],[0,-35],[-15,-17],[0,-80],[-28,-28],[9,-23],[71,-30],[15,-19],[2,-21],[0,-36],[-11,-20],[7,-19],[23,-27],[65,-38],[15,-64],[0,-76],[-8,-15],[26,-24],[28,21],[55,-6],[17,-50],[35,-38],[8,-23],[-5,-15],[-25,-10],[20,-33],[-5,-40],[-22,-17],[-73,-2],[-14,11],[0,-49],[15,-42],[52,-12],[25,-19],[7,-16],[-17,-5],[-30,-36],[32,-10],[85,-70],[22,-41],[25,-23],[30,-2],[-13,-26],[10,-12],[70,0],[28,-42],[54,-42],[18,-36],[57,-28],[-10,-22],[-22,-6],[5,-33],[117,-69],[55,-47],[20,-71],[12,-15],[-10,-20],[35,-20],[43,-56],[66,-33],[13,-76],[117,-19],[27,-16],[13,-36],[30,-21],[54,-13],[15,-17],[0,-24],[-17,-19],[-2,-17],[19,-25],[48,-1],[42,-25],[65,-2],[40,-18],[92,-3],[35,-8],[29,-23],[5,-17],[23,-15],[-5,-52],[-54,-45],[57,-3],[32,-13],[0,-58],[25,-23],[77,-23],[20,-26],[0,-33],[-20,-34],[4,-59],[220,-92],[18,-16],[5,-26],[0,-22],[-22,-23],[-36,-13],[-54,0],[-40,16],[-25,-28],[-22,-7],[-53,0],[-44,17],[-13,-13],[48,-27],[2,-25],[-12,-18],[-25,0],[-28,-11],[5,-25],[25,-11],[28,-8],[24,10],[23,-8],[7,-53],[-12,-24],[-37,-9],[0,-40],[44,15],[50,-11],[20,-16],[45,-95],[10,-77],[-21,-42],[9,-188],[-10,-29],[-82,-82],[-12,-25],[-8,-63],[15,-25],[18,10],[0,27],[27,11],[27,-9],[52,-52],[10,-27],[-17,-105],[-87,-94],[-22,-8],[-35,20],[-5,15],[-40,-2],[-35,-17],[-20,-33],[4,-13],[-41,-18],[-7,-15],[22,-11],[40,6],[22,-22],[52,-31],[25,-28],[3,-34],[-9,-4],[-59,-112],[-61,-71],[-10,-60],[-75,-68],[-29,-51],[-5,-31],[-90,-97],[-50,-27],[-44,-2],[-33,2],[-37,28],[-25,-5],[0,-21],[37,-22],[28,-47],[0,-19],[-55,-31],[-89,-24],[42,-38],[5,-15],[-23,-21],[-144,21],[-109,6],[-125,23],[-17,23],[-5,46],[-38,28],[-7,52],[-80,79],[7,51],[-32,54],[-206,254],[-37,6],[0,100],[6,5],[-37,27],[-2,21],[46,40],[-13,25],[-58,46],[-23,9],[-17,24],[-57,136],[-33,39],[-26,9],[-115,101],[-99,44],[-78,72],[-80,54],[-102,94],[-26,48],[-136,90],[-65,15],[-47,36],[-5,21],[-43,40],[-62,0],[-67,48],[-82,8],[-18,17],[-74,11],[-65,33],[-85,59],[-92,-3],[-48,-21],[-63,4],[-84,30],[-38,0],[-52,-17],[-153,16],[-32,-15],[-30,-4],[-25,6],[-17,38],[-27,4],[-60,-33],[-5,-50],[-18,-17],[-54,2],[-30,19],[-44,49],[-92,51],[-152,126],[-80,124],[-12,92],[-21,35],[-12,50],[-14,126],[0,164],[25,119],[40,83],[42,124],[-42,106],[-8,195],[10,72],[27,80],[98,152],[15,43],[22,24],[20,73],[0,222],[-60,40],[2,25],[18,23],[7,29],[-62,53],[5,60],[-26,7],[-40,28],[-32,79],[-25,7],[-10,12],[-5,48],[-43,8],[-32,-12],[-45,4],[-77,30],[-27,2],[-40,-19],[-10,-17],[0,-17],[30,-41],[-4,-11],[-40,-5],[-83,15],[-122,3],[-60,19],[-7,18],[-3,24],[37,39],[0,21],[-20,26],[5,68],[46,25],[132,6],[65,29],[103,89],[15,96],[55,32],[-7,12],[20,35],[-7,74],[39,73],[0,17],[-62,102],[-8,57],[-26,3],[-10,11],[-2,57],[-7,11],[-23,8],[-7,17],[1,49],[-10,11],[-13,90],[-31,26],[3,17],[-27,37],[-2,35],[-44,47],[-12,36],[6,37],[13,29],[22,21],[2,27],[-32,44],[-8,27],[2,68],[13,45],[-5,38],[-20,15],[-3,42],[-49,90],[-10,52],[15,34],[48,38],[29,41],[22,65],[2,56],[95,135],[0,27],[22,42],[109,102],[45,94],[8,76],[22,29],[32,103],[50,91],[166,170],[155,121],[136,49],[259,113],[77,20],[28,21],[42,17],[45,9],[110,73],[28,36],[63,45],[49,10],[15,19],[53,19],[85,119],[32,30],[17,46],[29,32],[6,37],[-15,36],[0,25],[25,60],[227,179],[36,21],[45,-1],[38,17],[22,19],[17,46],[45,10],[23,-6],[2,-34],[23,-17],[59,-19],[25,-21]],[[70452,376098],[11,-67],[121,-73],[57,0],[36,20],[57,9],[36,-38],[173,-20],[92,-59],[54,-16],[48,25],[112,-4],[60,-23],[114,-23],[20,-7],[6,-13],[91,-3],[43,-17],[55,-40],[37,-13],[25,-35],[7,-36],[-5,-54],[-22,-46],[17,-34],[38,-38],[-5,-23],[-23,-18],[26,-31],[-5,-26],[-113,-17],[-39,-39],[-18,-36],[-14,-77],[-23,-50],[0,-36],[48,-96],[-18,-19],[-64,-21],[-84,-64],[0,-52],[-35,-77],[-23,0],[10,-25],[55,-50],[-3,-55],[-15,-21],[-5,-40],[-22,-54],[-72,-52],[-35,-9],[-7,-28],[53,-61],[-15,-22],[-61,-18],[10,-146],[28,-36],[39,-177],[-38,-53],[-37,-28],[-36,11],[-5,-15],[21,-23],[41,-17],[3,-12],[-23,-19],[3,-19],[17,-19],[35,-15],[98,-21],[42,-39],[-8,-34],[-24,-13],[-20,-77],[-33,-15],[-80,15],[-47,17],[0,16],[-22,0],[-37,-37],[5,-55],[-15,-47],[-27,-32],[-27,-4],[20,-26],[36,-8],[92,-48],[33,-35],[13,-22],[-5,-29],[-26,-33],[21,-17],[2,-33],[-27,-69],[-30,-21],[-59,5],[-38,36],[-52,22],[2,-26],[-20,-71],[-12,-17],[-24,-11],[14,-50],[-4,-15],[19,-31],[-30,-40],[0,-32],[67,0],[30,18],[80,-8],[149,-68],[10,-19],[-3,-33],[-29,-12],[2,-13],[-46,-59],[-15,-88],[-28,-31],[-50,-13],[-30,-43],[31,-7],[27,-21],[22,-38],[-7,-49],[-63,-74],[-19,-39],[0,-45],[17,-60],[48,-4],[7,-15],[-20,-27],[-27,-7],[12,-23],[72,-15],[28,-14],[17,-25],[0,-21],[-32,-71],[-59,-48],[-25,-7],[2,-127],[-59,-9],[-28,-48],[-47,-21],[-27,-73],[-26,-5],[-58,-51],[-155,-21],[-63,-21],[-148,15],[-53,-7],[-62,14],[8,26],[-18,9],[-71,-10],[-25,19],[-62,22],[-24,44],[-37,17],[-10,56],[-22,23],[-48,5],[-10,-40],[-11,-2],[-39,19],[-7,37],[7,15],[-72,27],[-5,17],[-25,21],[-54,42],[-25,2],[-45,32],[-17,24],[-68,1],[-15,-11],[-55,40],[-56,21],[-36,0],[-34,-24],[-34,-5],[-46,14],[-41,-1],[-6,25],[-55,60],[10,44],[42,55],[-8,79],[-34,34],[-50,23],[-20,35],[-18,64],[-37,24],[-62,17],[-30,19],[-33,51],[-12,39],[-35,44],[-20,99],[-35,12],[-55,32],[-29,0],[-20,-9],[0,-104],[-38,-27],[0,-10],[-10,1],[-14,-12],[-5,-15],[-20,-7],[-28,3],[-22,25],[-10,38],[6,62],[19,11],[-8,67],[12,59],[58,54],[89,50],[3,115],[64,34],[5,16],[-22,1],[-47,-17],[-70,-61],[-124,-42],[-87,16],[-21,29],[-25,15],[0,60],[26,31],[0,7],[-13,4],[-40,-13],[-42,0],[-62,38],[-55,17],[-37,6],[-58,-4],[-54,21],[-63,11],[-39,31],[-33,4],[-64,-42],[-48,-4],[-47,38],[-3,13],[-39,7],[-125,173],[-55,2],[-30,27],[0,23],[20,33],[3,35],[-28,42],[-7,100],[-54,118],[-41,135],[4,213],[23,69],[65,38],[74,-13],[-5,38],[10,17],[22,13],[68,0],[22,10],[27,-1],[12,26],[68,42],[34,10],[40,-4],[211,49],[114,17],[123,6],[68,41],[8,85],[-14,2],[-37,28],[-58,60],[25,151],[-22,11],[-42,0],[-37,-25],[-68,-23],[-58,-31],[-64,-3],[-40,-10],[-47,-44],[-37,-8],[-43,10],[-22,28],[-10,39],[2,94],[10,50],[30,57],[15,23],[37,19],[0,21],[-15,17],[-27,10],[-47,-6],[-18,-21],[-34,-9],[-50,5],[-35,-12],[-25,-32],[-42,-23],[-50,-8],[-107,8],[-25,25],[-17,28],[5,31],[42,35],[32,11],[102,6],[18,-23],[-3,-17],[37,13],[17,23],[-4,11],[-40,21],[-65,29],[-39,8],[-13,86],[67,42],[13,21],[-78,4],[-4,17],[-21,19],[-2,23],[4,27],[13,16],[23,3],[7,14],[-3,45],[33,28],[3,24],[-31,-1],[-62,24],[-30,19],[-40,45],[-15,32],[0,32],[18,79],[-11,23],[-47,40],[-20,39],[-5,61],[23,28],[43,8],[34,-6],[15,17],[0,21],[11,3],[18,26],[38,8],[32,-6],[112,-69],[114,-40],[18,6],[5,46],[97,40],[-30,31],[10,34],[60,6],[32,-29],[2,-16],[178,-116],[0,-39],[86,-10],[15,-8],[45,1],[3,-45],[-17,-63],[-15,-31],[-60,-32],[2,-19],[41,5],[73,42],[55,-15],[13,6],[48,0],[28,-43],[99,-54],[7,-25],[20,-8],[88,50],[66,10],[45,17],[77,-13],[28,7],[51,31],[18,25],[-45,3],[-119,-30],[-30,2],[-70,-16],[-46,4],[-48,17],[-25,29],[12,58],[20,15],[35,7],[35,0],[22,-13],[35,4],[15,51],[72,1],[85,-60],[15,-48],[19,2],[0,54],[28,44],[104,35],[145,12],[43,-10],[1,-21],[18,-6],[35,7],[102,64],[17,23],[40,28],[6,17],[48,21],[25,24],[82,38],[284,16],[33,-21],[37,3],[37,-26],[28,0],[19,17],[8,36],[22,7],[25,-7],[67,-40]],[[67957,379032],[185,-37],[62,-5],[44,-13],[13,-33],[44,-10],[39,-3],[103,34],[136,-71],[97,-34],[52,-8],[34,13],[36,0],[54,-10],[23,-13],[39,-2],[47,30],[113,-2],[46,-20],[56,-5],[34,-21],[14,-30],[12,2],[14,23],[33,-2],[8,-8],[21,8],[-26,18],[-13,22],[30,11],[56,0],[70,-5],[116,-64],[50,-7],[-33,53],[3,30],[26,29],[50,8],[47,-3],[192,-91],[85,-18],[76,-41],[15,-26],[17,-3],[40,-33],[46,-69],[40,-12],[17,-64],[46,8],[13,25],[43,8],[70,0],[120,-28],[-3,-53],[96,-151],[13,-71],[-16,-42],[-7,-58],[-20,-41],[-3,-66],[-13,-26],[-24,-17],[0,-22],[27,-40],[47,-8],[43,-17],[40,-52],[13,-30],[53,-59],[10,-38],[-13,-66],[-30,-41],[0,-26],[10,-20],[50,-41],[0,-38],[10,-23],[47,-38],[36,-54],[40,-15],[43,-3],[7,-30],[-30,-18],[-3,-65],[18,-13],[52,-2],[39,-12],[30,-23],[43,-15],[24,-36],[-15,-56],[74,-77],[24,-5],[66,-48],[7,-21],[-18,-42],[7,-49],[11,-8],[13,-44],[0,-33],[-26,-9],[-5,-43],[-84,-47],[-54,-53],[-62,-78],[2,-35],[-10,-16],[-49,-49],[-43,-7],[-50,-23],[-10,-28],[-40,-20],[-46,-3],[-120,10],[-20,43],[-49,10],[-63,-28],[-13,-25],[-37,-15],[-123,2],[-47,-33],[-119,7],[-70,34],[-29,5],[-33,0],[-57,-31],[-33,-8],[-23,10],[2,47],[-65,-23],[-115,-24],[-38,-47],[-69,-52],[-130,-12],[-92,12],[-69,64],[-30,53],[-215,-6],[-63,32],[-16,22],[-6,48],[9,64],[44,41],[92,54],[-16,10],[-93,-13],[-63,16],[-33,20],[-4,74],[-33,5],[-40,-28],[-106,8],[-36,15],[-53,2],[-96,-41],[-197,8],[-26,15],[-2,16],[-96,25],[-138,59],[-107,70],[-76,77],[-122,82],[-77,77],[-38,100],[-55,73],[-23,49],[-14,155],[-56,133],[-33,56],[-67,81],[-113,115],[0,21],[12,11],[-46,35],[-35,94],[-21,5],[-20,38],[-13,49],[18,46],[-2,20],[-46,170],[-47,65],[7,61],[29,95],[4,117],[13,44],[43,58],[80,49],[130,53],[76,18],[123,82],[229,-11]],[[80505,386761],[65,-7],[70,-22],[49,2],[29,-9],[7,-17],[-49,-57],[10,-19],[42,15],[20,-57],[0,-54],[-25,-37],[-37,3],[-16,-14],[-5,-85],[12,-25],[20,-3],[7,51],[24,-4],[43,-25],[-45,-94],[7,-97],[23,-54],[4,-165],[-35,-8],[-4,-22],[36,-42],[-7,-35],[-23,-25],[19,-15],[8,-25],[3,-79],[-39,-41],[2,-29],[23,7],[11,20],[13,-18],[0,-21],[-21,-25],[-21,-13],[-16,0],[40,-112],[-18,-85],[-31,-14],[-24,0],[-10,-9],[-4,-26],[25,-30],[11,-33],[-6,-52],[-18,-23],[-10,0],[-104,-66],[-28,-66],[-43,-56],[-70,-64],[-53,-37],[-47,-52],[-52,-119],[13,-125],[61,-46],[19,-29],[52,-263],[0,-57],[26,-39],[45,-112],[-11,-17],[-31,-3],[-19,-29],[44,-8],[59,-36],[4,-35],[-11,-24],[-34,-5],[-47,-48],[-7,-122],[6,-131],[-21,-50],[24,-49],[75,-26],[6,-13],[-2,-17],[-58,-28],[-4,-90],[-18,-56],[0,-55],[-43,-107],[14,-108],[-18,-12],[0,-28],[13,-18],[-4,-44],[-32,-18],[-7,-29],[-22,-31],[-82,-63],[-111,6],[-22,9],[-4,73],[-18,9],[-18,77],[-42,23],[-11,22],[-15,5],[-24,82],[-52,52],[-6,16],[-104,51],[-29,3],[-33,-6],[-42,-46],[-50,2],[-7,16],[2,56],[78,43],[-47,16],[-24,18],[-11,19],[18,50],[-7,12],[-44,-24],[-15,-22],[-59,-35],[-37,12],[-11,20],[7,177],[13,22],[26,15],[0,16],[-26,1],[-9,-16],[-45,-30],[-28,7],[-26,50],[35,41],[58,36],[11,20],[-15,0],[-24,-19],[-28,1],[-22,9],[-6,14],[17,36],[37,1],[32,-27],[17,-4],[20,17],[12,16],[-6,7],[-31,6],[-53,57],[4,28],[22,29],[89,-6],[33,26],[5,20],[-23,21],[-3,15],[58,45],[-34,9],[-12,68],[38,43],[-4,11],[-35,2],[-12,20],[12,51],[-38,51],[-26,18],[-19,-8],[-7,-20],[-32,-3],[-58,31],[-39,9],[-5,-85],[-19,-16],[-36,-3],[-47,43],[-58,-23],[-37,46],[-66,20],[-85,3],[-52,-9],[-52,-23],[-89,-108],[-52,-34],[-111,2],[-271,89],[-63,39],[0,21],[-30,28],[-59,0],[-57,-19],[-42,-6],[-53,8],[-137,48],[-56,6],[-41,24],[-4,50],[-30,6],[-48,-32],[-20,-37],[-43,3],[-84,41],[-84,12],[-63,27],[-40,3],[-122,34],[-67,55],[-25,3],[-108,-39],[-48,-2],[-41,8],[-91,52],[-61,82],[-31,82],[16,106],[-1,71],[27,37],[0,12],[155,163],[61,40],[43,60],[18,48],[-7,84],[9,97],[27,78],[49,41],[7,31],[-30,29],[-10,65],[14,91],[-11,63],[52,57],[-4,63],[11,31],[15,15],[49,16],[60,38],[53,41],[2,13],[59,-11],[29,25],[0,46],[-11,6],[0,18],[15,18],[48,9],[41,40],[48,97],[-18,29],[-23,11],[-15,20],[-2,46],[17,20],[-4,34],[-45,26],[-3,42],[8,43],[22,28],[25,29],[71,49],[126,62],[167,60],[97,20],[111,0],[40,-11],[90,-51],[-12,-34],[-22,-29],[8,-26],[48,-14],[52,29],[56,46],[62,-6],[30,-15],[8,-20],[40,-42],[93,-58],[-3,-59],[11,-29],[63,-68],[11,-57],[-93,-69],[0,-18],[17,5],[6,14],[30,7],[41,-8],[7,-51],[21,-39],[-13,-68],[41,-29],[6,-33],[-15,-17],[24,-39],[-2,-23],[-69,-66],[-5,-14],[7,-12],[19,2],[58,27],[47,-19],[5,-8],[-9,-29],[-51,-15],[-23,-31],[79,-14],[21,-18],[9,-23],[-7,-63],[-66,-54],[-5,-15],[26,-7],[13,5],[10,-14],[14,-81],[-3,-22],[-19,-14],[30,-25],[2,-18],[-22,-35],[-47,-42],[37,-28],[-16,-31],[-36,-35],[-22,-4],[-19,-39],[-17,-13],[-6,-34],[39,-18],[31,-32],[76,-37],[88,-20],[119,-8],[70,14],[35,33],[233,7],[73,41],[15,13],[10,47],[45,99],[20,31],[41,31],[22,53],[62,28],[39,-2],[17,17],[50,113],[-4,44],[-22,27],[18,90],[31,35],[93,48],[111,36],[36,48],[0,59],[-24,34],[-2,91],[-21,58],[-7,88],[25,64],[42,60],[34,77],[3,96],[13,71],[36,33],[143,79],[45,-2],[53,-13]],[[74051,356977],[32,-14],[86,8],[62,-4],[148,-28],[116,-3],[218,85],[20,17],[88,20],[41,2],[287,166],[93,42],[140,40],[109,56],[130,28],[151,5],[57,41],[65,-6],[42,16],[39,27],[31,4],[60,-6],[67,32],[107,-4],[57,-12],[52,10],[73,-6],[39,6],[106,46],[66,2],[23,-6],[73,-40],[44,-2],[44,12],[21,16],[75,8],[24,-10],[23,-26],[26,-53],[138,-89],[44,-4],[71,6],[62,-4],[23,-10],[73,14],[70,-22],[78,-80],[53,-74],[46,-48],[0,-60],[-20,-38],[0,-30],[23,-92],[3,-66],[-3,-28],[-34,-64],[-34,-34],[-64,-40],[-83,-84],[-21,-16],[-15,2],[-30,-40],[16,-43],[-5,-34],[-36,-24],[-22,-1],[-33,-17],[-45,-41],[9,-31],[-29,-32],[-102,-33],[-39,-4],[-17,-49],[-79,-68],[-57,-70],[-119,-94],[-8,-32],[-36,-32],[-18,-52],[5,-30],[18,-14],[39,6],[39,-24],[50,-58],[-5,-32],[-81,-52],[-52,-53],[-112,-74],[-215,-112],[-141,-14],[-49,-22],[-68,-2],[-124,-38],[-149,4],[-96,-57],[-75,0],[-122,6],[-29,13],[-23,42],[-29,23],[-179,4],[-39,18],[-21,22],[-96,29],[-42,21],[-83,48],[-86,66],[-73,16],[-135,46],[-109,70],[-89,6],[-18,18],[-3,20],[-49,48],[-49,20],[-54,57],[-87,11],[-96,26],[-52,22],[-177,104],[-24,32],[11,52],[-6,50],[-15,22],[-42,32],[-39,12],[-33,0],[-102,-22],[-67,10],[-52,34],[-50,10],[-26,14],[-54,42],[-117,28],[-120,90],[-73,14],[-26,30],[-67,2],[-50,32],[-18,-22],[-34,-20],[-31,0],[-34,24],[-10,20],[-55,14],[-94,0],[-49,-24],[-16,-52],[-82,-99],[-24,1],[-16,32],[24,32],[7,34],[-51,94],[-76,78],[13,32],[52,22],[16,20],[-3,24],[-34,44],[5,84],[-65,74],[-18,52],[-81,82],[8,228],[10,65],[-5,171],[9,79],[-16,85],[6,135],[15,36],[19,4],[50,-16],[56,-40],[222,-214],[68,-52],[278,-136],[182,-70],[34,-24],[161,-48],[96,-46],[120,-42],[91,-56],[29,-32],[254,-152]],[[29957,340578],[96,-10],[14,-13],[3,-19],[47,-16],[49,-32],[121,-13],[39,0],[19,7],[82,-3],[98,-28],[10,-16],[-3,-22],[13,-15],[53,-31],[20,-22],[-2,-15],[-17,-12],[-26,-2],[-137,-54],[-20,-20],[-20,-48],[-2,-29],[5,-60],[25,-54],[-35,-34],[-48,-7],[-9,-15],[0,-55],[15,-29],[-14,-37],[-4,-75],[15,-9],[96,-9],[18,-12],[14,-33],[23,-5],[32,8],[57,64],[100,34],[105,72],[51,9],[39,-34],[71,-4],[35,-17],[12,-31],[20,-14],[66,3],[17,-8],[20,-18],[23,-45],[48,-4],[22,13],[23,0],[57,-34],[22,-4],[89,31],[95,-8],[39,19],[106,-3],[80,40],[63,-4],[50,17],[43,3],[49,15],[144,-18],[36,-12],[40,-27],[42,-3],[46,54],[35,15],[31,-12],[3,-43],[44,-22],[5,-35],[-22,-22],[24,-55],[35,-7],[94,15],[38,-12],[9,-11],[-8,-114],[-35,-29],[-53,-14],[-77,13],[-50,-6],[-127,-47],[-178,-52],[-115,-68],[-21,-33],[-6,-26],[-22,-193],[3,-77],[56,-68],[6,-48],[32,-102],[109,-75],[31,-35],[24,-14],[66,-103],[11,-60],[-7,-9],[-48,-8],[-47,17],[-55,5],[-147,-74],[-102,-34],[-106,-51],[-54,-32],[-65,-55],[-69,-28],[-70,-49],[-64,-54],[-39,-53],[11,-33],[50,-43],[-3,-42],[-39,-36],[-106,-48],[-11,-11],[-48,-58],[-19,-95],[-19,-12],[-49,-8],[-135,0],[-89,-16],[-80,-27],[-25,-2],[-84,-35],[-59,-1],[-157,61],[-363,95],[-138,4],[-109,-11],[-53,-17],[-45,-3],[-74,-50],[-112,-170],[-43,-20],[-54,-38],[-93,-27],[-61,-27],[-28,-46],[-72,-26],[-45,-56],[-68,-35],[-35,-63],[-29,-13],[-19,1],[-23,8],[-5,13],[45,72],[-3,45],[-16,14],[-3,18],[60,73],[-5,71],[60,42],[75,120],[80,58],[-16,12],[6,20],[45,13],[97,3],[74,89],[24,58],[-25,116],[-76,174],[-84,82],[-96,40],[-17,30],[-14,90],[0,18],[31,37],[-5,114],[32,28],[76,2],[66,66],[-4,178],[37,63],[12,55],[20,30],[9,88],[-13,129],[-23,71],[-39,52],[-17,46],[-169,246],[4,49],[-19,202],[9,143],[34,96],[41,33],[3,34],[-18,18],[1,23],[59,56],[26,48],[-1,98],[-13,18],[41,48],[49,23],[25,82],[109,139],[48,23],[57,2],[28,-9],[122,-104],[14,-19],[0,-33],[34,-13],[105,-15]],[[149199,389094],[34,-18],[45,6],[76,-41],[445,-344],[53,-134],[-8,-192],[91,-93],[15,-47],[75,-64],[68,-18],[-8,-69],[-30,-65],[-46,-63],[-84,-76],[-7,-46],[53,-82],[7,-117],[-46,-63],[-75,-53],[-130,-162],[-106,-70],[-159,-6],[-265,-22],[-122,-47],[-106,-12],[-144,1],[-265,-93],[-234,1],[-182,-17],[-91,23],[-83,70],[-144,30],[-61,58],[-52,81],[-68,47],[-68,23],[-106,18],[-121,70],[-61,64],[-22,117],[106,69],[-53,29],[-7,41],[46,76],[76,52],[106,140],[-7,64],[-15,17],[-61,35],[-61,0],[-45,47],[0,29],[69,46],[-16,53],[16,47],[53,75],[0,76],[61,58],[0,81],[61,64],[99,35],[257,28],[83,24],[31,52],[76,52],[151,64],[106,17],[76,-35],[159,76],[46,35],[83,17],[99,0],[280,34],[15,-70],[42,-23]],[[49256,366142],[113,-11],[271,0],[82,18],[98,0],[75,-18],[68,-63],[15,-40],[68,0],[99,13],[16,-42],[-30,-206],[0,-76],[53,-118],[24,-76],[68,-94],[16,-82],[0,-89],[-91,-100],[-107,-70],[-145,-24],[-92,-100],[-91,-65],[-153,-41],[-237,58],[-237,-100],[-130,-83],[-183,-71],[-466,-59],[-122,76],[-131,165],[-7,58],[-85,130],[-114,53],[-214,-1],[-99,-53],[-62,59],[69,159],[7,106],[129,235],[53,162],[37,24],[188,6],[121,64],[59,6],[76,-6],[60,-35],[38,-57],[71,-4],[161,53],[129,77],[76,76],[-15,77],[-77,35],[-7,82],[30,21],[-9,17],[15,29],[106,11],[188,-5],[128,-57],[97,-24]],[[35348,366385],[16,-72],[-10,-59],[61,-76],[108,-82],[15,-71],[-7,-88],[-15,-53],[0,-70],[23,-77],[0,-34],[120,-192],[16,-46],[7,-131],[34,-47],[37,-84],[21,-100],[40,-50],[74,-44],[20,-36],[-14,-247],[19,-188],[118,-60],[29,-21],[16,-24],[20,-57],[5,-125],[-24,-32],[-61,-15],[-37,-19],[-8,-36],[-45,-76],[-69,-58],[-129,-60],[-88,0],[-17,8],[-73,3],[-36,-34],[-76,-136],[-14,-68],[5,-59],[-20,-91],[-20,-34],[-36,-32],[-122,-68],[-36,-66],[-45,-6],[-24,31],[0,22],[-163,93],[-5,200],[-20,28],[8,32],[21,24],[-1,91],[-41,50],[0,65],[-32,19],[-16,34],[24,25],[28,10],[89,8],[13,138],[-14,18],[17,14],[-4,34],[-53,9],[-49,31],[-8,57],[40,56],[0,56],[-29,91],[-1,275],[12,46],[29,48],[50,50],[0,15],[-77,106],[0,81],[-43,72],[0,162],[28,38],[16,50],[-6,95],[-64,108],[-37,221],[-61,116],[-17,49],[0,32],[-79,87],[-128,16],[-53,62],[-16,28],[-4,38],[-21,31],[-28,9],[-61,3],[-36,12],[-9,31],[-36,10],[-29,22],[8,25],[-8,6],[0,95],[-16,106],[23,35],[153,-6],[221,53],[153,-11],[130,-47],[62,-65],[27,-90],[71,-53],[14,-22],[64,-16],[18,-52],[123,-44],[45,-50]],[[44831,318460],[38,-110],[36,-37],[0,-21],[-18,-20],[-25,-8],[-21,-31],[3,-74],[16,-33],[32,-4],[8,-28],[-48,-38],[-18,-39],[1,-28],[-11,-12],[9,-64],[37,-49],[9,-50],[-9,-14],[-49,-25],[-13,-26],[11,-46],[-5,-26],[-43,-47],[5,-54],[24,-24],[19,-183],[-15,-45],[-48,-56],[-41,-70],[0,-130],[36,-241],[19,-47],[8,-64],[-84,-82],[-49,-15],[-50,-43],[-66,-33],[-13,-28],[3,-26],[-51,-39],[-77,1],[-218,-119],[-48,-72],[-13,-86],[-76,-59],[-119,-50],[-83,-64],[-9,-28],[-50,-44],[-26,-39],[-6,-35],[1,-72],[45,-111],[6,-57],[-16,-41],[-51,-51],[-32,-64],[-52,-72],[0,-37],[-27,-53],[-35,-21],[-64,5],[-180,-22],[-143,-45],[-32,41],[0,59],[44,56],[0,63],[21,25],[3,70],[10,27],[134,111],[22,60],[22,3],[37,31],[8,101],[16,28],[72,62],[23,68],[11,127],[10,33],[38,31],[23,4],[35,-6],[85,43],[48,37],[21,54],[-2,17],[88,112],[68,67],[8,42],[-9,96],[-29,90],[-96,177],[-19,59],[-53,41],[-81,102],[-10,92],[-28,57],[9,99],[65,64],[-10,71],[-36,64],[-29,128],[-33,61],[-9,69],[5,69],[83,92],[4,19],[62,59],[3,36],[15,26],[38,37],[68,35],[24,-2],[133,37],[107,61],[107,41],[182,88],[53,12],[98,-1],[66,34],[36,29],[34,12],[43,-6],[30,-68]],[[34999,336254],[-13,-115],[-32,-46],[-9,-46],[-3,-91],[-55,-85],[-9,-131],[9,-34],[-9,-60],[-34,-12],[-22,2],[-19,19],[12,77],[-6,12],[-66,17],[-49,21],[-25,0],[-10,15],[0,70],[-6,9],[-57,12],[-34,0],[-124,-62],[-177,-119],[-60,-22],[-12,28],[-6,-6],[0,41],[15,235],[15,94],[-23,47],[-77,65],[-96,8],[-7,-101],[-59,-72],[-25,-82],[-56,-80],[-23,-86],[-53,6],[-9,341],[46,118],[68,18],[137,17],[0,8],[30,-8],[3,10],[-3,79],[-23,41],[0,36],[-22,71],[-1,28],[-61,88],[-23,59],[-28,44],[-40,17],[6,115],[31,106],[27,34],[44,24],[44,48],[65,10],[12,51],[19,7],[6,12],[0,33],[9,20],[87,79],[6,29],[-9,26],[-7,133],[15,65],[61,36],[23,65],[-46,158],[-39,77],[-23,129],[0,124],[45,211],[111,220],[81,56],[25,39],[50,36],[15,28],[71,61],[50,-3],[7,-45],[28,-31],[3,-171],[29,-33],[25,-94],[47,-43],[6,-22],[0,-65],[-9,-26],[-50,-48],[-3,-92],[-9,-21],[-44,-25],[13,-26],[94,-69],[143,-65],[35,-33],[32,-91],[0,-33],[27,-38],[10,-50],[0,-60],[-18,-91],[3,-24],[38,-63],[0,-127],[-31,-108],[-27,-47],[0,-106],[8,-159],[38,-53],[-8,-423],[-2,-27],[-22,-26],[-11,-89]],[[36333,339499],[23,-60],[106,-55],[116,-73],[80,-62],[64,-63],[29,-15],[59,-10],[20,-10],[53,-173],[7,-53],[26,-52],[60,-79],[15,-63],[4,-284],[-51,-87],[-13,-103],[-108,-169],[-56,-60],[-11,-29],[11,-94],[-10,-31],[-36,-34],[-52,-32],[-22,-48],[-3,-48],[-13,-21],[-25,-6],[-29,10],[-5,45],[-31,54],[-172,11],[-60,86],[-28,19],[-57,22],[-13,24],[-5,55],[-23,42],[0,40],[-77,93],[-23,6],[-116,-74],[-32,-4],[-61,8],[-44,37],[-3,68],[10,47],[-36,25],[-46,1],[-21,-16],[-15,-111],[-23,-22],[-74,-39],[-80,-12],[-13,-20],[-49,-32],[-87,-16],[-51,9],[-8,18],[-14,125],[-15,30],[-11,54],[0,128],[19,148],[-12,17],[2,93],[13,44],[39,22],[-13,31],[-47,34],[-7,32],[46,111],[46,65],[-6,201],[-13,75],[0,54],[10,19],[26,20],[102,25],[37,33],[143,8],[85,64],[72,6],[42,-10],[97,22],[70,38],[25,-2],[16,-12],[10,-27],[33,0],[52,47],[59,6],[93,-61]],[[36168,337422],[12,-8],[14,8],[12,28],[55,37],[24,35],[-1,22],[15,24],[85,18],[40,-7],[57,-42],[45,-13],[52,-57],[15,-38],[8,-93],[81,-47],[53,-3],[40,34],[4,27],[31,41],[5,83],[29,35],[55,15],[67,-3],[12,-8],[9,-64],[76,-69],[7,-51],[24,-54],[4,-81],[-2,-47],[-14,-37],[3,-135],[-9,-44],[-51,-84],[-44,-198],[31,-170],[0,-65],[-24,-109],[-33,-52],[-5,-42],[-77,-95],[11,-59],[-55,-56],[6,-17],[28,-27],[-1,-41],[-51,-72],[-88,-59],[-28,-34],[-91,-13],[-84,-52],[-94,-38],[-90,-5],[-47,-15],[-35,-59],[-10,-36],[-16,-11],[-23,-3],[-40,20],[-20,98],[-51,78],[-38,31],[0,19],[-13,17],[-63,14],[-16,12],[-28,66],[-56,72],[-2,124],[-13,49],[-50,93],[-33,110],[-6,76],[9,53],[-21,47],[6,71],[31,29],[4,30],[13,11],[0,60],[-48,37],[-19,46],[-76,54],[-11,76],[-12,19],[-126,9],[-39,23],[-10,21],[-16,10],[-25,59],[-14,78],[2,43],[12,16],[12,7],[43,-1],[61,10],[85,-71],[16,-3],[44,-46],[74,-35],[5,26],[-35,48],[3,22],[7,10],[48,20],[70,-7],[33,-36],[55,-31],[82,-7],[41,-27],[24,0],[80,122],[-2,39],[-8,12],[-62,-9],[-80,9],[-67,38],[-25,67],[-33,26],[-11,65],[-79,100],[-5,63],[17,32],[1,37],[58,56],[53,34],[19,-1],[37,-26],[35,-60],[0,-54],[15,-27],[59,-55],[43,-97],[19,-15]],[[31702,335957],[12,-273],[19,-37],[82,-96],[176,-89],[182,-32],[33,-29],[17,-49],[18,-13],[70,-1],[24,-13],[26,-34],[25,-12],[64,-4],[21,-18],[-7,-104],[-35,-91],[-2,-53],[-19,-37],[-27,-142],[-45,-68],[-11,-130],[-52,-68],[-29,-8],[-45,0],[-26,9],[-105,-4],[-159,-38],[-80,20],[-15,59],[-50,97],[5,58],[-15,56],[-65,34],[-26,23],[-91,2],[-10,41],[-70,63],[-49,20],[-5,84],[-150,170],[-45,61],[-34,25],[-54,106],[-65,35],[-41,7],[-35,19],[2,35],[-19,59],[0,175],[-36,35],[-2,21],[11,158],[23,16],[17,25],[84,-10],[16,3],[19,17],[32,-20],[22,-49],[39,4],[75,47],[152,159],[88,49],[54,7],[21,-12],[-12,-18],[5,-37],[57,-75],[4,-44],[31,-62],[5,-29]],[[46427,321510],[8,-56],[-23,-29],[6,-55],[-46,-59],[-40,-95],[-6,-90],[-55,-75],[-1,-116],[9,-39],[57,-75],[10,-132],[63,-124],[-17,-71],[-34,-37],[-65,-50],[-35,-57],[-86,-51],[-32,-4],[-46,13],[-26,29],[-17,50],[-20,23],[-43,27],[-89,11],[-84,-41],[-13,-30],[-4,-57],[-35,-29],[-25,-38],[-9,-44],[-4,-185],[-36,-30],[-41,-80],[-24,-21],[-54,-9],[-35,2],[-28,12],[-39,28],[-101,-10],[-46,-19],[-54,-52],[-3,-179],[49,-99],[25,-26],[4,-20],[-117,-64],[-47,-65],[-22,-7],[-72,3],[-135,102],[-25,39],[-77,26],[-11,11],[15,21],[-4,60],[-121,93],[-29,34],[-123,73],[-234,54],[-24,14],[-34,6],[-70,0],[-45,-18],[-54,-6],[-27,27],[0,50],[22,26],[55,10],[38,21],[61,18],[73,0],[42,-12],[23,-24],[4,-59],[65,-45],[64,-12],[6,-8],[135,-21],[35,-23],[180,-18],[215,-2],[175,85],[46,50],[101,64],[64,64],[9,57],[47,78],[27,78],[64,50],[18,135],[0,99],[-55,15],[-9,42],[-27,8],[-18,18],[-8,30],[6,27],[24,20],[86,39],[26,29],[54,32],[145,57],[19,25],[13,40],[-17,60],[8,20],[54,28],[7,29],[-4,21],[-48,29],[-18,19],[-19,57],[0,40],[49,93],[71,36],[26,27],[12,42],[54,47],[51,-6],[41,13],[98,68],[30,5],[83,-14],[38,-71]],[[82039,378858],[0,-35],[23,-56],[4,-100],[118,-41],[53,-26],[4,-29],[-105,-91],[8,-93],[38,-41],[60,-17],[80,10],[11,-15],[0,-26],[-110,-135],[-65,-35],[-172,-147],[-78,-39],[-109,-118],[-38,-25],[-99,-99],[-31,-92],[-15,-18],[-39,-4],[-52,31],[-50,59],[-15,61],[0,89],[-16,35],[-87,61],[-39,0],[-38,41],[-29,73],[10,68],[-19,53],[-23,26],[-32,11],[-106,81],[-23,30],[0,35],[46,88],[5,51],[99,45],[69,11],[23,20],[56,3],[126,42],[61,29],[88,94],[46,65],[0,67],[31,8],[84,0],[76,-11],[86,5],[55,21],[26,0],[4,-20]],[[67305,375161],[-61,-53],[-111,-46],[-50,-29],[-58,-19],[-89,-59],[-74,-58],[-60,-75],[2,-70],[40,-136],[75,-101],[30,-19],[8,-22],[-33,-46],[-2,-45],[-42,-10],[-35,10],[-3,59],[-30,53],[3,31],[14,23],[-37,30],[3,41],[-55,120],[-8,78],[-40,151],[23,41],[0,47],[-62,200],[23,35],[14,6],[-16,28],[-12,82],[31,30],[0,86],[-27,26],[-2,116],[15,119],[37,103],[2,156],[10,43],[-13,26],[-8,112],[-23,88],[-16,36],[-61,82],[-15,77],[-54,70],[-5,26],[15,8],[50,-8],[27,-24],[27,-48],[88,-86],[52,-36],[75,-71],[85,-46],[46,-77],[16,-5],[40,-37],[62,-132],[45,-65],[120,-136],[10,-38],[76,-151],[41,-33],[0,-19],[-10,-9],[14,-142],[23,-105],[-54,-65],[-76,-118]],[[1752,296912],[77,8],[50,23],[18,0],[15,-19],[-4,-74],[-65,-70],[-10,-134],[-43,-90],[-32,-42],[-68,-26],[-105,-25],[-196,-105],[-149,-16],[-135,-48],[-105,6],[-78,19],[-81,68],[-51,56],[-99,137],[0,14],[-24,33],[0,77],[47,40],[103,37],[40,25],[87,15],[63,55],[135,90],[95,18],[127,8],[60,-11],[78,-29],[176,-21],[74,-19]],[[47101,365214],[-83,-35],[-57,-49],[-26,-61],[13,-14],[1,-39],[-89,-112],[0,-37],[38,-44],[7,-44],[-32,-39],[3,-32],[38,-26],[51,-12],[63,-3],[58,-17],[41,-36],[-3,-64],[-35,-36],[-57,-25],[-171,-39],[-212,-108],[-60,2],[-48,27],[-29,107],[-83,179],[0,80],[49,50],[32,131],[29,35],[14,69],[60,64],[-31,11],[-60,-11],[-127,-82],[-53,6],[-30,52],[0,58],[18,3],[-3,8],[60,70],[67,52],[30,6],[36,-21],[66,3],[30,42],[0,53],[69,47],[92,29],[259,118],[160,54],[24,0],[53,23],[22,-29],[-7,-58],[-22,-52],[0,-98],[-90,-104],[-75,-52]],[[36709,293603],[101,-11],[138,-91],[103,-137],[0,-13],[52,-57],[5,-17],[-7,-20],[-209,-99],[-218,-15],[-168,7],[-197,83],[-81,55],[-88,45],[-254,246],[-67,131],[19,87],[94,44],[36,7],[217,4],[38,-14],[58,-45],[58,-61],[211,-94],[87,-24],[72,-11]],[[41131,297678],[69,-6],[69,-20],[136,-100],[76,-93],[16,-64],[-1,-43],[10,-13],[0,-47],[-70,-100],[-23,-17],[-193,-80],[-66,-37],[-8,-14],[-70,-51],[-93,-25],[-116,4],[-109,14],[-40,17],[-45,36],[-73,109],[-21,152],[12,95],[39,104],[118,124],[93,46],[124,10],[166,-1]],[[35662,335774],[27,-14],[36,0],[26,-8],[27,-16],[61,-60],[9,-21],[1,-373],[2,-31],[20,-18],[-22,-229],[0,-89],[-26,-74],[-39,10],[-48,51],[-96,31],[-26,27],[-19,8],[-82,-1],[-76,42],[-3,33],[11,20],[3,44],[-19,38],[0,35],[6,72],[32,59],[-5,25],[-25,22],[-91,38],[-21,20],[0,21],[47,51],[3,23],[-12,68],[-16,41],[-19,24],[24,50],[-2,84],[72,75],[31,79],[54,56],[27,0],[29,-26],[43,-87],[3,-26],[53,-74]],[[35449,362630],[-5,-40],[-49,-134],[-71,-105],[-50,-26],[-38,-82],[-68,-71],[-5,-52],[64,-27],[14,-46],[-18,-15],[-17,-77],[-45,-53],[-15,-47],[-110,-26],[-32,-30],[-49,-9],[-84,17],[-14,46],[-21,27],[3,22],[31,34],[-30,47],[-16,124],[-9,358],[22,45],[113,119],[50,41],[23,10],[48,2],[40,-35],[63,31],[109,75],[51,0],[113,-62],[2,-61]],[[78903,353654],[44,-44],[20,-41],[-11,-145],[-18,-35],[-105,-71],[-13,-60],[-25,-30],[-33,-23],[-50,-18],[-31,-28],[-3,-32],[28,-89],[-38,-46],[-25,-6],[-98,-3],[-91,21],[-50,-14],[-69,-2],[-41,-24],[-34,7],[-4,13],[17,15],[3,31],[-58,24],[-12,14],[0,31],[34,43],[2,21],[24,18],[0,29],[11,24],[21,16],[44,62],[-5,36],[41,97],[72,93],[146,111],[39,16],[134,-1],[18,13],[40,10],[21,-2],[55,-31]],[[49536,381194],[48,-26],[84,-15],[65,-1],[135,-48],[51,-34],[65,-63],[0,-60],[-36,-93],[0,-31],[-101,-184],[-56,-153],[-182,-281],[-15,-42],[-22,-23],[-4,11],[-9,-9],[-26,4],[-17,24],[0,93],[6,46],[45,58],[2,15],[-5,132],[11,17],[-3,78],[17,17],[-3,34],[-43,33],[-14,24],[51,99],[8,113],[-9,17],[-37,32],[-44,30],[-25,5],[-32,19],[-33,31],[-60,2],[-22,36],[-3,22],[6,37],[19,19],[25,9],[58,6],[38,20],[25,0],[42,-20]],[[42246,311048],[33,2],[17,9],[51,-11],[191,-91],[10,-33],[-7,-35],[-47,-21],[-80,-11],[-25,-31],[0,-26],[-97,-56],[-14,-33],[-28,-28],[-43,-2],[-42,24],[-29,33],[24,56],[-7,44],[-47,28],[-14,20],[-10,70],[-13,26],[-36,32],[0,25],[-19,49],[-25,33],[-7,73],[-18,20],[-44,9],[-38,43],[23,32],[8,46],[56,93],[6,38],[47,42],[76,-6],[40,-17],[33,-54],[-5,-74],[13,-41],[19,-17],[4,-31],[-50,-25],[-25,-48],[-6,-24],[8,-5],[-11,-19],[128,-108]],[[31930,326091],[33,-47],[2,-82],[-80,-87],[-65,-49],[-40,-23],[-138,-48],[-95,-21],[-81,-34],[-44,-47],[-53,6],[-19,-5],[-42,15],[-15,25],[-4,32],[22,28],[4,43],[55,20],[-9,24],[17,32],[-14,37],[2,27],[86,87],[166,82],[183,4],[33,14],[35,3],[61,-36]],[[47260,308577],[45,-12],[2,-15],[28,-33],[3,-63],[27,-39],[-21,-10],[-81,3],[-66,-44],[-6,-54],[-38,-44],[-64,-44],[-50,-24],[-25,-2],[-186,53],[-24,19],[-12,86],[-31,37],[-15,46],[3,16],[36,45],[70,55],[102,58],[128,56],[36,5],[34,-3],[38,-18],[43,-55],[24,-19]],[[50154,345794],[-30,-41],[-84,-65],[-23,-76],[-15,-112],[-129,-171],[-99,-58],[-1,341],[-31,35],[-107,29],[-8,71],[39,53],[137,-12],[46,48],[243,118],[92,111],[54,-11],[15,-59],[-30,-77],[0,-41],[-69,-59],[0,-24]],[[73900,387978],[-27,-11],[-51,0],[-8,-7],[6,-64],[-12,-36],[-30,-39],[-31,-22],[-2,-22],[-19,-30],[-75,-48],[-48,-20],[-107,0],[-37,20],[-242,24],[-14,16],[9,73],[37,40],[60,28],[112,98],[91,19],[136,60],[87,51],[37,8],[70,-6],[37,-5],[26,-19],[9,-62],[-2,-29],[-12,-17]],[[44133,344839],[252,-11],[15,-47],[-76,-24],[-23,-53],[16,-58],[46,-71],[-76,-18],[-214,6],[-130,-18],[-122,29],[-115,0],[-61,23],[-30,36],[0,53],[38,17],[121,30],[16,41],[53,30],[69,5],[84,42],[69,18],[68,-30]],[[71485,376453],[-32,-51],[6,-8],[72,-26],[11,-11],[-2,-30],[-71,-59],[-56,-20],[-62,4],[-93,34],[-103,-2],[-24,12],[-5,35],[78,73],[13,18],[-2,20],[-34,-3],[-64,-40],[-57,-1],[-17,21],[5,31],[59,56],[16,44],[75,87],[31,12],[45,31],[72,10],[44,32],[19,2],[35,-3],[47,-43],[1,-59],[21,-41],[0,-26],[-6,-42],[-22,-57]],[[42754,383645],[-26,-92],[-31,-22],[-48,0],[-45,22],[-7,31],[24,38],[-8,11],[-40,2],[-58,41],[-23,27],[-14,62],[-12,4],[-34,56],[-5,33],[22,39],[42,7],[21,20],[46,115],[-1,19],[41,73],[18,55],[41,20],[31,0],[31,-16],[26,-42],[-1,-56],[-21,-54],[0,-66],[43,-120],[-4,-57],[22,-44],[-7,-60],[-23,-46]],[[32395,364901],[19,-58],[102,-76],[20,-34],[11,-82],[-7,-38],[-61,-44],[-77,-14],[-77,0],[-30,71],[-47,29],[-99,35],[0,29],[-11,-2],[-15,18],[-57,34],[-37,-5],[-34,5],[-12,29],[25,38],[-14,27],[-8,46],[46,44],[41,15],[42,-10],[38,-39],[78,-9],[138,40],[26,-49]],[[51090,369708],[45,-88],[-15,-47],[-68,-88],[-38,-65],[-61,-47],[-123,17],[-69,18],[-53,52],[-8,36],[-69,123],[38,41],[115,-11],[107,12],[76,58],[123,-11]],[[77741,390783],[51,-35],[18,-34],[0,-14],[-19,-17],[-27,-45],[-71,1],[-64,32],[-30,2],[-21,-12],[-65,-9],[-127,28],[-104,-19],[-52,8],[-219,3],[-62,-19],[-52,-31],[-28,-6],[-25,11],[-3,15],[41,33],[84,40],[172,29],[105,51],[1,15],[21,22],[127,-2],[105,-30],[39,3],[49,31],[77,5],[49,-45],[30,-11]],[[32945,337697],[-77,10],[-28,22],[-31,99],[6,68],[19,34],[39,39],[14,45],[57,61],[55,22],[51,36],[12,20],[-1,39],[11,23],[42,35],[8,29],[14,13],[33,0],[-6,-34],[13,-21],[-3,-128],[-88,-97],[-6,-143],[-28,-26],[-45,-100],[-43,-45],[-18,-1]],[[37773,336277],[-42,-1],[-25,9],[-13,18],[13,50],[-30,36],[6,109],[27,19],[13,48],[1,165],[47,46],[73,7],[61,-36],[31,-39],[-3,-83],[-30,-82],[7,-55],[-17,-34],[17,-31],[-4,-26],[-26,-37],[-88,-76],[-18,-7]],[[47750,375957],[-48,3],[-6,8],[4,83],[150,249],[55,62],[35,58],[46,46],[96,57],[49,7],[23,-13],[0,-64],[-50,-59],[-37,-97],[-77,-60],[-119,-161],[-90,-98],[-31,-21]],[[36663,334032],[-187,-140],[-61,-26],[-67,-56],[-38,-47],[-8,-59],[-23,-16],[-2,-15],[-79,-66],[-33,-6],[-27,8],[-33,42],[-9,76],[6,46],[45,30],[43,47],[110,65],[160,112],[34,6],[11,-7],[42,13],[109,75],[23,7],[17,-12],[2,-35],[-35,-42]],[[33910,366878],[-4,-38],[-35,3],[-67,-24],[-11,-14],[-61,-9],[-34,6],[-18,19],[-39,1],[-30,20],[-9,74],[42,133],[86,96],[9,24],[22,20],[45,12],[38,0],[15,-18],[8,-64],[16,-41],[0,-78],[23,-61],[4,-61]],[[30841,326107],[28,-31],[0,-24],[25,-22],[-7,-32],[-10,-15],[-79,-57],[-80,-44],[-80,-23],[-101,5],[-110,66],[-2,70],[99,76],[168,42],[149,-11]],[[80047,378050],[33,-9],[44,17],[20,-8],[7,-29],[-57,-42],[-6,-13],[12,-15],[-3,-12],[-32,-22],[1,-26],[-45,-57],[-37,-17],[-46,-2],[-43,24],[-50,71],[0,55],[21,73],[21,21],[30,14],[50,12],[43,-2],[37,-33]],[[32331,338284],[17,-8],[1,-47],[-47,-44],[0,-32],[-56,-41],[-16,-45],[-25,-11],[-17,3],[-61,25],[-31,35],[-3,29],[43,43],[22,52],[67,47],[39,-6],[33,16],[34,-16]],[[46447,308119],[-42,-2],[-27,11],[-18,19],[-11,39],[-25,37],[32,70],[55,21],[80,-3],[62,-15],[20,-17],[-9,-70],[-69,-30],[-48,-60]],[[33364,339269],[61,-62],[7,-45],[-36,-38],[-48,-16],[-35,-23],[-57,10],[-35,48],[-15,48],[-6,72],[20,18],[28,3],[56,-12],[8,13],[34,0],[18,-16]],[[48158,365991],[-129,-6],[-24,23],[0,65],[46,41],[69,35],[84,12],[61,-41],[-38,-106],[-69,-23]],[[68523,372925],[-37,4],[-18,10],[3,40],[27,30],[42,14],[75,0],[27,-12],[23,-36],[-15,-30],[-33,-8],[-62,0],[-32,-12]],[[34705,339655],[43,-13],[34,-27],[3,-29],[-56,-9],[-72,10],[-13,18],[-1,39],[15,16],[16,3],[31,-8]]],"transform":{"scale":[0.00001112561462401693,0.000014233113729716832],"translate":[92.207669,6.755953]},"objects":{"andamannicobarislands_district":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]]],"type":"MultiPolygon","properties":{"cartodb_id":640,"censuscode":639,"st_cen_cd":35,"dt_cen_cd":2,"district":"North & Middle Andaman","st_nm":"Andaman & Nicobar Island"}},{"arcs":[[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]]],"type":"MultiPolygon","properties":{"cartodb_id":638,"censuscode":638,"st_cen_cd":35,"dt_cen_cd":1,"district":"Nicobar","st_nm":"Andaman & Nicobar Island"}},{"arcs":[[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]]],"type":"MultiPolygon","properties":{"cartodb_id":639,"censuscode":640,"st_cen_cd":35,"dt_cen_cd":3,"district":"South Andaman","st_nm":"Andaman & Nicobar Island"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [62143, 432735], + [0, -37], + [34, -2], + [23, 30], + [45, 7], + [91, 40], + [5, 10], + [68, 23], + [115, -5], + [153, -42], + [77, -29], + [59, -29], + [18, -30], + [3, -27], + [35, -37], + [77, -47], + [8, -77], + [40, -50], + [4, -59], + [12, -20], + [51, -25], + [69, -21], + [115, -19], + [78, 0], + [269, 61], + [181, 28], + [51, 16], + [64, 51], + [39, 56], + [39, 25], + [214, 82], + [39, -19], + [-9, -79], + [-84, -48], + [-30, -35], + [-136, -63], + [-36, -32], + [-58, -83], + [-39, -26], + [-51, -16], + [-105, -61], + [-320, -90], + [-151, -60], + [-54, -26], + [-18, -34], + [-58, -47], + [-15, -141], + [67, -104], + [7, -197], + [-15, -51], + [-52, -108], + [-50, -63], + [-76, -74], + [-75, -41], + [-30, -38], + [-18, -87], + [-59, -97], + [-16, -5], + [-6, -52], + [-22, -23], + [-59, -19], + [-28, -31], + [6, -52], + [121, -152], + [12, 0], + [96, -65], + [222, -17], + [-10, 33], + [9, 17], + [54, 26], + [88, -19], + [48, 14], + [42, 25], + [24, 28], + [13, 31], + [42, 16], + [48, 0], + [30, -21], + [58, -7], + [60, 17], + [61, 47], + [37, 0], + [41, -29], + [54, -7], + [48, 28], + [117, 157], + [12, 7], + [46, -2], + [81, -35], + [39, -62], + [31, -19], + [48, 0], + [64, -48], + [114, -16], + [64, 2], + [54, 14], + [51, 0], + [45, -16], + [64, -42], + [21, -23], + [81, -41], + [0, -51], + [34, -56], + [-9, -32], + [-24, -27], + [8, -172], + [-14, -33], + [3, -74], + [-18, -71], + [-55, -71], + [0, -245], + [46, -100], + [0, -63], + [31, -35], + [34, -64], + [9, -134], + [33, -75], + [9, -183], + [-25, -40], + [2, -47], + [8, -88], + [31, -82], + [89, -95], + [74, -15], + [133, -44], + [84, -53], + [88, -33], + [45, -71], + [109, -42], + [36, 3], + [51, 27], + [21, 31], + [37, 25], + [44, 12], + [46, 2], + [99, 70], + [33, 7], + [37, -7], + [24, -56], + [39, -28], + [13, -43], + [-40, -31], + [-15, -55], + [-54, -37], + [-33, -84], + [-102, -129], + [-31, -151], + [9, -118], + [21, -60], + [34, -207], + [39, -106], + [69, -125], + [12, -6], + [45, -68], + [-16, -28], + [-58, -40], + [9, -27], + [50, -36], + [38, 0], + [75, -29], + [45, -3], + [32, 7], + [18, 12], + [11, 35], + [2, 61], + [30, 31], + [40, 9], + [89, -10], + [8, -10], + [39, -13], + [208, -45], + [21, -36], + [-14, -37], + [-101, -55], + [-113, -136], + [-82, -205], + [-3, -27], + [-47, -59], + [-22, -136], + [15, -82], + [16, -53], + [76, -58], + [111, -46], + [21, -26], + [2, -59], + [-47, -29], + [-17, -40], + [-1, -75], + [9, -37], + [47, -73], + [16, -43], + [65, -47], + [44, -45], + [90, -64], + [98, -51], + [77, -124], + [108, -129], + [64, -141], + [71, -82], + [31, -69], + [-4, -115], + [-48, -168], + [-54, -54], + [-101, -77], + [-145, -83], + [-60, -59], + [-13, -143], + [44, -53], + [2, -23], + [-4, -45], + [-18, -28], + [0, -57], + [-23, -90], + [-29, -43], + [-41, -28], + [-140, -27], + [-178, -57], + [-156, -71], + [-80, -61], + [-42, -61], + [-103, -57], + [-134, -157], + [-45, -100], + [-39, -37], + [-56, -24], + [-34, 3], + [-28, 53], + [-60, 9], + [-107, -62], + [-108, -114], + [-18, -66], + [-4, -302], + [29, -173], + [21, -37], + [57, -38], + [65, -75], + [68, -43], + [125, -34], + [13, -32], + [-2, -23], + [-22, -29], + [4, -31], + [95, -47], + [16, -69], + [25, -21], + [38, 14], + [25, 24], + [26, 46], + [58, 38], + [79, 8], + [102, 33], + [86, 12], + [117, 33], + [95, -5], + [122, 32], + [165, 19], + [45, -8], + [9, -21], + [-47, -49], + [11, -165], + [-15, -45], + [-17, -21], + [-4, -47], + [-31, -32], + [-30, -79], + [7, -57], + [55, -67], + [2, -13], + [172, -131], + [43, -65], + [42, -126], + [193, -51], + [54, -41], + [73, -17], + [96, 5], + [124, -10], + [106, -59], + [93, -1], + [21, -6], + [146, -100], + [30, -67], + [0, -90], + [11, -72], + [0, -34], + [-35, -57], + [-5, -113], + [23, -29], + [122, -57], + [41, -33], + [20, -35], + [129, -111], + [109, -57], + [31, -28], + [46, -80], + [66, -69], + [-12, -101], + [-99, -90], + [-32, -43], + [-13, -77], + [-19, -34], + [-15, -99], + [-95, -148], + [-106, -88], + [-6, -21], + [6, -123], + [37, -101], + [7, -151], + [34, -64], + [161, -233], + [29, -26], + [57, -29], + [99, -22], + [163, 2], + [47, 7], + [129, 45], + [80, 10], + [42, -22], + [66, -63], + [118, -38], + [77, -40], + [45, -34], + [43, -63], + [45, -88], + [5, -83], + [34, -103], + [77, -99], + [34, -81], + [11, -68], + [-9, -52], + [-61, -30], + [-60, -8], + [-50, 7], + [-43, 19], + [-114, 10], + [-69, 17], + [-37, 33], + [-25, 37], + [-4, 51], + [-52, 87], + [-86, 50], + [-93, 6], + [-34, -23], + [-165, -74], + [-203, -113], + [-131, -127], + [-160, -212], + [-2, -96], + [42, -43], + [-2, -19], + [-9, -21], + [-92, -54], + [-36, -29], + [-68, -89], + [-43, -212], + [-2, -52], + [34, -67], + [77, -52], + [43, -10], + [126, -11], + [30, -14], + [2, -12], + [-69, -40], + [-46, -203], + [-8, -94], + [-13, -35], + [12, -20], + [-9, -42], + [-95, -141], + [-11, -48], + [7, -35], + [34, -52], + [66, -95], + [48, -50], + [16, -111], + [-15, -288], + [-47, -49], + [-96, -76], + [-16, -30], + [-6, -73], + [-72, -137], + [-61, -94], + [-8, -147], + [16, -65], + [18, -15], + [59, -89], + [8, -178], + [25, -21], + [4, -25], + [-33, -27], + [4, -74], + [-47, -188], + [-16, -30], + [-34, -20], + [-23, -25], + [-6, -113], + [-77, -81], + [-32, -132], + [-17, -29], + [-15, -82], + [-85, -195], + [-19, -68], + [-41, -71], + [-7, -93], + [-63, -148], + [0, -56], + [18, -89], + [44, -110], + [-7, -324], + [-30, -399], + [1, -183], + [-87, -70], + [-86, -15], + [-202, 78], + [-111, 57], + [-181, 151], + [-117, 54], + [-2, -9], + [6, -19], + [93, -64], + [84, -88], + [38, -30], + [390, -211], + [99, -65], + [140, -111], + [35, -67], + [9, -30], + [-16, -57], + [-84, -125], + [-27, -76], + [-26, -155], + [-54, -159], + [-7, -229], + [-23, -148], + [1, -258], + [18, -27], + [22, -95], + [58, -79], + [40, -25], + [11, -40], + [3, -92], + [-22, -96], + [-41, -69], + [0, -76], + [79, -101], + [32, -19], + [20, -24], + [32, -73], + [27, -35], + [2, -73], + [37, -117], + [37, -33], + [49, -61], + [124, -104], + [0, -28], + [-41, -52], + [-6, -77], + [7, -145], + [18, -31], + [-2, -30], + [-13, -5], + [-14, -97], + [0, -52], + [14, -45], + [49, -64], + [32, -59], + [36, -28], + [18, -4], + [48, 11], + [27, -9], + [23, -17], + [-7, -37], + [-29, -21], + [11, -12], + [0, -48], + [5, -21], + [61, -26], + [0, -17], + [-2, -13], + [-46, -3], + [-13, -12], + [21, -35], + [-3, -17], + [30, -39], + [69, -23], + [15, -116], + [43, -74], + [45, -44], + [12, -32], + [24, -31], + [157, -147], + [54, -30], + [30, -107], + [64, -53], + [24, -44], + [43, -88], + [7, -167], + [108, -300], + [85, -188], + [30, -176], + [85, -59], + [45, -105], + [33, -22], + [21, -63], + [3, -97], + [-42, -102], + [-70, -118], + [-20, -58], + [-22, -441], + [-19, -126], + [-31, -14], + [-33, -127], + [-30, -69], + [-54, -67], + [-4, -83], + [-81, -138], + [-77, -70], + [-47, -110], + [-10, -167], + [-45, -60], + [-72, -27], + [-100, -54], + [-45, -41], + [-27, -40], + [-14, -178], + [-50, -118], + [-31, -182], + [-8, -188], + [54, -153], + [54, -65], + [0, -47], + [92, -94], + [0, -49], + [70, -110], + [3, -33], + [-18, -34], + [-62, -74], + [-161, -65], + [-160, -106], + [-12, -26], + [2, -156], + [15, -43], + [0, -121], + [-21, -27], + [-142, -45], + [-84, -16], + [-85, -2], + [-84, 7], + [-54, 9], + [-48, 30], + [-130, 114], + [21, 41], + [36, 32], + [6, 35], + [-15, 37], + [-91, 51], + [-60, 18], + [-111, 10], + [-48, 16], + [-6, 21], + [21, 41], + [-3, 23], + [-49, 33], + [-78, 32], + [-103, 30], + [-24, 18], + [0, 26], + [21, 19], + [-14, 29], + [-43, 40], + [-87, 48], + [-12, 72], + [-28, 21], + [-87, 30], + [-148, 9], + [-186, -107], + [-7, -30], + [7, -37], + [87, -71], + [24, -40], + [-8, -67], + [-109, -60], + [-54, 0], + [-78, -40], + [-21, -25], + [21, -69], + [-6, -102], + [-75, -67], + [-18, -75], + [-76, -50], + [-24, -40], + [46, -69], + [6, -28], + [-33, -39], + [-67, -40], + [-69, -72], + [-123, -94], + [-57, -19], + [-78, -9], + [-160, 6], + [-43, 5], + [-53, 19], + [-46, 2], + [-36, -20], + [-27, -45], + [-51, -23], + [-70, -5], + [-78, -58], + [-21, -32], + [15, -28], + [43, -16], + [57, -7], + [111, 19], + [18, -5], + [6, -26], + [-15, -23], + [-141, -95], + [-24, -30], + [2, -27], + [-11, -37], + [6, -40], + [48, -39], + [112, -51], + [23, -32], + [31, -14], + [31, -42], + [48, -36], + [21, -40], + [2, -25], + [49, -23], + [18, -28], + [-3, -44], + [-24, -42], + [-81, -97], + [-66, -19], + [-82, -18], + [-563, -15], + [-69, -16], + [-135, -46], + [-73, -44], + [-12, -28], + [36, -10], + [106, 45], + [126, 37], + [154, 21], + [367, -14], + [133, -11], + [108, 2], + [157, 42], + [265, 140], + [169, 0], + [50, -42], + [52, -3], + [45, -37], + [15, -22], + [75, 22], + [79, 90], + [51, 79], + [-3, 144], + [14, 42], + [33, 34], + [40, 16], + [55, 0], + [250, 148], + [71, 29], + [90, 21], + [145, 4], + [102, -7], + [121, -22], + [90, -38], + [82, -50], + [66, -53], + [84, -26], + [1, -23], + [-28, -19], + [-15, 0], + [-24, -41], + [-24, -153], + [-18, -44], + [-12, -125], + [-12, -41], + [-81, -40], + [-120, -30], + [-106, -65], + [-84, -26], + [-45, -9], + [-36, 5], + [-27, 39], + [-79, 0], + [-105, -49], + [-20, -16], + [-60, -15], + [-93, -87], + [-44, -74], + [-66, -44], + [-129, -18], + [-30, 9], + [-115, -3], + [9, -20], + [30, -28], + [86, -53], + [23, -7], + [30, -35], + [51, -76], + [-6, -42], + [-39, -58], + [-15, -5], + [-5, -12], + [-38, -27], + [4, -18], + [-27, -39], + [-6, -56], + [-144, -70], + [-72, -21], + [8, -99], + [-20, -113], + [-73, -42], + [-44, -10], + [-103, -53], + [-83, -12], + [-94, -57], + [-64, 0], + [-99, 18], + [-78, 0], + [-37, 11], + [-27, 28], + [-93, 10], + [-30, 25], + [-79, 27], + [-54, -18], + [-30, -23], + [-51, -56], + [-33, -21], + [-3, -39], + [-36, -25], + [-42, -6], + [-48, -66], + [-46, -33], + [-45, -16], + [-87, 0], + [-112, -60], + [-66, 4], + [-66, -39], + [-33, -60], + [-54, -7], + [-27, 18], + [-40, 5], + [-33, 13], + [-12, 33], + [-33, 25], + [-48, 14], + [-102, -2], + [-37, -21], + [15, -28], + [-18, -19], + [-39, -20], + [-45, -7], + [-75, 42], + [-33, 39], + [-51, 41], + [-55, -7], + [-69, -39], + [-27, -65], + [-30, -23], + [-9, -25], + [27, -26], + [24, 23], + [78, 7], + [21, -25], + [-17, -40], + [27, -32], + [39, -14], + [81, 30], + [54, 12], + [82, -2], + [42, -14], + [30, -39], + [9, -37], + [-24, -51], + [-45, -60], + [-11, -36], + [8, -38], + [84, -30], + [44, 9], + [80, -14], + [45, 0], + [39, 12], + [69, -9], + [52, -42], + [15, -58], + [-6, -32], + [-42, -21], + [-115, -28], + [-41, -26], + [-43, -43], + [-24, -84], + [-14, -97], + [-31, -23], + [-48, -5], + [-36, -21], + [-27, -30], + [-8, -70], + [107, -88], + [6, -27], + [37, -25], + [3, -31], + [-15, -32], + [-36, -30], + [-27, -88], + [0, -71], + [-21, -49], + [-96, -72], + [-19, -30], + [1, -23], + [-57, -22], + [-24, -41], + [45, -124], + [-9, -24], + [-57, -32], + [-27, -37], + [3, -125], + [-93, -88], + [-69, -86], + [9, -97], + [24, -53], + [-54, -58], + [21, -63], + [57, -43], + [-5, -49], + [-17, -5], + [2, -21], + [-70, -34], + [-162, 4], + [-103, -33], + [-57, -2], + [-126, 28], + [-257, 30], + [-36, 39], + [-15, 46], + [0, 70], + [21, 48], + [0, 28], + [63, 62], + [12, 24], + [0, 39], + [12, 28], + [21, 25], + [39, 24], + [21, 43], + [3, 70], + [15, 37], + [48, 69], + [-3, 38], + [24, 13], + [15, 28], + [-18, 79], + [35, 54], + [11, 105], + [-18, 25], + [-80, 36], + [-117, 87], + [-63, 26], + [-88, 48], + [-42, 74], + [-81, 53], + [-43, 39], + [-181, 91], + [-34, 24], + [-74, 3], + [-105, 21], + [-52, 19], + [-45, 39], + [-99, 60], + [-34, 37], + [-99, 50], + [-21, 40], + [-2, 38], + [-101, 112], + [-51, 39], + [-42, 61], + [-70, 53], + [-42, 46], + [-75, 35], + [-281, 168], + [-75, 49], + [-27, 30], + [-88, 41], + [-90, 88], + [-320, 125], + [-150, 23], + [-32, 12], + [-15, -6], + [-107, 14], + [-33, 47], + [-3, 34], + [-18, 39], + [-43, 28], + [-60, -4], + [-60, 11], + [-91, 32], + [-66, 12], + [-156, 11], + [-58, -9], + [-87, -60], + [-72, -40], + [-39, -14], + [-40, 10], + [-56, 34], + [-94, 83], + [-39, 23], + [-42, 51], + [-127, 74], + [-190, 155], + [-163, 111], + [-139, 85], + [-311, 137], + [-56, 11], + [-85, 0], + [-57, -21], + [-21, -21], + [-12, -48], + [0, -35], + [15, -40], + [18, -20], + [121, -46], + [27, -31], + [78, -9], + [193, -89], + [320, -204], + [262, -240], + [103, -60], + [232, -120], + [148, -51], + [169, -76], + [66, -19], + [126, -4], + [45, 12], + [31, 23], + [24, 37], + [0, 37], + [14, 23], + [60, 2], + [-25, -11], + [169, -106], + [230, -123], + [207, -94], + [306, -170], + [345, -229], + [161, -153], + [123, -164], + [169, -182], + [76, -135], + [177, -271], + [131, -182], + [-14, -28], + [-36, -24], + [-97, -41], + [-60, -14], + [-135, 23], + [-40, 60], + [-57, 53], + [-67, 87], + [-134, 96], + [-137, 34], + [-84, 32], + [-145, 33], + [-120, 41], + [-27, 28], + [-9, 136], + [-15, 16], + [-25, 3], + [-42, -21], + [-33, -51], + [-30, -28], + [-51, -26], + [-21, -34], + [-46, -23], + [-5, -23], + [-51, -49], + [-79, -16], + [-39, -23], + [-48, -12], + [-86, 5], + [-98, -48], + [-91, -65], + [-85, -136], + [19, -31], + [-8, -19], + [-99, -67], + [-18, -28], + [-15, -74], + [-51, -5], + [-48, 44], + [-21, 37], + [-22, 81], + [8, 109], + [-81, 106], + [-43, 31], + [-5, 20], + [-36, 21], + [-36, 57], + [-39, 23], + [-43, 12], + [-30, 28], + [-48, 7], + [-36, 14], + [-39, 34], + [-84, 25], + [-12, 31], + [-31, 32], + [-93, 21], + [-36, 27], + [-3, 86], + [-12, 23], + [-49, 25], + [-92, 30], + [-42, 0], + [-94, -39], + [-88, -14], + [-82, 11], + [-25, -9], + [-38, -30], + [-66, 7], + [-63, 18], + [-9, -11], + [38, -47], + [-6, -6], + [49, -44], + [-42, -28], + [-99, -44], + [-57, -14], + [-139, 14], + [-156, 30], + [-108, 47], + [-75, 10], + [-154, -6], + [-70, -29], + [-160, 5], + [-53, -6], + [-88, -31], + [-42, 4], + [-73, 51], + [-37, 53], + [-97, 64], + [-383, 194], + [-8, -11], + [-74, 59], + [-115, 46], + [-127, 19], + [-267, 6], + [-127, 56], + [-100, 35], + [-114, 12], + [-109, 27], + [-322, 51], + [-154, 62], + [-57, 11], + [-42, 30], + [-58, 26], + [-75, 0], + [-180, -24], + [-124, -7], + [-126, 14], + [-103, 26], + [-72, 6], + [-229, 44], + [-82, 27], + [-57, 47], + [-51, 21], + [-63, 23], + [-52, 2], + [-5, -51], + [69, -83], + [85, -42], + [42, -39], + [81, -35], + [108, -32], + [118, -18], + [208, -21], + [147, -27], + [100, 0], + [69, -9], + [48, -17], + [142, -15], + [78, 0], + [70, -12], + [159, -46], + [166, -76], + [82, -19], + [171, -64], + [112, -44], + [42, -30], + [-24, -21], + [-63, -16], + [-70, -30], + [-39, -42], + [-2, -151], + [33, -115], + [33, -58], + [3, -51], + [-99, -69], + [-6, -61], + [12, 0], + [30, 21], + [30, 38], + [37, 11], + [57, -14], + [190, -120], + [74, -59], + [13, -109], + [93, -263], + [32, -27], + [9, -20], + [-9, -54], + [-15, -7], + [-9, -23], + [-58, -18], + [-201, 6], + [-58, 63], + [-90, 23], + [-42, 0], + [-69, -21], + [-85, -51], + [-69, -21], + [-21, -12], + [-6, -16], + [27, -14], + [55, 0], + [69, 31], + [81, 60], + [33, 7], + [57, -28], + [63, -46], + [67, -14], + [108, -7], + [142, 7], + [93, -9], + [86, 8], + [203, -26], + [97, -39], + [81, -63], + [24, -34], + [33, -107], + [-14, -150], + [-87, -92], + [-13, -54], + [-26, -18], + [-27, -74], + [-19, -19], + [-50, -28], + [-21, -55], + [-19, -14], + [-69, 0], + [-72, -12], + [-51, -23], + [-9, -16], + [3, -22], + [195, 17], + [61, -60], + [3, -58], + [15, -30], + [31, -25], + [6, -23], + [-3, -19], + [-58, -56], + [-3, -18], + [103, -2], + [30, -12], + [81, -83], + [79, -5], + [27, -20], + [18, -33], + [24, 12], + [9, 32], + [27, 10], + [39, -14], + [82, -65], + [96, -51], + [82, -81], + [53, -75], + [-8, -95], + [192, -76], + [39, -217], + [38, -100], + [92, -100], + [176, -153], + [169, -117], + [27, -38], + [61, -32], + [30, -25], + [24, -25], + [27, -57], + [64, -36], + [165, -42], + [51, -25], + [27, -30], + [37, -63], + [-6, -48], + [-30, -74], + [-66, -46], + [-37, -14], + [-75, -3], + [-66, -16], + [-30, -14], + [-3, -16], + [21, 0], + [75, -51], + [37, -60], + [9, -32], + [-9, -74], + [63, -67], + [43, -26], + [47, -43], + [52, -29], + [20, -24], + [28, -10], + [60, -5], + [127, 5], + [87, 37], + [238, -2], + [102, 26], + [79, -23], + [36, -44], + [78, -60], + [4, -35], + [-25, -42], + [-48, -23], + [-30, -32], + [-15, -23], + [0, -23], + [21, -10], + [66, -4], + [28, -44], + [0, -19], + [45, -55], + [105, -81], + [15, -44], + [94, -76], + [78, 34], + [87, 12], + [97, 58], + [33, 14], + [22, 0], + [84, 58], + [30, 99], + [39, 71], + [143, -8], + [76, -99], + [66, -39], + [79, -12], + [96, 42], + [30, -3], + [12, -25], + [0, -34], + [18, -15], + [63, -2], + [73, -37], + [15, -34], + [0, -39], + [-54, -72], + [0, -23], + [51, -77], + [39, -21], + [82, -11], + [36, 2], + [66, 19], + [81, -9], + [100, -58], + [6, -30], + [-15, -37], + [-27, -26], + [-52, 7], + [19, -46], + [-6, -53], + [18, -21], + [29, -10], + [62, -76], + [12, -78], + [24, -44], + [139, -181], + [21, -21], + [87, -45], + [82, -63], + [15, -30], + [9, -55], + [36, -72], + [27, -39], + [33, -24], + [3, -46], + [-15, -14], + [-42, -7], + [-174, 30], + [-15, 23], + [-7, 95], + [-27, 95], + [-42, 60], + [-15, 51], + [-16, 7], + [-43, 0], + [-7, 7], + [-24, -3], + [-34, 7], + [-57, 16], + [-45, 30], + [-42, 10], + [-34, 23], + [-123, 171], + [-55, 16], + [-96, -7], + [-105, -69], + [-42, -3], + [-84, 14], + [-16, 18], + [-3, 37], + [-12, 19], + [-132, 11], + [-70, -28], + [-40, -34], + [1, -77], + [16, -34], + [-6, -42], + [-18, -49], + [-63, -85], + [0, -30], + [71, -54], + [23, -129], + [-12, -153], + [-22, -14], + [-77, -23], + [-28, -16], + [-3, -21], + [12, -14], + [139, 7], + [36, 5], + [30, 19], + [34, 4], + [59, 21], + [42, 0], + [55, -16], + [15, -14], + [-3, -46], + [-24, -14], + [-124, -14], + [-343, -65], + [-39, -2], + [-319, -133], + [-78, -11], + [-75, -3], + [-154, 56], + [-132, 76], + [-130, 41], + [-18, 0], + [-6, -25], + [12, -21], + [126, -49], + [212, -108], + [72, -16], + [153, -2], + [196, 76], + [180, 56], + [380, 40], + [102, 25], + [105, -2], + [136, 16], + [108, -9], + [33, -25], + [49, -67], + [3, -65], + [-6, -21], + [-24, -14], + [-41, -2], + [-79, -68], + [-7, -94], + [107, -82], + [49, -11], + [79, -45], + [133, -3], + [75, 17], + [70, 30], + [51, 11], + [129, 3], + [114, 65], + [45, 16], + [109, -7], + [33, -16], + [48, -47], + [22, -27], + [0, -35], + [-43, -30], + [-36, -10], + [-30, 12], + [-6, 28], + [39, 26], + [-21, 18], + [-42, -18], + [-81, -61], + [-81, -160], + [-3, -143], + [-54, -7], + [-69, 21], + [-97, 11], + [-57, 51], + [-33, 19], + [-43, 2], + [-32, -16], + [-52, -3], + [-84, 7], + [-39, 14], + [-85, 81], + [-98, 69], + [-147, -10], + [-84, -129], + [-38, -22], + [-30, -43], + [-144, -66], + [-135, -113], + [-3, -48], + [-27, -39], + [-39, -21], + [-24, -35], + [-3, -67], + [-12, -18], + [-66, -30], + [-22, -22], + [-3, -30], + [-27, -9], + [-47, 14], + [-100, 65], + [-78, 18], + [-22, 16], + [-96, 5], + [-30, 11], + [-21, 54], + [51, 78], + [3, 26], + [-88, 30], + [-39, 2], + [-138, -22], + [-7, -12], + [-74, -45], + [-8, -28], + [-24, -21], + [0, -86], + [-24, -56], + [-100, -35], + [-275, 77], + [-64, -18], + [-20, -31], + [-4, -31], + [-36, -46], + [-60, -16], + [-72, 19], + [-45, 27], + [-112, 43], + [-40, 3], + [-64, -18], + [-40, -3], + [-53, 24], + [-108, 13], + [-48, -3], + [-64, -35], + [-113, -28], + [-176, 4], + [-64, -59], + [-37, -22], + [-67, -6], + [-113, -84], + [-36, -33], + [0, -90], + [-28, -37], + [-104, -53], + [-610, -28], + [-273, -65], + [-96, -53], + [-113, -83], + [-63, -13], + [-85, -37], + [-132, -95], + [-64, -26], + [-181, 149], + [-80, 15], + [-217, 126], + [-101, 40], + [-88, 12], + [-132, 59], + [-73, 49], + [-56, 12], + [-149, 62], + [-80, 46], + [-189, 62], + [-64, 33], + [-73, 16], + [-72, 64], + [-72, 25], + [-81, 3], + [-60, 34], + [-148, 52], + [-93, 12], + [-120, 3], + [-88, -6], + [-73, -15], + [-100, -56], + [-52, -16], + [-56, 0], + [-88, -15], + [-117, -37], + [-44, -38], + [-112, -71], + [-40, -43], + [-52, -111], + [-28, -34], + [-60, -49], + [-72, -44], + [-45, -6], + [-47, -34], + [-96, -39], + [-48, -12], + [-73, 35], + [-19, 25], + [-14, 91], + [-96, 154], + [-148, 102], + [-120, 45], + [-155, 10], + [-79, 15], + [-69, 39], + [-142, 21], + [-113, 1], + [-174, -12], + [-125, -21], + [-63, 4], + [-33, 15], + [-35, 40], + [-176, 92], + [-73, 21], + [-96, 5], + [-38, 20], + [-25, 27], + [-99, 12], + [-15, 13], + [1, 34], + [16, 28], + [59, 31], + [4, 26], + [-122, 58], + [-83, 23], + [-8, -12], + [46, -75], + [-17, -74], + [-37, -58], + [-32, -32], + [-73, -56], + [-86, -48], + [-46, -138], + [-50, -100], + [-53, -61], + [-53, -146], + [-49, -85], + [0, -34], + [18, -55], + [-10, -65], + [-53, -117], + [-40, -31], + [-7, -27], + [-63, -55], + [-60, 5], + [-24, 30], + [-9, 120], + [-19, 44], + [-35, 37], + [-10, 36], + [27, 64], + [26, 158], + [7, 135], + [9, 23], + [57, 65], + [-3, 24], + [-31, 17], + [-2, 17], + [-16, 14], + [-32, -21], + [-28, -4], + [-31, -100], + [-53, -76], + [-63, -123], + [-2, -34], + [-14, -30], + [-28, -41], + [-80, -46], + [-126, -92], + [-90, -89], + [-33, -44], + [5, -90], + [19, -49], + [27, -19], + [9, -26], + [32, -33], + [9, -85], + [-20, -21], + [-145, -74], + [-44, -45], + [-110, -38], + [-61, -9], + [-70, 5], + [-28, 33], + [-2, 55], + [-15, 18], + [-98, 31], + [-14, 28], + [-25, 18], + [-136, 57], + [-77, 59], + [-122, 31], + [-32, -11], + [-51, -50], + [-42, -22], + [-59, -7], + [-44, 3], + [-17, 16], + [7, 58], + [-60, 19], + [-98, -29], + [-14, 13], + [30, 54], + [-30, 18], + [-29, 43], + [-46, -2], + [-117, -57], + [-107, 14], + [-150, 0], + [-63, -6], + [-79, -40], + [-30, 0], + [-59, 31], + [-21, 21], + [-16, 61], + [-45, 56], + [-51, 0], + [-49, -15], + [-91, -70], + [-70, -11], + [-44, 22], + [-12, 28], + [0, 35], + [-19, 19], + [-72, -5], + [-270, -88], + [-77, 4], + [-77, 27], + [-120, 4], + [-77, -63], + [-35, -45], + [-40, -25], + [-133, -33], + [-68, 4], + [-46, 10], + [-21, 22], + [0, 23], + [-42, 24], + [-21, 39], + [6, 41], + [24, 31], + [58, 48], + [-5, 31], + [-46, 52], + [-82, 61], + [-47, 79], + [-52, 120], + [-33, 30], + [-37, 18], + [-31, 54], + [-21, 142], + [-49, 44], + [-38, 24], + [-46, 0], + [-68, -20], + [-44, -65], + [-81, -45], + [-51, -82], + [-49, -17], + [-54, 9], + [-44, 33], + [-28, 67], + [-11, 121], + [-27, 50], + [-44, 50], + [-11, 55], + [-49, 41], + [-3, 49], + [-16, 20], + [-20, 148], + [-54, 26], + [-11, 42], + [-6, 171], + [-38, 55], + [-16, 79], + [10, 67], + [33, 54], + [16, 51], + [27, 4], + [27, -34], + [6, -42], + [32, -29], + [39, 5], + [42, 42], + [23, 65], + [0, 52], + [-21, 63], + [-30, 34], + [-31, 26], + [-42, 13], + [-175, 93], + [-41, 0], + [-145, -84], + [-38, -50], + [-27, -159], + [-98, -51], + [-87, -4], + [-98, 33], + [-60, 47], + [-11, 62], + [44, 50], + [-3, 23], + [-30, 36], + [-6, 79], + [33, 97], + [65, 75], + [16, 79], + [-45, 284], + [43, 248], + [-5, 62], + [-16, 46], + [-44, 30], + [-6, 75], + [76, 129], + [5, 252], + [-17, 146], + [-22, 79], + [27, 80], + [49, 67], + [10, 71], + [-6, 359], + [-27, 46], + [-44, 38], + [-17, 46], + [-32, 46], + [14, 111], + [0, 100], + [51, 78], + [64, 78], + [30, 17], + [50, -17], + [40, -34], + [55, -17], + [103, 6], + [54, 29], + [98, 95], + [19, 50], + [-86, 6], + [-102, 33], + [-29, 50], + [-15, 67], + [-87, 111], + [0, 56], + [14, 50], + [87, 62], + [-7, 44], + [-51, 45], + [-73, 11], + [-65, 0], + [-73, -28], + [-50, -39], + [-36, -51], + [-73, -5], + [-43, 44], + [-16, 262], + [29, 118], + [-15, 94], + [-95, 178], + [-36, 117], + [-30, 151], + [-15, 312], + [-1, 290], + [7, 73], + [94, 256], + [72, 79], + [130, 172], + [0, 112], + [-81, 301], + [-7, 212], + [-15, 78], + [-43, 45], + [-30, 61], + [6, 273], + [-14, 56], + [-8, 150], + [15, 45], + [14, 117], + [-1, 100], + [22, 112], + [36, 72], + [65, 73], + [65, 6], + [37, -28], + [65, 56], + [29, 61], + [65, 212], + [-16, 201], + [-21, 111], + [-44, 78], + [-8, 357], + [21, 95], + [80, 100], + [36, 23], + [37, -28], + [-8, -67], + [-22, -50], + [1, -61], + [69, -70], + [70, 11], + [32, 13], + [67, 99], + [84, 65], + [53, 88], + [-9, 29], + [-40, 5], + [-87, 28], + [-29, 33], + [-15, 56], + [-8, 195], + [-29, 56], + [-29, 33], + [-58, -6], + [-58, -44], + [-51, -17], + [-94, 11], + [-37, 44], + [-7, 84], + [43, 78], + [50, 62], + [-7, 66], + [-80, 139], + [-8, 135], + [-29, 38], + [-51, -22], + [-28, -50], + [-73, -28], + [-58, 27], + [-37, 51], + [-21, 61], + [6, 162], + [22, 61], + [65, 11], + [80, -16], + [29, -17], + [58, 0], + [0, 90], + [29, 61], + [29, 150], + [14, 112], + [-7, 67], + [14, 61], + [29, 45], + [58, 61], + [28, 89], + [-1, 391], + [87, 156], + [51, 112], + [7, 44], + [50, 23], + [8, -162], + [-22, -50], + [15, -12], + [94, 6], + [50, 51], + [25, 73], + [170, 198], + [30, 51], + [7, 75], + [-44, 55], + [-8, 29], + [-23, 29], + [-54, 6], + [-91, 55], + [-14, 44], + [11, 57], + [-6, 38], + [-54, 47], + [-84, 53], + [-129, -8], + [-28, 5], + [-138, 89], + [-17, 37], + [-2, 30], + [16, 113], + [-3, 265], + [28, 62], + [3, 124], + [-46, 143], + [-79, 39], + [-45, 11], + [-329, 30], + [-71, 77], + [-68, 57], + [-35, 59], + [16, 46], + [42, 23], + [26, 45], + [-14, 91], + [18, 59], + [178, 176], + [18, 51], + [51, 61], + [98, 57], + [12, 36], + [-3, 61], + [73, 74], + [-10, 73], + [-28, 16], + [-12, 26], + [28, 55], + [-8, 210], + [23, 41], + [2, 97], + [-7, 63], + [-63, 90], + [-7, 222], + [25, 51], + [51, 57], + [33, 169], + [21, 50], + [109, 146], + [40, 28], + [49, 17], + [98, 11], + [0, 16], + [-26, 11], + [-16, 19], + [27, 41], + [17, 71], + [212, 222], + [165, 194], + [37, 63], + [21, 62], + [2, 123], + [-12, 74], + [-70, 91], + [4, 50], + [21, 33], + [-53, 19], + [-12, 55], + [-68, 10], + [-56, 25], + [-56, 48], + [-31, 52], + [-12, 41], + [0, 74], + [53, 74], + [-13, 41], + [4, 70], + [23, 45], + [87, 47], + [84, 23], + [54, 27], + [58, 49], + [9, 43], + [-7, 41], + [-31, 27], + [-70, 37], + [-2, 25], + [20, 31], + [98, 65], + [5, 28], + [-44, 45], + [-68, 45], + [-58, 21], + [-64, 9], + [-119, 68], + [0, 27], + [74, 34], + [-2, 22], + [-16, 21], + [0, 26], + [35, 37], + [97, 142], + [3, 30], + [-14, 22], + [-24, 15], + [-3, 34], + [24, 73], + [-8, 31], + [-34, 10], + [-73, 2], + [-82, -20], + [-37, 9], + [-9, 34], + [-1, 65], + [-35, 68], + [14, 91], + [21, 36], + [96, 46], + [91, 113], + [65, 46], + [-9, 34], + [-22, 24], + [5, 39], + [70, 38], + [-24, 31], + [-33, 19], + [-2, 24], + [21, 21], + [-4, 43], + [-92, 9], + [-51, -11], + [-110, -6], + [-56, 15], + [-28, 25], + [-5, 59], + [-19, 32], + [-72, 31], + [-28, 32], + [-87, 18], + [-21, 14], + [-159, -9], + [-61, 28], + [-40, 0], + [-32, -18], + [-66, 13], + [-16, -7], + [-42, -1], + [-38, 15], + [-107, -4], + [-21, 11], + [-33, 48], + [-84, 15], + [-40, 32], + [-37, 7], + [-89, -6], + [-47, 20], + [-82, 20], + [-58, 3], + [-70, -12], + [-119, -56], + [-36, 3], + [-37, 16], + [-52, 63], + [-63, 36], + [-14, 169], + [1, 150], + [-11, 70], + [28, 29], + [14, 30], + [0, 25], + [60, 92], + [33, 94], + [9, 75], + [28, 34], + [8, 1], + [10, -26], + [12, -110], + [22, -43], + [30, -30], + [61, -32], + [33, -40], + [117, -82], + [28, -29], + [42, -10], + [98, -63], + [101, -9], + [91, 24], + [68, -33], + [89, 15], + [58, 23], + [47, 22], + [9, 18], + [-21, 14], + [7, 42], + [11, 5], + [64, 0], + [39, 18], + [126, 99], + [75, 45], + [61, 72], + [37, 13], + [35, -13], + [35, 23], + [33, 0], + [30, -3], + [47, -58], + [28, -50], + [7, -100], + [-7, -29], + [-23, -24], + [3, -85], + [40, -101], + [19, 11], + [13, 43], + [28, 30], + [5, 26], + [62, 29], + [114, 166], + [11, 74], + [-15, 20], + [-2, 63], + [30, 64], + [58, 51], + [63, 36], + [92, 27], + [99, 12], + [0, 28], + [-13, 19], + [-5, 106], + [-12, 25], + [2, 25], + [21, 21], + [0, 56], + [32, 22], + [31, 2], + [56, 68], + [14, 25], + [0, 23], + [23, 29], + [26, 60], + [-7, 60], + [37, 87], + [-1, 39], + [-14, 12], + [-35, 10], + [-33, 32], + [0, 20], + [105, 82], + [68, 31], + [7, 43], + [-9, 19], + [-38, 21], + [-12, 26], + [2, 25], + [43, 53], + [20, 59], + [91, 75], + [5, 128], + [46, 133], + [-4, 21], + [20, 55], + [12, 99], + [18, 49], + [-7, 20], + [-18, 17], + [-28, 6], + [-10, 21], + [2, 27], + [15, 19], + [2, 82], + [-27, 19], + [3, 24], + [58, 29], + [49, 12], + [33, -3], + [30, -25], + [66, -20], + [38, 0], + [44, 15], + [39, 32], + [26, 7], + [24, -2], + [18, -19], + [12, -76], + [-11, -84], + [-37, -68], + [0, -22], + [-17, -34], + [10, -104], + [30, -63], + [26, -32], + [87, -54], + [9, -18], + [-11, -86], + [2, -82], + [61, -128], + [50, -54], + [19, -116], + [0, -41], + [-10, -23], + [57, -60], + [26, -3], + [49, -41], + [25, -43], + [24, -17], + [30, 15], + [42, 89], + [16, 63], + [59, 83], + [39, 235], + [44, 54], + [54, -30], + [25, 11], + [17, 35], + [-12, 18], + [-37, 7], + [-12, 23], + [21, 28], + [68, 50], + [11, 21], + [35, 16], + [52, -10], + [55, 34], + [96, 15], + [91, 32], + [89, 22], + [89, 36], + [138, 72], + [77, 64], + [2, 65], + [-14, 47], + [-82, 62], + [16, 72], + [-12, 121], + [-70, 206], + [-48, -10], + [-28, 15], + [-16, 29], + [23, 27], + [31, 17], + [0, 26], + [-15, 32], + [-35, 41], + [-12, 78], + [-58, 74], + [-7, 31], + [97, 94], + [59, 159], + [25, 17], + [112, -4], + [57, 9], + [67, 61], + [63, 17], + [42, 20], + [281, 188], + [27, 47], + [-9, 57], + [4, 31], + [70, 36], + [24, 23], + [-1, 39], + [-13, 22], + [23, 36], + [37, 6], + [28, 23], + [19, 50], + [0, 25], + [-21, 45], + [4, 30], + [45, 8], + [33, -27], + [30, -2], + [54, 18], + [27, 29], + [50, 0], + [32, -14], + [54, 3], + [31, -32], + [14, -44], + [22, -19], + [160, -89], + [54, 0], + [80, 22], + [18, 48], + [-21, 54], + [23, 39], + [23, 16], + [0, 53], + [-9, 21], + [5, 25], + [44, 56], + [2, 22], + [-16, 33], + [14, 15], + [96, -9], + [189, -68], + [126, -61], + [82, -21], + [61, -14], + [244, -3], + [72, -35], + [82, -26], + [84, 27], + [386, -11], + [126, 8], + [103, 29], + [51, 44], + [219, 81], + [115, -41], + [100, -100], + [100, -129], + [100, -212], + [46, -153], + [8, -164], + [31, -111], + [1, -296], + [-29, -64], + [-24, -488], + [25, -71], + [0, -44], + [59, -163], + [-16, -54], + [-34, -38], + [-99, -46], + [-42, -50], + [29, -19], + [88, 0], + [41, -10], + [92, -105], + [17, -45], + [29, -35], + [62, -25], + [37, 70], + [17, 115], + [7, 204], + [-4, 230], + [-9, 54], + [-104, 262], + [-21, 121], + [8, 214], + [37, 66], + [25, 16], + [58, 7], + [42, -10], + [12, -19], + [8, 0], + [29, 13], + [26, 22], + [62, 194], + [7, 135], + [39, 94], + [-3, 7], + [-45, 11], + [-33, 38], + [-16, 47], + [-11, 81], + [16, 55], + [38, 69], + [48, 56], + [5, 24], + [84, 147], + [69, 94], + [91, 95], + [92, 129], + [84, 153], + [-86, 68], + [-16, 63], + [-52, 63], + [-70, 329], + [5, 411], + [-13, 9], + [-12, 26], + [0, 124], + [17, 72], + [27, 55], + [5, 221], + [-44, 77], + [-6, 102], + [-61, 4], + [-67, -9], + [-22, -34], + [-16, -59], + [-5, -98], + [-28, -128], + [-62, -121], + [-18, 0], + [-61, -41], + [-122, -106], + [-184, -206], + [-153, -114], + [-88, -155], + [-66, -141], + [-12, -46], + [-37, -41], + [-150, -71], + [-144, -121], + [-120, -189], + [-9, -40], + [-31, -32], + [-101, -51], + [-44, -35], + [-83, -34], + [-159, -26], + [-78, 2], + [-21, 13], + [-42, -2], + [-89, -28], + [-274, 26], + [-88, 24], + [-131, 21], + [-146, 55], + [-228, 129], + [-16, 21], + [-56, 19], + [-41, 0], + [-43, -12], + [-103, -43], + [-16, -14], + [-68, -24], + [-22, 0], + [-19, -10], + [-43, -55], + [-37, -12], + [-47, 0], + [-27, 8], + [-98, -8], + [-103, -68], + [-47, -7], + [-109, 2], + [-40, 13], + [-25, 21], + [-97, 53], + [-50, -1], + [-46, -12], + [-41, -28], + [-34, 2], + [-44, 12], + [-3, 19], + [29, 26], + [-98, 13], + [-103, -10], + [-74, -60], + [-37, 14], + [-44, 52], + [-116, 63], + [-34, 9], + [-100, -12], + [-22, 14], + [-6, 19], + [12, 29], + [66, 89], + [113, 93], + [26, 84], + [-12, 60], + [46, 46], + [31, 47], + [54, 22], + [-1, 91], + [-22, 64], + [-18, 34], + [-14, 52], + [-12, 8], + [-37, 90], + [-26, 34], + [-1, 20], + [-147, 171], + [-46, 41], + [-76, 47], + [-77, 82], + [-60, 8], + [-45, 16], + [-47, 2], + [-97, -29], + [-56, 9], + [-9, 24], + [3, 48], + [56, 79], + [43, 144], + [68, 105], + [31, 19], + [38, 3], + [19, -8], + [70, 16], + [138, 11], + [47, 21], + [53, -6], + [118, 74], + [59, 0], + [178, -23], + [87, 7], + [122, 60], + [78, -5], + [100, -47], + [59, 0], + [26, 14], + [0, 48], + [-121, 108], + [-30, 1], + [-37, 15], + [-69, 72], + [0, 33], + [15, 29], + [88, 76], + [7, 201], + [-34, 52], + [-99, -11], + [-35, 14], + [-12, 24], + [-19, 91], + [-6, 89], + [24, 64], + [-3, 151], + [44, 61], + [30, 22], + [32, 1], + [15, 22], + [-46, 16], + [-26, 113], + [28, 81], + [50, 55], + [9, 24], + [-6, 50], + [12, 27], + [28, 19], + [44, 4], + [59, -9], + [50, 5], + [44, 14], + [12, 12], + [202, 46], + [7, 17], + [-22, 17], + [-56, 7], + [-16, 16], + [2, 43], + [-139, 92], + [-123, 54], + [-62, 5], + [-24, 19], + [-26, 71], + [-12, 140], + [-72, 4], + [-22, 14], + [-6, 24], + [22, 20], + [5, 19], + [46, 42], + [0, 47], + [-31, 82], + [-40, 27], + [-53, 84], + [-28, 0], + [-6, -32], + [28, -57], + [-3, -33], + [-25, -15], + [-53, 10], + [-19, 31], + [-19, 38], + [69, 67], + [-31, 26], + [-3, 27], + [34, 50], + [-4, 64], + [47, 53], + [-4, 60], + [-24, 36], + [3, 7], + [-78, 2], + [-41, -12], + [-78, -67], + [-162, 43], + [12, 33], + [19, 8], + [7, 43], + [-116, 31], + [-47, 42], + [-25, 65], + [-91, 29], + [-25, 24], + [-96, 62], + [2, 117], + [-21, 73], + [-25, 23], + [-4, 31], + [22, 174], + [-1, 108], + [6, 50], + [19, 34], + [54, 56], + [30, 63], + [-115, 88], + [-47, 106], + [-77, 82], + [-13, 83], + [-45, 38], + [-69, 170], + [-4, 155], + [-31, 41], + [-49, 1], + [-21, 26], + [-40, 157], + [-28, 170], + [-44, 60], + [-60, 138], + [-69, 220], + [-31, 175], + [-48, 179], + [-13, 158], + [-151, 352], + [3, 124], + [59, 168], + [142, 143], + [53, 106], + [-8, 64], + [-70, -4], + [-43, -20], + [-40, -2], + [-22, 4], + [-37, 29], + [-13, 32], + [-5, 149], + [-32, 206], + [8, 185], + [-41, 21], + [-6, 27], + [46, 60], + [15, 236], + [91, 84], + [21, 36], + [-3, 129], + [-54, 98], + [-13, 125], + [50, 112], + [56, 75], + [81, 134], + [-4, 57], + [-31, 93], + [0, 39], + [22, 41], + [15, 76], + [-3, 96], + [59, 100], + [55, 35], + [26, 8], + [53, -4], + [81, -19], + [41, 0], + [27, 19], + [16, 53], + [40, 67], + [10, 38], + [77, 93], + [74, 166], + [90, 56], + [54, 0], + [38, -17], + [25, -33], + [0, -13], + [-56, -51], + [6, -14], + [90, -24], + [31, -45], + [-7, -50], + [12, -141], + [38, -59], + [23, -64], + [1, -33], + [28, -19], + [3, -17], + [-6, -184], + [10, -41], + [62, -36], + [1, -95], + [41, -34], + [121, -66], + [3, -91], + [-34, -46], + [-44, -26], + [21, -92], + [36, -59], + [-8, -199], + [18, -52], + [31, -36], + [16, -36], + [0, -31], + [50, -38], + [41, -19], + [40, 7], + [63, 60], + [15, 29], + [-16, 320], + [31, 111], + [-22, 133], + [-57, 108], + [-11, 157], + [-27, 20], + [-9, 24], + [3, 122], + [12, 38], + [-29, 72], + [-3, 48], + [29, 57], + [-1, 89], + [19, 21], + [37, 9], + [26, 20], + [56, 138], + [5, 53], + [25, 22], + [13, 75], + [0, 100], + [45, 47], + [54, -41], + [16, -176], + [22, -118], + [15, -14], + [10, -26], + [3, -59], + [27, -65], + [3, -50], + [30, -36], + [-6, -36], + [-19, -17], + [1, -238], + [92, -41], + [84, 83], + [15, 111], + [0, 241], + [-6, 34], + [-37, 33], + [6, 101], + [15, 13], + [-2, 157], + [-23, 4], + [-3, 19], + [6, 208], + [12, 63], + [81, 62], + [13, 19], + [3, 29], + [55, 81], + [44, 17], + [50, -2], + [41, -36], + [50, -22], + [183, 154], + [125, -2], + [3, 9], + [-31, 16], + [0, 73], + [19, 14], + [49, 19], + [35, -2], + [22, -14], + [49, -3], + [50, 0], + [28, 15], + [-6, 23], + [-28, 19], + [-12, 20], + [-19, 48], + [0, 28], + [40, 52], + [74, 0], + [154, -71], + [68, -17], + [77, -6], + [27, 21], + [24, 39], + [58, 58], + [13, 29], + [8, 83], + [-19, 26], + [-26, 14], + [-12, 26], + [9, 87], + [-4, 79], + [41, 52], + [-4, 72], + [-15, 60], + [5, 143], + [116, 93], + [59, 23], + [44, -8], + [81, -207], + [10, -149], + [41, -86], + [44, -62], + [46, -26], + [116, -45], + [34, -32], + [32, -16], + [116, -134], + [106, -79], + [106, -105], + [66, -24], + [21, 41], + [-118, 169], + [-7, 53], + [-44, 100], + [-9, 84], + [62, 89], + [12, 33], + [0, 53], + [52, 151], + [75, 101], + [-9, 21], + [-34, 14], + [-32, 31], + [-28, 55], + [-19, 86], + [-41, 27], + [-3, 28], + [153, 112], + [93, 4], + [22, -44], + [29, -21], + [74, -10], + [57, -23], + [28, -29], + [0, -50], + [22, -15], + [31, 17], + [37, 39], + [122, 57], + [43, 41], + [6, 41], + [19, 16], + [28, 17], + [78, 3], + [41, -15], + [131, -112], + [62, -100], + [22, -127], + [20, -36], + [56, -7], + [28, 24], + [6, 36], + [37, 43], + [14, 46], + [55, 52], + [141, 46], + [33, 19], + [106, -5], + [41, -9], + [87, -43], + [41, -43], + [61, 23], + [45, 39], + [72, 27], + [46, 0], + [50, 9], + [6, 10], + [22, 7], + [128, -2], + [55, 28], + [20, 18], + [-10, 31], + [-49, 26], + [-54, 16], + [-12, 34], + [3, 60], + [18, 28], + [3, 60], + [-12, 74], + [-25, 22], + [-10, 31], + [3, 31], + [61, 65], + [58, 43], + [18, 21], + [3, 20], + [-25, 93], + [4, 38], + [-41, 37], + [-51, 131], + [3, 26], + [69, 62], + [15, 58], + [-9, 31], + [-34, 24], + [-47, 59], + [-13, 68], + [19, 62], + [115, 95], + [28, 34], + [0, 33], + [-25, 17], + [-81, -12], + [-44, 12], + [-54, 30], + [-34, 62], + [1, 56], + [-27, 33], + [-11, 49], + [-31, 58], + [18, 106], + [15, 22], + [118, 99], + [49, 21], + [123, 13], + [108, 29], + [166, 74], + [259, 166], + [76, 39], + [57, 46], + [92, 57], + [50, 14], + [371, -3], + [166, 12], + [67, -2], + [85, -15], + [237, -64], + [182, -20], + [336, 10], + [110, -8], + [168, 0], + [97, -20], + [32, -14], + [23, -20], + [113, -156], + [20, -213], + [35, -69], + [13, -48], + [72, -100], + [91, -88], + [77, -39], + [46, -16], + [89, 1], + [42, -24], + [82, 6], + [160, 34], + [176, 71], + [94, 76], + [59, 83], + [36, 35], + [161, 138], + [96, 46], + [69, -1], + [32, -8], + [92, -63], + [17, -48], + [-15, -96], + [26, -98], + [-9, -156], + [-44, -72], + [-95, -93], + [-12, -45], + [-51, -100], + [8, -65], + [-53, -56], + [7, -66], + [-16, -32], + [18, -52], + [18, -21], + [114, -58], + [116, -31], + [110, 2], + [85, 17], + [153, 45], + [166, 26], + [288, 70], + [148, 11], + [138, -8], + [47, 20], + [60, 3], + [49, -8], + [79, 0], + [84, 11], + [196, 52], + [287, 113], + [244, 38], + [87, 7], + [350, -2], + [139, 9], + [60, 23], + [43, 26], + [99, 104], + [9, 46], + [0, 86], + [-24, 37], + [-52, 25], + [-42, 12], + [-78, 0], + [-46, 9], + [-54, 34], + [-84, 79], + [-19, 35], + [-15, 108], + [0, 38], + [48, 37], + [60, 113], + [84, 55], + [145, 50], + [103, 50], + [81, 28], + [139, 21], + [256, -6], + [149, -60], + [183, -35], + [18, -16], + [103, -7], + [202, 94], + [63, 7], + [25, 31], + [42, 10], + [108, -7], + [115, 18], + [53, 71], + [60, 32], + [61, 13], + [91, 42], + [63, 41], + [6, 102], + [72, 140], + [55, 46], + [48, -28], + [9, 35], + [-27, 38], + [37, 70], + [-16, 100], + [-37, 85], + [-3, 47], + [45, 11], + [18, 42], + [31, 35], + [8, 48], + [-12, 33], + [-30, 25], + [-60, 90], + [-18, 54], + [-35, 34], + [-23, 95], + [-1, 72], + [-17, -1], + [-55, 45], + [-36, 14], + [-30, 2], + [-33, 55], + [8, 26], + [30, 28], + [139, 99], + [64, 65], + [62, 132], + [-6, 104], + [-27, 74], + [-127, 83], + [-3, 30], + [21, 35], + [48, 48], + [61, 13], + [126, -56], + [55, -49], + [79, -85], + [33, -102], + [-3, -162], + [-37, -35], + [-36, -51], + [-11, -2], + [-24, -37], + [-3, -60], + [-36, -32], + [-33, -47], + [-21, -53], + [15, -95] + ], + [ + [73938, 478773], + [85, -124], + [108, -193], + [61, -83], + [70, -123], + [0, -89], + [61, -100], + [8, -100], + [16, -35], + [38, -47], + [23, -47], + [0, -82], + [16, -36], + [31, -29], + [15, -47], + [0, -88], + [31, -47], + [54, -30], + [100, -135], + [77, -235], + [0, -64], + [-23, -59], + [8, -71], + [61, -76], + [47, -77], + [54, -270], + [8, -147], + [46, -129], + [123, -177], + [54, -41], + [115, -141], + [16, -71], + [0, -82], + [-15, -53], + [-46, -106], + [-8, -59], + [-54, -88], + [-53, -41], + [-16, -59], + [0, -247], + [16, -47], + [0, -59], + [54, -141], + [0, -165], + [-89, -154], + [11, -96], + [54, -79], + [0, -154], + [-125, -156], + [-182, -189], + [-4, -43], + [-14, -20], + [0, -244], + [11, -30], + [36, -49], + [35, -30], + [26, -41], + [21, -69], + [-3, -38], + [-107, -145], + [-14, -215], + [-15, -14], + [-32, 1], + [-58, -17], + [-121, -84], + [-111, 30], + [-57, -30], + [-40, -77], + [15, -121], + [50, -57], + [61, -22], + [50, 22], + [57, -5], + [32, -31], + [-3, -30], + [-18, -27], + [-132, -99], + [-33, -41], + [-64, -44], + [-64, -107], + [-11, -82], + [18, -44], + [43, -33], + [25, -41], + [4, -44], + [25, -43], + [3, -52], + [-7, -34], + [-21, -27], + [-75, -44], + [-14, -134], + [-47, -66], + [-7, -27], + [-25, -39], + [-50, -27], + [-57, 0], + [-22, -22], + [-61, -11], + [-118, 41], + [-61, 39], + [-118, 24], + [-122, 5], + [-54, 17], + [-21, 43], + [-36, 36], + [-72, 19], + [-64, 0], + [-47, -17], + [-30, -3], + [-23, -29], + [-69, -6], + [-192, 5], + [-131, -58], + [-62, -59], + [-76, 5], + [-31, -29], + [-31, -47], + [0, -17], + [39, -18], + [92, 0], + [8, -100], + [23, -6], + [38, -6], + [123, 41], + [31, 42], + [153, -71], + [55, 0], + [69, -11], + [107, -65], + [85, -23], + [85, 0], + [92, 17], + [146, -6], + [84, -35], + [47, -29], + [23, -41], + [0, -147], + [46, -24], + [31, -29], + [77, -12], + [61, -29], + [39, -130], + [0, -46], + [30, -24], + [1, -88], + [-39, -30], + [-7, -41], + [54, -47], + [61, -82], + [0, -94], + [-83, -2], + [-36, 30], + [-43, -49], + [-11, -53], + [4, -38], + [33, -43], + [53, -14], + [64, 30], + [51, 11], + [21, -24], + [-29, -17], + [-21, -30], + [18, -41], + [49, -31], + [15, -35], + [-1, -89], + [9, -26], + [-29, -47], + [-47, -13], + [-32, -30], + [18, -77], + [0, -49], + [-10, -36], + [-29, -36], + [-10, -38], + [-9, -4], + [18, -61], + [46, -65], + [-100, -76], + [-20, -93], + [-61, -25], + [-82, -11], + [-68, 14], + [-96, 58], + [-54, 8], + [-90, -6], + [-35, 33], + [-76, 5], + [-36, -13], + [-127, -12], + [-223, -41], + [-76, -35], + [-100, -71], + [-64, -17], + [-115, 2], + [-50, 17], + [-86, 90], + [-47, -3], + [-28, -30], + [-7, -24], + [39, -55], + [79, -22], + [96, -14], + [98, 3], + [214, -43], + [132, -2], + [115, -14], + [67, -44], + [77, -8], + [86, -36], + [202, -15], + [106, -29], + [211, -176], + [77, -29], + [92, -7], + [118, 102], + [87, 37], + [57, 15], + [87, 14], + [182, -7], + [19, -88], + [-28, -66], + [-29, -125], + [-38, -44], + [-68, -44], + [-34, 0], + [-17, -13], + [-45, -6], + [1, -172], + [-48, -73], + [-67, -59], + [-50, -63], + [60, -84], + [86, -22], + [58, 0], + [85, 37], + [173, 0], + [77, -37], + [173, -212], + [29, -67], + [115, -95], + [29, -124], + [-29, -74], + [10, -117], + [77, -44], + [115, 7], + [105, 51], + [192, 125], + [29, 89], + [76, 73], + [106, 73], + [115, 45], + [105, 73], + [87, 162], + [19, 95], + [57, 184], + [86, 73], + [96, 59], + [13, -7], + [124, 22], + [47, -52], + [14, -76], + [0, -69], + [-18, -63], + [-39, -66], + [-60, -164], + [-39, -152], + [12, -63], + [-8, -89], + [-77, -176], + [-23, -100], + [38, -53], + [22, -11], + [14, -30], + [-11, -47], + [-58, -33], + [-58, -50], + [-15, -58], + [0, -83], + [23, -65], + [53, -52], + [24, -71], + [161, 118], + [38, 53], + [54, 41], + [46, 94], + [115, 159], + [92, 36], + [85, 5], + [107, 36], + [146, 88], + [43, 2], + [22, -8], + [28, -16], + [4, -31], + [-4, -52], + [-75, -90], + [-28, -52], + [-101, -121], + [-21, -123], + [4, -104], + [78, -77], + [4, -36], + [-39, -13], + [-50, 2], + [-36, -33], + [-4, -33], + [-35, -54], + [-68, -28], + [-44, 31], + [-64, 0], + [-57, -25], + [-68, -74], + [11, -72], + [-43, -46], + [-79, -22], + [-25, 57], + [-40, 19], + [-78, 6], + [-44, -12], + [-26, 6], + [-60, -35], + [-63, -7], + [-52, 14], + [-23, 40], + [-67, 19], + [-52, 44], + [-99, -41], + [-23, -94], + [0, -118], + [-43, -13], + [-22, -34], + [-57, 15], + [-39, 33], + [-62, 76], + [-26, 15], + [-36, 2], + [1, -82], + [-39, -95], + [-61, -223], + [-31, -59], + [0, -223], + [-15, -89], + [-23, -52], + [-77, -77], + [-3, -21], + [-56, -68], + [19, -110], + [0, -54], + [-29, -22], + [-61, 4], + [-67, 72], + [-19, 48], + [-44, 33], + [-90, 40], + [-58, 11], + [-76, -19], + [-62, -72], + [-95, -66], + [-119, -26], + [-82, 0], + [-100, 22], + [-301, 29], + [-91, 0], + [-105, -11], + [-200, -48], + [-91, -29], + [-148, -66], + [-133, -7], + [-115, -30], + [-9, -18], + [19, -33], + [38, -7], + [162, 26], + [186, 65], + [396, 67], + [82, 3], + [95, -3], + [53, -37], + [124, -11], + [43, -22], + [119, -7], + [210, -3], + [76, 29], + [82, 18], + [38, 22], + [62, 19], + [105, -8], + [38, -47], + [62, -19], + [72, -3], + [48, 11], + [61, 58], + [15, 77], + [19, 48], + [24, 29], + [95, 54], + [33, 34], + [5, 32], + [24, 37], + [0, 50], + [41, 58], + [69, 54], + [21, 40], + [45, 28], + [49, 14], + [86, -30], + [13, -86], + [15, -37], + [79, -65], + [84, -105], + [16, -53], + [93, -159], + [30, -77], + [39, -217], + [31, -70], + [23, -30], + [7, -35], + [77, -53], + [31, -41], + [-8, -159], + [31, -235], + [86, -96], + [146, -22], + [48, -14], + [38, -36], + [0, -41], + [19, -36], + [34, -51], + [52, -55], + [-5, -40], + [15, -52], + [38, -11], + [62, -47], + [38, -77], + [15, -87], + [57, -48], + [52, -73], + [72, -33], + [19, -29], + [29, -120], + [19, -33], + [29, -18], + [48, -8], + [38, 8], + [38, 40], + [12, 3], + [40, -12], + [15, -15], + [0, -35], + [19, -40], + [67, -14], + [62, 14], + [47, 22], + [67, 66], + [91, 47], + [52, 0], + [34, -10], + [33, -29], + [5, -26], + [-101, -119], + [-15, -7], + [-23, -136], + [31, -59], + [8, -88], + [67, -37], + [267, -14], + [119, 3], + [115, 19], + [62, 22], + [53, 44], + [14, 76], + [38, 33], + [105, 0], + [67, -18], + [95, -238], + [82, -87], + [24, -62], + [5, -143], + [-34, -47], + [-124, -99], + [-176, -95], + [-139, -44], + [-110, -18], + [-291, -19], + [-90, -11], + [-72, -18], + [-219, -99], + [-86, -69], + [-48, -80], + [-138, -181], + [-107, -200], + [15, -124], + [1, -323], + [-62, -118], + [-61, -53], + [-23, -47], + [0, -223], + [-23, -59], + [-7, -83], + [-16, -29], + [-131, 0], + [-138, -24], + [-48, -29], + [0, -71], + [-72, -63], + [-33, -3], + [-79, 41], + [-64, 61], + [-14, 42], + [3, 34], + [38, 65], + [0, 162], + [-85, 55], + [-81, 131], + [-34, 22], + [-28, 44], + [0, 69], + [-24, 92], + [-48, 95], + [36, 64], + [16, 177], + [58, 150], + [4, 54], + [18, 57], + [-63, 80], + [-16, 71], + [0, 119], + [-52, 36], + [-113, 51], + [-96, 18], + [-36, 0], + [-60, -26], + [-152, -17], + [-73, -40], + [-62, -56], + [-322, -246], + [-118, -134], + [-62, -48], + [-129, -26], + [-58, 10], + [-65, -18], + [-123, -1], + [-299, 41], + [-77, 24], + [-8, 241], + [38, 165], + [100, 147], + [7, 212], + [-8, 223], + [-24, 44], + [-4, 84], + [47, 88], + [76, 73], + [62, 41], + [67, 61], + [48, 117], + [38, 63], + [47, 62], + [58, 56], + [-24, 139], + [-48, 53], + [-19, 113], + [0, 89], + [-102, 135], + [-15, 82], + [-24, 64], + [-85, 71], + [-190, 206], + [-96, 69], + [-19, 40], + [0, 66], + [14, 48], + [62, 94], + [43, 45], + [20, 32], + [0, 18], + [95, 88], + [5, 55], + [-15, 19], + [-96, -8], + [-328, -179], + [0, -18], + [19, -30], + [0, -36], + [-24, -26], + [-62, -22], + [-48, 0], + [-43, -18], + [-24, -26], + [-14, -69], + [0, -26], + [14, -7], + [67, 48], + [48, 14], + [105, -25], + [62, -84], + [-10, -4], + [78, -58], + [130, -135], + [37, -53], + [38, -111], + [5, -152], + [-18, -64], + [-38, -55], + [-40, -35], + [-65, -8], + [-33, -23], + [-165, -31], + [-70, 6], + [-86, 31], + [-45, 2], + [-19, -8], + [-6, -23], + [27, -24], + [-83, -31], + [-27, -2], + [-38, -20], + [-34, -71], + [-8, -45], + [5, -90], + [-64, -58], + [-51, -25], + [-40, 11], + [-22, 26], + [11, 72], + [-35, 29], + [-43, 14], + [-65, -2], + [-21, -39], + [-86, -26], + [-57, -31], + [-50, -13], + [-43, 19], + [-98, 196], + [-78, 30], + [-233, 23], + [-76, 40], + [-173, 46], + [-75, 38], + [-25, -4], + [-25, 6], + [-17, -8], + [-60, -76], + [-40, -14], + [-54, 8], + [-29, 12], + [-24, 58], + [-15, 14], + [-107, 30], + [-62, 82], + [-200, 29], + [-84, 29], + [-285, 0], + [-246, 47], + [-115, -6], + [-58, -88], + [-7, -30], + [-38, -24], + [-121, -49], + [-103, -17], + [-180, -139], + [-107, -42], + [-38, -76], + [-92, -35], + [-85, -71], + [-123, -47], + [-115, -76], + [-69, -77], + [-100, -65], + [-46, -65], + [-23, -94], + [0, -330], + [-15, -33], + [3, -88], + [59, -162], + [-2, -56], + [-24, -35], + [-38, -18], + [-59, -12], + [-51, -21], + [-54, -8], + [-53, 12], + [-143, 12], + [-45, 27], + [-119, 133], + [-91, 66], + [-29, 9], + [-91, 151], + [-46, 29], + [0, 200], + [22, 77], + [-60, 52], + [-28, 61], + [-59, 68], + [-54, -2], + [-37, 20], + [-62, 18], + [-30, 42], + [8, 105], + [116, 152], + [-4, 45], + [-66, 92], + [-65, 46], + [-32, 88], + [-49, 0], + [-80, -41], + [-86, -25], + [-30, -26], + [-13, -52], + [-19, -21], + [-40, -18], + [-48, 6], + [-30, 31], + [8, 22], + [32, 17], + [22, 23], + [-3, 16], + [-24, 16], + [-67, -10], + [-27, 8], + [0, 27], + [35, 27], + [92, 47], + [7, 53], + [-7, 112], + [-16, 47], + [-54, 59], + [-146, 17], + [-23, 47], + [8, 59], + [55, 111], + [56, 62], + [32, 15], + [13, 26], + [-64, 47], + [-105, 25], + [-107, 4], + [-45, 23], + [-97, 4], + [-102, -23], + [-94, -50], + [-78, -22], + [-18, -22], + [-9, -71], + [-40, -80], + [-46, -35], + [-70, 4], + [-29, 33], + [-90, 13], + [-13, -37], + [4, -210], + [-50, -140], + [-45, -18], + [-64, -95], + [-95, -86], + [-8, -66], + [-30, -43], + [-35, -34], + [-75, -47], + [-32, -32], + [-11, -64], + [3, -54], + [-48, -10], + [-121, 14], + [-102, 43], + [-35, 19], + [-61, 52], + [-33, 7], + [-39, -88], + [-15, -100], + [68, -104], + [138, -40], + [31, -41], + [23, -59], + [16, -53], + [0, -177], + [-7, -176], + [-23, -88], + [0, -36], + [161, -17], + [100, -41], + [231, -200], + [54, -59], + [22, -44], + [9, 1], + [-2, -101], + [11, -10], + [46, 37], + [13, 82], + [31, 35], + [146, 6], + [0, -8], + [40, -4], + [5, -21], + [-16, -22], + [-26, -10], + [-51, -5], + [13, -31], + [38, -32], + [78, -31], + [62, -48], + [27, -44], + [46, -8], + [92, 11], + [60, 21], + [57, 6], + [102, -2], + [76, -42], + [128, -29], + [545, 7], + [115, 23], + [108, -29], + [61, -59], + [55, -88], + [169, -82], + [196, -28], + [26, 10], + [51, 0], + [56, -20], + [19, -23], + [1, -61], + [-36, -27], + [-5, -29], + [46, -51], + [40, -21], + [38, -6], + [8, 19], + [40, 8], + [46, -14], + [27, -25], + [42, -15], + [28, 19], + [37, 13], + [70, 0], + [139, -27], + [54, -27], + [49, -35], + [56, -20], + [70, 2], + [70, 33], + [66, 10], + [57, 0], + [62, -20], + [42, -31], + [50, -15], + [36, -29], + [11, -131], + [-123, -150], + [-29, -77], + [-71, -121], + [-24, -62], + [-19, -95], + [0, -77], + [-19, -72], + [0, -66], + [19, -60], + [-52, -54], + [-67, -11], + [-267, -3], + [-91, 3], + [-76, 22], + [-72, 3], + [-76, -7], + [-67, -44], + [-57, -55], + [-33, -54], + [5, -114], + [42, -54], + [63, -51], + [243, -128], + [124, -84], + [58, -22], + [124, -11], + [210, -73], + [33, 8], + [5, 15], + [-72, 69], + [-219, 138], + [-77, 41], + [-43, 32], + [-133, 70], + [-206, 138], + [-9, 84], + [38, 33], + [105, -3], + [57, -15], + [10, -33], + [42, -18], + [144, -33], + [95, -3], + [58, 3], + [75, 30], + [115, 66], + [76, 109], + [3, 134], + [49, 173], + [33, 48], + [77, 160], + [133, 106], + [105, 168], + [16, 64], + [112, 122], + [138, 177], + [169, 94], + [208, 100], + [69, 6], + [53, -59], + [-30, -59], + [-23, -123], + [-92, -300], + [-61, -59], + [-54, -88], + [-30, -71], + [0, -106], + [61, -5], + [38, 70], + [62, 23], + [154, 6], + [115, -64], + [184, -188], + [55, -194], + [-8, -36], + [-69, -64], + [-54, -29], + [-38, -48], + [-8, -47], + [100, -59], + [54, -64], + [92, -35], + [116, -18], + [61, 0], + [54, 6], + [30, 24], + [24, -24], + [-16, -64], + [108, -36], + [123, 30], + [75, 57], + [4, 11], + [24, 10], + [33, -22], + [0, -89], + [12, -66], + [49, -71], + [4, -34], + [0, -40], + [-101, -50], + [-65, -19], + [-105, 7], + [-61, 27], + [-31, 46], + [-65, 1], + [-29, 11], + [-33, 22], + [-29, 35], + [-320, 87], + [-84, 11], + [-123, 42], + [15, -30], + [46, -41], + [39, -88], + [107, -65], + [116, -41], + [76, -53], + [28, -2], + [65, -40], + [28, -47], + [8, -105], + [-28, -37], + [-60, -15], + [-29, -53], + [0, -37], + [-24, -50], + [-85, -77], + [-36, -59], + [-20, -56], + [-57, -37], + [-57, -2], + [-177, -65], + [39, -136], + [30, -70], + [16, -106], + [30, -59], + [24, -23], + [84, -35], + [238, 29], + [115, 124], + [62, -24], + [123, -70], + [23, -18], + [15, -41], + [62, 12], + [38, 47], + [54, 35], + [77, 0], + [53, 48], + [31, 5], + [61, 41], + [39, 42], + [84, 47], + [54, 135], + [46, 12], + [69, -47], + [46, -12], + [108, 12], + [99, -6], + [54, -41], + [54, -200], + [0, -41], + [31, -53], + [54, -71], + [108, -11], + [82, 10], + [55, 19], + [62, 45], + [5, 32], + [-19, 59], + [64, 5], + [42, 18], + [123, -23], + [22, 44], + [-32, 33], + [0, 21], + [28, 23], + [82, 26], + [61, 35], + [63, 4], + [61, -22], + [53, -29], + [67, -7], + [89, -48], + [44, -4], + [100, 77], + [61, 106], + [62, 18], + [45, -12], + [39, -71], + [16, -76], + [23, -41], + [-16, -76], + [-138, -177], + [-61, -47], + [-108, -71], + [-76, -12], + [-85, -59], + [-61, -19], + [-53, -58], + [-19, -48], + [-5, -51], + [15, -147], + [193, -171], + [38, -76], + [0, -71], + [23, -147], + [19, -27], + [76, -29], + [33, -22], + [5, -36], + [24, -29], + [0, -57], + [82, 0], + [126, 60], + [143, 70], + [23, 53], + [137, 59], + [147, -6], + [84, 59], + [85, 24], + [122, 111], + [100, 42], + [62, 64], + [92, 18], + [76, 65], + [177, 65], + [154, 117], + [99, 24], + [54, 59], + [23, 53], + [46, 41], + [23, -30], + [0, -135], + [-30, -65], + [-31, -188], + [-69, -200], + [-54, -17], + [-77, 17], + [-76, -23], + [-100, -41], + [-69, -54], + [-46, -58], + [-77, -59], + [-69, -118], + [-38, -41], + [-23, -71], + [-46, -58], + [8, -60], + [38, -117], + [31, -153], + [0, -64], + [-53, -159], + [-8, -77], + [-146, -141], + [-8, -88], + [-38, -88], + [84, -136], + [17, -235], + [-8, -165], + [31, -76], + [-47, -118], + [-149, -41], + [-8, -18], + [-39, -18], + [-45, -43], + [-152, -216], + [-208, -91], + [-282, -147], + [-154, -63], + [-86, 14], + [-74, -42], + [-15, -29], + [115, -141], + [0, -177], + [23, -70], + [39, -48], + [16, -170], + [0, -141], + [30, -88], + [47, -41], + [-254, -101], + [-45, -88], + [-54, -71], + [-15, -76], + [-62, -123], + [-7, -36], + [7, -94], + [-23, -88], + [-61, -18], + [-85, -53], + [-45, -88], + [-85, -94], + [-38, -65], + [-23, -70], + [0, -65], + [-15, -95], + [-62, -46], + [-77, -136], + [1, -176], + [-69, -124], + [-61, -82], + [-54, -171], + [-15, -147], + [-54, -112], + [0, -70], + [77, -30], + [292, -264], + [54, -88], + [15, -94], + [0, -88], + [-92, -89], + [-168, -235], + [-16, -65], + [-14, -371], + [7, -64], + [31, -106], + [8, -100], + [31, -65], + [69, -58], + [46, -89], + [0, -117], + [47, -135], + [-8, -183], + [-15, -100], + [8, -129], + [77, -124], + [23, -58], + [-192, -230], + [-39, -112], + [-206, -212], + [-69, -112], + [-62, -70], + [-8, -112], + [-22, -76], + [46, -91], + [88, -60], + [19, -121], + [0, -351], + [-60, -132], + [0, -58], + [13, -9], + [-21, -24], + [-7, -36], + [107, -165], + [8, -70], + [-31, -71], + [-7, -65], + [23, -153], + [54, -76], + [0, -71], + [-31, -112], + [23, -58], + [16, -100], + [77, -29], + [46, -59], + [7, -218], + [-7, -65], + [-84, -129], + [0, -59], + [115, -100], + [23, -106], + [0, -70], + [-53, -106], + [-16, -53], + [0, -71], + [39, -88], + [-8, -129], + [-53, -106], + [-85, -6], + [-261, 23], + [-130, -94], + [-176, -218], + [-62, -88], + [-15, -53], + [-15, -165], + [16, -52], + [45, -48], + [177, -46], + [62, -35], + [23, -24], + [22, -47], + [1, -47], + [-31, -65], + [-77, -59], + [-45, -53], + [-39, -29], + [8, -47], + [-38, -71], + [-16, -65], + [-31, -53], + [-99, -70], + [-23, -36], + [-15, -88], + [-146, -64], + [-77, -48], + [0, -164], + [-38, -71], + [-54, -65], + [-115, -82], + [-45, -59], + [-16, -47], + [-38, -24], + [-85, 0], + [-84, 36], + [-77, 5], + [-115, -29], + [-92, -59], + [-77, -24], + [-92, -93], + [-45, -83], + [0, -53], + [23, -47], + [61, -12], + [16, -35], + [-39, -41], + [-53, 29], + [-169, -35], + [-77, -36], + [-23, -41], + [0, -35], + [31, -82], + [99, -47], + [0, -47], + [-99, -106], + [-15, -112], + [-46, -70], + [-61, -130], + [-54, -71], + [-38, -35], + [-31, -47], + [-115, -89], + [-123, -64], + [-84, -71], + [-46, 53], + [54, 88], + [-77, 88], + [-108, 30], + [-107, -18], + [-69, 0], + [-162, 94], + [-153, 141], + [-16, -18], + [-38, -11], + [-107, -12], + [-77, -18], + [-84, -41], + [-139, -118], + [-45, -70], + [-23, -100], + [0, -47], + [69, -130], + [-23, -35], + [-77, -35], + [-92, -12], + [-99, 0], + [-169, 17], + [-108, -6], + [-54, -53], + [-92, -29], + [1, -41], + [-46, 58], + [0, 53], + [-39, 71], + [-46, 53], + [-77, 2], + [-88, 15], + [-40, 34], + [-45, 15], + [-60, 6], + [-89, 22], + [-205, 15], + [-46, 14], + [-271, 5], + [-46, 47], + [0, 71], + [15, 53], + [-46, 29], + [-92, 35], + [-131, 100], + [-54, 94], + [-38, 47], + [-54, 6], + [-46, -6], + [8, -170], + [39, -94], + [2, -478], + [40, -46], + [45, -13], + [75, -63], + [12, -34], + [-27, -23], + [0, -34], + [60, -49], + [49, -28], + [44, -12], + [12, -16], + [4, -21], + [-16, -22], + [-44, -12], + [-41, -46], + [17, -96], + [76, -142], + [90, -67], + [96, 6], + [36, -6], + [40, -75], + [73, 10], + [60, 49], + [12, 22], + [68, 34], + [69, 0], + [20, -25], + [7, -41], + [25, -21], + [4, -70], + [-36, -25], + [-60, -16], + [-57, -3], + [-45, 16], + [-87, -6], + [-100, -23], + [-100, 0], + [-74, 22], + [-84, -6], + [-149, 6], + [-49, 18], + [-36, 44], + [-44, 33], + [-8, 27], + [-61, 44], + [-72, 22], + [-44, 43], + [-33, 15], + [-113, -3], + [-80, -34], + [-40, -70], + [-28, -13], + [-48, 12], + [-182, 167], + [-113, 15], + [-20, 28], + [-28, 6], + [-65, -3], + [-32, 6], + [-24, 37], + [8, 18], + [44, 22], + [33, 34], + [-13, 18], + [-60, 6], + [-40, 13], + [8, 68], + [40, 49], + [4, 31], + [-32, 49], + [-57, 50], + [-32, 49], + [-44, 46], + [-8, 37], + [-37, 31], + [-52, 3], + [-45, 12], + [-16, 28], + [25, 65], + [-4, 61], + [-29, 28], + [-109, 56], + [-13, 17], + [-87, 38], + [-92, 23], + [-107, 53], + [-131, 30], + [-238, 99], + [-146, 88], + [-241, 216], + [-16, -4], + [-125, 105], + [-16, 49], + [7, 4], + [7, 54], + [-15, 41], + [-62, 52], + [-78, -3], + [-20, 22], + [0, 50], + [-41, 84], + [-52, 168], + [3, 53], + [44, 55], + [21, 8], + [76, 99], + [10, 20], + [-6, 39], + [52, 78], + [32, 9], + [53, 0], + [74, -5], + [53, -18], + [208, 12], + [38, 59], + [69, 65], + [115, 12], + [77, 29], + [22, 41], + [-23, 36], + [-65, 38], + [-106, 28], + [-40, 21], + [-37, 34], + [-2, 34], + [-11, 9], + [0, 106], + [38, 147], + [33, 86], + [18, 20], + [53, 18], + [72, 83], + [-32, 34], + [-53, -25], + [-80, 22], + [-40, 28], + [-150, 160], + [-84, 163], + [-21, 93], + [-4, 129], + [4, 124], + [24, 71], + [4, 120], + [-9, 62], + [-24, 46], + [-28, 111], + [-77, 185], + [-8, 68], + [-36, 114], + [-9, 65], + [-24, 34], + [-32, 0], + [-20, -13], + [1, -234], + [56, -222], + [33, -287], + [-20, -262], + [-88, -642], + [-23, -120], + [-40, -53], + [-57, -28], + [-64, 6], + [-53, 19], + [-60, 37], + [-69, 28], + [-148, 49], + [-81, 6], + [-45, -7], + [-76, -43], + [-48, -15], + [-71, 6], + [-9, -5], + [8, -109], + [-16, -96], + [-61, -102], + [-72, -43], + [-80, -18], + [-177, 18], + [-45, 24], + [-44, 75], + [-45, 46], + [-36, 59], + [-69, 157], + [-28, 126], + [-57, 77], + [-36, 95], + [-24, 35], + [-56, 52], + [-101, 135], + [-122, 105], + [-56, 84], + [77, 111], + [-5, 40], + [-40, 77], + [-53, 64], + [-100, 81], + [-109, 58], + [-52, 10], + [-57, 24], + [-80, 55], + [-105, 41], + [-49, 12], + [-52, 0], + [-64, -25], + [-20, -16], + [-41, -3], + [-32, 16], + [-56, 6], + [-12, -34], + [28, -19], + [0, -43], + [48, -21], + [146, -31], + [241, -83], + [149, -157], + [198, -274], + [8, -90], + [-16, -114], + [-52, -102], + [-36, -46], + [-64, -238], + [-28, -58], + [-177, -3], + [-113, -50], + [-225, -59], + [-620, 3], + [-97, -41], + [-213, -127], + [-40, -43], + [-157, -129], + [-76, -96], + [-169, -118], + [-96, -145], + [-40, -83], + [-32, -105], + [-44, -93], + [4, -58], + [48, 6], + [121, 127], + [48, 71], + [20, 55], + [-5, 93], + [41, 58], + [128, 96], + [222, 136], + [128, 136], + [61, 86], + [47, 41], + [81, 31], + [88, 15], + [126, 0], + [245, -15], + [109, -37], + [116, 0], + [411, -82], + [238, -71], + [20, -16], + [76, 3], + [33, 16], + [56, -6], + [52, -25], + [45, -43], + [8, -25], + [-4, -27], + [-24, -16], + [-4, -18], + [-11, -2], + [-26, -205], + [-69, -170], + [-77, -130], + [-199, -241], + [-18, -41], + [23, -71], + [-15, -53], + [-92, -153], + [-100, -117], + [-8, -65], + [16, -65], + [0, -76], + [-100, -124], + [-220, -197], + [-40, -45], + [-47, -119], + [-45, -66], + [-14, -64], + [-23, -41], + [31, -36], + [-15, -64], + [-38, -18], + [-75, 0], + [-54, 8], + [-48, -15], + [-24, -25], + [20, -31], + [48, -6], + [56, 9], + [24, -9], + [16, -34], + [1, -89], + [16, -31], + [52, -9], + [77, -47], + [20, -49], + [32, -40], + [5, -58], + [-73, -68], + [4, -71], + [24, -40], + [37, -31], + [88, -28], + [-7, -59], + [-31, -35], + [-7, -88], + [38, -83], + [69, -100], + [72, -60], + [-8, -68], + [-72, -56], + [24, -40], + [-28, -65], + [68, -55], + [2, -17], + [63, -70], + [0, -80], + [-24, -31], + [8, -12], + [113, -34], + [32, -18], + [48, -34], + [41, -49], + [64, -3], + [73, 43], + [72, 28], + [16, 52], + [-17, 62], + [4, 61], + [26, 30], + [68, -7], + [15, -19], + [56, -34], + [49, -62], + [28, -62], + [16, -117], + [0, -52], + [-15, -65], + [-40, -93], + [0, -67], + [12, -50], + [44, -40], + [85, -49], + [121, -40], + [4, -37], + [-69, -9], + [-44, -28], + [-38, -45], + [-7, -36], + [136, -132], + [2, -18], + [28, -22], + [89, -9], + [50, 18], + [133, -25], + [92, 59], + [92, 35], + [44, 27], + [55, 13], + [105, 65], + [84, 30], + [209, -2], + [41, 6], + [42, 25], + [49, 8], + [107, -12], + [123, -53], + [-3, -209], + [-73, -61], + [-39, -15], + [-101, -19], + [-32, -22], + [20, -86], + [-1, -43], + [-27, -112], + [16, -55], + [53, -27], + [76, 12], + [16, 15], + [119, 40], + [138, 65], + [76, 0], + [130, -55], + [28, -25], + [0, -77], + [-8, -34], + [-52, -43], + [8, -31], + [20, -40], + [101, -43], + [8, -40], + [-4, -56], + [-20, -58], + [-28, -25], + [-48, -7], + [-11, -11], + [0, -46], + [39, -60], + [69, -11], + [0, -47], + [-39, -42], + [-30, -106], + [-48, -22], + [-35, 0], + [-93, -125], + [-77, -46], + [-77, -1], + [-120, 11], + [-36, -33], + [-36, -6], + [-91, 11], + [-77, -12], + [0, -53], + [91, -33], + [37, -43], + [12, -34], + [0, -71], + [-72, -123], + [-28, -29], + [-101, -58], + [-109, -83], + [-48, -68], + [-48, -13], + [-40, 0], + [-61, 56], + [-88, 61], + [-24, 3], + [-29, 34], + [-64, 13], + [-65, 58], + [-48, 6], + [-48, 40], + [-24, -9], + [-25, -25], + [-8, -28], + [-51, -33], + [-65, -25], + [-73, 15], + [-52, 0], + [-20, -21], + [5, -25], + [56, -43], + [0, -46], + [-16, -32], + [-61, -27], + [-100, -10], + [-65, -70], + [-11, -173], + [-16, -43], + [-24, -38], + [-89, -55], + [-48, -40], + [-4, -124], + [-40, -46], + [-12, -49], + [-40, -56], + [-60, -40], + [-45, 12], + [-124, 65], + [-138, 142], + [-52, 36], + [-4, 19], + [-40, 40], + [-8, 49], + [31, 127], + [16, 376], + [48, 105], + [72, 96], + [12, 49], + [-4, 44], + [-11, 4], + [5, 20], + [-23, 13], + [-83, 12], + [-45, 30], + [-28, 38], + [-61, 52], + [-16, 65], + [-36, 80], + [-12, 68], + [35, 112], + [53, 83], + [-16, 76], + [-74, 78], + [-23, 5], + [-32, 37], + [-4, 117], + [140, 157], + [8, 76], + [-31, 33], + [-25, -6], + [-61, 9], + [-4, 71], + [11, 5], + [-5, 6], + [46, 76], + [15, 53], + [46, 89], + [15, 76], + [-15, 53], + [-194, 24], + [-205, 0], + [-58, 14], + [-247, -4], + [-25, -7], + [-93, 24], + [-36, 37], + [0, 47], + [16, 40], + [44, 46], + [0, 25], + [32, 92], + [-28, 108], + [20, 28], + [68, 52], + [24, 32], + [-4, 43], + [-45, 21], + [-40, 0], + [-72, 15], + [-57, 47], + [-32, 0], + [-24, -19], + [-28, -52], + [0, -16], + [-76, -40], + [-12, -18], + [-4, -53], + [-36, -25], + [-89, -37], + [-68, -62], + [-40, -15], + [-58, -2], + [-99, -117], + [-46, -71], + [-15, -86], + [-51, -45], + [-77, -124], + [-40, -24], + [-24, -71], + [-64, -47], + [-32, 6], + [-13, 19], + [0, 31], + [24, 25], + [17, 37], + [-8, 18], + [-25, 0], + [-28, -6], + [-100, -52], + [-133, 15], + [-72, -7], + [-137, -89], + [-54, -19], + [-3, -135], + [61, 59], + [100, -11], + [23, -41], + [0, -71], + [-18, -122], + [-27, -67], + [-17, -3], + [-42, -30], + [-6, -63], + [-52, -28], + [-31, 3], + [-22, -15], + [-16, -19], + [0, -16], + [-12, -5], + [-162, -31], + [-3, -37], + [9, -38], + [149, -89], + [48, -43], + [40, -67], + [-7, -81], + [-17, -28], + [-32, -25], + [-193, -18], + [-44, -22], + [-145, -99], + [-104, -31], + [-37, -33], + [-15, -59], + [-43, -31], + [19, -80], + [115, -76], + [71, -32], + [47, 0], + [37, -28], + [12, -24], + [-12, -40], + [-24, -22], + [0, -31], + [12, -31], + [-4, -34], + [-45, -46], + [-35, -19], + [-93, -86], + [-76, -46], + [-12, -31], + [-25, -25], + [-48, -8], + [-15, -56], + [39, -25], + [13, -25], + [0, -43], + [-77, -59], + [-52, -25], + [-72, -58], + [0, -43], + [88, -32], + [25, -27], + [64, -25], + [57, -12], + [96, -6], + [52, -21], + [41, -28], + [20, -90], + [36, -46], + [0, -68], + [-12, -16], + [-32, -12], + [-76, 0], + [-24, -12], + [-41, -40], + [-32, -53], + [-24, -68], + [-44, -18], + [-132, -114], + [0, -56], + [-25, -56], + [-83, -101], + [-190, -152], + [-52, -18], + [-364, 26], + [-394, -12], + [-97, 24], + [-68, 34], + [-105, 120], + [-28, 37], + [-8, 28], + [-32, 28], + [-178, 95], + [0, -25], + [28, -37], + [81, -52], + [93, -86], + [80, -102], + [9, -37], + [-45, -49], + [0, -53], + [45, -52], + [16, -34], + [0, -53], + [-48, -49], + [-44, -22], + [-40, -6], + [1, 49], + [-40, 13], + [-53, -59], + [-76, -106], + [-62, -188], + [16, -376], + [24, -142], + [-23, -99], + [-83, -166], + [4, -18], + [24, 0], + [48, 49], + [5, 16], + [28, 9], + [40, -6], + [44, -18], + [20, -47], + [-8, -77], + [-20, -25], + [0, -25], + [17, -18], + [28, 0], + [26, 18], + [96, 31], + [123, -5], + [11, -10], + [29, -3], + [61, -64], + [0, -44], + [-73, -67], + [-148, -50], + [-48, -6], + [4, -77], + [40, -152], + [118, -239], + [92, -70], + [299, 0], + [299, -64], + [31, 17], + [-62, 123], + [4, 74], + [30, 56], + [78, 21], + [20, 19], + [37, 52], + [90, 96], + [50, 15], + [117, 69], + [120, 46], + [44, 6], + [130, -6], + [45, -15], + [63, -10], + [60, -30], + [16, -27], + [31, -170], + [-22, -65], + [-108, -65], + [-107, -82], + [-107, -141], + [-76, -136], + [-27, -249], + [-102, -218], + [-21, -62], + [-18, -114], + [3, -108], + [12, -42], + [88, -109], + [133, -104], + [66, -39], + [52, -46], + [-3, -18], + [-25, -24], + [-36, -18], + [-102, -26], + [-480, -46], + [-54, -10], + [-54, -35], + [-48, -11], + [-88, 0], + [-30, 9], + [-42, 0], + [-91, -12], + [-304, -114], + [-97, -43], + [-133, -30], + [-71, 4], + [-40, 12], + [-103, 12], + [-136, 3], + [-145, -14], + [-249, -51], + [-97, -37], + [-70, -11], + [-183, -48], + [-70, -5], + [-78, 6], + [-30, 15], + [-29, 52], + [9, 222], + [14, 39], + [48, 78], + [132, 195], + [32, 109], + [1, 41], + [-14, 76], + [-32, 52], + [10, 93], + [-11, 35], + [-25, 29], + [-89, 67], + [-92, 8], + [-26, -11], + [-49, -2], + [-79, 32], + [-21, 1], + [-245, -124], + [-188, -151], + [-120, -73], + [-241, -94], + [-70, 10], + [-54, 34], + [-74, 75], + [-41, 60], + [-36, 84], + [-17, 105], + [-66, 267], + [-98, 63], + [-63, 24], + [-72, 23], + [-54, 8], + [-29, 17], + [-123, 15], + [-191, 4], + [-205, 25], + [-235, 86], + [-370, 76], + [-73, 7], + [-258, -3], + [-79, -23], + [-52, 0], + [-93, -53], + [-69, -20], + [-57, 10], + [-82, 58], + [-24, 41], + [-116, 263], + [-46, 134], + [-53, 89], + [-127, 174], + [-46, 96], + [-33, 31], + [-30, 56], + [-53, 27], + [-76, 23], + [-56, 25], + [-13, 36], + [0, 68], + [16, 27], + [0, 50], + [38, 55], + [14, 116], + [-40, 64], + [6, 28], + [40, 28], + [3, 23], + [26, 51], + [-7, 104], + [-15, 74], + [9, 27], + [28, 24], + [9, 26], + [-3, 77], + [6, 9], + [-3, 17], + [-28, 28], + [-103, 46], + [-47, 45], + [-10, 52], + [28, 46], + [0, 31], + [-25, 26], + [0, 61], + [9, 14], + [38, 0], + [55, -40], + [0, -30], + [71, -18], + [49, 11], + [54, -16], + [74, -2], + [56, 26], + [45, -4], + [21, 14], + [25, -5], + [15, 9], + [-28, 55], + [-16, 12], + [3, 55], + [38, 32], + [15, 50], + [54, 29], + [0, 30], + [45, 70], + [39, 12], + [0, 47], + [-16, 65], + [54, 70], + [14, 136], + [-27, 38], + [-46, 10], + [-22, 12], + [-14, 35], + [-20, 20], + [-41, 21], + [-37, 8], + [-25, 26], + [-7, 22], + [0, 31], + [47, 82], + [31, 30], + [53, 19], + [13, 22], + [-13, 36], + [9, 62], + [31, 64], + [38, 44], + [-32, 35], + [-68, 29], + [-94, -29], + [-28, 5], + [-50, 33], + [-6, 26], + [-109, -33], + [-100, 9], + [-53, 22], + [-38, 36], + [-28, 55], + [-34, 22], + [-69, 2], + [-28, 9], + [-47, 29], + [-13, 33], + [-3, 31], + [19, 22], + [9, 38], + [0, 98], + [21, 41], + [-18, 26], + [-75, 7], + [-3, 67], + [56, 65], + [3, 24], + [-3, 45], + [-41, 38], + [0, 34], + [3, 17], + [72, 22], + [9, 19], + [0, 67], + [-4, 36], + [-18, 28], + [-81, 24], + [-7, 26], + [13, 27], + [71, 9], + [-6, 24], + [-50, 58], + [-6, 31], + [9, 40], + [17, 9], + [-2, 16], + [85, 94], + [61, -12], + [32, -46], + [25, -10], + [22, -29], + [75, -43], + [88, -117], + [34, -4], + [-9, 40], + [9, 43], + [-19, 43], + [-9, 161], + [18, 24], + [114, 64], + [18, 57], + [-26, 15], + [-28, 0], + [-13, 14], + [3, 31], + [25, 7], + [-3, 53], + [-98, 186], + [-33, -2], + [-13, -9], + [0, -18], + [-50, -4], + [-84, 67], + [-34, 41], + [-3, 18], + [-43, 36], + [-31, 199], + [-30, 17], + [-6, 43], + [15, 79], + [21, 35], + [53, 174], + [0, 64], + [28, 57], + [31, 101], + [50, 33], + [53, 2], + [17, 29], + [30, 5], + [75, 65], + [58, 65], + [60, 26], + [99, 72], + [28, 9], + [57, -4], + [15, -12], + [32, -81], + [31, -44], + [57, -38], + [22, -27], + [40, -68], + [3, -58], + [44, -114], + [28, -29], + [38, -10], + [128, -95], + [31, -10], + [153, -16], + [222, 53], + [50, 43], + [47, 2], + [28, -9], + [46, -87], + [35, -7], + [85, 8], + [55, 34], + [116, 103], + [3, 42], + [-10, 24], + [10, 19], + [55, 39], + [147, -10], + [69, -35], + [16, 0], + [34, 35], + [15, 34], + [3, 50], + [-9, 108], + [-9, 36], + [-23, 28], + [-162, 91], + [-187, -3], + [-91, 12], + [-34, 15], + [-38, 17], + [-31, 52], + [-16, 58], + [-38, 23], + [-46, -2], + [-78, 31], + [-44, 2], + [-37, -9], + [-10, -29], + [-50, -10], + [-40, 3], + [-19, 16], + [6, 53], + [28, 16], + [60, 3], + [34, 10], + [15, 19], + [0, 29], + [-40, 40], + [-3, 32], + [-88, 64], + [9, 24], + [51, 4], + [12, -2], + [9, -19], + [25, -5], + [40, 5], + [35, 14], + [37, 42], + [35, 12], + [71, -10], + [54, -43], + [65, -24], + [53, 19], + [44, 32], + [56, 21], + [60, -12], + [83, -3], + [69, 88], + [58, 39], + [45, 8], + [37, 19], + [6, 19], + [-12, 41], + [3, 43], + [6, 22], + [41, 50], + [0, 40], + [130, 155], + [68, 0], + [4, -8], + [66, -14], + [52, 21], + [29, 29], + [15, 72], + [16, 24], + [15, 184], + [44, 29], + [59, 7], + [37, 74], + [-3, 98], + [-38, 5], + [-34, -7], + [-84, -48], + [-181, -75], + [-187, -5], + [-50, 7], + [-38, 29], + [-18, 5], + [-29, -15], + [-24, -69], + [-28, -19], + [-28, 0], + [-10, 17], + [3, 50], + [-34, 4], + [-78, -93], + [-53, -225], + [-46, -4], + [-56, 9], + [-23, 62], + [-109, 84], + [-112, 11], + [-60, -4], + [-75, -17], + [-143, -56], + [-38, -26], + [-49, -69], + [-47, -32], + [-47, -4], + [-53, 11], + [-69, 60], + [-19, 77], + [72, 129], + [6, 31], + [21, 25], + [12, 76], + [-11, 12], + [-141, 4], + [-171, -33], + [-41, -25], + [-43, -93], + [-31, -22], + [-26, -14], + [-106, -14], + [-81, 0], + [-28, 9], + [-5, 12], + [-30, 5], + [-34, 19], + [-134, 88], + [-38, 10], + [-68, 2], + [-31, -19], + [-75, -12], + [-47, 16], + [-106, 19], + [-63, 37], + [-34, 38], + [-10, 40], + [9, 34], + [-15, 33], + [-82, 19], + [-27, 17], + [-13, 26], + [3, 45], + [-25, 32], + [-15, 12], + [-66, 16], + [-6, 27], + [15, 55], + [19, 31], + [-63, 36], + [-16, 24], + [0, 23], + [57, 2], + [35, 39], + [77, 42], + [-13, 33], + [16, 19], + [9, 1], + [59, 151], + [-25, 25], + [-3, 31], + [110, 75], + [77, 12], + [33, 0], + [29, -15], + [50, 10], + [0, 36], + [-31, 26], + [3, 33], + [25, 27], + [6, 38], + [12, 0], + [16, 15], + [-11, 61], + [-20, 25], + [9, 16], + [47, 14], + [68, 6], + [31, 47], + [-25, 74], + [-53, 6], + [-47, 30], + [3, 70], + [-12, 4], + [-72, -7], + [-37, 7], + [-10, 91], + [9, 29], + [41, 14], + [-16, 15], + [-3, 19], + [15, 29], + [32, 26], + [-13, 45], + [16, 65], + [9, 26], + [19, 17], + [40, 14], + [7, 63], + [43, 14], + [22, -2], + [44, 12], + [68, -3], + [34, 17], + [-3, 14], + [-56, 17], + [-28, 27], + [-50, 81], + [-53, 16], + [15, 41], + [31, 19], + [0, 41], + [-12, 21], + [-41, 27], + [-3, 9], + [6, 24], + [25, 29], + [28, 12], + [141, 5], + [6, 16], + [-22, 18], + [-33, 10], + [0, 6], + [-80, -7], + [-46, 29], + [-4, 23], + [10, 29], + [28, 12], + [76, 80], + [23, 35], + [54, 41], + [15, 47], + [-8, 44], + [-92, 9], + [9, 48], + [-22, 10], + [-53, 2], + [-22, 26], + [6, 22], + [22, 14], + [10, 29], + [-10, 31], + [-41, 91], + [-78, 28], + [-12, 12], + [-1, 84], + [-37, 43], + [-7, 53], + [57, 45], + [21, 31], + [-3, 63], + [-22, 21], + [-9, 58], + [9, 100], + [31, 32], + [4, 33], + [23, 41], + [115, 18], + [0, 46], + [20, 38], + [6, 41], + [31, 57], + [58, 60], + [35, 53], + [-28, 12], + [2, 37], + [-40, 71], + [-21, 14], + [-9, 33], + [24, 58], + [25, 21], + [32, -1], + [34, 26], + [-16, 33], + [15, 54], + [32, -1], + [15, 16], + [-3, 34], + [-44, 98], + [-25, 2], + [-16, -19], + [-33, -19], + [-41, 29], + [9, 28], + [31, 29], + [19, 31], + [15, 67], + [25, 33], + [0, 96], + [-16, 59], + [-1, 170], + [-22, 63], + [-87, 10], + [-18, 12], + [-7, 28], + [34, 46], + [0, 38], + [9, 19], + [51, 5], + [37, 39], + [25, 45], + [-47, 131], + [12, 34], + [37, 8], + [67, 34], + [45, 0], + [63, 35], + [41, -5], + [31, -26], + [7, -26], + [25, -22], + [18, -57], + [103, -55], + [28, -27], + [1, -26], + [-62, -55], + [18, -86], + [-17, -56], + [-39, -57], + [-106, -79], + [-6, -12], + [22, -19], + [72, -19], + [81, -36], + [45, -24], + [46, -42], + [16, -82], + [0, -153], + [116, -64], + [72, -51], + [0, -9], + [22, -17], + [78, -19], + [47, 0], + [37, 10], + [68, 43], + [10, 21], + [28, 17], + [94, 3], + [37, -36], + [-13, -103], + [42, -6], + [31, 30], + [23, 47], + [84, 88], + [-16, 34], + [-10, 1], + [-16, 26], + [19, 20], + [15, 55], + [46, 52], + [7, 59], + [-31, 24], + [-69, -30], + [-91, -5], + [-53, 5], + [-32, -12], + [-100, 0], + [-84, -18], + [-8, 48], + [23, 35], + [54, 52], + [76, 36], + [68, 48], + [9, 23], + [-3, 25], + [-22, 21], + [-27, -3], + [-79, 92], + [-107, 18], + [-100, -1], + [-47, 130], + [10, 3], + [0, 62], + [77, 124], + [6, 27], + [47, 38], + [-12, 46], + [3, 76], + [21, 34], + [78, 45], + [-18, 53], + [37, 48], + [9, 48], + [-34, 47], + [-28, 19], + [-7, 17], + [41, 41], + [6, 17], + [0, 100], + [-22, 36], + [31, 17], + [83, 19], + [62, 24], + [153, 36], + [0, 23], + [-16, 7], + [-20, -13], + [-25, 0], + [-6, 38], + [6, 15], + [76, 71], + [124, 27], + [27, 26], + [0, 15], + [23, 12], + [43, -10], + [95, -64], + [-12, -53], + [0, -47], + [10, -9], + [-8, -30], + [34, -53], + [19, -7], + [31, 19], + [88, -11], + [228, -122], + [31, -27], + [73, -107], + [18, -46], + [0, -45], + [16, -46], + [43, -19], + [23, 8], + [12, 23], + [0, 27], + [28, 24], + [38, 5], + [6, 7], + [-13, 62], + [-53, 67], + [-19, 36], + [-9, 48], + [-32, 43], + [-25, 60], + [-88, 73], + [-3, 101], + [12, 31], + [77, 24], + [77, -29], + [61, -12], + [-10, 23], + [-20, 6], + [-28, 65], + [-54, 69], + [-3, 39], + [-37, 19], + [-10, 47], + [28, 96], + [124, 185], + [0, 50], + [10, 32], + [37, 46], + [56, 32], + [137, 26], + [50, 68], + [0, 13], + [18, 13], + [1, 48], + [-109, 31], + [-47, 0], + [-69, -31], + [-206, -30], + [-91, 10], + [-31, 12], + [-25, 29], + [-19, 0], + [-37, -30], + [-69, -19], + [-93, 7], + [-63, 29], + [-28, 19], + [-19, 115], + [-43, 128], + [-36, 17], + [-85, 141], + [-80, 56], + [-79, 31], + [-15, 139], + [-22, 35], + [-16, 22], + [-50, 38], + [-69, 29], + [-12, 14], + [51, 35], + [64, 6], + [35, -12], + [59, -5], + [179, 5], + [61, 29], + [122, 24], + [90, 3], + [61, -19], + [102, -5], + [21, 29], + [10, 38], + [47, 34], + [18, 93], + [-3, 26], + [-16, 17], + [0, 22], + [69, 100], + [34, 29], + [32, 9], + [115, 3], + [83, 34], + [36, 6], + [47, -11], + [38, -39], + [18, -4], + [72, -60], + [12, -117], + [-31, -27], + [19, -23], + [3, -57], + [32, -6], + [12, 20], + [6, 52], + [19, 12], + [65, 19], + [103, 51], + [-9, 57], + [6, 24], + [19, 17], + [68, 3], + [30, -5], + [17, -11], + [38, -53], + [-6, -114], + [-16, -28], + [10, -36], + [31, -31], + [56, -24], + [38, -69], + [3, -29], + [-12, -50], + [-22, -17], + [-38, -4], + [-40, -32], + [19, -29], + [69, -45], + [46, 15], + [160, -12], + [-19, 76], + [59, 51], + [41, -3], + [68, -26], + [-22, 29], + [0, 36], + [-37, 105], + [-32, 45], + [0, 70], + [10, 26], + [55, 24], + [82, -2], + [19, -5], + [10, -12], + [39, -10], + [19, -31], + [35, -28], + [17, -42], + [42, -38], + [162, -47], + [29, -26], + [19, -3], + [18, 8], + [13, 33], + [18, 8], + [57, -5], + [28, -24], + [56, -7], + [47, 55], + [31, 131], + [28, 41], + [-50, 24], + [-13, 24], + [-22, 17], + [6, 179], + [19, 41], + [75, 55], + [-57, -10], + [-96, -50], + [-91, -31], + [-71, -3], + [-23, 15], + [-12, 24], + [6, 11], + [53, 10], + [7, 19], + [-103, 51], + [-7, 52], + [25, 31], + [81, 21], + [28, 22], + [12, 31], + [29, 34], + [68, 55], + [63, 12], + [50, 3], + [96, -25], + [110, -57], + [31, -7], + [81, 3], + [25, 14], + [52, 143], + [-27, 80], + [-9, 4], + [-38, -2], + [-32, -24], + [-59, 19], + [-115, 2], + [-31, 12], + [-16, 17], + [0, 19], + [22, 62], + [-32, 10], + [-40, 40], + [-10, 130], + [-53, 52], + [-41, 5], + [-37, -12], + [-91, -48], + [-93, -22], + [-28, -24], + [-31, -12], + [-110, 10], + [-25, 12], + [0, 16], + [44, 30], + [-3, 16], + [-26, 12], + [-121, 10], + [-153, -68], + [-59, -55], + [-60, 5], + [-31, 7], + [-47, 62], + [-3, 151], + [12, 63], + [-83, 24], + [-92, 0], + [-200, -23], + [-90, -41], + [-25, 0], + [-47, -14], + [-122, -69], + [-84, -24], + [-62, -6], + [-59, -33], + [-41, -7], + [-85, 2], + [-34, 19], + [-12, 24], + [6, 72], + [-35, 45], + [-88, 43], + [-34, 34], + [-37, 7], + [-60, 35], + [-100, 38], + [-169, 89], + [-87, 16], + [-38, 39], + [-9, 24], + [-35, 2], + [-36, -20], + [-101, -21], + [-194, 11], + [-28, 27], + [3, 67], + [64, 54], + [18, 32], + [154, 69], + [14, 25], + [0, 28], + [40, 63], + [-7, 409], + [31, 108], + [66, 115], + [7, 77], + [21, 23], + [84, 19], + [80, 84], + [3, 65], + [-9, 72], + [-56, 45], + [-116, 4], + [-6, 15], + [-1, 19], + [23, 41], + [93, 100], + [40, -4], + [13, -10], + [25, -36], + [56, -43], + [22, -38], + [29, -27], + [59, -33], + [31, 0], + [28, 10], + [31, 50], + [19, 7], + [31, 1], + [57, -32], + [31, 3], + [236, 98], + [48, 31], + [40, 0], + [19, -9], + [1, -67], + [-16, -26], + [19, -27], + [28, -9], + [37, 2], + [53, -24], + [19, 5], + [25, 41], + [-3, 31], + [31, 41], + [40, 21], + [78, 0], + [91, -28], + [22, -17], + [36, -54], + [114, -70], + [78, -12], + [32, 2], + [157, -80], + [69, 65], + [23, 94], + [54, 59], + [14, 101], + [-156, 39], + [-90, 47], + [-28, 46], + [-29, 14], + [-175, 75], + [-97, 23], + [-37, 34], + [12, 60], + [-125, 40], + [-62, 40], + [-10, 24], + [-25, 22], + [-21, 2], + [-51, 24], + [-15, -12], + [17, -28], + [-1, -77], + [-16, -51], + [-78, -21], + [-59, 7], + [-41, 58], + [-35, 19], + [-56, 9], + [-18, 17], + [-4, 19], + [4, 7], + [40, 17], + [31, 5], + [53, 22], + [31, 28], + [-12, 10], + [-103, 4], + [-34, 29], + [-69, 24], + [-166, 21], + [-44, 17], + [-19, 40], + [10, 58], + [50, 19], + [80, 8], + [65, 41], + [25, 2], + [39, 16], + [34, 8], + [28, -8], + [25, 3], + [19, 12], + [0, 43], + [-32, 131], + [3, 34], + [75, 65], + [35, 13], + [40, 57], + [7, 160], + [-124, 95], + [-93, 29], + [-94, 4], + [-31, -12], + [-28, -55], + [-47, -19], + [-56, -5], + [-34, 12], + [-22, 26], + [-3, 39], + [18, 31], + [81, 50], + [60, 55], + [3, 34], + [-16, 43], + [0, 52], + [12, 99], + [16, 47], + [68, 63], + [66, 36], + [93, 9], + [3, 51], + [-37, 12], + [-24, 18], + [-1, 27], + [72, 65], + [53, 12], + [109, 9], + [37, 31], + [22, 29], + [-6, 29], + [-25, 36], + [0, 16], + [9, 17], + [31, 22], + [54, -3], + [21, -16], + [-3, -60], + [75, 5], + [56, 26], + [47, 34], + [60, 69], + [-35, 79], + [53, 34], + [72, 31], + [31, 24], + [49, 62], + [26, 74], + [65, 37], + [28, 38], + [3, 33], + [-9, 29], + [-16, 4], + [-222, -7], + [-118, 12], + [-16, 79], + [-75, 48], + [-57, 19], + [-96, 2], + [-28, -7], + [-100, -63], + [-26, 12], + [-15, 29], + [3, 22], + [38, 40], + [115, 70], + [150, 29], + [0, 21], + [-16, 26], + [-62, 37], + [-4, 21], + [22, 14], + [75, -4], + [47, 9], + [28, 41], + [41, 24], + [59, 91], + [-10, 81], + [-100, 7], + [-84, -36], + [-62, -45], + [-41, 19], + [-10, 26], + [0, 76], + [16, 37], + [62, 47], + [63, 65], + [2, 55], + [11, 25], + [0, 123], + [22, 124], + [-2, 68], + [15, 31], + [0, 29], + [-53, 74], + [-9, 31], + [27, 43], + [-9, 65], + [16, 30], + [25, 22], + [72, 12], + [56, 41], + [84, 101], + [37, 146], + [97, 81], + [84, 5], + [116, -105], + [25, 5], + [11, 71], + [148, 60], + [87, 5], + [41, -14], + [37, -26], + [35, 2], + [53, 22], + [31, -3], + [53, -18], + [25, -20], + [16, -16], + [0, -51], + [-47, -45], + [-3, -14], + [25, -22], + [29, -7], + [28, 14], + [12, 17], + [19, 7], + [25, -2], + [3, -48], + [-28, -45], + [3, -31], + [35, -20], + [62, -12], + [22, -28], + [122, -38], + [9, -41], + [-21, -20], + [8, -78], + [69, 12], + [61, 29], + [49, 41], + [-6, 11], + [-47, 17], + [-3, 19], + [34, 29], + [166, 24], + [72, -16], + [104, 31], + [84, 55], + [24, 2], + [28, -9], + [81, -53], + [166, -172], + [31, 17], + [0, 40], + [-22, 19], + [-66, 118], + [-134, 86], + [-59, 23], + [-69, 89], + [-7, 29], + [6, 76], + [16, 43], + [58, 102], + [99, 123], + [8, 77], + [46, 70], + [23, 71], + [38, 71], + [38, 106], + [23, 194], + [37, 24], + [22, 0], + [25, 31], + [-54, 149], + [-40, 69], + [-85, 60], + [-50, 76], + [-86, 102], + [-70, 18], + [-69, -12], + [-38, -41], + [-69, 5], + [-154, 70], + [-55, -23], + [-62, -65], + [-25, -14], + [-38, -7], + [-34, 2], + [-28, 10], + [-19, 21], + [-22, 0], + [-93, -33], + [-44, -8], + [-81, 12], + [-32, -5], + [-34, -9], + [-31, -72], + [-59, -38], + [-44, -5], + [-41, 9], + [-25, 12], + [-62, 89], + [-1, 62], + [11, 12], + [-26, 97], + [-25, 37], + [-44, 14], + [-31, 60], + [-16, 12], + [-26, 74], + [3, 36], + [-15, 26], + [-113, 112], + [-41, 19], + [-138, 27], + [-213, -15], + [-123, -48], + [-79, 0], + [-31, 31], + [0, 12], + [-131, 84], + [-108, 123], + [-7, 23], + [53, 65], + [-23, 47], + [7, 48], + [-36, 51], + [-44, 6], + [-52, 35], + [-96, 31], + [-22, 24], + [-11, 80], + [-21, 60], + [13, 28], + [59, 0], + [70, -18], + [72, 13], + [24, 27], + [11, 65], + [70, 70], + [10, 35], + [-27, 160], + [-75, 89], + [-16, 82], + [-30, 35], + [-8, 30], + [8, 38], + [32, 8], + [81, -10], + [214, -2], + [123, -18], + [36, -15], + [86, -94], + [48, -29], + [121, -33], + [168, -87], + [72, 24], + [-9, 10], + [-30, 4], + [-21, 15], + [11, 43], + [77, 24], + [54, -26], + [3, -17], + [-23, -33], + [103, 58], + [51, 44], + [43, 12], + [80, 49], + [40, 37], + [-18, 23], + [-48, 14], + [-36, 33], + [-48, 60], + [-78, 73], + [-65, 87], + [-37, 84], + [-3, 107], + [39, 38], + [23, 41], + [177, 147], + [84, 54], + [131, 100], + [104, 32], + [13, 18], + [5, 50], + [-54, 149], + [-89, 105], + [-102, 90], + [-86, 31], + [-62, 6], + [-40, -8], + [-46, -23], + [-126, -29], + [-16, -59], + [-70, -30], + [-40, 4], + [-54, 68], + [-53, 21], + [-129, 2], + [-169, 31], + [-97, 38], + [-59, 52], + [-127, 69], + [-59, 15], + [-36, 0], + [-10, 12], + [-34, 4], + [-32, -4], + [-27, -23], + [-86, -18], + [-54, 12], + [-46, 39], + [-13, 74], + [40, 31], + [148, 24], + [34, 17], + [49, 2], + [35, -14], + [13, -15], + [22, 2], + [34, 29], + [54, 17], + [188, 10], + [105, 21], + [34, 29], + [132, 166], + [8, 31], + [-17, 105], + [-46, 55], + [-29, 9], + [-21, -3], + [-3, -18], + [16, -31], + [-8, -22], + [-27, -11], + [-27, 13], + [-67, 63], + [-51, 19], + [-91, 72], + [-24, 34], + [-17, 66], + [3, 29], + [13, 22], + [53, 53], + [8, 53], + [-108, 135], + [-16, 65], + [15, 147], + [23, 104], + [24, 41], + [66, 34], + [130, 125], + [31, 33], + [24, 55], + [89, 56], + [110, 90], + [38, 23], + [45, 7], + [38, 18], + [99, 113], + [13, 39], + [-9, 21], + [0, 42], + [-60, 67], + [-23, 65], + [22, 26], + [87, 51], + [2, 42], + [-10, 29], + [96, 157], + [6, 54], + [25, 73], + [-8, 42], + [-46, 17], + [-8, 17], + [-24, 10], + [-44, 38], + [-101, 138], + [-14, 49], + [-2, 94], + [29, 66], + [73, 59], + [36, 46], + [54, 94], + [40, 94], + [24, 147], + [2, 200], + [-23, 26], + [-20, 57], + [-4, 103], + [87, 138], + [80, 42], + [36, 38], + [60, 91], + [4, 37], + [18, 22], + [31, 94], + [23, 230], + [168, 141], + [39, -6], + [36, -20], + [-2, -38], + [-32, -17], + [2, -14], + [20, -16], + [35, -6], + [70, 22], + [2, 14], + [-63, 9], + [-4, 9], + [6, 13], + [44, 30], + [77, 2], + [59, -18], + [54, -36], + [10, -25], + [107, -93], + [42, -59], + [19, -60], + [42, -57], + [30, -60], + [27, -24], + [52, -21], + [50, 3], + [9, -32], + [-16, -12], + [-2, -22], + [40, -15], + [48, 14], + [34, 0], + [65, -27], + [14, 9], + [12, 29], + [-10, 49], + [8, 0], + [3, 11], + [51, 16], + [-58, 30], + [-18, 42], + [11, 94], + [-12, 32], + [16, 28], + [-12, 48], + [20, 27], + [35, 22], + [36, 54], + [90, 43], + [83, 79], + [32, 14], + [46, 8], + [72, -3], + [45, 26], + [58, 60], + [26, 16], + [38, 0], + [61, -19], + [40, 4], + [57, 45], + [77, 6], + [60, 21], + [66, 3], + [34, 15], + [71, -7], + [132, 20], + [151, 4], + [28, 26], + [-10, 26], + [-58, 26], + [-34, 24], + [-24, 32], + [0, 24], + [51, 49], + [34, 25], + [60, 19], + [15, 52], + [-16, 35], + [-2, 84], + [-46, 26], + [-65, 85], + [5, 48], + [47, 41], + [10, 19], + [-8, 7], + [-68, -4], + [-45, -23], + [-36, -5], + [-37, 3], + [-39, 43], + [-46, -47], + [8, -48], + [-16, -29], + [-39, -2], + [-57, -33], + [-22, -18], + [-31, -56], + [-37, -39], + [-45, -17], + [-104, -66], + [-42, 3], + [-42, 23], + [-55, 11], + [-21, 32], + [-35, 15], + [-120, 21], + [-61, -15], + [-4, -7], + [-168, 35], + [-93, 12], + [-57, 50], + [-1, 16], + [-22, 22], + [-25, 90], + [0, 25], + [29, 16], + [-15, 8], + [-40, 14], + [-10, -5], + [-14, -55], + [-65, -52], + [-24, 2], + [-58, 69], + [-86, 5], + [-13, -8], + [-26, 3], + [-33, 13], + [-28, 30], + [-43, 8], + [-18, 20], + [-7, 94], + [-52, 22], + [-63, -14], + [-83, 15], + [-32, 28], + [-3, 35], + [-51, 80], + [-7, 46], + [29, 70], + [-33, 4], + [-72, 55], + [-18, 43], + [29, 102], + [25, 50], + [79, 62], + [-8, 96], + [11, 58], + [43, 44], + [71, 33], + [50, 33], + [4, 25], + [-47, 21], + [-21, 28], + [-8, 93], + [25, 35], + [46, 36], + [12, 63], + [35, 33], + [100, 39], + [11, 27], + [39, 36], + [86, -6], + [36, 11], + [20, 28], + [15, 3], + [108, 7], + [82, -7], + [19, -17], + [42, -19], + [37, -27], + [7, -33], + [-22, -63], + [25, -25], + [61, -2], + [90, -27], + [78, 24], + [33, 28], + [26, 8], + [14, -11], + [254, -23], + [69, -35], + [61, -76], + [9, -117], + [-28, -33], + [7, -47], + [40, -22], + [35, -8], + [99, -3], + [116, -52], + [10, 4], + [41, -78], + [79, -60], + [56, -11], + [93, 50], + [37, 27], + [82, -5], + [43, 16], + [82, 124], + [50, 19], + [53, 38], + [-7, 71], + [-79, 121], + [36, 104], + [64, 55], + [75, 38], + [57, 58], + [18, 47], + [35, 27], + [15, 0], + [32, -45], + [39, -111], + [12, -12], + [16, -6], + [39, 3], + [16, 18], + [-1, 132], + [-49, 59], + [0, 45], + [-29, 62], + [-186, 96], + [-108, 14], + [-86, -9], + [-32, 17], + [-14, 30], + [-4, 96], + [-18, 69], + [0, 50], + [106, 31], + [37, -16], + [29, 14], + [3, 82], + [-11, 50], + [-14, 10], + [-39, -13], + [-25, 5], + [-11, 25], + [28, 41], + [111, 54], + [-54, 17], + [-15, 23], + [0, 21], + [12, 16], + [89, 69], + [50, 8], + [69, 0], + [42, -11], + [101, -54], + [25, -39], + [0, -41], + [25, -33], + [46, -13], + [15, 22], + [-8, 44], + [11, 32], + [54, 67], + [68, 43], + [38, 46], + [15, 48], + [47, 12], + [54, 0], + [199, 65], + [98, 13], + [42, 66], + [36, 11], + [18, -14], + [-7, -52], + [-36, -36], + [61, -30], + [61, 61], + [25, 44], + [0, 90], + [9, 6], + [-30, 64], + [-1, 50], + [11, 47], + [-22, 53], + [-14, 60], + [0, 57], + [-15, 44], + [-86, 49], + [-54, 63], + [-17, 38], + [0, 28], + [28, 17], + [36, -9], + [32, 17], + [-14, 123], + [-12, 38], + [-42, 36], + [-11, 25], + [-71, 82], + [9, 84], + [-14, 33], + [-48, 11], + [-52, 0], + [-34, -19], + [-66, -21], + [-43, -30], + [-65, -11], + [-114, 29], + [-89, 81], + [-71, 146], + [-11, 43], + [0, 227], + [9, 51], + [39, 121], + [33, 51], + [0, 106], + [14, 99], + [66, 109], + [19, 80], + [-19, 41], + [-43, 47], + [-105, 36], + [-29, 0], + [-74, -25], + [-73, 47], + [-5, 37], + [-20, 36], + [-57, 48], + [-34, 44], + [-5, 61], + [81, 70], + [44, 62], + [-1, 102], + [-19, 19], + [10, 4], + [-6, 69], + [-19, 51], + [0, 66], + [39, 29], + [19, 0], + [38, -26], + [43, -43], + [62, -37], + [101, -14], + [71, 7], + [52, 37], + [38, 47], + [15, 63], + [-5, 32], + [-53, 40], + [-33, 44], + [0, 44], + [24, 18], + [47, 8], + [39, -11], + [71, 14], + [105, 41], + [67, 15], + [52, 0], + [225, -44], + [38, 3], + [19, 26], + [158, 95], + [57, 12], + [65, 24], + [121, 1], + [153, -55], + [120, 1], + [257, -132], + [62, -10], + [139, 14], + [201, 77], + [133, 85], + [19, 40], + [-9, 7], + [152, 139], + [48, 59], + [-34, 87], + [0, 29], + [67, 70], + [62, 25], + [43, 41], + [-29, 102], + [4, 164], + [91, 103], + [0, 51], + [-5, 62], + [-44, 121], + [-47, 58], + [-34, 66], + [0, 76], + [4, 13], + [92, 60], + [200, 88], + [306, -47], + [224, -14], + [53, 7], + [43, 15], + [67, -8], + [90, 66], + [19, 40], + [81, 48], + [82, 37], + [47, 11], + [81, 3], + [38, -14], + [53, -44], + [55, -26], + [12, -25], + [15, -277], + [72, -88], + [72, 14], + [23, 41], + [52, 29], + [86, 22], + [48, 29], + [48, 0], + [52, 15], + [10, 33], + [0, 58], + [24, 18], + [19, 30], + [40, 16], + [17, 39], + [-18, 35], + [-3, 44], + [39, 52], + [68, 3], + [79, 14], + [72, 55], + [3, 38], + [-65, 52], + [-32, 44], + [-18, 54], + [-72, 80], + [-7, 71], + [-47, 17], + [-42, 32], + [-40, 58], + [3, 49], + [33, 30], + [14, 53], + [-40, 54], + [-64, 38], + [-72, 25], + [-47, 0], + [-118, 41], + [-7, 22], + [21, 35], + [32, 21], + [34, 54], + [43, 42], + [71, 13], + [111, 0], + [59, -6], + [36, -19], + [9, 8], + [-4, 55], + [-33, 38], + [-3, 33], + [25, 36], + [-4, 52], + [10, 41], + [22, 36], + [-29, 30], + [-14, 38], + [10, 82], + [33, 39], + [-36, 36], + [-64, -3], + [-40, -22], + [-50, -80], + [-57, -13], + [-108, 35], + [-54, 3], + [-93, -14], + [-53, 5], + [-29, 27], + [-150, 45], + [-26, 27], + [-7, 27], + [-32, 3], + [-65, -39], + [-64, 3], + [-15, 14], + [0, 38], + [-32, 30], + [-43, 19], + [-29, 55], + [-46, 19], + [-25, 0], + [-8, 27], + [-95, 72], + [0, 29], + [59, 93], + [133, 70], + [39, 68], + [-10, 25], + [-69, 0], + [-46, -25], + [-54, -17], + [-50, 22], + [-15, 83], + [11, 74], + [89, 93], + [-7, 33], + [58, 19], + [60, 6], + [26, 21], + [10, 28], + [57, 49], + [86, 20], + [81, 0], + [16, 19], + [57, 38], + [111, 6], + [79, -22], + [62, -35], + [55, -3], + [120, 36], + [47, 33], + [248, 107], + [168, -18], + [65, 2], + [37, 49], + [51, 19], + [46, -5], + [68, -22], + [11, -39], + [-18, -44], + [14, -43], + [72, 5], + [7, 70], + [22, 12], + [179, -8], + [50, 14], + [75, -3], + [50, -27], + [56, -17], + [53, -48], + [139, -37], + [57, 12], + [519, 39], + [72, 19], + [132, 121], + [29, 49], + [35, 96], + [25, 41], + [44, 39], + [49, 30], + [93, 11], + [79, 41], + [72, 5], + [100, -30], + [316, -141], + [184, -11], + [92, 88], + [193, 12], + [169, 0], + [69, -12], + [54, -29], + [100, -35], + [31, -24], + [0, -29], + [-146, -59], + [30, -47], + [68, -21], + [105, 16], + [54, 3], + [32, -8], + [29, -16], + [-3, -25], + [-18, -22], + [10, -22], + [33, -27], + [39, -22], + [61, -20], + [61, -8], + [36, 11], + [54, -24], + [21, -30], + [-3, -28], + [-101, -40], + [-15, -46], + [46, -47], + [77, -12], + [61, -47], + [0, -53], + [-15, -76], + [-46, -65], + [0, -41], + [38, -65], + [77, -53], + [0, -27], + [244, 25], + [107, -6], + [197, -38], + [190, -24], + [93, -3], + [90, 14], + [161, 38], + [52, -1], + [35, 11], + [108, -17], + [54, -18], + [70, 80], + [-47, 25], + [-75, 121], + [-22, 54], + [14, 74], + [72, 79], + [90, 58], + [71, 91], + [0, 90], + [-54, 14], + [-79, -6], + [-79, 33], + [-32, 49], + [-75, 74], + [-57, 36], + [-40, 66], + [-18, 57], + [-14, 63], + [0, 93], + [-18, 58], + [-69, 115], + [-47, 41], + [-143, 49], + [-133, 67], + [-125, 276], + [-11, 60], + [7, 63], + [72, 60], + [86, 33], + [103, 24], + [69, -43], + [60, -6], + [18, 50], + [-4, 49], + [-32, 49], + [-57, 36], + [-29, 33], + [-18, 54], + [11, 36], + [36, 41], + [14, 44], + [-25, 39], + [7, 38], + [36, 41], + [72, 0], + [-5, 69], + [26, 54], + [50, 42], + [71, 32], + [47, 41], + [57, 201], + [-11, 90], + [-36, 6], + [-57, -41], + [-43, 21], + [-3, 30], + [21, 52], + [53, 88], + [4, 33], + [57, 63], + [115, 72], + [43, -6], + [36, -28], + [0, -24], + [-54, -44], + [0, -36], + [54, -2], + [73, 20], + [0, -15], + [81, -35], + [93, -63], + [29, -44], + [-18, -5], + [-23, -41], + [8, -35], + [46, -47], + [15, -53], + [-54, -41], + [-77, -18], + [32, -41], + [20, -8], + [-6, -7], + [11, -11], + [150, -128], + [90, -47], + [101, -33], + [100, -5], + [68, -33], + [71, -52], + [54, -25], + [111, 0], + [44, -13], + [42, -36], + [11, -36], + [65, -81], + [-4, -105], + [47, -27], + [97, -28], + [61, -70], + [25, -47], + [0, -30], + [18, -36], + [7, -47], + [-3, -46], + [-11, -25], + [-29, -21], + [58, -94], + [0, -41], + [75, -98], + [32, -69], + [-7, -74], + [22, -49], + [4, -91], + [21, -13], + [31, 23], + [64, 16], + [53, -29], + [-15, -41], + [-77, -12], + [5, -5], + [-21, -24], + [-4, -38], + [140, -46], + [96, 13], + [61, 28], + [86, 96], + [29, -11], + [32, -47], + [22, -4], + [43, -7], + [111, 28], + [-11, 14], + [-68, 19], + [-21, 29], + [-8, 161], + [-25, 29], + [14, 38], + [72, 47], + [14, 44], + [15, 3], + [46, 38], + [7, 55], + [-72, 109], + [-14, 52], + [-7, 41], + [24, 50], + [4, 71], + [15, 44], + [-40, 38], + [-4, 36], + [11, 21], + [36, 15], + [54, -45], + [24, 28], + [65, 123], + [-14, 17], + [-88, -16], + [-38, 44], + [0, 41], + [-54, 12], + [0, 71], + [30, 41], + [16, 41], + [15, 82], + [39, 36], + [69, 17], + [23, 42], + [7, 41], + [-46, 53], + [0, 23], + [46, 65], + [-8, 35], + [39, 41], + [-39, 100], + [0, 41], + [31, 36], + [38, 29], + [39, 18], + [38, 47], + [116, 59], + [15, 29], + [46, 6], + [0, -94], + [54, -18], + [54, 0], + [0, 36], + [46, 23], + [54, -29], + [-31, -53], + [-54, -18], + [-15, -29], + [31, -17], + [77, 0], + [61, 35], + [31, 41], + [107, 82], + [8, 65], + [-38, 41], + [76, 30], + [39, 53], + [7, 41], + [31, 35], + [54, 23], + [7, 83], + [24, 35], + [46, 12], + [46, -35], + [85, -165], + [38, -47], + [8, -118], + [31, -35], + [0, -47], + [46, -123], + [8, -53] + ], + [ + [55826, 389643], + [52, -49], + [52, -28], + [149, 3], + [169, 15], + [44, -15], + [36, -27], + [44, -16], + [60, 56], + [52, 31], + [64, 71], + [12, 40], + [72, 40], + [97, 37], + [32, 6], + [189, 0], + [51, 10], + [77, -6], + [44, -13], + [48, 19], + [32, 25], + [278, -18], + [-1, -16], + [84, -41], + [39, -47], + [31, -123], + [35, 6], + [41, 70], + [30, 17], + [225, 74], + [124, 69], + [117, 45], + [120, 16], + [66, -1], + [99, -16], + [36, -36], + [25, -47], + [28, -14], + [26, -2], + [41, 11], + [47, 32], + [71, -6], + [62, -30], + [39, 0], + [18, 56], + [29, 31], + [41, 16], + [75, 5], + [137, 56], + [59, -2], + [40, -28], + [9, -27], + [-9, -31], + [-65, -99], + [-27, -28], + [-31, -16], + [-79, -10], + [2, -25], + [99, -64], + [59, -15], + [50, 0], + [116, 46], + [78, -37], + [176, -12], + [41, 8], + [56, 1], + [34, 13], + [42, 61], + [46, 2], + [38, -31], + [0, -12], + [-60, -56], + [-12, -47], + [-18, -16], + [-61, -32], + [-83, -2], + [-63, -39], + [33, -8], + [68, -37], + [66, -74], + [27, -73], + [-171, -183], + [-36, -8], + [-29, 8], + [-41, -8], + [-59, -38], + [-9, -46], + [21, -72], + [-32, -56], + [0, -19], + [68, 3], + [57, 23], + [74, 47], + [117, 54], + [56, -16], + [28, -32], + [0, -39], + [-27, -67], + [4, -65], + [70, -86], + [41, -14], + [50, -13], + [54, 6], + [67, 38], + [46, 11], + [86, -9], + [42, 7], + [98, 43], + [106, 21], + [92, 56], + [45, 2], + [52, -28], + [165, -36], + [59, -33], + [79, -21], + [97, -102], + [20, -50], + [-13, -30], + [-32, -16], + [-47, -8], + [-65, -57], + [24, -28], + [-8, -54], + [-57, -48], + [-22, -74], + [-70, -12], + [-39, 11], + [-94, 48], + [-39, -11], + [-7, -29], + [21, -33], + [9, -49], + [-18, -22], + [-54, -17], + [-46, -2], + [-40, 14], + [-32, -13], + [-31, -31], + [-27, -43], + [-2, -76], + [43, -60], + [85, -72], + [132, -135], + [-9, -313], + [5, -200], + [30, -222], + [86, -39], + [99, 161], + [58, 139], + [25, 24], + [47, 13], + [111, -2], + [25, -24], + [88, -26], + [43, -28], + [2, -83], + [-22, -21], + [-50, -4], + [-92, 12], + [-68, -35], + [-25, -78], + [0, -83], + [32, -43], + [99, -87], + [18, -26], + [18, -31], + [-11, -48], + [-58, -36], + [-43, -8], + [-81, -42], + [-27, 0], + [-23, 17], + [-34, 6], + [-155, -56], + [-23, -109], + [-104, -72], + [-81, -17], + [-40, -19], + [-20, -17], + [-14, -35], + [-34, -30], + [-25, -40], + [-74, -44], + [-43, -36], + [-74, -12], + [-88, -35], + [-52, -10], + [-262, 10], + [-65, 28], + [-134, -9], + [-271, 6], + [-45, 35], + [-36, 16], + [-133, 24], + [-235, -122], + [-143, -47], + [-168, -165], + [-23, -164], + [0, -83], + [35, -36], + [52, -17], + [57, -36], + [95, -108], + [13, -28], + [0, -26], + [-11, -19], + [-20, -12], + [48, -176], + [113, -111], + [130, -53], + [44, -49], + [39, -29], + [71, -32], + [45, -46], + [84, -19], + [18, -10], + [16, -16], + [-2, -29], + [-46, -40], + [1, -26], + [79, -118], + [34, -32], + [38, -4], + [30, -34], + [153, -82], + [79, -56], + [23, -33], + [-5, -40], + [-22, -41], + [6, -75], + [18, -109], + [24, -47], + [36, -132], + [9, -148], + [48, -95], + [4, -59], + [-8, -21], + [0, -83], + [-14, -90], + [32, -31], + [-11, -55], + [-79, 4], + [-3, -19], + [14, -24], + [43, -19], + [20, -30], + [-11, -237], + [5, -44], + [23, -28], + [14, -42], + [58, -46], + [149, -52], + [91, -82], + [81, -44], + [90, -21], + [95, 22], + [40, -6], + [41, -26], + [14, -42], + [-41, -21], + [-36, 2], + [0, -14], + [95, -71], + [27, -42], + [-4, -38], + [-167, -195], + [5, -57], + [-16, -13], + [-58, -17], + [-137, -18], + [-89, -37], + [-73, -2], + [-83, -14], + [-43, 11], + [-27, 29], + [-120, 73], + [-56, 45], + [-77, 22], + [-20, 44], + [-2, 31], + [-14, 17], + [-41, 19], + [-162, 7], + [-42, 14], + [-37, 3], + [-138, -12], + [-158, 19], + [-38, 0], + [-111, -25], + [-43, 5], + [-27, 27], + [-6, 33], + [35, 70], + [36, 49], + [5, 51], + [-16, 27], + [-104, 40], + [-75, 14], + [-135, 5], + [-83, 21], + [-129, -6], + [-93, 18], + [-43, 22], + [-31, 32], + [-30, 63], + [-61, 19], + [-56, 2], + [-27, -10], + [-167, -98], + [-277, -236], + [-129, -97], + [-36, -12], + [-29, 3], + [-16, 21], + [0, 24], + [25, 52], + [2, 26], + [-9, 16], + [-18, 7], + [-23, -5], + [-15, -115], + [40, -102], + [102, 2], + [52, -28], + [41, -70], + [21, -79], + [-12, -46], + [-14, -17], + [-32, -14], + [3, -30], + [-53, -41], + [-76, -112], + [11, -52], + [42, 3], + [39, -23], + [85, -19], + [63, 23], + [113, 14], + [97, 36], + [63, 14], + [19, 14], + [13, 44], + [18, 24], + [29, 14], + [36, 3], + [25, -5], + [68, -59], + [43, -90], + [39, -43], + [-21, -32], + [-4, -85], + [45, -98], + [-2, -27], + [-41, -39], + [9, -14], + [-20, -21], + [-29, -14], + [-129, 29], + [-67, -1], + [-26, -11], + [-9, -44], + [95, -107], + [-4, -147], + [-24, -25], + [-97, -38], + [-68, -59], + [-27, -54], + [-2, -38], + [18, -38], + [106, -55], + [43, -37], + [0, -76], + [41, -5], + [36, -14], + [50, -56], + [25, -72], + [68, -56], + [13, -23], + [-4, -41], + [-36, -27], + [-23, 2], + [-23, 16], + [-31, 7], + [-54, -6], + [-54, -34], + [-23, -26], + [-18, -56], + [-16, -5], + [-58, 7], + [-61, -30], + [-9, -24], + [27, -35], + [-4, -10], + [-30, -25], + [-43, -118], + [-105, -171], + [-34, -26], + [-15, -51], + [33, -21], + [36, -5], + [32, -19], + [61, -66], + [86, -140], + [-4, -37], + [-18, -29], + [-38, -15], + [-41, -2], + [-32, 10], + [-36, 2], + [-58, -28], + [-50, -4], + [-120, 35], + [-22, 33], + [20, 53], + [-3, 23], + [68, 61], + [-1, 16], + [-16, 16], + [-92, 39], + [-11, 16], + [-49, 29], + [-52, 5], + [-52, -24], + [-43, -11], + [-108, -5], + [-154, 22], + [-135, 49], + [-21, 19], + [0, 45], + [14, 12], + [27, 2], + [81, -24], + [-7, 12], + [-85, 87], + [-24, 14], + [-25, 42], + [-121, 87], + [-29, 66], + [-75, 45], + [-25, 7], + [-183, 5], + [-92, -21], + [-118, -8], + [-105, -37], + [-51, -64], + [8, -56], + [-14, -19], + [-29, -8], + [-44, -40], + [-33, -60], + [-19, 3], + [-32, 22], + [-69, 69], + [-67, 19], + [-34, 20], + [-68, 127], + [-25, 31], + [-38, 11], + [-23, -9], + [-17, -25], + [-73, -38], + [-92, -75], + [-50, -79], + [-67, -183], + [-25, -15], + [-104, 1], + [-62, -41], + [-21, -80], + [-2, -158], + [20, -38], + [15, -6], + [0, -12], + [40, -39], + [187, -108], + [66, -22], + [75, -43], + [167, 28], + [29, 19], + [18, -9], + [2, -62], + [-38, -65], + [-52, -34], + [-165, -55], + [-132, -64], + [-143, -178], + [-205, -370], + [-66, -71], + [32, -51], + [-7, -66], + [-43, -56], + [-101, -34], + [-27, -19], + [16, -82], + [-14, -14], + [-65, 12], + [-16, -14], + [7, -13], + [27, -13], + [-7, -40], + [-34, -12], + [-41, 17], + [-2, -43], + [57, 0], + [20, -10], + [18, -40], + [34, -42], + [5, -29], + [-28, -65], + [-44, -34], + [-18, 3], + [-12, 17], + [21, 51], + [-12, 3], + [-39, -39], + [-73, -111], + [-68, -41], + [-77, -59], + [-53, -6], + [-54, 59], + [-100, 64], + [-145, 76], + [-86, 67], + [-99, 14], + [-41, -6], + [-106, -57], + [-13, -59], + [-34, -22], + [-38, -44], + [-27, -71], + [11, -65], + [48, -78], + [7, -29], + [-2, -113], + [11, -21], + [41, -31], + [17, -29], + [39, 21], + [70, 2], + [65, -7], + [30, -11], + [34, -33], + [74, 2], + [57, -45], + [72, -95], + [21, -18], + [47, -17], + [22, -27], + [33, -99], + [58, -67], + [59, -109], + [16, -78], + [-29, -158], + [-2, -121], + [-10, -40], + [22, -56], + [22, 4], + [34, 31], + [32, -5], + [22, -17], + [9, -59], + [-9, -167], + [-11, -31], + [-56, -44], + [-34, -13], + [-25, 10], + [-15, 19], + [-37, -7], + [-24, -23], + [-18, -32], + [0, -58], + [-20, -19], + [-84, -5], + [-63, 13], + [0, 35], + [25, 21], + [-64, 2], + [-35, -12], + [-138, 1], + [-136, 62], + [-40, 9], + [-90, 0], + [-44, 10], + [-88, 42], + [-63, 59], + [-84, 12], + [-97, -6], + [-38, -15], + [-99, -70], + [-101, -42], + [-30, -7], + [-60, 11], + [-34, -4], + [-59, -24], + [-9, -12], + [0, -28], + [12, -16], + [-5, -14], + [-15, -24], + [-57, -40], + [-48, -12], + [-92, -7], + [-99, -32], + [-84, -43], + [-148, -42], + [-48, -28], + [-31, -26], + [0, -19], + [90, -51], + [21, -34], + [83, -12], + [38, -39], + [21, -51], + [-2, -38], + [18, -10], + [52, -89], + [32, -22], + [38, -16], + [39, 4], + [13, 5], + [20, 36], + [108, -10], + [25, -7], + [61, -34], + [52, -65], + [-2, -29], + [-34, -14], + [-38, -104], + [0, -118], + [-24, -23], + [-52, 28], + [-16, -4], + [-7, -17], + [86, -57], + [-9, -25], + [-47, -31], + [-11, 2], + [2, 40], + [-41, -7], + [23, -45], + [-5, -14], + [-48, -18], + [-112, -79], + [-9, -65], + [-34, -59], + [-2, -31], + [12, -33], + [76, -33], + [89, -116], + [14, -101], + [-49, -118], + [-21, -24], + [-21, 2], + [-88, 105], + [-53, 47], + [-77, 29], + [-78, -3], + [-46, -30], + [-34, -79], + [-38, -44], + [-52, -28], + [-120, -7], + [-33, -12], + [-77, -9], + [-54, 12], + [-91, 45], + [-63, 20], + [-27, 0], + [-58, -41], + [-30, -39], + [-11, -75], + [-72, -122], + [-11, -53], + [-29, -37], + [-122, -68], + [-45, -14], + [-174, -22], + [-85, -41], + [-91, 2], + [-11, -12], + [23, -43], + [-9, -11], + [-54, -3], + [2, -12], + [9, 0], + [21, -28], + [-5, -44], + [-29, -20], + [-4, -26], + [15, -18], + [3, -26], + [-9, -16], + [-46, -32], + [-76, -20], + [-32, 18], + [0, 24], + [-34, 38], + [-29, -12], + [-47, -44], + [-32, -15], + [-43, -7], + [-75, 8], + [-90, -74], + [-134, -172], + [5, -92], + [-14, -51], + [-38, -12], + [-61, 2], + [-43, 10], + [-65, 54], + [-93, 34], + [-20, 19], + [-16, 25], + [-5, 41], + [-51, 71], + [-4, 31], + [-32, 49], + [-67, 94], + [-81, 27], + [-84, 77], + [-25, 132], + [-9, 15], + [-72, 16], + [-32, 59], + [0, 27], + [14, 20], + [-45, 28], + [-28, 1], + [-137, -71], + [-54, -6], + [-61, 4], + [-27, 17], + [-7, 14], + [18, 28], + [68, 24], + [-21, 12], + [-29, -7], + [-49, -31], + [-77, -28], + [-43, 0], + [-29, 9], + [2, 34], + [13, 12], + [-27, 9], + [-24, -4], + [-39, -33], + [-65, -39], + [-86, -4], + [-93, 7], + [-76, 24], + [-165, 36], + [-147, 49], + [-153, 109], + [-105, 138], + [-57, 114], + [-32, 40], + [-26, 143], + [-7, 532], + [15, 153], + [-7, 381], + [25, 49], + [49, 145], + [114, 233], + [37, 112], + [96, 90], + [-6, 43], + [11, 12], + [-3, 30], + [153, 180], + [40, 65], + [60, 215], + [23, 51], + [65, 82], + [19, 70], + [-1, 142], + [13, 26], + [-4, 40], + [12, 57], + [1, 46], + [-10, 36], + [9, 46], + [25, 49], + [195, 225], + [42, 94], + [42, 237], + [67, 126], + [30, 81], + [79, 120], + [59, 112], + [116, 106], + [0, 68], + [-21, 27], + [8, 188], + [-9, 20], + [0, 47], + [75, 147], + [55, 65], + [98, 78], + [47, 8], + [31, 24], + [-1, 129], + [39, 186], + [16, 58], + [63, 107], + [16, 47], + [11, 102], + [32, 62], + [5, 74], + [23, 94], + [56, 104], + [37, 179], + [74, 170], + [69, 124], + [61, 93], + [34, 36], + [1, 16], + [40, 68], + [65, 77], + [28, 50], + [5, 63], + [32, 92], + [-2, 80], + [-15, 58], + [-25, 39], + [-15, 44], + [0, 60], + [21, 42], + [168, 146], + [23, 55], + [23, 134], + [58, 117], + [-49, 138], + [-82, 97], + [0, 63], + [35, 79], + [84, 109], + [39, 76], + [80, 107], + [6, 91], + [-7, 121], + [-40, 92], + [-63, 73], + [-176, 126], + [-14, 37], + [-51, 54], + [-11, 52], + [-38, 38], + [-92, 176], + [38, 177], + [52, 77], + [5, 58], + [53, 101], + [23, 111], + [29, 44], + [4, 62], + [25, 79], + [28, 49], + [52, 57], + [11, 109], + [18, 31], + [61, 61], + [-2, 55], + [-47, 49], + [-3, 34], + [12, 36], + [58, 106], + [86, 56], + [59, 20], + [46, 73], + [-23, 62], + [-126, 61], + [-24, 40], + [-5, 103], + [79, 150], + [5, 32], + [-5, 40], + [-26, 36], + [-116, -11], + [-54, -56], + [-147, -75], + [-37, -13], + [-68, 0], + [-9, -6], + [-39, -116], + [-36, -65], + [-95, -115], + [-44, -16], + [-47, 9], + [-59, 27], + [-139, 5], + [-5, 63], + [21, 45], + [95, 129], + [-2, 23], + [-14, 9], + [-68, -16], + [-49, -31], + [-9, -26], + [-35, -44], + [-63, -39], + [-47, -18], + [-81, -4], + [-133, -25], + [-31, 3], + [-62, 24], + [-110, -83], + [-37, -18], + [-38, 0], + [-124, 41], + [-21, 31], + [-11, 64], + [-33, 23], + [-163, 12], + [-22, 10], + [-19, 50], + [3, 103], + [49, 113], + [13, 114], + [27, 22], + [15, 135], + [-31, 10], + [-58, 88], + [-26, 16], + [-21, 63], + [-35, 28], + [-45, 13], + [-186, 19], + [-56, -23], + [-31, -38], + [-30, -22], + [-30, -9], + [-44, 18], + [-12, 54], + [88, 92], + [30, 80], + [-19, 137], + [14, 63], + [182, 221], + [46, 93], + [51, 77], + [56, 142], + [60, 101], + [16, 43], + [45, 61], + [4, 48], + [12, 7], + [16, 38], + [-4, 45], + [-66, 108], + [-9, 48], + [4, 38], + [21, 48], + [87, 58], + [37, 44], + [-1, 170], + [21, 143], + [16, 54], + [71, 81], + [62, -4], + [16, 10], + [63, -3], + [67, -54], + [16, -33], + [0, -38], + [29, -38], + [46, -35], + [41, -29], + [51, -22], + [128, -25], + [37, -77], + [9, -118], + [38, -28], + [70, 3], + [41, 19], + [88, 3], + [41, -34], + [80, -90], + [74, -16], + [38, -15], + [57, -32], + [42, -45], + [29, -16], + [46, -16], + [50, -6], + [74, 48], + [12, 54], + [47, 81], + [-5, 41], + [8, 44], + [41, 35], + [63, 3], + [91, 49], + [25, 76], + [74, 83], + [71, 7], + [75, 25], + [45, 55], + [8, 47], + [112, 134], + [17, 52], + [-1, 86], + [54, 38], + [50, 64], + [24, 96], + [71, 28], + [33, -6], + [16, -16], + [26, -108], + [21, -42], + [62, 54], + [78, 26], + [9, 48], + [95, 67], + [13, 32], + [16, 112], + [24, 44], + [146, 74], + [37, 35], + [8, 86], + [-62, 51], + [-63, 39], + [-54, 19], + [-37, 28], + [-13, 45], + [0, 111], + [-21, 36], + [-41, 35], + [-33, 19], + [-28, 4], + [-25, 24], + [-126, -6], + [-37, 13], + [-50, -1], + [-71, 58], + [-17, 41], + [0, 39], + [13, 44], + [33, 38], + [58, 7], + [71, -10], + [53, -19], + [58, 13], + [0, 93], + [-20, 38], + [-100, 134], + [-46, 38], + [-17, 35], + [29, 42], + [-31, 64], + [-84, 23], + [-85, 6], + [-91, -29], + [-99, -231], + [-41, -35], + [-62, -38], + [-46, 0], + [-83, 19], + [-41, -13], + [-29, -19], + [-50, -10], + [-25, 16], + [0, 61], + [53, 153], + [37, 179], + [100, 105], + [16, 61], + [-30, 142], + [20, 54], + [-1, 127], + [46, 60], + [19, 44], + [54, 56], + [34, 63], + [23, 18], + [30, 13], + [35, 0], + [46, -32], + [102, -50], + [170, -68], + [82, -64], + [38, -8], + [74, 0], + [88, -16], + [91, 3], + [127, 62], + [88, 32], + [82, 9], + [130, -7], + [109, -41], + [149, -83], + [111, -28], + [64, -40], + [87, -28], + [30, -36], + [23, -111], + [64, -76], + [41, -29], + [204, -13], + [87, -20], + [71, -7], + [58, 31], + [76, 57], + [66, 30], + [77, 24], + [159, 127], + [41, 43], + [35, 99], + [57, 92], + [43, 47], + [37, 6], + [128, 0], + [201, 37], + [160, 41], + [100, 34], + [93, -37], + [56, -9], + [201, -77], + [165, -50], + [237, -101], + [229, -126], + [116, -43], + [84, -43], + [173, -117], + [105, -102], + [80, -40], + [84, -59], + [69, -24] + ], + [ + [43945, 438075], + [100, -71], + [59, -23], + [253, -58], + [52, 9], + [36, 31], + [63, 10], + [30, 0], + [46, -15], + [13, -30], + [-13, -40], + [4, -34], + [43, -2], + [52, 8], + [40, 12], + [36, 24], + [34, 5], + [66, -18], + [43, -38], + [-10, -78], + [33, -19], + [50, 19], + [0, 55], + [23, 74], + [0, 43], + [39, 23], + [60, 0], + [96, -40], + [63, -44], + [13, -30], + [-43, -51], + [0, -35], + [4, -16], + [43, -45], + [66, 8], + [0, 15], + [-20, 25], + [-40, 26], + [10, 35], + [30, 15], + [53, -2], + [53, -56], + [33, -86], + [27, -15], + [33, -5], + [63, -48], + [-10, -31], + [6, -22], + [24, -23], + [30, -51], + [-10, -38], + [30, -20], + [53, 3], + [49, -8], + [47, -18], + [33, 0], + [36, -20], + [40, 5], + [43, -5], + [7, -53], + [36, -25], + [20, -31], + [-3, -28], + [66, -33], + [-6, -42], + [-37, -29], + [-7, -18], + [10, -17], + [-16, -41], + [34, -33], + [49, -28], + [10, -25], + [-33, -30], + [10, -64], + [-42, -50], + [10, -74], + [-24, -33], + [3, -10], + [27, -15], + [14, -28], + [-4, -23], + [-53, -36], + [-6, -27], + [50, -112], + [0, -56], + [-27, -58], + [0, -36], + [8, -25], + [19, -23], + [4, -28], + [-10, -25], + [-50, -26], + [-23, -27], + [7, -33], + [36, -10], + [24, -15], + [16, -46], + [-39, -51], + [13, -12], + [0, -31], + [-23, -23], + [-33, -5], + [-20, -15], + [0, -46], + [-33, -25], + [24, -59], + [-24, -60], + [7, -29], + [-26, -25], + [-10, -25], + [7, -92], + [-80, -35], + [57, -94], + [0, -33], + [-46, -61], + [-10, -35], + [7, -54], + [16, -25], + [7, -35], + [-16, -51], + [-25, -14], + [-47, -75], + [-67, -66], + [-98, -122], + [-30, -60], + [13, -69], + [-13, -30], + [7, -23], + [26, -10], + [70, -5], + [43, 15], + [73, 8], + [42, 15], + [83, 61], + [23, 89], + [30, 17], + [22, 77], + [29, 27], + [38, 0], + [23, 13], + [36, -2], + [50, -33], + [23, -155], + [4, -136], + [-49, -57], + [0, -50], + [49, -28], + [27, -5], + [17, -33], + [-4, -20], + [-16, -20], + [-47, -31], + [-23, -26], + [10, -27], + [1, -48], + [-33, -102], + [-4, -86], + [9, -44], + [-31, -68], + [0, -71], + [6, -25], + [15, -14], + [10, -171], + [26, -13], + [13, -23], + [10, -66], + [-23, -88], + [-36, -51], + [-3, -23], + [17, -76], + [-37, -40], + [-25, -2], + [-35, -20], + [-130, -6], + [-10, -21], + [-173, -23], + [-7, -20], + [40, -21], + [105, -16], + [97, -39], + [66, -51], + [20, -30], + [24, -173], + [1, -170], + [-39, -83], + [-15, -117], + [70, -195], + [8, -70], + [-7, -81], + [133, -95], + [59, -84], + [17, -159], + [-3, -92], + [-62, -91], + [-63, -61], + [3, -20], + [54, -30], + [19, -34], + [4, -27], + [0, -58], + [-29, -38], + [-45, -383], + [0, -158], + [-61, -141], + [-49, -191], + [1, -46], + [-82, -142], + [-92, -53], + [-122, -31], + [-77, 0], + [-10, 15], + [-99, 68], + [-83, 94], + [-30, 18], + [-33, 12], + [-175, 0], + [10, -28], + [53, -30], + [13, -20], + [53, -193], + [47, -96], + [76, -20], + [155, -3], + [113, 41], + [58, 13], + [61, -7], + [60, -41], + [19, -38], + [17, -66], + [7, -145], + [-52, -86], + [-53, -58], + [-152, -155], + [-25, -5], + [-58, -108], + [-33, -139], + [-22, -20], + [-43, -88], + [0, -24], + [16, -15], + [-48, -121], + [-63, -46], + [-43, -69], + [-109, -109], + [-244, -157], + [-20, -31], + [-23, -70], + [-25, -15], + [-61, -59], + [-153, -88], + [-161, -36], + [-115, -82], + [-38, -112], + [33, -94], + [-21, -25], + [24, -54], + [54, -23], + [49, -92], + [-76, -88], + [-146, -230], + [-146, -107], + [-94, -26], + [-178, -91], + [-76, -48], + [-53, -21], + [-79, -5], + [-23, -18], + [-13, -54], + [-65, -26], + [-122, -67], + [-117, 2], + [-30, 25], + [-56, 5], + [-24, -15], + [-9, -56], + [-43, -7], + [-66, 2], + [-116, 51], + [-56, 15], + [-63, 10], + [-172, 4], + [-47, 31], + [-56, 68], + [-63, 48], + [-102, 33], + [-50, 8], + [-109, -3], + [-119, -44], + [-89, -53], + [-56, -61], + [0, -35], + [80, -53], + [86, -84], + [30, -48], + [3, -38], + [-45, -68], + [-54, -52], + [-3, -50], + [11, -7], + [-1, -112], + [-13, -66], + [4, -74], + [-36, -56], + [-17, -45], + [46, 12], + [40, 21], + [53, 10], + [82, 43], + [30, 23], + [82, 97], + [67, 25], + [36, 38], + [79, 56], + [86, 43], + [123, -6], + [69, -59], + [74, -80], + [75, -34], + [13, -21], + [7, -32], + [-57, -43], + [-23, -31], + [-13, -28], + [1, -30], + [13, -46], + [37, -35], + [6, -23], + [33, -35], + [26, -11], + [27, 8], + [20, -13], + [-3, -63], + [-60, -31], + [-13, -27], + [23, -41], + [50, -5], + [17, -20], + [26, -43], + [21, -69], + [32, -43], + [4, -28], + [-10, -25], + [-30, -13], + [-43, -5], + [-36, 0], + [-50, 25], + [-6, -10], + [16, -20], + [34, -18], + [-1, -12], + [20, -8], + [47, -61], + [0, -45], + [-20, -28], + [-56, -29], + [-3, -22], + [-30, -28], + [-73, -10], + [-62, -44], + [-37, -13], + [-152, -8], + [-26, -20], + [-6, -91], + [-36, -71], + [-27, -28], + [-30, -10], + [-56, 0], + [-238, 32], + [-132, 5], + [-59, -25], + [-162, -99], + [-13, -66], + [20, -64], + [0, -53], + [-39, -66], + [0, -58], + [-37, -71], + [-16, -66], + [-56, -87], + [-52, -55], + [-10, -26], + [6, -25], + [27, -26], + [0, -17], + [-49, -45], + [-96, -201], + [6, -68], + [14, -19], + [-3, -76], + [-89, -84], + [-16, -94], + [-43, -42], + [-45, -21], + [-22, -75], + [4, -34], + [-12, -89], + [-17, -48], + [-3, -56], + [-23, -48], + [-6, -53], + [-60, -16], + [-43, 28], + [-30, 74], + [-52, 15], + [-14, 50], + [33, 29], + [49, 177], + [5, 173], + [-77, 53], + [-64, 62], + [-27, 4], + [-82, 32], + [-47, 3], + [-93, 91], + [-69, 20], + [-73, 0], + [-59, -44], + [-120, 44], + [-19, 58], + [-40, 61], + [43, 50], + [33, 23], + [122, -12], + [63, -51], + [72, -10], + [34, 18], + [9, 61], + [99, 81], + [30, 41], + [17, 33], + [-1, 38], + [23, 58], + [93, 165], + [-16, 421], + [-24, 194], + [-208, 258], + [-130, 123], + [-62, 130], + [-9, 547], + [-16, 111], + [-353, 300], + [-124, 141], + [-115, 170], + [-99, 192], + [-16, 172], + [-54, 135], + [-136, 139], + [-20, 53], + [0, 145], + [6, 63], + [17, 46], + [-1, 147], + [-123, 306], + [0, 43], + [-50, 168], + [-83, 86], + [-10, 35], + [23, 33], + [23, -5], + [142, 3], + [60, 23], + [39, 26], + [0, 92], + [-27, 128], + [22, 92], + [22, 37], + [44, 3], + [75, -47], + [106, 34], + [281, 183], + [101, 102], + [66, 88], + [119, 105], + [101, 165], + [146, 106], + [190, 271], + [23, 112], + [53, 182], + [74, 137], + [0, 89], + [-18, 78], + [-66, 95], + [4, 108], + [28, 28], + [76, 118], + [0, 70], + [-77, 112], + [-16, 94], + [-31, 100], + [-7, 97], + [-16, 12], + [-3, 33], + [23, 28], + [30, 15], + [43, 5], + [40, -6], + [43, 28], + [53, 20], + [16, 37], + [23, 8], + [33, -5], + [19, -19], + [115, 4], + [-2, 32], + [39, 49], + [41, 149], + [-1, 85], + [-23, 46], + [-8, 206], + [-39, 83], + [-8, 70], + [0, 282], + [33, 221], + [-8, 65], + [27, 30], + [52, 18], + [33, 3], + [30, 70], + [7, 68], + [-17, 14], + [-7, 33], + [7, 28], + [49, 28], + [63, 76], + [19, 2], + [50, 31], + [4, 46], + [-57, 83], + [-7, 86], + [19, 87], + [23, 25], + [44, 25], + [11, 18], + [-18, 26], + [6, 23], + [50, 17], + [36, -10], + [63, 0], + [23, 5], + [10, 21], + [-6, 17], + [-70, 36], + [-13, 28], + [0, 35], + [19, 38], + [34, 18], + [52, 8], + [3, 33], + [-46, 17], + [3, 28], + [20, 20], + [30, 13], + [10, 16], + [-14, 20], + [0, 25], + [180, 112], + [42, 3], + [33, 40], + [26, 18], + [-96, 36], + [0, 25], + [89, 81], + [0, 36], + [-32, 33], + [2, 81], + [33, 33], + [53, 32], + [-33, 34], + [-50, -20], + [-89, -82], + [-53, -20], + [-43, 5], + [-17, 17], + [13, 48], + [43, 24], + [-13, 25], + [-70, 20], + [-13, 23], + [10, 86], + [-37, 23], + [-115, 25], + [-176, -52], + [-39, -24], + [-4, -50], + [-17, -27], + [-71, -22], + [-58, 0], + [-71, 18], + [-42, 62], + [-58, 41], + [-100, 36], + [-42, 36], + [0, 36], + [71, 23], + [-12, 49], + [-36, 28], + [-13, 68], + [46, 28], + [119, -10], + [13, 33], + [-26, 20], + [-63, 13], + [-17, 38], + [33, 48], + [37, 10], + [29, 58], + [7, 41], + [-14, 13], + [-23, -23], + [-23, -5], + [-30, 10], + [-13, 41], + [20, 27], + [26, 8], + [17, 25], + [-23, 15], + [0, 31], + [9, 15], + [47, 21], + [-14, 35], + [-23, 28], + [3, 36], + [30, 37], + [3, 56], + [86, 23], + [-20, 79], + [16, 20], + [62, 3], + [29, 16], + [146, -23], + [84, 118], + [38, 94], + [-8, 129], + [92, 129], + [252, 224], + [6, 18], + [88, 59], + [36, 41], + [-1, 86], + [-16, 28], + [0, 31], + [16, 22], + [66, 46], + [40, 51], + [6, 106], + [43, 31], + [96, 48], + [82, 81], + [7, 31], + [-17, 45], + [-33, 28], + [3, 38], + [30, 26], + [66, 33], + [17, 43], + [26, 30], + [122, 52], + [30, 43], + [62, -5], + [34, 22], + [42, 8], + [20, -10], + [30, 10], + [7, 12], + [43, 4], + [18, 57], + [2, 59], + [39, 20], + [47, -15], + [59, 20], + [40, 29], + [36, 45], + [218, 1], + [147, 9], + [42, -32], + [29, -63], + [30, -27] + ], + [ + [47080, 385465], + [80, -5], + [34, -10], + [43, -34], + [4, -74], + [26, -23], + [44, -5], + [84, -34], + [7, -36], + [-11, -18], + [4, -49], + [-47, -59], + [-10, -28], + [1, -54], + [-51, -44], + [-77, -33], + [-26, -21], + [-53, -64], + [-21, -41], + [0, -38], + [-37, -53], + [1, -65], + [28, -31], + [43, -17], + [6, -23], + [-6, -26], + [-31, -28], + [-44, -7], + [-73, -33], + [-22, -188], + [0, -63], + [33, -28], + [14, -31], + [-7, -26], + [-33, -30], + [-17, -34], + [27, -33], + [47, -13], + [33, -23], + [4, -75], + [43, -56], + [-6, -101], + [-40, -92], + [0, -41], + [-36, -147], + [4, -31], + [50, -38], + [43, -49], + [37, -10], + [37, -29], + [7, -30], + [-43, -57], + [39, -31], + [-6, -23], + [43, 10], + [34, 39], + [-4, 118], + [50, 80], + [-20, 75], + [80, 71], + [-40, 57], + [26, 36], + [37, 28], + [3, 158], + [27, 53], + [43, 39], + [53, 6], + [77, -24], + [7, 70], + [73, 72], + [57, 31], + [57, 0], + [67, -33], + [47, -8], + [100, -82], + [21, -39], + [133, -31], + [37, -33], + [11, -43], + [-4, -37], + [-60, -146], + [-26, -116], + [-3, -28], + [13, -5], + [33, 28], + [23, 36], + [27, 87], + [53, 116], + [10, 108], + [13, 5], + [-43, 180], + [-30, 24], + [-114, 5], + [-71, 35], + [-100, 31], + [-60, 57], + [-15, 42], + [-166, 108], + [-30, 11], + [-24, 28], + [0, 47], + [33, 74], + [4, 39], + [-14, 28], + [0, 26], + [50, 23], + [7, 26], + [-14, 64], + [23, 44], + [46, 43], + [8, 147], + [16, 21], + [30, 15], + [74, -5], + [27, -20], + [23, -28], + [20, -59], + [38, -59], + [27, -6], + [79, 6], + [21, -47], + [-11, -53], + [48, -52], + [53, -5], + [30, -24], + [23, -53], + [-5, -29], + [12, -195], + [47, -23], + [24, 126], + [16, 16], + [21, 59], + [56, 49], + [37, 18], + [112, -3], + [39, -18], + [63, -2], + [35, -73], + [38, -33], + [85, -7], + [43, 2], + [34, 16], + [20, 38], + [23, 24], + [56, 30], + [36, 2], + [42, 19], + [40, -2], + [110, -28], + [60, -42], + [40, 3], + [108, 44], + [50, 0], + [60, -7], + [37, -18], + [50, -45], + [117, 32], + [44, -2], + [36, -16], + [14, -23], + [-6, -267], + [-14, -29], + [-3, -67], + [-12, -20], + [5, -41], + [27, -31], + [24, -57], + [17, -110], + [-6, -75], + [-49, -77], + [-6, -95], + [31, -382], + [1, -118], + [23, -100], + [216, -261], + [47, -34], + [33, -43], + [161, -139], + [20, -44], + [1, -26], + [-37, -93], + [-37, -143], + [-63, -85], + [-47, -44], + [-26, -59], + [-40, -39], + [-19, -63], + [0, -109], + [97, -77], + [29, 2], + [17, -28], + [14, -59], + [0, -46], + [-27, -57], + [-3, -54], + [-43, -151], + [-37, -39], + [-65, -30], + [-34, -49], + [-75, -68], + [-10, -28], + [-33, -16], + [-26, -2], + [-24, 7], + [-17, 16], + [-4, 20], + [-88, -6], + [-82, -25], + [-100, 52], + [-101, 12], + [-213, 0], + [-51, 5], + [-28, 19], + [-20, 1], + [-86, -17], + [-33, -32], + [-30, -15], + [-30, -8], + [-37, 3], + [-37, 12], + [-6, 43], + [-24, 20], + [-122, 17], + [-61, -33], + [-41, -8], + [-58, -70], + [-25, -66], + [-27, -16], + [-130, -11], + [-33, 74], + [-26, 13], + [-65, 14], + [-104, 43], + [-34, 5], + [-30, 13], + [-10, 31], + [-13, 13], + [-64, 18], + [-130, 15], + [-50, 12], + [-228, -2], + [-30, -13], + [-46, 0], + [-28, 2], + [-43, 29], + [-90, 6], + [-47, 14], + [-110, 0], + [-50, 10], + [-44, 67], + [-44, 36], + [11, 41], + [-48, 31], + [-7, 77], + [-36, 64], + [-1, 31], + [24, 44], + [36, 15], + [-3, 31], + [-34, 39], + [-26, 61], + [-24, 8], + [-40, -34], + [-30, 0], + [-30, 5], + [-4, 26], + [-32, 14], + [-74, -94], + [-84, -72], + [-53, -18], + [-87, -70], + [-67, -36], + [-28, -1], + [-35, -19], + [-50, -3], + [-54, 15], + [-27, 26], + [-5, 28], + [-49, 50], + [-10, 92], + [-30, -3], + [-27, -13], + [-3, -33], + [-27, -21], + [-43, -2], + [-24, 28], + [-3, 39], + [17, 58], + [46, 3], + [40, -13], + [41, 8], + [0, 23], + [-48, 44], + [-10, 26], + [7, 56], + [9, 10], + [-3, 78], + [24, 30], + [55, 38], + [3, 57], + [-25, 21], + [-3, 44], + [16, 49], + [43, 52], + [-8, 123], + [25, 40], + [23, 6], + [10, 31], + [-13, 26], + [-30, 17], + [-12, 16], + [-25, 0], + [-37, 18], + [-17, 44], + [3, 87], + [27, 34], + [41, 13], + [88, 68], + [22, 83], + [-53, 47], + [-22, 30], + [-6, 37], + [9, 20], + [30, 28], + [0, 26], + [-26, 13], + [-101, 165], + [23, 68], + [0, 116], + [-20, 11], + [-14, 26], + [3, 107], + [44, 34], + [29, 7], + [74, 90], + [10, 40], + [20, 20], + [35, 14], + [16, 30], + [-38, 100], + [-47, 24], + [-26, -9], + [-44, 24], + [-14, 41], + [20, 46], + [-9, 5], + [-8, 39], + [-3, 87], + [-34, 69], + [-23, 23], + [-23, 60], + [1, 60], + [-12, 45], + [51, 109], + [-14, 58], + [-27, 36], + [6, 31], + [40, 49], + [30, 23], + [137, 36], + [14, 31], + [-1, 49], + [42, 50], + [3, 32], + [-31, 36], + [9, 91], + [77, 105], + [64, 23], + [66, -33], + [104, 41], + [54, 0], + [13, 36], + [86, 93], + [61, 13], + [40, -5], + [10, -26], + [27, -15] + ], + [ + [72716, 486135], + [5, -7], + [101, -1], + [81, -24], + [16, -36], + [1, -39], + [10, -14], + [24, -4], + [8, -20], + [-6, -12], + [-59, -12], + [-36, -21], + [58, -19], + [58, 1], + [22, -13], + [13, -35], + [35, -16], + [3, -24], + [44, -54], + [12, -50], + [13, -16], + [43, -26], + [-1, -40], + [-28, -19], + [-1, -44], + [9, -16], + [12, -13], + [67, -15], + [24, -13], + [10, -116], + [34, -50], + [-19, -30], + [0, -23], + [41, -28], + [37, -5], + [49, -23], + [33, -39], + [-14, -52], + [14, -25], + [57, -57], + [0, -14], + [-20, -28], + [-19, -2], + [-33, -22], + [-5, -33], + [-13, -17], + [-23, -11], + [7, -81], + [21, -37], + [32, -18], + [54, -7], + [7, -9], + [-3, -40], + [-18, -20], + [0, -15], + [51, -23], + [9, -19], + [0, -79], + [-3, -25], + [-42, -34], + [31, -56], + [-2, -107], + [-9, -7], + [-28, 4], + [-41, 35], + [-17, -3], + [4, -53], + [25, -76], + [119, -197], + [107, -129], + [34, -27], + [120, -174], + [4, -41], + [29, -46], + [-11, -92], + [12, -54], + [-14, -38], + [13, -36], + [31, -51], + [75, -53], + [18, -16], + [2, -15], + [68, -50], + [20, -49], + [-3, -58], + [-19, -39], + [-22, -20], + [-17, -50], + [10, -12], + [22, -5], + [15, -12], + [3, -35], + [-48, -17], + [-4, -44], + [-15, -12], + [-50, -5], + [-74, -68], + [-61, -15], + [-139, -9], + [-30, -30], + [-120, -26], + [-118, -3], + [-41, 15], + [-59, 53], + [-12, 35], + [-103, 90], + [-51, 6], + [-64, 52], + [-32, 29], + [-44, 79], + [-38, 32], + [-19, -1], + [-13, -19], + [-33, 2], + [-72, 49], + [-31, 38], + [-24, 48], + [7, 34], + [20, 34], + [16, 6], + [22, -10], + [12, 8], + [-68, 39], + [-10, 38], + [13, 9], + [35, 4], + [-31, 22], + [-49, -5], + [-100, 26], + [-24, 19], + [4, 18], + [19, 9], + [5, 20], + [-49, 1], + [-5, 16], + [9, 11], + [-65, 36], + [-2, 44], + [26, 26], + [-8, 31], + [2, 71], + [36, 39], + [45, 9], + [-15, 42], + [11, 34], + [-47, 57], + [-112, 46], + [-39, 3], + [-11, -56], + [19, -35], + [-10, -1], + [5, -8], + [-49, 1], + [-28, 7], + [-56, 32], + [-65, 11], + [-66, 36], + [-94, 10], + [-46, 36], + [-5, 14], + [0, 17], + [26, 29], + [-75, 22], + [0, 35], + [21, 31], + [-22, 1], + [-18, -35], + [-83, -34], + [-41, -2], + [-35, 8], + [-9, 22], + [-22, 6], + [-36, -23], + [-51, -6], + [-48, 20], + [-86, -5], + [-21, 6], + [-52, 21], + [-47, 35], + [-6, 94], + [-49, 45], + [-31, 2], + [-48, -5], + [-52, -19], + [-6, -24], + [-43, -17], + [-23, -28], + [-35, -19], + [-17, -69], + [-100, -44], + [-44, 16], + [-42, 6], + [-84, -7], + [-33, -13], + [-11, -11], + [-5, -46], + [-85, -68], + [-29, -7], + [-35, 6], + [-26, 16], + [-12, 20], + [-41, 21], + [-19, -2], + [-20, -29], + [-27, 4], + [-29, 39], + [-21, -11], + [-31, -74], + [-30, -7], + [-57, 13], + [-7, 17], + [-28, 24], + [-45, -18], + [-57, 7], + [-33, -20], + [-7, -18], + [16, -59], + [-5, -22], + [-25, -19], + [-62, -26], + [-70, -2], + [-52, 10], + [-25, 15], + [-6, 14], + [15, 33], + [-24, 39], + [27, 28], + [16, 5], + [24, -5], + [2, 10], + [-46, 51], + [-43, 8], + [-42, 26], + [-43, 59], + [-29, 25], + [-25, 58], + [-47, 67], + [-45, 118], + [-39, 23], + [-28, -13], + [-17, -21], + [-22, 1], + [-21, 10], + [-9, 17], + [26, 20], + [46, -4], + [8, 8], + [-12, 57], + [-26, 44], + [-53, 8], + [-43, -43], + [-26, -3], + [-58, 32], + [-73, 18], + [-25, 22], + [11, 14], + [-5, 18], + [-81, 16], + [-23, 11], + [-37, 45], + [-3, 19], + [-16, 9], + [-4, 123], + [13, 26], + [51, 22], + [38, -1], + [80, -37], + [31, 8], + [27, 58], + [26, 10], + [30, -21], + [24, 2], + [23, 11], + [15, -1], + [21, 18], + [-43, 59], + [6, 19], + [31, 29], + [-4, 53], + [42, 51], + [10, 54], + [-6, 15], + [-71, 27], + [-8, 55], + [43, 44], + [52, -4], + [24, 6], + [-13, 61], + [14, 22], + [32, 18], + [64, -2], + [20, 9], + [10, 20], + [75, 5], + [37, 29], + [32, 4], + [33, -17], + [0, -20], + [20, -12], + [150, 46], + [46, -2], + [30, 7], + [30, 10], + [17, 21], + [46, 22], + [26, -3], + [16, -11], + [28, 1], + [27, 5], + [44, 22], + [96, 5], + [27, -3], + [17, -14], + [37, 17], + [35, 41], + [94, 17], + [55, -2], + [54, -26], + [24, -1], + [30, 13], + [39, -12], + [67, 3], + [68, -53], + [30, 21], + [47, 13], + [16, 32], + [53, -6], + [65, 76], + [30, 24], + [52, 10], + [67, 1], + [29, 55], + [13, 7], + [55, 20], + [85, 8], + [33, -21], + [37, -47], + [-7, -52], + [62, -97], + [1, -38], + [-9, -9], + [20, -10], + [15, 1], + [58, 24], + [34, 38], + [20, 62], + [52, 28], + [-2, 24], + [-50, 28], + [-9, 19], + [18, 39], + [33, 2], + [58, -36], + [25, -5], + [47, 20], + [5, 26], + [37, 27], + [-3, 10], + [-25, 4], + [-44, -18], + [-38, -34], + [-26, -2], + [-29, 23], + [-14, 28], + [14, 17], + [47, 20], + [25, 31], + [18, 62], + [84, 69], + [61, 8], + [4, 12], + [42, 22], + [61, 8], + [87, -15], + [66, -21], + [40, -57], + [-1, -15], + [-15, -9], + [15, -56], + [-7, -13], + [18, -7], + [28, 12], + [13, 18], + [40, 1], + [8, 6], + [-18, 28], + [-20, 0], + [-38, 35], + [0, 22], + [10, 9], + [46, -1], + [17, -12], + [5, 10], + [-28, 33], + [-8, 33], + [7, 33], + [18, 16], + [23, 16], + [37, 8], + [84, -3], + [45, -18], + [27, -23] + ], + [ + [67243, 398646], + [14, -129], + [62, -77], + [65, -153], + [45, -43], + [119, -80], + [70, -30], + [27, -20], + [26, 1], + [17, -13], + [3, -13], + [-82, -90], + [7, -32], + [30, -13], + [32, -27], + [0, -34], + [-11, -13], + [-34, 5], + [-27, -13], + [-69, -127], + [-48, -27], + [-111, -21], + [-123, -51], + [-69, -58], + [-79, -95], + [-35, -2], + [-51, -98], + [-12, -62], + [-22, -39], + [-7, -101], + [-35, -39], + [-27, -19], + [-79, -16], + [-52, 0], + [-48, -10], + [-41, -19], + [-73, -6], + [-34, -13], + [-8, 4], + [-97, -22], + [-69, 0], + [-76, -52], + [-84, -101], + [-18, -32], + [-30, -25], + [-61, -113], + [-35, -43], + [-3, -42], + [-14, -31], + [7, -53], + [-7, -20], + [1, -146], + [34, -57], + [3, -39], + [-30, -77], + [-14, -96], + [-16, -21], + [-29, -121], + [13, -71], + [-26, -82], + [14, -127], + [36, -60], + [14, -52], + [-6, -98], + [-35, -53], + [-3, -78], + [-17, -50], + [-24, -37], + [-52, -40], + [-27, -8], + [-52, -50], + [-120, -45], + [-73, -58], + [-93, -111], + [-66, -118], + [-19, -83], + [-29, -60], + [-38, -150], + [-29, -171], + [-23, -67], + [-24, -40], + [-16, -87], + [-23, -32], + [1, -21], + [-18, -30], + [-34, -24], + [-14, -26], + [0, -49], + [-10, -43], + [-24, -39], + [-20, -122], + [-55, -82], + [-52, -34], + [-24, -27], + [-69, -29], + [-20, 29], + [-7, 40], + [-50, 119], + [-78, 52], + [-115, 29], + [-61, 36], + [-192, 52], + [-141, 13], + [-28, 16], + [-14, 18], + [-59, 24], + [-41, 10], + [-175, 11], + [-48, 7], + [-42, 19], + [-17, 16], + [-24, 71], + [-62, 59], + [-7, 79], + [-42, 37], + [4, 18], + [21, 14], + [27, 0], + [34, 16], + [0, 129], + [28, 93], + [-1, 227], + [28, 50], + [38, 20], + [76, 76], + [105, 51], + [4, 18], + [124, 142], + [149, 100], + [10, 61], + [45, 59], + [62, 58], + [110, 79], + [40, 4], + [39, 64], + [-7, 56], + [13, 22], + [-6, 21], + [-49, 2], + [-68, 93], + [-35, 18], + [-97, 13], + [-34, 19], + [-17, 37], + [3, 88], + [51, 225], + [54, 307], + [-13, 41], + [0, 40], + [24, 48], + [31, 29], + [7, 32], + [-31, 81], + [17, 64], + [55, 53], + [37, 24], + [45, 78], + [14, 54], + [3, 87], + [17, 56], + [49, 61], + [17, 66], + [51, 111], + [117, 148], + [14, 64], + [30, 34], + [107, 63], + [127, 112], + [76, 45], + [78, 11], + [56, 52], + [107, 48], + [34, 8], + [27, -13], + [38, -5], + [93, 29], + [56, 3], + [24, -14], + [36, 0], + [269, -51], + [92, -47], + [84, -65], + [58, -75], + [70, -57], + [18, -32], + [3, -34], + [42, -46], + [0, -36], + [17, -21], + [37, 73], + [25, 27], + [-20, 34], + [2, 77], + [-14, 11], + [-10, 306], + [81, 155], + [15, 4], + [17, 19], + [10, 26], + [-21, 20], + [7, 33], + [56, 32], + [-18, 55], + [-52, 88], + [-3, 47], + [15, 4], + [20, 22], + [51, 4], + [53, -9], + [99, 15], + [107, 30], + [38, 35], + [12, 35], + [-17, 39], + [0, 79], + [69, 93], + [45, 32], + [3, 13], + [41, 37], + [28, 16], + [28, -18], + [44, -80], + [14, -114], + [0, -42], + [-51, -143] + ], + [ + [65318, 390093], + [38, -89], + [8, -82], + [-18, -52], + [2, -34], + [32, -47], + [0, -61], + [27, -54], + [66, -72], + [22, -109], + [-2, -44], + [-30, -74], + [-79, -108], + [-23, -17], + [-46, 7], + [-71, -74], + [-54, -129], + [-6, -43], + [-16, -19], + [0, -31], + [57, -108], + [7, -103], + [26, -65], + [47, -69], + [207, -223], + [138, -88], + [87, -41], + [154, -36], + [50, -30], + [57, -83], + [30, -164], + [3, -142], + [-201, -272], + [-75, -76], + [-42, -37], + [-67, -12], + [-53, -23], + [-132, -103], + [-22, -34], + [-2, -40], + [-17, -39], + [-65, -76], + [-53, -96], + [-67, -29], + [-22, -1], + [-51, -61], + [-19, -37], + [0, -32], + [-54, -68], + [-43, -14], + [-16, 2], + [-48, -33], + [-43, -57], + [-5, -32], + [-82, -132], + [-22, -81], + [-39, -6], + [-102, -222], + [-61, -100], + [-8, -82], + [40, -47], + [-8, -14], + [10, -36], + [79, -25], + [48, -35], + [27, -38], + [18, -48], + [0, -76], + [-30, -31], + [45, -63], + [-3, -29], + [-44, -26], + [-10, -43], + [30, -23], + [17, -57], + [-2, -29], + [-20, -11], + [-30, 17], + [-20, 0], + [7, -27], + [65, -29], + [-7, -9], + [-1, -89], + [-16, -28], + [-7, -54], + [-53, -70], + [-37, -35], + [-45, -17], + [-31, -3], + [-9, -10], + [0, -46], + [-84, -123], + [-34, -22], + [-8, -65], + [-81, -46], + [-26, -42], + [-50, -30], + [-37, -10], + [-60, 15], + [-87, 62], + [-103, 120], + [-122, 283], + [-8, 94], + [-1, 477], + [15, 70], + [31, 83], + [38, 59], + [23, 176], + [22, 100], + [46, 100], + [61, 59], + [38, 53], + [-3, 48], + [34, 46], + [-2, 54], + [23, 53], + [42, 39], + [2, 29], + [-17, 49], + [-48, 43], + [-7, 23], + [-1, 28], + [15, 33], + [-49, 21], + [-13, 27], + [-10, 80], + [-15, 27], + [-25, 9], + [-5, 44], + [-25, 54], + [5, 48], + [-12, 21], + [-33, 5], + [-30, -9], + [-49, -33], + [-20, -23], + [-8, -26], + [3, -88], + [-8, -27], + [-42, -25], + [-47, -10], + [-37, 11], + [-8, 16], + [-35, 8], + [-28, 1], + [-22, -9], + [-35, -2], + [-19, 12], + [-1, 20], + [28, 62], + [12, 71], + [47, 40], + [10, 26], + [3, 48], + [-3, 12], + [-12, 0], + [-58, -65], + [-92, -18], + [-39, -28], + [-25, -4], + [-20, -19], + [-8, -50], + [-29, -48], + [-52, -29], + [-48, -69], + [-52, -4], + [-57, 44], + [-10, 14], + [7, 11], + [-13, 13], + [38, 24], + [22, 26], + [10, 43], + [43, 28], + [-3, 40], + [37, 47], + [23, 15], + [62, 10], + [35, 43], + [-9, 70], + [-24, -6], + [-22, 11], + [-13, 35], + [40, 61], + [-5, 80], + [17, 52], + [3, 44], + [-8, 25], + [-30, 5], + [-67, -9], + [-32, 6], + [-8, 9], + [-27, 2], + [-38, -12], + [-92, 18], + [-67, 29], + [-22, 1], + [-70, -19], + [-23, 12], + [-12, 44], + [-119, 54], + [-77, -41], + [-12, -15], + [-3, -50], + [-31, -54], + [-138, -146], + [-53, -17], + [-107, 4], + [-137, 68], + [-62, 6], + [-18, 60], + [30, 42], + [22, 59], + [38, 52], + [129, 61], + [7, 16], + [48, 30], + [12, 36], + [50, 62], + [-5, 59], + [-28, 25], + [-114, 34], + [-11, 39], + [-54, 58], + [6, 54], + [18, 7], + [50, 67], + [12, 34], + [-24, 75], + [-12, 75], + [-21, 3], + [-5, 27], + [15, 88], + [-42, 38], + [-3, 19], + [12, 61], + [30, 45], + [0, 34], + [57, 53], + [26, 3], + [49, 41], + [87, 39], + [160, -2], + [124, 14], + [75, -6], + [52, 8], + [30, 9], + [59, 58], + [55, 38], + [47, 0], + [38, -9], + [0, -23], + [37, -4], + [67, 23], + [68, -2], + [27, -9], + [25, -42], + [23, -18], + [17, -32], + [1, -24], + [21, -16], + [110, -19], + [0, -22], + [77, -40], + [30, -64], + [38, 2], + [15, 28], + [19, 14], + [36, -2], + [49, -31], + [30, -40], + [-8, -42], + [-51, -62], + [22, -47], + [7, -42], + [1, -58], + [-12, -19], + [-6, -67], + [23, -12], + [10, -23], + [5, -72], + [18, -14], + [37, -4], + [37, 12], + [37, 46], + [60, 52], + [15, 25], + [62, 38], + [94, 4], + [36, -30], + [17, -5], + [22, -52], + [70, -79], + [1, -76], + [30, -47], + [49, -11], + [95, 36], + [49, -8], + [8, -9], + [35, 10], + [7, 15], + [-5, 53], + [10, 4], + [18, 33], + [58, 6], + [35, 19], + [69, 59], + [31, 77], + [8, 70], + [7, 171], + [-24, 58], + [-38, 59], + [-97, 111], + [-5, 28], + [0, 31], + [29, 46], + [24, 19], + [26, 47], + [0, 77], + [23, 70], + [30, 159], + [24, 46], + [-16, 34], + [8, 65], + [-15, 27], + [-3, 71], + [-32, 34], + [-5, 21], + [6, 19], + [-28, 100], + [2, 55], + [12, 21], + [32, 24], + [8, 47], + [60, 75], + [82, 25], + [52, 3], + [37, 22], + [-2, 17], + [-23, 25], + [13, 17], + [72, 25], + [15, 13], + [22, 29], + [-1, 48], + [16, 19], + [29, -4], + [8, -13], + [-7, -64], + [8, -94] + ], + [ + [45186, 426689], + [15, -11], + [57, 4], + [37, 17], + [31, 27], + [44, 7], + [75, -14], + [43, 22], + [22, 3], + [89, -53], + [38, -59], + [-7, -88], + [-92, -147], + [-53, -218], + [-61, -123], + [-15, -95], + [1, -446], + [-15, -200], + [1, -459], + [33, -594], + [46, -147], + [1, -294], + [20, -206], + [-15, -9], + [-56, -95], + [-28, -201], + [-46, -118], + [-6, -143], + [69, -136], + [1, -46], + [40, -79], + [41, -50], + [62, -31], + [66, -77], + [109, -78], + [157, -163], + [289, -370], + [19, -48], + [33, -37], + [57, -113], + [72, -104], + [39, -94], + [84, -135], + [8, -81], + [-13, -55], + [4, -108], + [56, -180], + [0, -100], + [-19, -71], + [-80, -68], + [-2, -62], + [-13, -41], + [-34, -43], + [2, -30], + [-44, -50], + [-54, 42], + [-77, 82], + [-38, 100], + [-1, 105], + [-15, 106], + [-31, 112], + [-112, 205], + [-34, -12], + [-43, -88], + [-3, -211], + [-13, -164], + [7, -37], + [-16, -26], + [0, -60], + [-21, -50], + [1, -122], + [26, -40], + [18, -60], + [-5, -54], + [-23, -11], + [-31, -39], + [-6, -41], + [25, -71], + [0, -29], + [-28, -41], + [22, -28], + [0, -41], + [-31, -41], + [3, -91], + [6, -14], + [41, -29], + [52, -93], + [2, -21], + [-76, -5], + [-21, -26], + [-6, -39], + [43, -29], + [47, -4], + [41, -14], + [30, -64], + [-21, -25], + [-9, -57], + [6, -120], + [17, -20], + [-6, -235], + [-41, -44], + [-18, -36], + [-13, -34], + [0, -55], + [-40, -57], + [-37, 0], + [-101, 19], + [-37, 17], + [-34, 47], + [-47, 41], + [-234, -63], + [-68, 19], + [-26, 15], + [-12, 90], + [-19, 34], + [-19, 24], + [-78, 52], + [-6, 29], + [0, 36], + [25, 31], + [3, 26], + [-4, 130], + [56, 110], + [-6, 16], + [-50, 0], + [-25, -12], + [-15, -23], + [-32, -22], + [-53, -2], + [-18, 31], + [12, 88], + [-9, 14], + [-7, 72], + [22, 93], + [24, 24], + [69, 25], + [43, 76], + [3, 41], + [69, 43], + [15, 48], + [38, 55], + [24, 24], + [51, 24], + [-1, 153], + [-10, 29], + [-3, 103], + [-41, 93], + [-14, 157], + [-43, 44], + [-9, 23], + [0, 173], + [-24, 93], + [11, 60], + [-10, 74], + [10, 34], + [37, 64], + [-1, 22], + [-28, 64], + [-37, 196], + [11, 55], + [-11, 169], + [-39, 193], + [-85, 165], + [-22, 82], + [-43, 44], + [-13, 29], + [-4, 160], + [59, 84], + [28, 22], + [0, 57], + [-14, 18], + [-12, 86], + [-31, 35], + [-46, 89], + [-19, 51], + [6, 39], + [-16, 27], + [-112, 90], + [-66, 119], + [-87, 94], + [-288, 184], + [-18, 19], + [-69, 30], + [-146, 98], + [-162, 364], + [-56, 11], + [-12, 22], + [-69, 70], + [-97, 74], + [-50, 112], + [-6, 50], + [-4, 160], + [22, 87], + [59, 74], + [78, 67], + [90, 46], + [59, -5], + [19, -19], + [0, -77], + [19, -21], + [47, -15], + [68, 3], + [57, 17], + [6, 29], + [-16, 38], + [-35, 48], + [-37, 19], + [12, 57], + [-21, 26], + [-38, 10], + [-63, 102], + [7, 27], + [196, 34], + [75, 89], + [-10, 23], + [-47, 24], + [-28, 2], + [-19, 15], + [0, 38], + [47, 39], + [0, 23], + [-22, 48], + [18, 12], + [39, 4], + [46, 44], + [16, 99], + [-48, 26], + [-9, 47], + [96, 91], + [75, 43], + [50, 8], + [23, -8], + [70, 1], + [100, 93], + [7, 59], + [48, 59], + [19, 166], + [-6, 4], + [-4, 186], + [43, 89], + [28, 172], + [16, 24], + [3, 64], + [-13, 46], + [12, 24], + [34, 31], + [33, 16], + [55, 7], + [75, -17], + [72, -78] + ], + [ + [71786, 438493], + [0, -53], + [-31, -123], + [-69, -36], + [-69, -53], + [-15, -58], + [-184, -95], + [-62, -52], + [-30, -65], + [-69, -36], + [-85, -23], + [-229, -124], + [-169, -36], + [-100, -11], + [-114, -37], + [-38, -45], + [-25, -51], + [-41, -122], + [-6, -56], + [-74, -89], + [-54, -100], + [-107, -77], + [-69, -35], + [-23, -77], + [-77, -47], + [-30, -65], + [-85, -53], + [-31, -70], + [-15, -71], + [-115, -35], + [-99, -12], + [-139, -188], + [-53, -95], + [-38, -46], + [0, -277], + [15, -170], + [85, -77], + [116, -82], + [107, -24], + [215, -23], + [130, -23], + [46, -41], + [0, -89], + [-15, -59], + [-77, -58], + [-107, -65], + [-115, -53], + [-146, -41], + [-46, -24], + [-115, -18], + [-46, -53], + [-69, -129], + [-15, -59], + [23, -59], + [0, -94], + [24, -171], + [84, -70], + [70, -223], + [76, -106], + [1, -95], + [-13, -62], + [-105, -80], + [-38, -46], + [-33, -10], + [-40, 2], + [-14, 8], + [-52, 0], + [-26, 19], + [-182, 42], + [-42, 21], + [-21, 27], + [-49, 27], + [-38, 10], + [-45, 48], + [-31, 3], + [-56, -19], + [-41, 35], + [-40, 99], + [-54, -12], + [-25, 14], + [-28, 0], + [-57, 24], + [-37, -39], + [-100, -11], + [-30, 41], + [68, 53], + [108, 64], + [69, 24], + [31, 53], + [-48, 26], + [-45, -1], + [-15, 22], + [4, 66], + [17, 32], + [4, 32], + [-11, 27], + [-24, 15], + [-56, -2], + [-52, 29], + [-73, 11], + [-52, 21], + [-62, 0], + [-45, -35], + [-49, -16], + [-160, -3], + [-141, 6], + [-182, -48], + [-261, 11], + [-92, -17], + [-161, -166], + [-95, -24], + [-109, -2], + [-46, 5], + [-97, 50], + [-10, 22], + [20, 24], + [22, 14], + [76, 23], + [76, -8], + [28, -10], + [34, 55], + [56, 65], + [22, 81], + [37, 57], + [17, 51], + [24, 32], + [28, 19], + [16, 40], + [92, 48], + [121, 76], + [94, 30], + [90, -2], + [98, -25], + [111, -71], + [38, -13], + [56, -3], + [102, -50], + [102, -6], + [201, -59], + [27, -25], + [75, -9], + [35, -13], + [51, -40], + [67, -29], + [80, 26], + [31, 24], + [24, 32], + [7, 35], + [-25, 77], + [-55, 99], + [-11, 51], + [-10, 84], + [0, 174], + [10, 38], + [-10, 16], + [7, 26], + [-22, 47], + [-75, 23], + [-112, -31], + [-73, -8], + [-26, 7], + [-54, -31], + [-62, -2], + [-32, 7], + [-41, -21], + [-94, -5], + [-28, 2], + [-31, 19], + [-84, 27], + [-128, -3], + [-70, 5], + [-52, 8], + [-22, 20], + [-130, 20], + [-60, 2], + [-48, 38], + [-122, 34], + [-73, 51], + [-27, 37], + [-35, 22], + [-54, 65], + [-100, 188], + [-3, 22], + [-35, 33], + [-1, 213], + [18, 32], + [-11, 88], + [4, 51], + [59, 5], + [24, -11], + [70, -64], + [36, 13], + [19, -11], + [35, -2], + [21, -10], + [31, -29], + [10, -37], + [42, -38], + [35, -16], + [174, -8], + [38, 6], + [55, 39], + [14, 118], + [32, 12], + [19, 26], + [78, 47], + [10, 24], + [-15, 54], + [0, 38], + [-47, 35], + [-133, 11], + [-41, 8], + [-18, 13], + [14, 70], + [48, 74], + [7, 47], + [-7, 13], + [-281, 97], + [-18, 8], + [-27, 36], + [-127, 58], + [-61, -41], + [0, -8], + [-38, -5], + [-10, 44], + [-60, 74], + [-17, 68], + [-90, 48], + [-18, 32], + [0, 27], + [27, 24], + [60, 7], + [3, 11], + [57, 39], + [48, 52], + [31, 16], + [61, 13], + [28, 16], + [18, -10], + [90, 10], + [21, 19], + [44, 73], + [28, 30], + [1, 68], + [24, 40], + [47, 24], + [13, 27], + [-1, 82], + [7, 29], + [21, 22], + [69, 34], + [32, 40], + [76, 3], + [163, -139], + [0, -26], + [32, -58], + [31, -27], + [70, -27], + [65, -37], + [84, -67], + [49, -26], + [142, -67], + [70, -63], + [-7, -70], + [-17, -16], + [-40, 3], + [-254, -121], + [-19, -2], + [-45, -21], + [-14, -32], + [4, -35], + [17, -34], + [111, -56], + [22, -21], + [34, -14], + [45, -5], + [39, -27], + [76, -31], + [35, -30], + [34, -58], + [-22, -8], + [4, -10], + [-61, -53], + [5, -14], + [-8, -27], + [7, -30], + [41, -52], + [73, -35], + [80, -51], + [77, -18], + [20, -16], + [38, 0], + [22, 8], + [102, 127], + [71, 64], + [62, 84], + [46, 37], + [108, 29], + [99, 1], + [23, 13], + [54, 0], + [42, 10], + [34, 19], + [4, 109], + [13, 18], + [-9, 60], + [-11, 2], + [-25, 24], + [-27, 64], + [3, 31], + [28, 30], + [101, 5], + [38, 15], + [31, 35], + [25, 5], + [37, 25], + [28, 3], + [88, -20], + [92, 25], + [32, 29], + [43, 63], + [5, 72], + [-24, 23], + [-3, 26], + [37, 38], + [104, 14], + [88, -36], + [31, 0], + [8, 10], + [22, -6], + [38, 59], + [0, 65], + [-96, 59], + [-38, 37], + [-7, 24], + [-21, 14], + [-18, 34], + [0, 74], + [-10, 22], + [-21, 19], + [-66, 29], + [-45, 45], + [7, 38], + [77, 87], + [85, 0], + [329, -53], + [200, -88], + [115, 6], + [92, 77], + [154, 17], + [130, 89], + [146, 6], + [107, 58], + [-23, 48], + [54, 47], + [123, 41], + [92, -24], + [84, 60], + [138, 52], + [61, -46], + [-53, -36] + ], + [ + [61358, 396554], + [18, -2], + [43, 14], + [73, 2], + [19, -7], + [84, 5], + [83, -17], + [17, -15], + [-10, -18], + [-5, -80], + [-38, -52], + [-20, -93], + [-44, -38], + [-19, -57], + [-22, -30], + [-79, -57], + [-22, -5], + [-13, -48], + [-23, -38], + [-44, -41], + [-72, -46], + [-39, -7], + [-106, 0], + [-72, -20], + [-176, -97], + [-110, -83], + [-44, -15], + [-14, -21], + [2, -16], + [22, -20], + [15, -33], + [-7, -29], + [21, -16], + [17, -39], + [8, -60], + [-15, -27], + [0, -31], + [37, -101], + [56, -25], + [35, -31], + [8, -20], + [6, -192], + [-22, -62], + [-13, -15], + [-19, -163], + [-41, -25], + [-6, -12], + [-61, -26], + [-13, -16], + [-75, -6], + [-56, 7], + [-44, 40], + [-10, 18], + [2, 46], + [17, 24], + [-1, 58], + [20, 47], + [-2, 73], + [-29, 72], + [20, 43], + [1, 65], + [-19, 37], + [-39, 36], + [-19, 37], + [-37, 34], + [-70, 51], + [-62, 24], + [-25, 3], + [-21, -6], + [-18, -44], + [-27, -34], + [-42, -26], + [-30, -2], + [-50, 18], + [-68, 10], + [-56, 36], + [-105, 20], + [-32, 20], + [-12, 22], + [-27, 11], + [-29, -4], + [-27, -25], + [-92, -57], + [-80, -111], + [-120, -81], + [-8, -25], + [-50, -60], + [-29, -67], + [-35, -34], + [-71, -10], + [-45, 1], + [-110, 40], + [-35, 43], + [-24, 15], + [-91, 6], + [-143, 38], + [-118, 75], + [-23, 37], + [-41, 106], + [-27, 11], + [-51, 56], + [4, 20], + [89, 70], + [23, 39], + [2, 58], + [-10, 37], + [-34, 67], + [19, 43], + [-6, 13], + [-47, 10], + [-77, -4], + [-64, 16], + [-105, 2], + [-91, -31], + [-38, -2], + [-70, 13], + [-114, 48], + [-57, 44], + [-39, 79], + [-89, 68], + [-72, 50], + [-62, 14], + [-96, 63], + [-70, 27], + [-52, 11], + [-245, 19], + [-40, 11], + [-31, 41], + [0, 57], + [-24, 25], + [-19, 189], + [-8, 34], + [-31, 36], + [-2, 67], + [42, 88], + [62, 61], + [-2, 7], + [-50, 6], + [-6, 13], + [6, 15], + [17, 18], + [27, 3], + [22, -3], + [15, -33], + [31, 14], + [6, 49], + [21, 52], + [46, 35], + [153, 52], + [80, 35], + [77, 14], + [73, 27], + [239, 31], + [62, 26], + [100, -2], + [138, -31], + [48, -31], + [3, -13], + [42, -18], + [112, -16], + [78, -39], + [71, -10], + [142, -39], + [51, -34], + [51, 0], + [57, -15], + [40, -17], + [14, -27], + [50, -24], + [43, -11], + [62, -35], + [42, -4], + [14, 35], + [37, -1], + [45, -28], + [40, -3], + [128, 4], + [82, 13], + [115, 89], + [45, 4], + [89, 49], + [36, 0], + [49, -25], + [11, -41], + [-7, -50], + [33, -68], + [105, -100], + [21, -28], + [4, -20], + [19, -12], + [-4, -11], + [45, -34], + [66, -31], + [147, -49], + [68, -45], + [120, -19], + [97, 0], + [47, 9], + [114, 64], + [57, 94], + [0, 71], + [-17, 58], + [-33, 38], + [-6, 28], + [68, 24], + [19, 22], + [46, 104], + [83, 73], + [51, 27], + [38, 58], + [95, 24], + [20, -6], + [30, -28], + [49, -21], + [4, -80], + [-33, -138], + [0, -108], + [26, -92], + [98, -91] + ], + [ + [45262, 389291], + [57, -15], + [146, -4], + [43, -35], + [64, -29], + [43, -2], + [39, 9], + [163, 62], + [69, 3], + [41, 0], + [8, -67], + [111, -28], + [43, -2], + [141, 59], + [69, 11], + [67, -18], + [21, -32], + [8, -65], + [-43, -59], + [0, -72], + [36, -51], + [8, -61], + [-21, -44], + [-37, -26], + [-35, -17], + [-45, -6], + [-8, -29], + [3, -69], + [13, -93], + [-13, -38], + [-14, -16], + [0, -61], + [-39, -76], + [-24, -11], + [-59, -4], + [-85, -50], + [-8, -69], + [19, -48], + [27, -30], + [88, -31], + [8, -65], + [-18, -39], + [-69, -74], + [2, -53], + [-55, -56], + [-53, -88], + [38, -59], + [-23, -71], + [-82, -37], + [6, -110], + [11, -28], + [-26, -119], + [-17, -50], + [-44, -31], + [-54, -58], + [-5, -33], + [-24, -41], + [-8, -70], + [0, -27], + [19, -26], + [141, -10], + [51, -18], + [16, -60], + [-8, -23], + [-35, -34], + [-5, -45], + [-29, -35], + [-72, -7], + [-61, 19], + [-32, 25], + [-13, 28], + [-41, 25], + [-30, -59], + [-22, -164], + [22, -20], + [26, -42], + [24, -8], + [162, 82], + [48, 2], + [19, -29], + [-5, -51], + [-27, -25], + [-16, -121], + [-50, -36], + [-48, 2], + [-43, 20], + [-21, 20], + [-11, 28], + [-27, 19], + [-38, -59], + [-11, -34], + [12, -29], + [-15, -60], + [-75, -67], + [-18, -29], + [0, -27], + [-27, -79], + [-21, -154], + [-29, -68], + [-32, -35], + [-28, -8], + [-21, -375], + [-38, -118], + [1, -88], + [13, -17], + [8, -37], + [9, -183], + [16, -20], + [0, -71], + [-53, -58], + [-22, -56], + [3, -61], + [-21, -39], + [-5, -80], + [-18, -38], + [-48, -25], + [-72, 44], + [-8, 82], + [-26, 66], + [-20, 18], + [-11, 27], + [2, 30], + [-61, 165], + [0, 111], + [-54, 171], + [-77, 94], + [-168, 117], + [-62, 94], + [-2, 22], + [-38, 42], + [-29, 345], + [-5, 245], + [-41, 191], + [0, 63], + [-21, 43], + [-25, 126], + [-24, 56], + [-58, 75], + [-81, 154], + [-34, 122], + [0, 135], + [37, 72], + [179, 161], + [60, 35], + [-60, 53], + [-58, 34], + [-61, 22], + [-61, 6], + [-41, 37], + [4, 54], + [-41, 40], + [-16, 48], + [110, 25], + [118, 104], + [45, 81], + [28, 91], + [8, 79], + [-5, 97], + [-41, 110], + [-41, 78], + [-33, 207], + [0, 97], + [36, 84], + [49, 82], + [48, 44], + [42, 129], + [11, 332], + [16, 32], + [61, 13], + [69, -3], + [98, -54], + [62, -19], + [57, -56], + [45, -28], + [73, -19], + [160, -25] + ], + [ + [62302, 386366], + [0, -35], + [91, 6], + [39, -41], + [7, -35], + [46, -53], + [100, -23], + [99, -6], + [39, -12], + [8, -82], + [30, -106], + [-30, -71], + [-31, -41], + [31, -23], + [30, -41], + [146, -54], + [54, -70], + [53, -147], + [8, -153], + [54, -70], + [54, -36], + [122, -147], + [31, -46], + [8, -65], + [38, -53], + [108, -106], + [15, -41], + [53, -59], + [-7, -135], + [-46, -47], + [-38, -71], + [0, -270], + [-38, -59], + [-38, -124], + [-61, -12], + [-15, 47], + [0, 65], + [30, 47], + [15, 65], + [0, 70], + [-23, 124], + [-23, 71], + [-108, 111], + [-23, 47], + [-114, 59], + [-16, 64], + [-61, -46], + [-92, -42], + [-84, -59], + [-45, -47], + [-100, -6], + [-92, -24], + [-99, -52], + [-191, 5], + [-16, 47], + [-84, 18], + [-69, 47], + [-15, 53], + [-84, 64], + [-123, -17], + [-7, 47], + [45, 41], + [-76, 29], + [-115, 30], + [-107, -1], + [-138, -11], + [-137, -83], + [-130, -130], + [-16, -52], + [-91, -36], + [-61, -35], + [-84, -30], + [-77, -47], + [0, -53], + [-336, -253], + [46, -29], + [100, -30], + [84, -47], + [-16, -41], + [-38, -47], + [-114, -47], + [-61, -106], + [-15, -77], + [0, -70], + [23, -71], + [-8, -64], + [-22, -48], + [7, -41], + [-46, -53], + [-38, -23], + [8, -94], + [-8, -47], + [-61, -47], + [-92, 11], + [-92, 118], + [-23, 58], + [0, 206], + [-161, 336], + [-31, 88], + [-8, 70], + [-31, 65], + [0, 224], + [23, 211], + [-199, 177], + [-31, 52], + [-69, 71], + [-46, 77], + [-23, 64], + [-85, 164], + [0, 77], + [31, 100], + [7, 106], + [69, 153], + [53, 94], + [160, 188], + [77, 30], + [298, -5], + [77, -30], + [115, -112], + [31, -129], + [-8, -59], + [1, -323], + [38, -53], + [69, -12], + [30, -18], + [0, -29], + [24, -23], + [15, 17], + [0, 65], + [22, 129], + [77, 12], + [46, -23], + [-8, -36], + [-46, -76], + [54, -47], + [46, -6], + [0, 41], + [99, 12], + [31, 41], + [-8, 89], + [7, 158], + [31, 30], + [38, 135], + [0, 112], + [-39, 118], + [0, 41], + [31, 53], + [76, 17], + [38, 59], + [8, 41], + [53, 42], + [69, 29], + [222, 12], + [84, -6], + [77, 24], + [0, 59], + [37, 82], + [39, 30], + [130, 35], + [421, 36], + [91, 17], + [54, -11], + [8, -47], + [-61, -48] + ], + [ + [184455, 469312], + [-706, 5], + [-503, 491], + [259, 660], + [178, 331], + [153, 330], + [608, 365], + [809, 131], + [633, -4], + [-129, -487], + [-79, -389], + [198, -449], + [-408, -465], + [-1013, -519] + ], + [ + [64620, 440362], + [94, -4], + [31, -20], + [57, -6], + [54, 25], + [134, 10], + [184, 36], + [70, 47], + [130, 17], + [76, 48], + [98, 35], + [80, 0], + [65, -39], + [84, -13], + [28, -16], + [16, -19], + [13, -66], + [-3, -24], + [-13, -18], + [-31, -16], + [-67, -6], + [-68, -25], + [-29, -43], + [13, -26], + [18, -18], + [16, -36], + [65, -54], + [84, -16], + [92, 0], + [162, -76], + [-8, -65], + [-69, -71], + [15, -56], + [16, -25], + [-2, -20], + [-55, -30], + [-47, -86], + [-49, -18], + [-77, -106], + [-31, -65], + [-4, -49], + [-15, -30], + [0, -60], + [50, -50], + [31, -98], + [36, -38], + [40, -239], + [13, -30], + [26, -34], + [57, 0], + [61, -38], + [86, -158], + [5, -45], + [44, -35], + [29, -41], + [3, -18], + [-3, -16], + [-34, -24], + [-130, -68], + [-13, 6], + [-31, -38], + [-21, -10], + [-59, 2], + [-31, 59], + [-67, -37], + [-179, -10], + [-18, -12], + [-34, -6], + [-97, 19], + [-23, 20], + [-24, 47], + [-43, 46], + [-22, 5], + [-31, 42], + [-21, 12], + [-89, 14], + [-68, 66], + [-5, 21], + [-92, 60], + [-71, -3], + [-19, -31], + [-115, -24], + [-75, -26], + [-60, -6], + [-71, 30], + [-88, -12], + [-42, 12], + [-36, 26], + [-24, 30], + [-4, 23], + [-25, 22], + [-115, 23], + [-112, -14], + [-2, -44], + [-31, -18], + [-79, 2], + [-20, 14], + [-8, 77], + [-8, 20], + [-16, 5], + [0, 18], + [-21, 17], + [0, 66], + [-31, 70], + [-5, 38], + [-34, 14], + [-100, 80], + [-33, 41], + [-63, 116], + [-38, 46], + [-36, 63], + [-47, 100], + [-24, 105], + [-25, 16], + [8, 104], + [79, 116], + [37, 78], + [16, 15], + [91, 60], + [68, 35], + [125, 18], + [93, 32], + [42, 82], + [52, 53], + [23, 12], + [13, 27], + [-47, 24], + [-32, 33], + [-38, 2], + [-18, 26], + [-3, 20], + [21, 260], + [54, 88], + [92, 18], + [154, -35], + [46, -29], + [84, -124], + [6, -150], + [39, -31] + ], + [ + [57152, 469618], + [0, -92], + [56, -87], + [18, -56], + [-4, -64], + [-23, -26], + [3, -51], + [66, -64], + [94, -130], + [10, -17], + [-10, -6], + [17, -5], + [0, -27], + [-12, -20], + [-74, -30], + [-91, -63], + [-122, -111], + [-29, -37], + [-13, -36], + [5, -51], + [-137, -56], + [-113, -10], + [-55, -23], + [-12, -58], + [-22, -23], + [-238, -170], + [-37, -54], + [-29, -22], + [-49, -25], + [-32, 0], + [-21, 43], + [-71, -30], + [-62, -95], + [-73, -16], + [-68, 17], + [-43, -13], + [-34, 10], + [-36, 55], + [-123, 62], + [-84, 28], + [-96, 4], + [-61, -8], + [-48, -16], + [-94, -3], + [-176, 67], + [-22, 25], + [-20, 51], + [10, 60], + [-7, 43], + [-18, 27], + [-44, 37], + [-20, 113], + [7, 188], + [61, 95], + [49, 51], + [22, 40], + [9, 141], + [-13, 90], + [-18, 35], + [-26, 6], + [-5, 20], + [26, 10], + [25, -3], + [11, 9], + [30, -26], + [44, 20], + [2, 48], + [28, 5], + [135, 87], + [31, 27], + [13, 54], + [57, -7], + [52, -50], + [79, -27], + [184, 4], + [39, 13], + [61, 7], + [137, 61], + [45, 0], + [30, -29], + [37, -18], + [73, -1], + [32, 8], + [9, 33], + [35, 13], + [66, -1], + [58, 26], + [60, 2], + [109, 59], + [78, 6], + [42, -26], + [47, 12], + [76, 52], + [55, 48], + [18, 29], + [38, 17], + [31, -11], + [18, -29], + [12, -86], + [35, -49] + ], + [ + [46921, 429125], + [30, -25], + [-10, -102], + [13, -31], + [-20, -35], + [-79, -76], + [-37, -61], + [-42, -23], + [-31, -3], + [-243, -341], + [0, -39], + [48, -68], + [3, -59], + [-12, -21], + [-29, -14], + [-72, -63], + [-7, -72], + [-39, -50], + [-29, -60], + [-23, -27], + [-30, -22], + [-16, -3], + [-30, -48], + [-3, -56], + [-141, -274], + [-30, -68], + [-16, -72], + [-72, -107], + [-19, -73], + [-39, -25], + [-35, -72], + [-67, -41], + [-39, -40], + [-12, -60], + [-64, -37], + [-50, -4], + [-59, -20], + [-47, 5], + [-44, 33], + [-24, 5], + [-25, 3], + [-57, -18], + [-43, 7], + [-11, 25], + [5, 27], + [-48, 36], + [-32, 0], + [-71, -47], + [-77, -3], + [-32, 10], + [-21, 51], + [-61, 23], + [-37, 24], + [-38, 27], + [-24, 31], + [-16, 36], + [0, 71], + [149, 226], + [84, 80], + [16, 28], + [22, 80], + [31, 51], + [42, 33], + [81, -5], + [21, 23], + [11, 31], + [0, 60], + [24, 47], + [39, 152], + [30, 41], + [15, 60], + [92, 200], + [53, 41], + [38, 53], + [62, 53], + [39, 128], + [-4, 26], + [35, 63], + [-3, 47], + [12, 34], + [59, 26], + [35, -16], + [90, -13], + [47, 13], + [27, 24], + [0, 30], + [-47, 43], + [4, 35], + [-7, 23], + [-30, 3], + [-32, 19], + [3, 55], + [29, 20], + [0, 28], + [54, 59], + [3, 25], + [22, 27], + [69, 13], + [48, -15], + [4, 47], + [37, 10], + [25, -4], + [28, -21], + [-5, -47], + [34, -38], + [63, -15], + [74, 7], + [131, 105], + [35, 19], + [35, 2], + [35, -13], + [39, -36], + [42, -8], + [33, -17], + [15, -20], + [24, -18], + [30, -6], + [62, -52] + ], + [ + [52676, 432546], + [20, -33], + [82, -77], + [92, -54], + [60, -53], + [10, -64], + [-10, -69], + [5, -150], + [63, -201], + [27, -61], + [87, -131], + [72, -62], + [99, -63], + [14, -19], + [-9, -31], + [-95, -65], + [-41, -39], + [-33, -81], + [-19, -11], + [-466, -161], + [-55, -7], + [-58, 14], + [-263, 104], + [-137, 3], + [-13, 8], + [-87, 10], + [-187, 47], + [-94, 17], + [-31, 14], + [-29, 29], + [-15, 31], + [6, 62], + [50, 41], + [50, 26], + [84, 19], + [165, 5], + [34, 20], + [25, 48], + [40, 45], + [34, 19], + [100, 108], + [29, 63], + [6, 121], + [-60, 84], + [-34, 19], + [-125, 7], + [-231, -122], + [-109, -96], + [-140, -51], + [-118, 3], + [-304, 116], + [-140, 65], + [-35, 29], + [-53, 64], + [-15, 36], + [0, 36], + [21, 36], + [58, 52], + [2, 53], + [-94, 91], + [0, 93], + [9, 17], + [53, 40], + [131, 0], + [53, -8], + [34, -25], + [38, -9], + [110, -7], + [64, -33], + [69, -6], + [118, 18], + [163, 36], + [169, 4], + [232, 66], + [146, -17], + [30, 59], + [-22, 18], + [-13, 26], + [-3, 98], + [19, 27], + [40, 26], + [41, 0], + [46, 36], + [28, 7], + [82, -9], + [15, -17], + [7, -62], + [-10, -58], + [41, -67], + [75, -71], + [0, -26] + ], + [ + [60144, 433880], + [20, -34], + [65, -31], + [60, -3], + [56, 9], + [29, 22], + [40, 4], + [76, -62], + [61, -28], + [48, 0], + [88, 37], + [49, 3], + [36, -18], + [56, -37], + [-20, -65], + [0, -37], + [73, -132], + [32, -35], + [52, -33], + [20, -52], + [1, -32], + [-36, -24], + [-113, -40], + [-68, -47], + [-36, -12], + [-61, 15], + [-60, -15], + [-89, -99], + [-28, 3], + [-36, 49], + [4, 99], + [-8, 37], + [-29, 40], + [-36, 31], + [-44, 15], + [-56, 6], + [-53, 16], + [-116, 126], + [-49, 28], + [-48, 0], + [-48, -10], + [-89, -70], + [-52, -66], + [-4, -111], + [65, -79], + [36, -99], + [0, -47], + [-12, -37], + [-28, -33], + [-8, -136], + [-32, -56], + [-44, -34], + [-68, -9], + [-350, 67], + [-117, 9], + [-36, 9], + [-36, -3], + [-49, -37], + [-44, 3], + [-68, 75], + [-13, 79], + [-80, 124], + [-25, 62], + [-97, 74], + [-221, 228], + [-24, 43], + [-37, 30], + [-20, 62], + [-4, 133], + [20, 77], + [40, 49], + [32, 93], + [60, 43], + [89, 25], + [140, 6], + [246, -46], + [189, -68], + [49, -9], + [172, -3], + [45, 10], + [28, 21], + [36, 32], + [60, 73], + [92, 44], + [41, 3], + [48, -3], + [48, -21], + [17, -26], + [24, -15], + [88, -18], + [37, -40], + [24, -102] + ], + [ + [45761, 445579], + [53, -1], + [83, 19], + [72, -6], + [54, -20], + [40, -33], + [17, -36], + [7, -34], + [-17, -39], + [-76, -77], + [-119, -81], + [-438, -132], + [-53, -23], + [-243, -154], + [-79, -64], + [-93, -94], + [-95, -159], + [-199, -237], + [-109, -115], + [-3, -103], + [11, -67], + [23, -43], + [64, -49], + [49, -95], + [56, -60], + [57, -89], + [8, -61], + [-57, -42], + [-4, -14], + [-67, -26], + [-172, 1], + [-114, 39], + [-112, 56], + [-62, 73], + [0, 29], + [-77, 229], + [-6, 95], + [-35, 172], + [-30, 45], + [-49, 162], + [-14, 17], + [-46, 182], + [-14, 10], + [-56, 130], + [-6, 54], + [-18, 26], + [-8, 41], + [-9, 233], + [-1, 106], + [18, 20], + [9, 34], + [50, 9], + [59, 34], + [79, 57], + [22, 30], + [62, 36], + [115, 39], + [62, -6], + [28, -13], + [29, -21], + [42, -58], + [115, -93], + [130, -58], + [67, -6], + [185, 16], + [101, 28], + [234, 4], + [171, 53], + [184, 89], + [37, 35], + [-12, 28], + [19, 13], + [51, -6], + [30, -29] + ], + [ + [50140, 388657], + [32, -24], + [56, -10], + [85, -45], + [53, -75], + [-4, -151], + [-31, -127], + [-44, -67], + [8, -183], + [31, -111], + [11, -98], + [-26, -38], + [0, -47], + [-22, -117], + [-54, -124], + [-7, -71], + [-108, -143], + [-13, -85], + [-19, -30], + [-26, -17], + [-98, 6], + [-52, 84], + [-51, 58], + [0, 126], + [-32, 34], + [-40, 27], + [-49, -4], + [-94, -61], + [-53, -23], + [-46, 10], + [-79, 120], + [0, 50], + [-18, 34], + [-27, 21], + [-71, 5], + [-36, -8], + [-36, 10], + [-17, 73], + [-136, 125], + [-35, 3], + [-31, 21], + [-13, 69], + [-15, 17], + [-15, 82], + [30, 59], + [15, 83], + [19, 32], + [5, 77], + [36, 30], + [-1, 38], + [14, 28], + [31, 34], + [79, 31], + [61, 71], + [77, 41], + [22, 22], + [15, 41], + [26, 27], + [31, 11], + [40, 103], + [30, 29], + [108, 151], + [-4, 67], + [17, 41], + [34, 5], + [11, 26], + [31, 31], + [58, 41], + [85, 24], + [89, -3], + [71, -24], + [54, -34], + [62, -17], + [27, -21], + [-4, -75], + [-120, -127], + [-43, -63], + [116, -95] + ], + [ + [48685, 388719], + [39, -28], + [51, -7], + [8, -10], + [0, -49], + [-45, -80], + [-34, -32], + [-7, -109], + [-47, -82], + [10, -34], + [-23, -38], + [-39, -30], + [-28, -38], + [-15, -148], + [-36, -76], + [-49, -206], + [-22, -42], + [2, -75], + [-11, -80], + [-52, -126], + [19, -57], + [49, -63], + [0, -27], + [-32, -39], + [-2, -70], + [-20, -24], + [-31, -19], + [-20, -81], + [-19, -16], + [-28, -50], + [-26, -23], + [-24, -1], + [13, -85], + [-9, -73], + [-44, -50], + [6, -65], + [-11, -25], + [-44, -45], + [-31, -73], + [-23, -88], + [0, -65], + [-45, -65], + [-86, -50], + [-193, -28], + [-44, -22], + [-26, -27], + [-114, -41], + [-55, -75], + [0, -102], + [-13, -23], + [-16, -4], + [-2, -11], + [-89, -76], + [-45, -10], + [-30, 1], + [-15, 7], + [-6, 17], + [12, 43], + [-3, 54], + [30, 56], + [4, 67], + [-38, 200], + [50, 116], + [45, 68], + [-24, 51], + [-2, 33], + [33, 93], + [30, 33], + [65, 48], + [12, 50], + [-24, 113], + [11, 43], + [0, 76], + [22, 24], + [49, 22], + [56, 0], + [8, 20], + [34, 8], + [26, 20], + [-15, 36], + [4, 73], + [11, 26], + [20, 18], + [6, 79], + [30, 39], + [4, 47], + [20, 49], + [0, 85], + [24, 133], + [-6, 24], + [-17, 12], + [-20, 40], + [55, 53], + [10, 30], + [-72, 161], + [15, 222], + [17, 22], + [0, 23], + [50, 49], + [30, 13], + [42, -19], + [10, -46], + [-15, -169], + [14, -55], + [50, 3], + [64, 59], + [5, 112], + [19, 25], + [30, 17], + [21, 3], + [41, -9], + [24, 20], + [162, 216], + [32, 64], + [15, 64], + [26, 37], + [41, 4], + [40, -5], + [37, 30], + [79, 35], + [55, -20] + ], + [ + [76942, 484631], + [78, -19], + [26, -13], + [60, -9], + [86, -47], + [28, -29], + [12, -23], + [1, -32], + [-47, -61], + [1, -52], + [-9, -14], + [-29, -20], + [-33, -63], + [-56, -7], + [-8, -7], + [-21, -55], + [-62, 5], + [-40, 25], + [-29, 34], + [-214, -37], + [-78, -25], + [-111, -15], + [-141, -85], + [-181, -145], + [-24, -36], + [22, -129], + [-39, -93], + [-9, -82], + [2, -92], + [17, -54], + [-11, -46], + [-99, -163], + [-6, -25], + [-33, -39], + [-41, -95], + [-46, -40], + [-63, -86], + [-6, -42], + [-14, -24], + [-73, -76], + [-37, -74], + [-135, -153], + [-17, -40], + [-9, -61], + [17, -50], + [18, -7], + [-4, -30], + [-17, -8], + [-68, 0], + [-22, -25], + [-13, -36], + [-52, 8], + [-31, 30], + [0, 13], + [20, 40], + [34, 38], + [-3, 29], + [-32, 30], + [-58, 23], + [-27, 28], + [-4, 17], + [34, 73], + [-25, 16], + [2, 41], + [19, 32], + [0, 20], + [-25, 99], + [-49, 73], + [-45, 38], + [-27, 93], + [-4, 56], + [-27, 52], + [-56, 55], + [-45, 103], + [0, 101], + [27, 54], + [96, 68], + [67, 67], + [47, 63], + [57, 36], + [44, 41], + [27, 45], + [47, 28], + [103, 28], + [114, 79], + [41, 19], + [76, 112], + [34, 23], + [84, 90], + [61, 98], + [17, 98], + [39, 35], + [15, 55], + [20, 13], + [81, 5], + [32, 12], + [13, 64], + [24, 43], + [36, 29], + [61, 16], + [72, -6], + [34, 9], + [230, -9], + [63, 24], + [148, 4], + [26, -12], + [42, -39] + ], + [ + [65396, 384222], + [158, -63], + [85, 28], + [71, 5], + [29, -72], + [89, -100], + [11, -32], + [1, -55], + [59, -68], + [18, -58], + [6, -100], + [-6, -23], + [-36, -28], + [-71, -109], + [-54, -106], + [-10, -4], + [-6, -25], + [-41, -32], + [-83, -41], + [-47, 4], + [-32, 12], + [-14, -4], + [-43, 42], + [-82, 23], + [-30, -23], + [-33, -73], + [-30, -38], + [0, -77], + [39, -65], + [38, -100], + [8, -76], + [31, -106], + [15, -123], + [0, -112], + [-38, -100], + [-107, -141], + [-30, -95], + [-84, -70], + [-31, 18], + [31, 117], + [38, 65], + [0, 65], + [-31, 17], + [-15, 135], + [-92, 153], + [-230, 100], + [-138, 41], + [-84, 47], + [-99, 41], + [-31, 77], + [-16, 117], + [0, 212], + [22, 211], + [54, 142], + [99, 124], + [7, 158], + [47, 30], + [145, 41], + [11, 12], + [167, -3], + [65, 36], + [76, 63], + [139, 16], + [85, -30] + ], + [ + [62518, 480849], + [43, -59], + [19, -79], + [-20, -90], + [-31, -41], + [-123, -94], + [-61, -30], + [-6, -17], + [-58, -43], + [-61, -83], + [-35, -17], + [-70, -67], + [-161, -70], + [-76, -46], + [-125, -22], + [-192, -124], + [-53, -71], + [-2, -21], + [-21, -17], + [-46, -83], + [-35, -29], + [-11, -31], + [-35, -35], + [-68, -124], + [-9, -95], + [-20, -26], + [-20, -73], + [-58, -37], + [-49, -60], + [-11, -57], + [-58, -33], + [-40, -60], + [-29, -27], + [-32, -15], + [-48, -7], + [-35, 5], + [-17, 17], + [9, 31], + [-24, 57], + [-87, 42], + [-28, 42], + [0, 13], + [-38, 42], + [-32, 95], + [-26, 20], + [-12, 24], + [-9, 91], + [9, 19], + [29, 14], + [63, -7], + [24, 18], + [37, 66], + [25, 124], + [18, 37], + [26, 22], + [40, 62], + [153, 104], + [14, 33], + [8, 110], + [4, 158], + [-13, 31], + [15, 19], + [55, 36], + [69, 122], + [43, 27], + [57, 15], + [127, 5], + [9, 26], + [-46, 11], + [-24, 29], + [4, 33], + [86, 40], + [46, 9], + [26, 35], + [52, 35], + [69, 40], + [89, 27], + [90, 57], + [54, 7], + [55, -24], + [29, -5], + [108, 17], + [16, 18], + [101, 23], + [129, -6], + [91, -11], + [22, -11], + [20, -23], + [72, -38] + ], + [ + [41970, 406524], + [41, 0], + [53, -17], + [112, 0], + [58, -15], + [42, -27], + [105, -8], + [49, 8], + [217, 10], + [30, -10], + [43, -29], + [47, -6], + [80, -54], + [20, -23], + [0, -25], + [-175, -127], + [8, -16], + [26, -15], + [30, -8], + [15, -40], + [-47, -39], + [-28, -79], + [-14, -8], + [-17, -39], + [-75, -78], + [11, -32], + [-13, -41], + [-97, -129], + [-38, -108], + [-40, -53], + [-20, -46], + [-10, -56], + [13, -232], + [-60, -41], + [-38, -2], + [-108, 33], + [-146, 118], + [-88, 38], + [-49, 32], + [-212, 181], + [-37, 5], + [-49, 25], + [-53, 56], + [-78, 115], + [-41, 106], + [-12, 141], + [8, 62], + [75, 121], + [96, 128], + [7, 26], + [77, 85], + [4, 31], + [37, 41], + [69, 35], + [26, -17], + [25, -2], + [30, 42], + [33, 2], + [23, -2], + [35, -17] + ], + [ + [73491, 461624], + [-65, -16], + [-48, 12], + [-50, -3], + [-11, -55], + [-93, -131], + [-32, -86], + [-4, -152], + [17, -93], + [85, -152], + [-8, -80], + [-33, -56], + [-52, -57], + [121, -128], + [33, -165], + [24, -52], + [5, -269], + [-20, -47], + [-41, -59], + [-12, -40], + [-69, -56], + [-20, -28], + [-28, -15], + [-19, 1], + [-18, -33], + [-38, 71], + [0, 64], + [-47, 106], + [-61, 65], + [-31, 70], + [-77, 71], + [-100, 47], + [-146, 30], + [-99, 0], + [-8, 46], + [7, 83], + [46, 135], + [15, 112], + [23, 300], + [0, 182], + [38, 130], + [0, 94], + [46, 129], + [15, 129], + [69, 106], + [177, 12], + [230, 0], + [100, -17], + [75, -49], + [35, -14], + [53, -40], + [32, -53], + [-16, -49] + ], + [ + [57099, 397958], + [27, -29], + [87, 0], + [103, -68], + [111, -92], + [27, -48], + [7, -70], + [-9, -30], + [-39, -25], + [-109, -30], + [-60, -3], + [-45, 19], + [-72, 69], + [-121, -17], + [-268, 0], + [-238, 30], + [-121, 71], + [-99, 72], + [-82, 44], + [-63, 60], + [-60, 42], + [-31, 18], + [-86, 32], + [-34, 31], + [-33, 36], + [-15, 42], + [-13, 120], + [6, 102], + [75, 61], + [99, 25], + [121, 2], + [112, -9], + [223, -60], + [178, -73], + [108, -79], + [51, -14], + [103, -76], + [63, -35], + [97, -118] + ], + [ + [46146, 423342], + [91, -308], + [32, -63], + [6, -167], + [16, -65], + [44, -62], + [128, -411], + [-2, -137], + [54, -116], + [-2, -30], + [-23, -20], + [-39, -2], + [-23, 6], + [-78, 49], + [-81, 64], + [-27, 31], + [-3, 17], + [-109, 123], + [-34, 62], + [-50, 62], + [-119, 127], + [-10, 31], + [-72, 93], + [-34, 81], + [18, 43], + [81, 101], + [15, 105], + [19, 43], + [56, 65], + [0, 26], + [-40, 29], + [-60, -12], + [-78, -5], + [-171, 7], + [-66, 19], + [-25, 34], + [44, 103], + [0, 31], + [24, 26], + [162, 117], + [9, 51], + [-28, 100], + [-7, 89], + [-37, 60], + [34, 52], + [66, 12], + [40, -9], + [128, -144], + [100, -133], + [51, -132], + [0, -43] + ], + [ + [63609, 393417], + [79, -8], + [48, -23], + [6, -17], + [24, -22], + [69, -27], + [26, -25], + [44, -75], + [-7, -88], + [-39, -147], + [-45, -59], + [-92, -41], + [-84, -177], + [-115, -94], + [-23, -65], + [-13, -4], + [-1, -21], + [-68, -36], + [-33, -3], + [-83, -101], + [0, -19], + [-25, -31], + [-4, -132], + [-21, -19], + [-64, -3], + [-39, 26], + [-17, 33], + [0, 32], + [-55, 53], + [-74, 125], + [67, 82], + [-3, 13], + [81, 115], + [0, 40], + [-12, 16], + [0, 21], + [-29, 59], + [-17, 63], + [0, 75], + [30, 134], + [46, 59], + [29, 22], + [1, 27], + [108, 78], + [32, 40], + [94, 74], + [23, 40], + [32, 18], + [26, 4], + [98, -12] + ], + [ + [49401, 431768], + [-12, -167], + [-10, -37], + [0, -110], + [-11, -82], + [-16, -31], + [-4, -103], + [-9, -26], + [-29, -34], + [-29, -72], + [-23, -29], + [-56, -48], + [-31, -51], + [-33, -26], + [-40, -14], + [-29, 3], + [-42, 21], + [-17, 30], + [-2, 58], + [-15, 28], + [-15, 1], + [-56, -42], + [-50, -21], + [-75, -2], + [-42, 8], + [-87, 59], + [-34, 61], + [-15, 88], + [10, 151], + [65, 87], + [39, 24], + [67, 0], + [77, -19], + [19, -17], + [17, -52], + [53, -95], + [27, -38], + [35, -27], + [21, -42], + [13, 1], + [18, 23], + [-8, 63], + [-46, 67], + [-4, 30], + [8, 31], + [13, 8], + [31, 1], + [10, 22], + [131, 136], + [-4, 172], + [-40, 5], + [-19, -33], + [-35, -28], + [-36, 2], + [-23, 13], + [-4, 16], + [2, 54], + [43, 177], + [-10, 56], + [-11, 6], + [-8, 27], + [-6, 74], + [10, 131], + [30, 51], + [-16, 18], + [0, 69], + [16, 59], + [38, 26], + [-8, 33], + [-45, 43], + [-10, 45], + [23, 32], + [19, 11], + [25, 0], + [12, -20], + [47, -39], + [30, -59], + [62, -176], + [67, -43], + [71, -32], + [15, -32], + [-6, -43], + [7, -68], + [-15, -106], + [-31, -124], + [-4, -133] + ], + [ + [52287, 431197], + [88, -34], + [138, -92], + [1, -21], + [-100, -112], + [-18, -189], + [3, -76], + [-21, -84], + [-34, -30], + [-42, -61], + [-49, -29], + [-78, -10], + [-100, 14], + [-90, -36], + [-74, -15], + [-82, 12], + [-40, 17], + [-28, 21], + [-79, 31], + [-2, 22], + [-51, 51], + [-38, 76], + [8, 65], + [92, 45], + [3, 31], + [-25, 64], + [-37, 39], + [-23, 126], + [4, 83], + [23, 12], + [39, 44], + [65, 24], + [100, 24], + [205, 1], + [69, 8], + [87, -5], + [86, -16] + ], + [ + [59245, 385016], + [-20, -32], + [-46, 11], + [-53, 30], + [-196, 150], + [-39, 53], + [-33, 66], + [-9, 90], + [-51, 49], + [-27, 96], + [8, 185], + [33, 48], + [15, 107], + [81, 76], + [24, 7], + [42, 46], + [69, 34], + [9, 17], + [35, 25], + [34, 3], + [38, -12], + [7, -8], + [30, -5], + [71, -36], + [136, -15], + [29, -14], + [27, -33], + [66, -20], + [-93, -103], + [1, -77], + [-30, -55], + [-6, -53], + [-45, -60], + [-21, -54], + [-21, -25], + [-27, -76], + [40, -83], + [-9, -34], + [-33, -35], + [9, -30], + [27, -28], + [9, -34], + [-9, -39], + [-9, -17], + [-14, -4], + [-4, -40], + [-45, -71] + ], + [ + [59159, 398026], + [139, -13], + [60, -22], + [17, -15], + [63, -28], + [23, -53], + [-10, -148], + [28, -71], + [2, -33], + [37, -57], + [-21, -31], + [-169, -92], + [-19, 0], + [-60, -31], + [-51, -11], + [-59, -2], + [-157, 3], + [-146, 30], + [-129, 47], + [-80, 38], + [-91, 85], + [-12, 28], + [4, 60], + [35, 55], + [18, 12], + [40, 7], + [11, 30], + [66, 21], + [48, 27], + [29, 4], + [93, 54], + [52, 25], + [41, 7], + [95, 46], + [7, 10], + [85, 21], + [11, -3] + ], + [ + [50936, 433873], + [39, -3], + [24, -14], + [35, -7], + [32, -29], + [22, -122], + [1, -176], + [-11, -20], + [-1, -34], + [-62, -128], + [-10, -101], + [-28, -32], + [-10, -68], + [-53, -82], + [-39, -39], + [-10, -42], + [-25, -40], + [-52, -21], + [-92, 35], + [0, 53], + [-47, 64], + [-14, 5], + [-7, 83], + [-10, 27], + [-25, 23], + [-90, 40], + [-10, 21], + [-3, 16], + [17, 46], + [-17, 43], + [17, 59], + [-2, 26], + [16, 21], + [58, 25], + [36, 6], + [21, 17], + [-2, 23], + [-13, 7], + [-4, 47], + [-27, 18], + [-31, 3], + [-17, 11], + [-9, 24], + [-21, 17], + [-2, 29], + [11, 17], + [31, 14], + [20, 32], + [34, 18], + [20, 0], + [18, -15], + [14, 1], + [-14, 66], + [58, 31], + [30, -3], + [37, 21], + [58, 12], + [47, -3], + [62, -22] + ], + [ + [50212, 429551], + [-62, -29], + [-38, -30], + [1, -370], + [17, -51], + [101, -59], + [23, -25], + [15, -83], + [6, -284], + [-31, -89], + [-48, -29], + [-52, 3], + [-28, 15], + [-45, 8], + [-53, -8], + [-58, 4], + [-33, 17], + [-46, 141], + [-9, 79], + [0, 189], + [25, 56], + [-20, 75], + [8, 51], + [-19, 131], + [-21, 33], + [-54, 34], + [-38, 40], + [-16, 46], + [12, 69], + [54, 55], + [95, 42], + [22, 0], + [57, -25], + [16, 12], + [8, 55], + [67, 71], + [0, 29], + [35, 29], + [41, 17], + [20, 2], + [41, -16], + [29, -34], + [-3, -19], + [-28, -50], + [23, -71], + [0, -14], + [-14, -17] + ], + [ + [54685, 468031], + [24, -10], + [50, -1], + [90, -41], + [39, 1], + [28, -25], + [3, -14], + [-40, -49], + [-19, -51], + [-10, -65], + [5, -103], + [-11, -48], + [-25, -28], + [-39, -93], + [-117, -207], + [-61, -46], + [-42, -54], + [0, -27], + [16, 5], + [26, 29], + [30, 16], + [20, 42], + [32, 2], + [5, -41], + [-11, -38], + [-43, -9], + [-3, -11], + [35, -36], + [0, -17], + [-22, -9], + [-28, 30], + [-26, 7], + [-10, -9], + [27, -24], + [9, -27], + [-50, -28], + [-24, -4], + [-33, 14], + [-13, 29], + [-20, 17], + [-46, 13], + [-19, 12], + [-40, 60], + [-52, 46], + [1, 31], + [103, 159], + [15, 251], + [7, 29], + [20, 27], + [-4, 121], + [-15, 98], + [-26, 48], + [-35, 35], + [-68, 24], + [-11, 15], + [24, 36], + [9, 60], + [7, 7], + [35, 0], + [59, -18], + [120, -70], + [82, -34], + [42, -27] + ], + [ + [59912, 474272], + [-5, -35], + [-17, -12], + [-18, -43], + [-26, -7], + [-11, -11], + [-6, -41], + [15, -24], + [-7, -33], + [-65, -52], + [-90, -41], + [-65, 7], + [-145, 87], + [-68, 54], + [-12, 51], + [-46, 94], + [-18, 14], + [-21, 1], + [-22, 13], + [-38, 43], + [-5, 84], + [19, 41], + [25, 27], + [72, 51], + [69, 114], + [122, 100], + [54, 7], + [107, -42], + [32, -35], + [0, -75], + [77, -113], + [29, -148], + [64, -76] + ], + [ + [77594, 467717], + [-92, -5], + [-39, 18], + [-46, 41], + [-2, 18], + [-39, 21], + [-28, 39], + [3, 34], + [31, 40], + [-4, 36], + [-15, 48], + [-8, 76], + [-100, 212], + [0, 70], + [25, 133], + [90, 79], + [108, 159], + [31, 64], + [169, 166], + [55, 28], + [32, -7], + [3, -98], + [-80, -142], + [-35, -112], + [-76, -127], + [-19, -66], + [0, -80], + [26, -49], + [-7, -34], + [-14, -13], + [0, -95], + [37, -105], + [9, -158], + [23, -34], + [22, -81], + [0, -29], + [-19, -30], + [-41, -17] + ], + [ + [79666, 468079], + [26, -24], + [32, 2], + [25, 13], + [30, -2], + [36, -20], + [-9, -119], + [-10, -25], + [-19, -22], + [-31, -17], + [-41, 26], + [-9, 89], + [-60, -40], + [-55, -55], + [-60, -82], + [-14, -127], + [-28, -27], + [-56, -110], + [-26, -29], + [-34, -12], + [-47, 4], + [-16, 13], + [-49, -11], + [-14, 4], + [-33, 20], + [-116, 108], + [-24, 35], + [22, 49], + [-5, 64], + [-33, 66], + [14, 48], + [19, 23], + [85, 63], + [26, 47], + [90, 57], + [59, 69], + [70, 26], + [57, 17], + [113, -6], + [77, -65], + [8, -50] + ], + [ + [64078, 474926], + [62, -17], + [20, -38], + [-8, -46], + [48, -36], + [15, -48], + [-15, -14], + [-72, -17], + [-20, -12], + [-18, -24], + [-19, -8], + [-36, 0], + [-20, 9], + [-20, -3], + [-17, -14], + [-8, -21], + [13, -56], + [-10, -13], + [-20, -4], + [-20, 6], + [-35, -27], + [-18, -15], + [-42, -75], + [-133, -119], + [-93, -36], + [-77, 11], + [-53, 57], + [-10, 64], + [15, 46], + [25, 13], + [10, 15], + [35, 113], + [7, 108], + [31, 38], + [29, 65], + [22, 21], + [66, 33], + [135, 48], + [145, 6], + [86, -10] + ], + [ + [50078, 434037], + [2, -13], + [25, -6], + [21, -24], + [67, -28], + [11, -108], + [31, -49], + [-6, -29], + [25, -96], + [-16, -31], + [-27, -12], + [-26, 4], + [-12, 15], + [-20, 2], + [-54, -65], + [-23, -65], + [-76, -41], + [-59, 5], + [-48, 24], + [-54, 9], + [-7, 37], + [-21, 8], + [-16, 82], + [-80, 109], + [9, 104], + [22, 6], + [31, 35], + [5, 20], + [-13, 12], + [-8, 41], + [30, 44], + [0, 64], + [77, 58], + [84, 0], + [111, -54], + [19, -11], + [6, -19], + [-10, -28] + ], + [ + [46419, 420211], + [46, -23], + [138, 18], + [54, -41], + [116, -147], + [84, -182], + [46, -77], + [16, -70], + [-53, -53], + [-31, -65], + [-69, -59], + [-100, 17], + [-61, 53], + [15, 71], + [-39, 94], + [-38, 53], + [-54, 53], + [-15, 88], + [-39, 59], + [-123, 135], + [-15, 64], + [68, 42], + [54, -30] + ], + [ + [63060, 476440], + [22, -34], + [47, -11], + [168, -86], + [1, -16], + [21, -17], + [7, -31], + [-26, -59], + [-18, -19], + [-83, -31], + [-257, -134], + [-138, -27], + [-65, 15], + [-18, 19], + [0, 66], + [-38, 93], + [23, 68], + [25, 21], + [30, 11], + [-11, 29], + [-19, 2], + [-10, 10], + [5, 26], + [27, 23], + [43, 16], + [33, 25], + [15, 35], + [54, 12], + [49, 0], + [42, -27], + [17, -1], + [25, 12], + [9, 13], + [20, -3] + ], + [ + [80210, 469283], + [68, -6], + [51, 6], + [56, -3], + [63, -45], + [18, -23], + [8, -32], + [5, -94], + [63, -137], + [-17, -27], + [-81, 10], + [-131, 29], + [-39, 17], + [-123, 16], + [-94, 22], + [-15, 11], + [-13, 69], + [-54, 77], + [-69, 17], + [-41, 22], + [30, 81], + [30, 17], + [-19, 33], + [0, 53], + [29, 5], + [24, 32], + [21, 7], + [43, 0], + [34, -23], + [4, -33], + [56, -74], + [33, -16], + [60, -11] + ], + [ + [73035, 462464], + [-92, -95], + [-69, -11], + [-8, 53], + [-23, 41], + [-62, -12], + [-53, 47], + [7, 47], + [-23, 76], + [-31, 48], + [0, 117], + [15, 89], + [62, 58], + [69, 47], + [85, 36], + [99, -47], + [62, -18], + [8, -47], + [-46, -71], + [-23, -64], + [-39, -65], + [-15, -59], + [23, -94], + [54, -23], + [0, -53] + ], + [ + [63787, 441525], + [-89, 5], + [-30, 11], + [-77, 60], + [-34, 49], + [-18, 4], + [-16, 28], + [0, 57], + [31, 113], + [48, 108], + [31, 28], + [34, 12], + [62, 48], + [84, -6], + [23, -35], + [45, -87], + [13, -113], + [43, -106], + [7, -166], + [-25, -12], + [-132, 2] + ], + [ + [62603, 398020], + [-20, -31], + [-20, -12], + [-49, -12], + [-132, 39], + [-42, 5], + [-61, 30], + [-68, -11], + [-57, 10], + [-17, 17], + [-5, 117], + [10, 23], + [57, 45], + [4, 48], + [-11, 42], + [16, 46], + [73, 13], + [37, 17], + [80, -6], + [49, -39], + [84, -43], + [15, -20], + [27, -15], + [74, -88], + [-4, -111], + [-9, -18], + [-18, -11], + [1, -15], + [-14, -20] + ], + [ + [50302, 433221], + [15, -6], + [9, -19], + [0, -30], + [-26, -61], + [-163, -155], + [-15, 0], + [-44, -26], + [-24, -3], + [-48, 9], + [-24, 13], + [-14, 30], + [-3, 40], + [-19, 19], + [-77, 30], + [-23, 51], + [-8, 76], + [28, 50], + [10, 9], + [16, -1], + [113, 65], + [36, 13], + [47, 32], + [42, 7], + [24, 12], + [26, 25], + [24, 41], + [32, 18], + [34, -8], + [37, -196], + [-5, -35] + ], + [ + [77786, 459667], + [-84, -18], + [-77, 77], + [-39, 59], + [200, 129], + [23, 30], + [69, 47], + [161, -71], + [192, -17], + [62, -24], + [0, -64], + [-131, -83], + [-77, -17], + [-92, -36], + [-115, -12], + [-92, 0] + ], + [ + [46899, 381418], + [-126, -16], + [-199, 10], + [-27, 13], + [-33, 43], + [-3, 45], + [66, 54], + [34, 16], + [61, 11], + [74, 50], + [115, 104], + [82, 33], + [42, -1], + [53, -17], + [15, -16], + [24, -57], + [0, -84], + [-49, -68], + [1, -56], + [-10, -20], + [-59, -38], + [-61, -6] + ], + [ + [63767, 443043], + [24, -108], + [33, -62], + [-4, -67], + [-36, -28], + [-48, -9], + [-89, 27], + [-56, 34], + [-13, 46], + [0, 142], + [-18, 4], + [-94, -38], + [-45, 34], + [-4, 62], + [20, 114], + [0, 145], + [22, 25], + [-6, 20], + [8, 17], + [16, 6], + [28, -9], + [41, -37], + [40, -87], + [181, -231] + ], + [ + [76334, 478485], + [4, -63], + [-12, -15], + [-21, -77], + [-21, -23], + [2, -65], + [-98, -87], + [-14, -2], + [-39, -30], + [-41, -56], + [-32, -4], + [-30, 7], + [-42, 45], + [-9, 28], + [-45, 56], + [-16, 47], + [-31, 41], + [-2, 72], + [37, 39], + [71, 54], + [162, 33], + [83, 4], + [36, 14], + [43, 0], + [15, -18] + ], + [ + [50477, 388728], + [-25, -28], + [-30, -7], + [-62, 10], + [-69, 32], + [-45, 3], + [-25, 25], + [-1, 38], + [54, 57], + [72, 54], + [6, 31], + [99, 137], + [29, 32], + [26, 17], + [31, 41], + [13, 2], + [11, 15], + [66, 2], + [40, -15], + [20, -23], + [22, -46], + [6, -48], + [-16, -34], + [-66, -66], + [-41, -88], + [-36, -30], + [-79, -111] + ], + [ + [44156, 385955], + [17, -10], + [31, 0], + [16, -9], + [7, -28], + [-21, -57], + [29, -16], + [5, -33], + [-12, -71], + [-12, -22], + [-31, -11], + [-2, -27], + [26, -27], + [22, -42], + [-12, -21], + [-31, -8], + [-26, 11], + [-72, 62], + [-21, -4], + [-24, 9], + [-47, 37], + [-67, 27], + [-53, 44], + [-26, 41], + [23, 108], + [67, 113], + [28, 26], + [50, 7], + [76, -12], + [29, -26], + [14, -41], + [17, -20] + ], + [ + [47665, 388985], + [4, -149], + [-8, -76], + [-23, -77], + [-22, -135], + [-30, -241], + [-63, -84], + [-32, -22], + [-38, 4], + [-26, 20], + [-6, 39], + [30, 62], + [5, 32], + [21, 23], + [8, 27], + [-24, 59], + [-1, 77], + [-23, 21], + [-14, 31], + [-2, 88], + [58, 72], + [26, 98], + [45, 49], + [21, 64], + [56, 43], + [32, 2], + [6, -27] + ], + [ + [65388, 432651], + [-77, -12], + [-30, 18], + [-8, 35], + [8, 82], + [-207, 94], + [-24, 59], + [8, 52], + [23, 30], + [92, 0], + [77, -29], + [115, -24], + [115, -46], + [46, -36], + [0, -100], + [-38, -65], + [-54, -41], + [-46, -17] + ], + [ + [47705, 387838], + [63, -27], + [12, -40], + [-25, -106], + [-33, -44], + [-6, -43], + [-15, -29], + [-154, -193], + [-30, -19], + [-82, 0], + [-39, 21], + [-24, 57], + [118, 125], + [27, 47], + [17, 11], + [11, -2], + [28, 32], + [-4, 63], + [11, 34], + [59, 104], + [36, 15], + [30, -6] + ], + [ + [46586, 426922], + [-26, -10], + [-26, 2], + [-44, 19], + [-16, 52], + [8, 64], + [25, 43], + [2, 24], + [44, 106], + [69, 94], + [33, 26], + [59, 13], + [40, -14], + [20, -40], + [2, -41], + [-21, -50], + [-3, -69], + [-99, -162], + [-29, -14], + [-38, -43] + ], + [ + [68354, 462095], + [-3, -21], + [-26, -13], + [-42, 6], + [-22, 11], + [-9, 21], + [-48, 35], + [-5, 23], + [-22, 11], + [-16, 65], + [-28, 13], + [-19, 21], + [-5, 38], + [93, 87], + [70, 50], + [22, 9], + [134, 20], + [61, 29], + [28, -2], + [20, -12], + [-2, -21], + [-33, -28], + [-7, -19], + [-84, -54], + [-70, -76], + [-23, -85], + [38, -38], + [-2, -70] + ], + [ + [66682, 440393], + [-4, -64], + [10, -28], + [0, -54], + [-19, -20], + [10, -10], + [-4, -17], + [-27, -35], + [-37, -5], + [-37, 5], + [-46, 52], + [-7, 40], + [-55, 26], + [-26, 125], + [-28, 1], + [-56, 21], + [-68, 14], + [3, 30], + [-10, 2], + [23, 18], + [68, 24], + [97, -3], + [169, -73], + [44, -49] + ], + [ + [60490, 389370], + [8, -26], + [0, -101], + [-15, -19], + [-34, -18], + [6, -3], + [-10, -21], + [-37, -14], + [-34, 0], + [-33, -13], + [-94, -75], + [-23, -8], + [-40, 4], + [-40, 23], + [-9, 23], + [-20, 19], + [12, 60], + [35, 48], + [64, 61], + [25, 2], + [20, 11], + [45, 50], + [20, 6], + [60, -10], + [32, 12], + [25, 0], + [37, -11] + ], + [ + [52820, 450473], + [-59, 8], + [-51, 18], + [-76, 118], + [2, 26], + [13, 18], + [73, 42], + [20, 20], + [15, 3], + [98, -1], + [108, -45], + [18, -28], + [-8, -33], + [21, -81], + [-6, -28], + [-19, -6], + [-48, 2], + [-43, -25], + [-58, -8] + ], + [ + [76716, 454208], + [-30, 0], + [-79, 22], + [-98, 106], + [-30, 52], + [-30, 31], + [-19, 53], + [0, 75], + [-40, 30], + [10, 38], + [39, 0], + [70, 15], + [19, -23], + [20, -30], + [0, -30], + [79, -83], + [10, -106], + [29, -60], + [50, -45], + [0, -45] + ], + [ + [60115, 476396], + [-24, -65], + [-53, -11], + [-39, 52], + [0, 24], + [-76, 5], + [-1, 42], + [46, 94], + [0, 47], + [31, 76], + [208, -123], + [23, -29], + [0, -36], + [-31, -29], + [-46, -17], + [-38, -30] + ], + [ + [62349, 386895], + [25, -10], + [5, -102], + [13, -31], + [21, -12], + [1, -28], + [-11, -22], + [-26, -15], + [-16, 2], + [-71, -81], + [-38, -1], + [-35, 21], + [-38, 52], + [4, 105], + [27, 30], + [-8, 30], + [18, 40], + [22, 25], + [64, 13], + [43, -16] + ], + [ + [62092, 397383], + [12, -12], + [25, -4], + [23, -25], + [8, -62], + [-23, -35], + [0, -22], + [37, -70], + [-14, -32], + [0, -28], + [-26, -9], + [-28, -22], + [-25, 6], + [-33, 24], + [-31, 11], + [-17, 26], + [-39, 126], + [17, 72], + [56, 50], + [58, 6] + ], + [ + [71870, 477724], + [-53, -3], + [-54, 11], + [-36, 44], + [-25, 63], + [10, 52], + [-25, 3], + [-28, 27], + [0, 33], + [25, 16], + [35, 0], + [33, 11], + [-36, 55], + [-4, 52], + [12, 6], + [-1, 22], + [50, -36], + [69, -134], + [3, -93], + [54, -85], + [-29, -44] + ], + [ + [76962, 465776], + [-19, -24], + [-16, -2], + [-28, -28], + [-3, -31], + [-29, -32], + [-20, 1], + [-31, -29], + [-3, -23], + [-51, -7], + [-35, 7], + [-19, 20], + [-7, 26], + [29, 42], + [0, 24], + [-13, 20], + [-54, 29], + [3, 20], + [87, -10], + [39, 32], + [11, 34], + [58, 34], + [35, 3], + [25, -3], + [48, -41], + [13, -42], + [-20, -20] + ], + [ + [46833, 445070], + [-45, 4], + [-18, 34], + [24, 47], + [21, 91], + [69, 79], + [16, 34], + [62, 25], + [25, 18], + [27, 1], + [54, -34], + [-2, -33], + [-138, -151], + [-3, -33], + [-27, -52], + [-65, -30] + ], + [ + [78246, 464301], + [29, -24], + [-17, -16], + [-53, -3], + [-12, -16], + [5, -27], + [-9, -18], + [-27, -2], + [-111, 42], + [-33, 42], + [-14, 0], + [-9, 13], + [-98, 16], + [-22, 14], + [-16, -1], + [-13, 35], + [25, 24], + [47, 12], + [44, 0], + [16, 45], + [43, 11], + [12, -2], + [69, -88], + [60, -35], + [84, -22] + ], + [ + [65188, 442178], + [-18, -2], + [-21, 61], + [-41, 21], + [-33, 59], + [29, 111], + [107, 18], + [39, -6], + [46, -53], + [6, -84], + [-40, -49], + [-6, -27], + [-68, -49] + ], + [ + [49503, 430148], + [101, -11], + [76, 5], + [11, -13], + [-5, -41], + [-86, -35], + [-25, -28], + [-49, -32], + [-61, 13], + [-36, -10], + [-54, 2], + [-9, 6], + [-3, 58], + [33, 42], + [-17, 38], + [2, 36], + [21, 12], + [62, -17], + [39, -25] + ], + [ + [60535, 385741], + [-38, -64], + [-46, 99], + [-8, 48], + [-46, 46], + [-15, 77], + [68, 94], + [92, -82], + [54, -29], + [0, -42], + [-38, -58], + [0, -47], + [-23, -42] + ], + [ + [50193, 389369], + [-46, -65], + [-18, 2], + [-36, -28], + [-42, -5], + [-91, 9], + [-28, 41], + [1, 23], + [40, 63], + [40, 37], + [68, 19], + [30, 23], + [40, 2], + [38, -28], + [4, -93] + ], + [ + [70281, 438740], + [1, -69], + [-28, -26], + [-55, -30], + [-24, -29], + [-44, -17], + [-51, 0], + [-51, 21], + [-25, 26], + [5, 68], + [33, 47], + [61, 15], + [55, -2], + [57, 30], + [22, -1], + [26, -12], + [18, -21] + ], + [ + [44504, 413295], + [-48, -14], + [-49, -3], + [-38, 8], + [-32, 54], + [-7, 54], + [11, 17], + [63, 64], + [44, 20], + [80, -20], + [29, -48], + [-9, -94], + [-44, -38] + ], + [ + [61463, 434329], + [24, -9], + [101, -3], + [28, -28], + [-4, -28], + [-44, -25], + [-51, -1], + [-103, -23], + [-96, -72], + [-32, -3], + [-11, 9], + [-9, 34], + [0, 56], + [24, 22], + [52, 27], + [8, 53], + [12, 9], + [52, 0], + [49, -18] + ], + [ + [61945, 395993], + [-81, 10], + [-26, 29], + [-37, 73], + [3, 40], + [22, 22], + [2, 34], + [10, 11], + [25, 7], + [64, 1], + [66, -59], + [-2, -132], + [-15, -21], + [-31, -15] + ], + [ + [62291, 434630], + [57, -5], + [30, -13], + [77, -77], + [37, -82], + [13, -5], + [10, -22], + [3, -36], + [-9, -7], + [-24, -3], + [-67, 33], + [-63, 55], + [-16, 51], + [-63, 27], + [-57, 8], + [-21, 14], + [3, 30], + [18, 23], + [43, 14], + [29, -5] + ], + [ + [57359, 378839], + [-62, 0], + [-61, 23], + [-46, 35], + [-8, 59], + [23, 12], + [61, 12], + [62, 88], + [68, 6], + [39, -29], + [-15, -36], + [-39, -29], + [0, -76], + [-22, -65] + ], + [ + [74562, 462626], + [-48, 13], + [-29, 32], + [4, 94], + [41, 51], + [42, 31], + [35, 15], + [66, 5], + [16, -7], + [17, -38], + [-6, -37], + [-41, -40], + [-17, -34], + [-58, -56], + [-4, -19], + [-18, -10] + ], + [ + [63353, 391744], + [-20, 1], + [-46, 27], + [-62, 84], + [-12, 61], + [27, 75], + [25, 19], + [29, 4], + [23, -9], + [1, -43], + [80, -90], + [0, -89], + [-16, -28], + [-29, -12] + ], + [ + [48965, 388985], + [-26, 2], + [-10, 16], + [-2, 39], + [62, 87], + [21, 17], + [25, 9], + [45, 0], + [47, -3], + [69, -18], + [7, -13], + [-21, -71], + [-54, -18], + [-77, -40], + [-86, -7] + ], + [ + [62757, 392400], + [22, -14], + [5, -25], + [32, -27], + [8, -48], + [-7, -39], + [-22, -26], + [-72, -17], + [-54, 7], + [-11, 19], + [29, 40], + [-11, 38], + [-49, 33], + [-14, 35], + [20, 26], + [124, -2] + ], + [ + [47004, 428499], + [-68, -1], + [-49, 24], + [-10, 60], + [45, 47], + [29, 6], + [119, 3], + [29, -6], + [11, -16], + [-10, -53], + [-15, -19], + [-81, -45] + ], + [ + [51311, 429226], + [-49, -11], + [-134, 3], + [-44, 33], + [-5, 40], + [13, 28], + [16, 14], + [78, 7], + [69, 0], + [22, -7], + [19, -31], + [15, -76] + ], + [ + [78602, 464490], + [-19, -4], + [-26, 7], + [-12, 28], + [-84, 46], + [-5, 18], + [29, 16], + [8, 14], + [45, 12], + [28, 41], + [15, 3], + [28, 0], + [19, -11], + [10, -33], + [62, -33], + [3, -14], + [-22, -37], + [-71, -30], + [-8, -23] + ], + [ + [63343, 438874], + [-17, -9], + [-24, 6], + [-82, 56], + [-66, 60], + [0, 15], + [54, 50], + [44, -3], + [115, -97], + [9, -37], + [-9, -22], + [-24, -19] + ], + [ + [61556, 431518], + [-34, 2], + [-24, 18], + [-18, 28], + [0, 26], + [39, 66], + [30, 10], + [30, 0], + [33, -9], + [31, -19], + [30, -50], + [6, -31], + [-15, -9], + [0, -12], + [-30, -16], + [-78, -4] + ], + [ + [59091, 432568], + [-31, -18], + [-46, 23], + [-38, 47], + [-54, 24], + [-8, 53], + [47, 35], + [53, 0], + [46, -35], + [46, -71], + [-15, -58] + ], + [ + [59269, 467639], + [-86, -11], + [-29, 11], + [-28, -6], + [-47, 14], + [-29, 41], + [0, 30], + [43, 28], + [33, 8], + [57, -3], + [79, -47], + [7, -65] + ], + [ + [45726, 423039], + [92, -22], + [15, -21], + [0, -19], + [-29, -31], + [0, -13], + [19, -25], + [-2, -11], + [-15, -6], + [-61, -2], + [-73, 49], + [-14, 31], + [-3, 39], + [24, 27], + [23, 7], + [24, -3] + ], + [ + [72562, 462531], + [59, -9], + [18, -11], + [2, -19], + [-2, -12], + [-41, -28], + [-29, -44], + [-38, -12], + [-96, 11], + [-9, 41], + [38, 48], + [19, 17], + [79, 18] + ], + [ + [45786, 424591], + [-23, -29], + [-46, 11], + [-69, 70], + [-1, 54], + [62, 47], + [53, -6], + [8, -12], + [16, -135] + ], + [ + [45656, 424320], + [-30, -53], + [-23, 29], + [7, 83], + [61, 106], + [39, -18], + [23, -53], + [0, -53], + [-77, -41] + ], + [ + [71899, 462276], + [-28, 0], + [-12, 13], + [1, 45], + [133, 63], + [62, -4], + [19, -35], + [-19, -14], + [-131, -68], + [-25, 0] + ], + [ + [72708, 458697], + [-29, -15], + [-6, -23], + [-56, -31], + [-76, 5], + [-17, 8], + [-9, 19], + [33, 50], + [62, 23], + [61, 4], + [28, -9], + [9, -31] + ], + [ + [45801, 424850], + [-39, -24], + [-46, 6], + [-15, 82], + [7, 41], + [23, 18], + [38, 0], + [62, -17], + [-30, -106] + ], + [ + [50292, 432955], + [58, -14], + [31, -29], + [9, -74], + [-22, -17], + [-49, 3], + [-15, 14], + [-3, 25], + [-26, 15], + [-17, 1], + [-9, 14], + [5, 32], + [-7, 7], + [45, 23] + ], + [ + [61167, 433729], + [12, -49], + [-21, -30], + [-18, 1], + [-48, -15], + [-45, 12], + [-30, 23], + [-7, 37], + [33, 28], + [124, -7] + ], + [ + [46655, 421264], + [-22, -5], + [-34, 14], + [-44, 36], + [-6, 28], + [9, 39], + [6, 17], + [22, 9], + [56, 3], + [15, -17], + [7, -100], + [-9, -24] + ], + [ + [50053, 428461], + [44, -12], + [16, -33], + [-1, -49], + [-36, -23], + [-33, 4], + [-34, 30], + [-23, 32], + [5, 33], + [26, 22], + [36, -4] + ], + [ + [49440, 432527], + [-22, 0], + [-37, 15], + [-5, 24], + [68, 93], + [38, 6], + [23, -23], + [1, -44], + [-51, -68], + [-15, -3] + ], + [ + [61263, 397445], + [-34, 0], + [-39, 34], + [-4, 47], + [31, 30], + [46, 1], + [53, -36], + [-2, -32], + [-20, -10], + [-19, -30], + [-12, -4] + ], + [ + [61508, 433988], + [42, -20], + [-6, -42], + [-33, -19], + [-64, -9], + [-21, 7], + [-8, 23], + [14, 25], + [49, 35], + [27, 0] + ], + [ + [45807, 422782], + [-27, 0], + [-20, 13], + [-10, 26], + [8, 24], + [14, 11], + [42, 6], + [24, -4], + [14, -15], + [5, -31], + [-2, -15], + [-12, -8], + [-36, -7] + ], + [ + [45730, 423433], + [-29, -1], + [-30, 12], + [-3, 47], + [12, 15], + [49, 6], + [29, -25], + [0, -29], + [-28, -25] + ], + [ + [63144, 439184], + [-41, -1], + [-39, 24], + [0, 35], + [14, 16], + [39, 0], + [36, -18], + [3, -44], + [-12, -12] + ], + [ + [147492, 34045], + [8, -171], + [-16, -82], + [-7, -241], + [-61, -42], + [-105, -17], + [-119, -46], + [-123, -95], + [-83, -94], + [-22, -106], + [29, -95], + [61, -106], + [74, -199], + [76, -112], + [30, -65], + [98, -112], + [263, -171], + [106, -35], + [105, -24], + [105, -6], + [49, 11], + [185, -5], + [83, 29], + [249, 135], + [121, 12], + [105, 0], + [151, -18], + [105, 0], + [241, 29], + [91, -18], + [84, -30], + [37, -35], + [22, -53], + [83, -123], + [113, -59], + [120, -47], + [68, -77], + [45, -70], + [83, -83], + [105, -41], + [113, -30], + [30, -53], + [-23, -53], + [-83, -70], + [0, -65], + [68, -30], + [105, -11], + [113, 11], + [91, 41], + [53, -17], + [30, -47], + [0, -47], + [-23, -71], + [-1, -341], + [-83, -106], + [-60, -53], + [-30, -41], + [15, -77], + [180, -129], + [98, -165], + [-30, -53], + [0, -123], + [14, -173], + [-74, -207], + [-16, -100], + [-152, -80], + [-37, -99], + [-38, -41], + [7, -71], + [8, -41], + [37, -53], + [15, -153], + [90, -136], + [211, -106], + [121, -94], + [37, -18], + [0, -58], + [-121, -130], + [-37, -59], + [-1, -170], + [38, -71], + [143, -141], + [90, -53], + [45, -71], + [30, -112], + [15, -158], + [15, -48], + [-15, -41], + [-38, -41], + [-8, -47], + [-52, -64], + [-1, -142], + [23, -76], + [0, -77], + [-16, -64], + [8, -124], + [-31, -76], + [-8, -124], + [-30, -53], + [-105, -76], + [-30, -71], + [-23, -159], + [14, -300], + [30, -70], + [8, -65], + [37, -59], + [90, -59], + [166, -70], + [233, -207], + [-15, -47], + [-8, -176], + [-23, -147], + [-45, -35], + [-90, -100], + [-23, -42], + [-8, -288], + [-68, -106], + [-143, -117], + [-61, -100], + [-8, -359], + [38, -112], + [67, -70], + [98, -130], + [7, -77], + [-7, -158], + [-61, -65], + [-8, -94], + [15, -118], + [0, -141], + [83, -118], + [98, -59], + [32, -8], + [12, -33], + [83, -59], + [91, -36], + [165, -93], + [106, -42], + [226, -47], + [256, -36], + [98, -29], + [68, -42], + [135, -129], + [60, -89], + [83, -147], + [59, -147], + [38, -47], + [23, -53], + [37, -129], + [0, -48], + [-53, -152], + [-15, -83], + [30, -70], + [97, -83], + [136, -94], + [165, -194], + [294, -130], + [37, -41], + [30, -53], + [38, -218], + [45, -177], + [14, -159], + [-37, -82], + [-128, -129], + [-76, -94], + [-46, -82], + [0, -54], + [38, -82], + [83, -65], + [7, -41], + [0, -258], + [30, -54], + [82, -35], + [68, -65], + [30, -53], + [8, -65], + [-38, -82], + [0, -47], + [52, -176], + [68, -30], + [90, 6], + [106, -36], + [67, -41], + [68, 0], + [249, 88], + [196, 94], + [68, 24], + [53, 11], + [112, -12], + [61, -23], + [52, -48], + [38, -58], + [75, -59], + [68, -83], + [256, -153], + [7, -41], + [23, -35], + [45, -30], + [98, -6], + [75, -29], + [48, -32], + [65, -69], + [68, -35], + [52, -6], + [53, -29], + [30, -6], + [23, -36], + [-15, -41], + [-159, -35], + [-38, -47], + [91, -47], + [45, -12], + [75, -53], + [53, -53], + [60, -30], + [120, -82], + [166, -29], + [38, -42], + [37, -70], + [0, -65], + [30, -89], + [7, -52], + [38, -95], + [45, -76], + [7, -53], + [-19, -40], + [5, -137], + [-45, -141], + [-121, -170], + [-68, -41], + [-68, -65], + [-75, -18], + [-98, 89], + [-75, 188], + [-294, 83], + [-67, 47], + [-159, 65], + [-74, 12], + [-91, 41], + [-53, 35], + [-67, 94], + [0, 83], + [-15, 123], + [-60, 59], + [-75, 142], + [-23, 100], + [-240, 106], + [-144, 12], + [-150, 0], + [-121, -12], + [-113, -94], + [-256, -159], + [-257, -135], + [-135, -146], + [-31, -118], + [-86, -152], + [17, -101], + [52, -152], + [30, -59], + [45, -42], + [61, -41], + [67, -24], + [188, -29], + [361, -212], + [46, -30], + [53, -53], + [112, -30], + [136, -47], + [82, -41], + [38, -76], + [8, -74], + [33, -45], + [79, -17], + [23, -41], + [0, -76], + [-15, -54], + [-61, -111], + [-30, -147], + [-1, -230], + [8, -47], + [45, -106], + [75, -41], + [30, 0], + [15, -12], + [91, -18], + [135, -64], + [30, -59], + [128, -124], + [37, -82], + [0, -100], + [23, -100], + [67, -65], + [91, -71], + [83, -35], + [383, -113], + [135, -64], + [46, -41], + [52, -83], + [68, -135], + [-30, -89], + [-83, -52], + [-91, -118], + [-75, -35], + [-339, 0], + [-128, 30], + [-324, 147], + [-67, 18], + [-129, 59], + [-105, 24], + [-82, -8], + [-250, -74], + [-166, -130], + [-120, -64], + [-53, -65], + [0, -177], + [-53, -58], + [-203, -94], + [-98, -29], + [-61, -30], + [-68, -47], + [0, -29], + [22, -77], + [0, -82], + [-37, -59], + [-61, -35], + [-128, -94], + [-22, -77], + [112, -123], + [30, -106], + [-38, -59], + [-90, -35], + [-158, 0], + [-98, -18], + [-151, -99], + [-38, -36], + [-60, -122], + [7, -7], + [0, -212], + [52, -135], + [151, -230], + [113, -106], + [29, -53], + [76, -17], + [60, -30], + [75, -82], + [0, -77], + [38, -70], + [22, -106], + [-38, -53], + [-45, -36], + [-159, -88], + [-30, -29], + [-60, -106], + [-18, -75], + [-27, -43], + [-53, -23], + [-83, -29], + [-189, -47], + [-142, 24], + [-136, 70], + [-166, 18], + [-241, -6], + [-128, -94], + [-135, -117], + [-46, -41], + [-60, -77], + [7, -70], + [38, -41], + [38, -24], + [29, -124], + [61, -35], + [75, -12], + [60, -35], + [0, -59], + [-8, -35], + [-53, -42], + [-60, -29], + [-173, -111], + [-38, -47], + [-8, -35], + [23, -112], + [45, -89], + [75, -76], + [30, -59], + [113, -59], + [23, -41], + [-1, -118], + [-30, -77], + [-8, -58], + [61, -53], + [82, -42], + [75, -129], + [-30, -194], + [-8, -188], + [-30, -106], + [-68, -59], + [-76, -12], + [-143, -52], + [-39, -43], + [-163, -90], + [-129, -30], + [-30, -61], + [-31, -29], + [-52, -88], + [-1, -59], + [-15, -59], + [7, -218], + [45, -117], + [38, -65], + [37, -165], + [30, -82], + [0, -41], + [-68, -71], + [-15, -200], + [-23, -141], + [22, -106], + [0, -71], + [38, -47], + [60, -47], + [38, -59], + [37, -123], + [45, -59], + [90, -41], + [151, -7], + [143, -17], + [90, -48], + [98, -6], + [90, 24], + [68, 29], + [136, -11], + [128, -71], + [98, -42], + [127, -129], + [61, -100], + [-8, -212], + [-118, -173], + [-175, -186], + [-101, -79], + [-67, -103], + [-90, -111], + [-83, -65], + [-46, -53], + [-75, -65], + [-15, -29], + [-30, -29], + [0, -83], + [82, -112], + [38, -76], + [-1, -130], + [-37, -41], + [-53, -11], + [-158, -89], + [-23, -65], + [-211, -328], + [-106, -77], + [-136, -64], + [-97, -18], + [-68, 0], + [-196, 47], + [-105, 1], + [-53, -24], + [-30, -47], + [-53, -259], + [-61, -170], + [-37, -36], + [-174, -111], + [-83, -6], + [-173, -112], + [-75, 6], + [-23, 36], + [0, 47], + [-75, 88], + [-22, 47], + [-7, 253], + [-8, 65], + [-23, 58], + [-90, 95], + [-7, 29], + [-68, 53], + [-52, 18], + [-83, 41], + [-38, 71], + [-67, 41], + [-53, 65], + [-105, 83], + [-6, 40], + [-46, 44], + [-3, 14], + [-28, 7], + [-113, 71], + [-45, 47], + [-60, 42], + [-15, 23], + [0, 47], + [-45, 82], + [-45, 18], + [-68, 6], + [-204, 36], + [-361, 0], + [-105, -6], + [-121, -23], + [-105, -47], + [-354, -6], + [-203, -49], + [-8, -97], + [-241, -224], + [-53, -17], + [-1, -206], + [-113, -259], + [-37, -47], + [-68, -59], + [-23, -53], + [7, -53], + [23, -53], + [60, -76], + [0, -35], + [30, -54], + [0, -117], + [15, -59], + [120, -194], + [22, -53], + [0, -42], + [-121, -141], + [-37, -52], + [-23, -59], + [0, -100], + [-26, -248], + [18, -29], + [0, -47], + [-91, -235], + [-121, -106], + [-127, -76], + [-144, -118], + [-113, -106], + [-98, -147], + [-8, -76], + [-143, -412], + [-31, -194], + [-53, -118], + [-83, -88], + [-37, -35], + [-121, -35], + [-68, 6], + [-37, 23], + [-75, 12], + [-68, 0], + [-159, -82], + [-75, 0], + [-128, 6], + [-143, 41], + [-113, 24], + [-67, 0], + [-113, -12], + [-234, 48], + [-376, 147], + [-83, 18], + [-188, 76], + [-52, 13], + [-61, 41], + [-45, 47], + [0, 23], + [-60, 47], + [-68, 24], + [-188, 12], + [-45, 53], + [-128, 118], + [-60, 129], + [16, 112], + [22, 100], + [68, 59], + [53, 94], + [68, 70], + [75, 36], + [98, 0], + [60, 11], + [45, 35], + [61, 71], + [15, 47], + [52, 18], + [46, 5], + [37, 18], + [98, 88], + [8, 124], + [-8, 45], + [-44, 2], + [-46, 12], + [-128, 53], + [-127, 94], + [-113, 124], + [-45, 76], + [15, 106], + [60, 41], + [31, 135], + [113, 83], + [67, 12], + [113, 81], + [15, 77], + [-7, 106], + [-45, 59], + [-68, 30], + [-180, 58], + [-38, 42], + [-7, 53], + [23, 129], + [75, 164], + [8, 65], + [-45, 53], + [-8, 30], + [-60, 82], + [0, 47], + [8, 47], + [98, 12], + [128, -53], + [97, 18], + [68, 29], + [76, 59], + [75, 94], + [113, 76], + [38, 59], + [-8, 141], + [-22, 47], + [-7, 171], + [-15, 35], + [-53, 47], + [-105, 30], + [-76, 18], + [-105, 0], + [-83, -12], + [-120, -65], + [-61, -52], + [-37, -65], + [-16, -59], + [-128, -88], + [-83, -48], + [-158, -5], + [-83, 12], + [-52, 18], + [-113, 64], + [-23, 53], + [-60, 47], + [-67, 36], + [-91, 88], + [-112, 88], + [-61, 77], + [1, 141], + [-30, 36], + [-91, 65], + [-22, 46], + [-8, 47], + [-90, 95], + [-68, 23], + [-105, 53], + [-173, 136], + [-83, 18], + [-120, 41], + [-76, 35], + [-67, 242], + [1, 258], + [90, 83], + [45, 53], + [0, 146], + [8, 54], + [22, 52], + [53, 35], + [46, -17], + [67, -12], + [31, 12], + [37, 35], + [91, 94], + [37, 77], + [31, 29], + [135, 82], + [15, 47], + [38, 36], + [23, 100], + [0, 53], + [-143, 64], + [-75, 0], + [-53, -11], + [-61, -24], + [-45, -35], + [-30, -41], + [-53, -36], + [-60, -11], + [-60, -47], + [-68, -94], + [-61, -18], + [-44, 30], + [-53, 53], + [-45, 23], + [-23, 24], + [0, 29], + [30, 35], + [38, 0], + [60, 18], + [30, 35], + [-15, 47], + [8, 42], + [60, 17], + [53, -29], + [90, 0], + [166, 82], + [0, 65], + [-60, 112], + [-60, 64], + [-45, 36], + [-60, 23], + [-76, 6], + [-45, -6], + [-68, -111], + [-106, -35], + [-233, 11], + [-128, 42], + [-195, 164], + [-60, 65], + [-23, 71], + [-113, 171], + [-75, 58], + [-166, 95], + [-82, 59], + [-8, 52], + [181, 136], + [38, 147], + [0, 35], + [-82, 136], + [-15, 46], + [-76, 77], + [-75, 53], + [-98, 47], + [0, 47], + [46, 24], + [128, 59], + [128, 35], + [68, 35], + [68, 47], + [68, 23], + [127, 6], + [46, 35], + [-8, 130], + [-45, 47], + [-158, 77], + [-128, 23], + [-30, 30], + [-15, 52], + [0, 60], + [23, 52], + [105, 48], + [98, 23], + [91, 6], + [196, 100], + [37, 52], + [8, 48], + [-30, 23], + [-121, 12], + [-97, -6], + [-91, -29], + [-83, 12], + [-60, 70], + [2, 28], + [-77, 37], + [-151, 35], + [-226, 66], + [-256, 35], + [-90, 41], + [-75, 71], + [23, 59], + [90, 94], + [8, 65], + [60, 58], + [30, 71], + [-112, 118], + [-174, 76], + [-38, 41], + [1, 41], + [-113, 142], + [0, 29], + [75, 53], + [53, -6], + [23, 6], + [52, 42], + [31, 52], + [0, 71], + [15, 47], + [31, 40], + [-69, 172], + [-52, 58], + [-68, 42], + [-83, 6], + [-105, -6], + [-129, -70], + [-60, -77], + [-38, -24], + [-90, 1], + [-90, -36], + [-121, -129], + [0, -65], + [-15, -52], + [-46, -71], + [-75, -71], + [-75, -17], + [-128, 6], + [-128, 47], + [-83, 41], + [-83, 94], + [-44, 100], + [-83, 95], + [-31, 17], + [-37, 89], + [-45, 164], + [0, 35], + [-38, 71], + [-60, 30], + [-60, 59], + [-83, 58], + [-82, 106], + [-46, 36], + [-37, 53], + [-53, 135], + [0, 147], + [38, 65], + [143, 59], + [114, 5], + [44, -23], + [83, -24], + [144, -29], + [185, 5], + [42, 21], + [68, 52], + [45, 65], + [-7, 330], + [7, 94], + [31, 59], + [30, 144], + [-30, 94], + [-106, 53], + [-30, 82], + [46, 30], + [60, 59], + [15, 70], + [-7, 65], + [-98, 118], + [-37, 70], + [10, 49], + [-72, 10], + [-68, 30], + [-128, 29], + [-60, 59], + [-22, 59], + [0, 112], + [120, 106], + [16, 59], + [0, 47], + [-31, 46], + [-75, 24], + [-22, 59], + [-23, 183], + [-14, 47], + [-76, 65], + [-60, 29], + [-83, 29], + [-90, 6], + [-83, -35], + [-234, -123], + [-136, -88], + [-113, -36], + [-90, 30], + [-22, 47], + [0, 306], + [-22, 82], + [-38, 24], + [-98, -12], + [-45, 53], + [-60, 42], + [-53, 58], + [-23, 41], + [-15, 65], + [-7, 118], + [15, 53], + [53, 59], + [30, 117], + [53, 83], + [0, 170], + [-37, 83], + [-106, 135], + [-308, 330], + [-211, 188], + [-180, 135], + [-482, 183], + [-128, 6], + [-204, -5], + [-128, -18], + [-97, -29], + [-98, -59], + [-189, -88], + [-136, -12], + [-98, 6], + [-158, 65], + [-52, 47], + [-75, 100], + [0, 47], + [45, 77], + [60, 46], + [18, 1], + [21, 26], + [137, 63], + [5, 205], + [-15, 71], + [-45, 46], + [-105, 153], + [-60, 154], + [-83, 129], + [-165, 159], + [-121, 83], + [-143, 82], + [-241, 112], + [-467, 183], + [-278, 41], + [-347, 29], + [-166, -11], + [-234, -70], + [-127, -65], + [-53, -76], + [-1, -165], + [-52, -71], + [-159, -282], + [0, -89], + [-23, -147], + [-60, -52], + [-158, -36], + [-272, 0], + [-248, 30], + [-75, 18], + [-188, 124], + [-15, 82], + [0, 76], + [75, 124], + [98, 65], + [106, 35], + [55, 0], + [232, 53], + [99, 61], + [-17, 298], + [-30, 176], + [38, 59], + [61, 47], + [150, 47], + [68, 5], + [22, 24], + [23, 53], + [0, 47], + [-15, 65], + [-22, 47], + [-76, 41], + [-150, 59], + [-45, 29], + [-98, 83], + [-38, 59], + [1, 70], + [75, 106], + [75, 35], + [68, 18], + [102, 92], + [18, 61], + [1, 76], + [-23, 130], + [-75, 41], + [-30, 41], + [-136, 89], + [-52, 23], + [-324, 95], + [-83, 47], + [-30, 76], + [0, 47], + [23, 88], + [0, 83], + [-15, 118], + [15, 58], + [45, 94], + [114, 153], + [45, 94], + [60, 95], + [8, 76], + [-8, 224], + [8, 64], + [46, 71], + [0, 70], + [-15, 71], + [37, 112], + [-7, 100], + [-38, 41], + [-98, 41], + [-331, 0], + [-64, 6], + [-19, 59], + [0, 147], + [15, 60], + [76, 146], + [38, 53], + [195, 189], + [61, 40], + [61, 54], + [135, 70], + [68, 47], + [30, 82], + [-7, 83], + [-30, 141], + [-18, 25], + [-200, 140], + [-94, 7], + [-125, -37], + [-121, -46], + [-165, -12], + [-121, 53], + [-15, 36], + [0, 46], + [38, 77], + [8, 64], + [-23, 83], + [-38, 47], + [-143, 94], + [-45, 59], + [-15, 65], + [8, 341], + [46, 141], + [69, 82], + [-19, 40], + [68, 83], + [38, 23], + [113, 47], + [128, 0], + [249, -35], + [15, -47], + [45, -24], + [15, 12], + [21, 67], + [124, 87], + [68, 112], + [106, 47], + [188, 64], + [144, 77], + [90, 82], + [15, 182], + [-143, 71], + [-4, 25], + [-28, -2], + [-83, 47], + [-45, 35], + [-68, 17], + [-150, 0], + [-76, 54], + [-52, 6], + [-46, -6], + [-30, -53], + [0, -65], + [-15, -29], + [-45, -30], + [-136, -17], + [-30, -65], + [-8, -41], + [-67, -65], + [-76, -17], + [-83, -6], + [-173, 53], + [-68, 0], + [-105, 77], + [-83, 106], + [-37, 147], + [-23, 629], + [8, 53], + [38, 30], + [98, 111], + [53, 35], + [128, 24], + [369, -1], + [32, 25], + [15, 36], + [38, 23], + [159, 147], + [45, 59], + [0, 265], + [23, 88], + [15, 23], + [75, 53], + [83, 0], + [241, -135], + [90, -15], + [106, 28], + [30, 28], + [91, 53], + [90, 111], + [99, 165], + [22, 100], + [91, 270], + [0, 471], + [-22, 88], + [-60, 101], + [-91, 29], + [-90, 77], + [-37, 76], + [-31, 94], + [-7, 94], + [7, 71], + [24, 88], + [22, 194], + [30, 59], + [15, 94], + [-9, 64], + [0, 123], + [-15, 41], + [-165, 148], + [7, 24], + [31, 23], + [75, 53], + [75, 35], + [114, 76], + [30, 35], + [188, 94], + [181, 136], + [159, 64], + [52, 36], + [8, 23], + [0, 100], + [45, 88], + [53, 77], + [98, 106], + [211, 82], + [219, 17], + [30, 24], + [15, 35], + [30, 24], + [61, 5], + [37, -35], + [53, -88], + [70, -32], + [67, 15], + [68, 0], + [121, -41], + [67, -35], + [390, -45], + [130, 148], + [255, 83], + [76, 4], + [30, -14], + [341, -1], + [128, 24], + [98, 0], + [128, -30], + [52, -35], + [0, -41], + [31, -89], + [67, -59], + [196, -112], + [219, -71], + [75, -41], + [226, -59], + [324, 18], + [15, 41], + [-7, 53], + [18, 47], + [111, -3], + [136, 17], + [98, 0], + [219, 77], + [120, 105], + [83, 59], + [83, 41], + [121, 147], + [15, 76], + [113, 35], + [60, 83], + [227, 206], + [75, 129], + [68, 29], + [144, 18], + [226, 88], + [75, 77], + [105, -42], + [46, -29], + [30, -59], + [-23, -47], + [-105, 23], + [-121, -5], + [-83, -53], + [-45, -47], + [-98, -47], + [7, -112], + [136, -12], + [38, 59], + [30, 70], + [83, 24], + [136, -18], + [97, -41], + [38, -77], + [45, -23], + [136, 100], + [38, 94], + [-75, 124], + [0, 52], + [15, 48], + [-53, 41], + [-30, 52], + [60, 60], + [-52, 52], + [-76, -35], + [-90, 6], + [-23, 53], + [-98, 12], + [-30, 29], + [45, 65], + [106, 47], + [83, 59], + [91, 153], + [158, 12], + [83, 46], + [30, 54], + [28, 1], + [54, 43], + [75, 41], + [38, 5], + [83, 0], + [136, -47], + [68, -6], + [142, 6], + [68, 18], + [76, 0], + [37, -30], + [0, -29], + [-68, -47], + [-98, -18], + [-75, -47], + [-23, -53], + [15, -76], + [46, -71], + [131, -48], + [396, -93], + [264, 23], + [233, 70], + [76, 41], + [30, 76], + [0, 54], + [-30, 23], + [-15, 65], + [98, 47], + [158, 0], + [83, 23], + [-7, 59], + [60, 47], + [181, 47], + [75, 35], + [113, 12], + [106, -24], + [30, -29], + [0, -130], + [-23, -70], + [23, -94], + [90, -24], + [76, 6], + [75, 17], + [60, 30], + [121, 117], + [60, 36], + [76, -6], + [75, -30], + [45, -41], + [68, -88], + [128, -59], + [52, -53], + [-15, -106], + [53, -77], + [91, -53], + [67, -64], + [90, -12], + [23, 41], + [0, 29], + [38, 47], + [68, -18], + [15, -29], + [0, -64], + [-30, -48], + [0, -76], + [74, -36], + [53, 18], + [23, 41], + [23, 18], + [98, -47], + [22, 12], + [-7, 64], + [15, 259], + [-30, 53], + [-75, 41], + [-68, 71], + [23, 88], + [38, 41], + [141, 6], + [3, -21], + [75, -76], + [68, -47], + [68, -30], + [113, 5], + [0, 71], + [-53, 77], + [0, 47], + [76, 0], + [68, -35], + [45, 76], + [83, 0], + [90, -30], + [45, -88], + [45, 35], + [8, 101], + [-67, 70], + [-91, 59], + [-45, 18], + [-166, 47], + [-52, -24], + [-68, -17], + [-68, 71], + [-38, 52], + [16, 65], + [-30, 53], + [0, 41], + [37, 36], + [46, -42], + [112, -64], + [98, 58], + [30, 47], + [106, -5], + [60, 29], + [-22, 58], + [-203, 60], + [-16, 88], + [-7, 217], + [16, 65], + [22, 22], + [7, 22], + [-8, 60], + [-113, 35], + [-106, 0], + [-60, -35], + [-23, -83], + [-60, -29], + [-15, 35], + [16, 141], + [0, 71], + [-15, 29], + [0, 54], + [37, 46], + [53, 18], + [113, 0], + [106, -12], + [68, -41], + [83, -24], + [97, -6], + [113, 24], + [136, 58], + [310, 153], + [52, 35], + [38, 47], + [189, 94], + [301, 0], + [106, 23], + [82, 35], + [91, 12], + [75, -6], + [8, -88], + [23, -24], + [90, 24], + [45, 35], + [120, 24], + [265, 82], + [82, 11], + [204, 6], + [0, 18], + [-97, 106], + [15, 65], + [90, 35], + [241, -6], + [106, -54], + [60, -47], + [75, -29], + [106, -12], + [90, 18], + [91, 111], + [0, 53], + [22, 65], + [23, 35], + [76, 29], + [82, -6], + [68, -35], + [0, -94], + [-76, -129], + [0, -41] + ], + [ + [106269, 88804], + [99, -15], + [83, 0], + [68, -18], + [15, -41], + [189, -24], + [166, -29], + [128, -65], + [181, -118], + [23, -41], + [60, -58], + [38, -54], + [0, -41], + [249, -88], + [264, -112], + [114, -153], + [37, -94], + [-7, -35], + [-129, -6], + [-90, -47], + [-83, -76], + [-38, -65], + [-45, -41], + [-23, -100], + [-98, -159], + [0, -83], + [-15, -88], + [-38, -147], + [-23, -53], + [38, -88], + [22, -148], + [0, -82], + [30, -141], + [46, -88], + [15, -128], + [25, -14], + [0, -59], + [-3, -44], + [-32, -69], + [-60, -41], + [-46, -20], + [-40, -61], + [-24, -57], + [0, -108], + [31, -141], + [-14, -34], + [-39, -30], + [-57, -11], + [-280, -2], + [-102, -20], + [-25, -22], + [-57, -124], + [-4, -91], + [18, -70], + [50, -55], + [63, -58], + [295, -111], + [152, -11], + [103, -16], + [216, -72], + [68, 3], + [110, 41], + [64, -3], + [46, -41], + [14, -61], + [25, -50], + [49, -39], + [62, -32], + [80, -23], + [85, -36], + [71, -52], + [159, -94], + [61, -17], + [134, -8], + [185, 11], + [195, 44], + [92, 36], + [152, 92], + [51, 107], + [38, 33], + [61, 28], + [89, 80], + [95, 55], + [68, 0], + [202, 36], + [81, -3], + [72, -31], + [6, -60], + [128, -224], + [24, -78], + [12, -105], + [17, -49], + [102, -155], + [224, -103], + [33, -2], + [135, -47], + [20, -19], + [43, -3], + [223, -103], + [106, -66], + [46, -36], + [96, -105], + [106, -152], + [146, -125], + [39, -22], + [72, -90], + [268, -103], + [89, -47], + [85, -33], + [88, -70], + [83, -39], + [233, -140], + [177, -139], + [96, -99], + [21, -76], + [32, -29], + [60, -86], + [145, -271], + [36, -160], + [24, -69], + [11, -240], + [-29, -150], + [-14, -160], + [4, -146], + [159, -227], + [156, -147], + [46, -96], + [-14, -89], + [28, -22], + [21, -47], + [7, -55], + [36, -69], + [21, -91], + [-4, -48], + [22, -44], + [78, -86], + [109, -179], + [11, -78], + [35, -105], + [22, -27], + [13, -1], + [47, -63], + [0, -41], + [-11, -42], + [-106, -63], + [-29, -28], + [-67, -99], + [-50, -31], + [-21, -46], + [-36, -188], + [-35, -34], + [10, -96], + [-14, -53], + [-32, -28], + [-49, -16], + [-61, -63], + [-28, -50], + [-92, -92], + [-75, -30], + [-53, -36], + [-39, -47], + [-14, -63], + [-50, -45], + [-64, -30], + [-89, -63], + [-35, -37], + [-25, -41], + [-53, -33], + [-28, -36], + [-54, -22], + [-70, 0], + [-40, 17], + [-56, 41], + [-238, 14], + [-64, 19], + [-45, 31], + [-47, 5], + [-92, -22], + [-92, 72], + [-42, 44], + [-33, 103], + [22, 99], + [-7, 36], + [-107, 160], + [1, 59], + [10, 41], + [50, 33], + [11, 39], + [-4, 33], + [-21, 22], + [-50, 20], + [-205, 212], + [-75, 102], + [-142, 274], + [-52, 31], + [-40, 38], + [-131, 172], + [-50, 47], + [-116, 83], + [-298, 141], + [-298, 100], + [-315, 124], + [-330, 116], + [-89, 44], + [-141, 39], + [-110, 20], + [-149, 16], + [-614, 0], + [-92, -5], + [-195, -34], + [-163, -79], + [-124, -103], + [-32, -52], + [-50, -31], + [-78, -22], + [-212, 39], + [-192, 3], + [-213, -11], + [-241, -30], + [-117, -39], + [-120, -69], + [-96, -141], + [-25, -64], + [-60, -58], + [-107, -284], + [-32, -36], + [-252, -163], + [-163, -172], + [-112, -71], + [-203, -52], + [-104, -18], + [-104, -33], + [-85, -48], + [-81, -92], + [-80, -26], + [-85, 4], + [-109, 44], + [-113, 7], + [-109, 19], + [-71, 22], + [-57, 37], + [-47, 74], + [-66, 33], + [-156, 11], + [-161, -4], + [-160, 23], + [-175, 3], + [-327, 81], + [-99, 15], + [-189, 52], + [-194, 70], + [-349, 151], + [-53, 48], + [-85, 140], + [-56, 173], + [0, 44], + [14, 34], + [0, 58], + [-47, 52], + [-185, 59], + [-85, 11], + [-76, 77], + [-42, 67], + [-28, 125], + [-29, 48], + [-14, 55], + [81, 15], + [56, -21], + [85, 29], + [15, 47], + [-10, 218], + [-89, 261], + [-67, 107], + [-2, 18], + [-40, 19], + [-38, 44], + [-104, 59], + [-5, 62], + [71, 82], + [5, 40], + [28, 63], + [43, 44], + [128, 107], + [99, 99], + [62, 33], + [42, 34], + [33, 81], + [29, 33], + [75, 37], + [71, 73], + [97, 72], + [17, 39], + [0, 118], + [-26, 6], + [-58, -32], + [-51, -72], + [-101, -66], + [-134, -131], + [-93, -72], + [-134, -6], + [-34, 39], + [-8, 144], + [25, 86], + [76, 78], + [58, 46], + [287, 91], + [92, 40], + [202, 157], + [92, 52], + [68, 79], + [134, 118], + [92, 59], + [17, 39], + [-109, -13], + [-76, -33], + [-84, -26], + [-210, -105], + [-134, 0], + [-59, 14], + [-59, 32], + [-101, -19], + [0, -145], + [-17, -131], + [-140, -83], + [-124, -31], + [-50, -30], + [-7, -44], + [-42, -80], + [-50, -19], + [-39, 8], + [-53, 49], + [-60, 86], + [-43, 39], + [-57, 17], + [-71, 5], + [-124, 105], + [-53, 17], + [-74, 5], + [-167, -2], + [-78, -11], + [-60, -26], + [-61, -41], + [-24, -47], + [0, -119], + [-22, -52], + [-60, -47], + [-29, -36], + [-35, -83], + [-46, -53], + [0, -35], + [18, -31], + [117, -91], + [35, -50], + [0, -66], + [-53, -39], + [-43, -11], + [-114, 5], + [-80, 46], + [-93, 37], + [-163, 40], + [-26, 18], + [-69, 19], + [-75, 51], + [-18, 0], + [-78, 33], + [-209, 199], + [-78, 44], + [-50, 61], + [4, 216], + [28, 212], + [-24, 158], + [-103, 202], + [-121, 83], + [-85, 44], + [-53, 86], + [-82, 99], + [-46, 36], + [-42, 50], + [-36, 22], + [-35, 39], + [-8, 20], + [-28, 18], + [-25, 36], + [-7, 36], + [4, 163], + [-25, 100], + [-3, 154], + [-25, 119], + [-43, 100], + [-10, 96], + [64, 64], + [3, 12], + [56, 10], + [4, 19], + [93, 92], + [60, 16], + [46, 28], + [46, 47], + [96, 155], + [-7, 139], + [64, 36], + [379, 94], + [151, 63], + [82, 64], + [63, 99], + [7, 53], + [25, 69], + [6, 275], + [-44, 187], + [-7, 64], + [13, 69], + [-56, 59], + [-45, 132], + [-12, 69], + [6, 118], + [57, 74], + [25, 59], + [88, 132], + [0, 64], + [19, 64], + [89, 216], + [44, 74], + [113, 123], + [25, 54], + [89, 108], + [94, 98], + [82, 30], + [57, 44], + [133, 138], + [69, 9], + [195, 157], + [64, 0], + [50, -23], + [188, -33], + [113, -42], + [113, 18], + [61, 53], + [83, 17], + [68, 100], + [22, 53], + [99, 48], + [68, 123], + [75, 24], + [151, -136], + [75, -41], + [0, -94], + [-30, -71], + [8, -106], + [90, -70], + [38, -42], + [98, -23], + [166, -6], + [220, 53], + [143, 0], + [219, 76], + [60, 30], + [91, 82], + [68, 23], + [144, 95], + [158, 129], + [204, 177], + [68, 117], + [90, 59], + [38, 153], + [250, 35], + [234, 0], + [286, 153], + [99, -23], + [98, -65], + [91, -47], + [181, -54], + [166, -70], + [121, -17], + [98, -42], + [97, -26] + ], + [ + [135294, 48288], + [0, -41], + [38, -49], + [-10, -106], + [20, -49], + [82, -87], + [24, -41], + [0, -45], + [34, -46], + [72, -60], + [5, -113], + [24, -34], + [183, -23], + [49, -38], + [48, -71], + [72, -76], + [29, -68], + [0, -60], + [24, -181], + [-5, -185], + [62, -94], + [59, -64], + [-5, -98], + [-34, -35], + [-15, -67], + [0, -57], + [24, -83], + [5, -102], + [-25, -418], + [-1, -268], + [34, -91], + [29, -116], + [87, -181], + [77, -68], + [19, -34], + [63, -65], + [53, -11], + [141, 4], + [91, -8], + [39, -22], + [48, -34], + [97, -159], + [125, -105], + [53, -61], + [73, -56], + [164, -102], + [236, -65], + [54, -34], + [86, -75], + [126, -72], + [39, -30], + [116, -64], + [115, -34], + [121, -83], + [111, -27], + [160, 8], + [5, -10], + [10, 2], + [81, -38], + [68, -53], + [15, -45], + [62, -49], + [382, -227], + [178, -166], + [29, -90], + [-10, -185], + [29, -75], + [33, -46], + [0, -98], + [-38, -79], + [-39, -41], + [-97, -163], + [-5, -98], + [24, -22], + [68, 3], + [67, -52], + [20, -34], + [-10, -121], + [-20, -64], + [-92, -94], + [-96, -71], + [-121, -50], + [-49, -45], + [-38, -60], + [-117, -106], + [-246, -131], + [-48, -4], + [-73, -30], + [-73, -49], + [-77, -79], + [-68, -136], + [-39, -109], + [-53, -30], + [-58, -15], + [-140, 0], + [-48, -8], + [-106, -41], + [-59, -38], + [-125, -286], + [-29, -155], + [-1, -76], + [-29, -97], + [-5, -68], + [-87, -121], + [4, -252], + [-29, -45], + [-183, -133], + [-131, -210], + [-87, -102], + [-68, -49], + [-131, -75], + [-82, -106], + [-111, -83], + [-43, -68], + [-78, -241], + [-136, -230], + [-415, -143], + [-131, -11], + [-111, 72], + [-58, 15], + [-82, -8], + [-82, -48], + [-107, -42], + [-251, -75], + [-193, -7], + [-92, -12], + [-155, -56], + [-198, 22], + [-67, 0], + [-107, -22], + [-151, -64], + [-13, -30], + [0, -110], + [-33, -126], + [-18, -5], + [-3, -16], + [-140, -56], + [-72, -72], + [-92, -68], + [-179, -93], + [-73, -50], + [-111, -173], + [-150, -101], + [-125, -102], + [-204, -34], + [-140, -72], + [-39, -60], + [-57, -56], + [-199, -106], + [-174, -105], + [-72, -57], + [-24, -60], + [0, -79], + [57, -117], + [63, -64], + [5, -129], + [-49, -60], + [-140, -60], + [-150, -83], + [-217, -101], + [-24, -31], + [-92, -71], + [-54, -57], + [-43, -98], + [-20, -86], + [-33, -65], + [-15, -56], + [-39, -287], + [-78, -86], + [-33, -53], + [-54, -42], + [-72, -41], + [-208, -109], + [-271, -125], + [-120, -71], + [-83, -94], + [-164, -155], + [-150, -101], + [-96, -98], + [-102, -68], + [-121, -30], + [-58, 0], + [-97, -19], + [-48, -19], + [-63, -45], + [-164, 0], + [-73, 12], + [-43, 22], + [-58, 53], + [-24, 49], + [-43, 41], + [-107, 23], + [-33, 46], + [-29, 101], + [-49, 23], + [-57, 11], + [-266, 231], + [-34, 56], + [-5, 60], + [10, 46], + [25, 45], + [0, 128], + [-131, 155], + [-139, 139], + [-49, 30], + [-18, 18], + [-1, 13], + [-92, 83], + [-63, 38], + [-72, 19], + [-179, -4], + [-58, -14], + [-53, 74], + [-19, 46], + [-10, 56], + [5, 169], + [63, 68], + [72, 61], + [78, 124], + [49, 57], + [96, 45], + [24, 19], + [39, 41], + [19, 45], + [-24, 125], + [-48, 49], + [-63, 23], + [-130, 30], + [-19, 30], + [14, 64], + [63, 56], + [63, 27], + [72, 45], + [73, 72], + [58, 158], + [-5, 72], + [-43, 136], + [-39, 71], + [-48, 132], + [-121, 242], + [-23, 124], + [-121, 222], + [-19, 117], + [-39, 102], + [-178, 193], + [-58, 30], + [-58, 19], + [-73, 11], + [-280, 31], + [-48, 19], + [-43, 41], + [-34, 76], + [-10, 60], + [0, 49], + [44, 60], + [53, 34], + [150, 19], + [126, 0], + [48, 30], + [34, 34], + [72, 38], + [73, 26], + [159, 37], + [222, 230], + [73, 41], + [106, 35], + [189, 147], + [29, 52], + [-4, 178], + [67, 128], + [-19, 445], + [-12, 36], + [-123, 141], + [-58, 26], + [-92, 61], + [-47, 94], + [-5, 60], + [9, 57], + [-24, 271], + [0, 219], + [73, 102], + [-5, 53], + [-14, 37], + [-68, 95], + [-43, 79], + [-24, 68], + [1, 203], + [-54, 302], + [1, 181], + [48, 76], + [10, 56], + [-15, 113], + [58, 132], + [1, 241], + [9, 53], + [88, 95], + [126, 71], + [91, 19], + [68, 3], + [295, 4], + [92, -8], + [57, -26], + [97, -79], + [67, -34], + [112, -19], + [96, -45], + [82, -53], + [97, -80], + [43, -22], + [44, -12], + [58, -3], + [77, 26], + [150, 90], + [92, 34], + [193, 136], + [112, 64], + [53, 41], + [67, 109], + [54, 69], + [145, 124], + [43, 45], + [20, 42], + [106, 78], + [73, 42], + [58, 15], + [125, 0], + [63, -11], + [92, -38], + [63, -94], + [14, -68], + [43, -53], + [213, -159], + [116, -102], + [68, -37], + [101, -19], + [73, 7], + [304, 147], + [92, 27], + [82, 33], + [58, 45], + [111, 113], + [25, 129], + [0, 60], + [24, 60], + [10, 147], + [24, 57], + [58, 41], + [20, 38], + [48, 57], + [48, 37], + [256, 49], + [223, 98], + [76, 16], + [124, -2], + [22, -10], + [53, 0], + [48, 26], + [54, 7], + [48, 19], + [39, 34], + [14, 45], + [5, 87], + [44, 42], + [130, -8], + [111, 60], + [150, -8], + [29, 19], + [78, 8], + [62, -4], + [54, -27], + [48, -7], + [58, 7], + [48, 27], + [44, 38], + [101, 3], + [73, -30], + [154, -4], + [44, 15], + [-14, 42], + [-73, 109], + [0, 53], + [39, 53], + [63, 41], + [33, 49], + [-14, 57], + [-43, 18], + [-126, 19], + [-33, 16], + [-15, -9], + [-49, 16], + [-82, 8], + [-72, 26], + [-68, 15], + [0, 49], + [49, 57], + [183, 135], + [49, 102], + [15, 162], + [-10, 283], + [73, 79], + [34, 106], + [68, 102], + [24, 52], + [-5, 310], + [73, 98], + [-9, 75], + [-34, 23], + [-44, 15], + [-43, 30], + [-68, 56], + [-24, 38], + [-14, 57], + [0, 120], + [53, 163], + [0, 45], + [-28, 68], + [-34, 166], + [29, 132], + [-4, 41], + [-97, 140], + [-44, 26], + [-33, 38], + [-34, 53], + [0, 45], + [44, 56], + [92, 71], + [110, -55], + [160, -1], + [58, 30], + [9, 27], + [39, 37], + [150, -4], + [39, -37], + [0, -72] + ], + [ + [118404, 103709], + [90, -24], + [76, 0], + [128, 18], + [146, -1], + [68, -35], + [85, -22], + [62, -26], + [109, -66], + [265, -37], + [21, 6], + [98, -2], + [136, -59], + [302, -200], + [75, -65], + [53, -77], + [83, -247], + [15, -118], + [7, -317], + [45, -94], + [23, -518], + [-69, -323], + [-119, -341], + [-138, -96], + [-33, -77], + [-48, -30], + [-137, -11], + [-197, -133], + [-23, -53], + [-35, -172], + [56, -47], + [5, -99], + [-161, -174], + [-19, -66], + [-86, -106], + [-42, -33], + [-350, -225], + [-176, -136], + [-298, -188], + [-80, 25], + [-14, 19], + [-14, 77], + [52, 56], + [61, 26], + [43, 29], + [47, 51], + [67, 45], + [61, 11], + [198, 14], + [34, 22], + [9, 30], + [33, 33], + [34, 7], + [99, 52], + [42, 33], + [67, 140], + [118, 122], + [0, 22], + [-23, 11], + [-95, 3], + [-57, -29], + [-104, -74], + [-203, -81], + [-78, 3], + [-61, -71], + [-106, -77], + [-60, -65], + [11, -3], + [-29, -18], + [-14, -32], + [-33, -6], + [0, -32], + [-76, -89], + [-47, -37], + [-75, -85], + [-44, -25], + [-20, -24], + [-3, -20], + [-43, -26], + [-61, 0], + [-86, 34], + [-193, -41], + [-33, -26], + [-52, -63], + [-76, -62], + [-71, -11], + [-85, 0], + [-133, -15], + [-104, -44], + [-104, -74], + [-109, -217], + [5, -70], + [52, -74], + [47, -33], + [137, 0], + [33, -30], + [5, -84], + [-62, -137], + [-10, -77], + [-32, -63], + [-67, -47], + [-175, -4], + [-52, -29], + [-19, -96], + [0, -59], + [-75, -308], + [-39, -39], + [-66, -14], + [-189, -4], + [-33, -7], + [-29, -59], + [76, -48], + [14, -59], + [0, -70], + [38, -48], + [61, -41], + [29, -33], + [56, -96], + [62, -77], + [66, -11], + [61, 4], + [64, 22], + [169, -60], + [75, -44], + [71, -70], + [85, -166], + [127, -143], + [81, -78], + [56, -81], + [19, -155], + [34, -22], + [35, -57], + [111, -39], + [57, -11], + [66, -29], + [28, -52], + [10, -107], + [137, -92], + [38, -48], + [14, -48], + [42, -59], + [52, -51], + [57, -85], + [66, -155], + [245, -324], + [24, -100], + [33, -66], + [-8, -40], + [60, -30], + [71, -52], + [19, -59], + [52, -51], + [90, -140], + [23, -89], + [0, -272], + [38, -67], + [38, -37], + [94, -128], + [90, -82], + [104, -18], + [94, -41], + [53, -41], + [80, -95], + [54, -29], + [17, -27], + [160, -92], + [81, -11], + [40, 6], + [139, -28], + [152, -11], + [137, -45], + [33, -40], + [42, -29], + [34, -85], + [14, -140], + [47, -52], + [71, -103], + [94, -188], + [19, -59], + [-47, -66], + [-34, -32], + [15, -33], + [15, -82], + [23, -59], + [60, -24], + [4, -35], + [49, -34], + [19, -44], + [9, -85], + [-4, -81], + [-39, -81], + [-42, -59], + [0, -81], + [14, -52], + [28, -51], + [14, -63], + [57, -106], + [-14, -60], + [-67, -58], + [-75, -49], + [-81, -29], + [-38, -66], + [15, -63], + [0, -63], + [-22, -13], + [-17, -62], + [-45, -47], + [-45, -94], + [-8, -100], + [5, -86], + [22, -17], + [38, -100], + [-14, -59], + [-67, -55], + [-179, -4], + [-80, -25], + [-20, -56], + [67, -40], + [94, -44], + [66, -56], + [58, -158], + [100, -65], + [45, -64], + [-15, -233], + [22, -65], + [15, -182], + [-7, -30], + [-76, 42], + [-121, 0], + [-113, 58], + [-30, 6], + [-98, 0], + [-45, 36], + [-76, 41], + [-37, -17], + [-129, 23], + [-30, 29], + [-113, 54], + [-16, 47], + [38, 59], + [8, 41], + [-106, 100], + [-68, 47], + [0, 41], + [-30, 35], + [-117, 1], + [-28, 29], + [4, 44], + [81, 63], + [-33, 33], + [-156, 15], + [-52, 15], + [-52, 26], + [-48, 7], + [-80, 33], + [-75, 44], + [-43, 11], + [-85, 0], + [-81, -62], + [-85, -118], + [-24, -88], + [-4, -155], + [-15, -63], + [-38, -63], + [18, -24], + [-31, -118], + [-15, -129], + [-68, -159], + [-22, -122], + [-33, -37], + [-81, -40], + [-57, -8], + [-127, 49], + [-59, 85], + [-29, -3], + [-53, 64], + [6, 53], + [-26, 14], + [-19, 81], + [-38, 8], + [-51, 0], + [-19, -19], + [-10, -44], + [-38, -52], + [-33, -25], + [-62, -22], + [-100, -1], + [-108, -33], + [-175, -6], + [-128, -38], + [-151, 4], + [-71, 23], + [-103, 0], + [-67, -23], + [-28, -51], + [-5, -55], + [-19, -59], + [0, -74], + [-24, -41], + [-62, -62], + [-23, -44], + [-5, -192], + [-19, -52], + [14, -132], + [38, -40], + [52, -19], + [62, -8], + [65, -18], + [90, -48], + [53, -123], + [52, -60], + [15, -53], + [45, -83], + [-30, -58], + [-129, -65], + [-68, 36], + [-23, 70], + [-165, 71], + [-91, 6], + [-60, -42], + [-16, -99], + [31, -54], + [75, -23], + [-7, -129], + [14, -18], + [23, -65], + [46, 0], + [90, -23], + [53, -65], + [7, -36], + [-37, -29], + [-69, -12], + [-83, -35], + [38, -124], + [23, -29], + [-23, -76], + [-7, -83], + [-31, -76], + [-38, -30], + [0, -29], + [23, -50], + [-30, -41], + [-38, -12], + [-23, -47], + [-7, -53], + [-53, -12], + [-98, 65], + [-45, 12], + [-76, 53], + [-53, 6], + [-38, -41], + [30, -59], + [0, -47], + [-30, -89], + [-203, 65], + [-137, 88], + [-83, 36], + [-98, 12], + [-113, -12], + [-83, -24], + [-83, 30], + [-53, 65], + [0, 65], + [-38, 70], + [8, 53], + [-45, 65], + [-15, 59], + [-68, 141], + [-151, 206], + [0, 70], + [-98, 159], + [-22, 65], + [-53, 41], + [0, 65], + [-23, 53], + [38, 118], + [0, 70], + [-8, 88], + [-30, 77], + [-22, 141], + [-7, 141], + [15, 77], + [0, 88], + [-10, 13], + [-4, 60], + [-54, 62], + [53, 59], + [22, 83], + [0, 93], + [-37, 142], + [53, 18], + [30, 111], + [83, 12], + [-8, 64], + [-75, 30], + [-68, 53], + [15, 77], + [45, 61], + [-37, 77], + [-38, 0], + [-8, 82], + [107, 136], + [75, 0], + [106, -12], + [98, 6], + [30, -83], + [46, -6], + [67, 18], + [61, -41], + [-15, -94], + [60, -24], + [226, -36], + [6, -13], + [84, 2], + [48, -22], + [13, -43], + [76, 0], + [83, -36], + [-14, -23], + [35, -49], + [33, -22], + [48, -15], + [80, 59], + [66, 33], + [20, 0], + [34, 35], + [5, 28], + [-16, 40], + [9, 121], + [24, 60], + [10, 1], + [61, 65], + [-6, 40], + [12, 28], + [-8, 41], + [8, 41], + [37, 12], + [53, 0], + [36, -21], + [39, -5], + [-1, -37], + [-80, -55], + [-19, -44], + [0, -52], + [85, -118], + [0, -55], + [33, -52], + [9, -40], + [95, -85], + [80, -92], + [76, -71], + [52, -14], + [0, 30], + [-19, 44], + [-95, 85], + [-23, 40], + [-43, 44], + [-19, 45], + [0, 132], + [-14, 74], + [33, 29], + [95, 30], + [22, 57], + [-9, 7], + [-8, 53], + [30, 35], + [15, 88], + [-12, 77], + [19, 22], + [95, 33], + [19, 50], + [-113, 83], + [-30, 36], + [-15, 41], + [0, 52], + [-53, 36], + [-278, 7], + [-5, 13], + [-45, -5], + [-43, 15], + [24, 33], + [28, 18], + [10, 45], + [75, 4], + [113, -30], + [15, 41], + [31, 35], + [-8, 41], + [53, -6], + [67, -48], + [79, 10], + [34, 19], + [46, 88], + [-52, 131], + [14, 40], + [30, 21], + [23, 40], + [-4, 30], + [-23, 40], + [5, 24], + [-30, 35], + [0, 59], + [91, 41], + [0, 47], + [30, 129], + [76, 12], + [60, 0], + [38, -41], + [15, -47], + [45, -65], + [17, -49], + [16, -8], + [33, -85], + [10, -52], + [0, -184], + [9, -29], + [132, -96], + [14, -41], + [5, -81], + [-71, -140], + [-10, -63], + [-33, -69], + [-23, -129], + [-48, -104], + [0, -33], + [20, -33], + [179, -26], + [118, -103], + [33, -15], + [71, 18], + [62, 37], + [23, 26], + [10, 37], + [42, 62], + [52, 30], + [19, 41], + [34, 36], + [61, 41], + [66, 26], + [118, 3], + [62, 19], + [104, 47], + [34, 37], + [9, 181], + [-38, 44], + [-80, 59], + [-19, 26], + [6, 19], + [-18, 10], + [0, 107], + [-21, 19], + [38, 73], + [-28, 67], + [0, 47], + [-24, 34], + [14, 33], + [38, 0], + [99, -22], + [62, -23], + [42, -3], + [43, 19], + [34, 5], + [5, 43], + [29, 10], + [-2, 7], + [147, 33], + [52, 38], + [-23, 80], + [9, 45], + [47, 73], + [29, 19], + [28, 4], + [28, 25], + [-137, 11], + [-71, 19], + [-85, 0], + [-62, -26], + [-118, -81], + [-66, -15], + [-56, 89], + [-10, 40], + [-24, 30], + [-4, 287], + [14, 63], + [19, 41], + [114, 62], + [127, 44], + [194, 133], + [67, 15], + [28, 29], + [-47, 11], + [-147, 4], + [-76, -15], + [-85, -33], + [-260, 0], + [-19, 30], + [0, 24], + [-16, 4], + [30, 77], + [10, 2], + [5, 40], + [19, 44], + [0, 88], + [-5, 38], + [-66, 36], + [-90, 15], + [-42, -7], + [-48, -30], + [-19, -51], + [-43, -55], + [-61, -22], + [-66, 7], + [-104, 48], + [-57, 14], + [-47, 38], + [-99, 58], + [-95, 15], + [-57, -15], + [-38, -55], + [-9, -51], + [14, -48], + [-62, -96], + [-9, -107], + [101, -14], + [7, -47], + [-68, -42], + [-38, -41], + [-75, -47], + [-38, -41], + [38, 0], + [30, -35], + [0, -77], + [-60, -17], + [-144, -6], + [-91, -24], + [-75, -29], + [-60, 0], + [-69, 24], + [-7, -75], + [-24, -30], + [-85, -33], + [-24, -29], + [-11, -50], + [8, -13], + [0, -59], + [-38, -52], + [-61, 0], + [-45, 52], + [-53, 42], + [-37, -6], + [-46, -36], + [-60, -17], + [0, -41], + [30, -35], + [-38, -48], + [-116, -29], + [-42, -82], + [-53, -36], + [-167, -11], + [0, 82], + [-62, 53], + [-103, -45], + [-12, -38], + [7, -69], + [-14, -30], + [-95, -11], + [-28, -22], + [0, -15], + [-24, -40], + [-33, -7], + [-35, 12], + [-16, -5], + [-68, 21], + [-65, -10], + [-14, -52], + [26, -36], + [136, -106], + [60, -35], + [76, 0], + [0, -29], + [-83, -65], + [7, -71], + [46, -59], + [-8, -141], + [-23, -76], + [-128, -165], + [-106, -65], + [-91, -29], + [-30, 35], + [-45, 30], + [-38, 41], + [-98, 59], + [-121, 5], + [-38, -35], + [-53, -11], + [-7, 58], + [-68, 242], + [38, 164], + [30, 218], + [-30, 118], + [0, 53], + [-53, 76], + [-22, 76], + [8, 142], + [37, 82], + [0, 65], + [-22, 127], + [-38, 126], + [-7, 88], + [-38, 187], + [-45, 137], + [0, 106], + [-105, 153], + [-46, 35], + [-37, 77], + [-8, 117], + [75, -65], + [33, -3], + [50, 40], + [67, 30], + [125, 0], + [65, 10], + [196, 82], + [91, 59], + [0, 77], + [68, 17], + [46, -34], + [-9, 68], + [-66, 96], + [-114, 81], + [-151, 92], + [-331, 111], + [-61, 11], + [-38, -14], + [-48, -89], + [-47, -40], + [-67, -115], + [-9, -51], + [-81, -85], + [-37, 15], + [-25, 42], + [-125, 112], + [-45, 59], + [-38, 18], + [-12, -9], + [-25, 18], + [-47, 77], + [-14, 129], + [-42, 62], + [-119, 15], + [-109, 34], + [-23, 69], + [-76, 140], + [-80, 45], + [-24, 48], + [-14, 63], + [-28, 51], + [-52, 52], + [-28, 40], + [-46, 13], + [-84, 154], + [-31, 14], + [-14, 40], + [0, 37], + [47, 67], + [-10, 114], + [-23, 40], + [-76, 74], + [-42, 26], + [-29, 29], + [13, 88], + [38, 76], + [48, 21], + [20, -8], + [56, -3], + [34, 14], + [28, 26], + [99, 15], + [19, 22], + [0, 25], + [-19, 23], + [-56, 7], + [-97, -2], + [-87, 55], + [-50, -2], + [-93, -54], + [-42, -4], + [-162, 7], + [-53, 53], + [-151, 276], + [-22, 69], + [90, 2], + [30, 59], + [7, 45], + [-27, 115], + [-29, 55], + [-42, 52], + [-38, 77], + [-9, 74], + [4, 74], + [-16, 14], + [23, 76], + [35, 52], + [15, 2], + [104, 92], + [24, 29], + [2, 16], + [69, 21], + [69, -12], + [134, 115], + [67, 33], + [56, 41], + [-56, 103], + [-85, 77], + [-19, 41], + [-38, 40], + [-57, 37], + [-47, 11], + [-57, -3], + [-142, -81], + [-127, 13], + [-30, -3], + [-66, 56], + [-37, 15], + [-43, 41], + [-18, 55], + [0, 35], + [-32, 39], + [-8, 203], + [-27, 36], + [-9, 114], + [48, 107], + [-5, 81], + [-19, 29], + [0, 56], + [33, 48], + [0, 37], + [43, 103], + [0, 55], + [-61, 155], + [-52, 184], + [-33, 70], + [-24, 77], + [-85, 111], + [-5, 59], + [5, 37], + [19, 33], + [80, -44], + [52, 0], + [10, 40], + [-5, 111], + [-61, 136], + [-10, 100], + [10, 47], + [28, 41], + [123, 81], + [62, 15], + [118, 84], + [33, 48], + [10, 37], + [42, 48], + [279, 30], + [81, 18], + [80, 7], + [279, 11], + [95, 11], + [66, 26], + [81, 3], + [85, 45], + [156, 99], + [199, 33], + [85, 22], + [161, 89], + [87, 97], + [3, 50], + [104, 129], + [66, 44], + [43, 63], + [5, 51], + [23, 48], + [86, 66], + [142, 89], + [364, 158], + [61, 10], + [76, 100], + [62, 41], + [57, 59], + [-10, 136], + [-23, 41], + [-24, 84], + [43, 67], + [50, 44], + [16, 43], + [24, 6], + [43, 110], + [37, 58], + [29, 67], + [5, 62], + [-66, 166], + [-24, 115], + [-14, 228], + [5, 203], + [85, 103], + [123, 96], + [123, 36], + [57, 29], + [76, 27], + [76, 18], + [132, 28], + [257, 35], + [219, 71], + [159, 17], + [83, 71], + [121, 65], + [59, 22], + [105, -33], + [76, -4], + [251, 36], + [42, 34], + [48, 59], + [52, 44], + [199, 29], + [61, 22], + [119, 96], + [37, 14], + [70, 62], + [136, -6], + [75, -17], + [76, -47], + [53, -53] + ], + [ + [52294, 174720], + [158, -41], + [114, -7], + [44, -108], + [149, -103], + [343, -278], + [79, -102], + [149, -102], + [114, -96], + [105, -109], + [237, -156], + [194, -143], + [350, -176], + [123, -88], + [149, -137], + [282, -306], + [166, -293], + [229, -551], + [211, -551], + [115, -361], + [1, -183], + [-53, -307], + [-43, -150], + [-18, -102], + [-12, 2], + [76, -99], + [63, -31], + [67, -8], + [114, -116], + [114, -238], + [26, -109], + [88, -238], + [71, -272], + [-183, -661], + [-88, -191], + [-17, -204], + [1, -218], + [97, -531], + [-246, 54], + [-315, -55], + [-184, -54], + [-167, -96], + [-219, -75], + [-280, -197], + [-122, -109], + [-26, -157], + [9, -122], + [17, -69], + [-140, -68], + [-228, -68], + [-70, -82], + [-131, -34], + [-158, -55], + [-184, -95], + [-324, -48], + [-167, -7], + [-385, -35], + [-307, -7], + [-219, 0], + [-228, 20], + [-175, 48], + [-141, 61], + [-236, 88], + [-202, 157], + [-193, 163], + [-228, 129], + [-132, 20], + [-57, 40], + [-74, -88], + [-35, -68], + [-79, 61], + [-106, 0], + [-78, -116], + [-131, -40], + [-158, -14], + [-193, 20], + [-167, 109], + [-193, 0], + [-297, -76], + [-202, -14], + [-140, 7], + [-140, -7], + [-220, 7], + [-166, -34], + [-88, -69], + [-263, -41], + [-499, -21], + [-280, 95], + [-9, 61], + [8, 103], + [-61, 0], + [-193, 142], + [-97, 109], + [-9, 123], + [26, 136], + [0, 163], + [-18, 123], + [-96, 95], + [-317, 224], + [-70, 102], + [-105, 109], + [-1, 368], + [-53, 116], + [-36, 340], + [-17, 198], + [69, 435], + [26, 109], + [105, 136], + [52, 205], + [0, 347], + [25, 443], + [-18, 81], + [-90, 78], + [-21, 55], + [7, 437], + [30, 315], + [88, 97], + [0, 35], + [-23, 47], + [-8, 41], + [15, 59], + [15, 188], + [-45, 136], + [14, 376], + [83, 206], + [113, 182], + [113, 118], + [220, 59], + [189, 1], + [288, -47], + [167, -106], + [84, -35], + [67, -70], + [69, -13], + [182, 7], + [98, 41], + [136, 24], + [144, -6], + [99, -53], + [121, -111], + [53, -65], + [61, -53], + [0, -47], + [106, 0], + [205, 59], + [143, 112], + [137, 41], + [121, 18], + [295, 6], + [652, -34], + [113, 17], + [318, 189], + [114, 130], + [52, 82], + [0, 135], + [-61, 53], + [8, 83], + [45, 158], + [7, 65], + [114, 53], + [121, 35], + [60, 36], + [68, 124], + [53, 270], + [-46, 77], + [-60, 29], + [-83, 18], + [-39, 52], + [0, 48], + [15, 41], + [76, 6], + [38, -24], + [76, 24], + [60, 41], + [99, 12], + [30, 47], + [53, 141], + [22, 112], + [-8, 171], + [-106, 123], + [-99, 211], + [-37, 54], + [-54, 11], + [0, 47], + [-22, 42], + [-38, 23], + [-31, 147], + [106, 47], + [76, 6], + [76, -5], + [68, -36], + [23, -53], + [0, -106], + [167, -129], + [161, -143], + [88, -103], + [350, -183], + [71, -75], + [44, -75], + [105, -88] + ], + [ + [82662, 112388], + [48, -12], + [26, -20], + [16, -27], + [0, -70], + [31, -92], + [67, -55], + [71, -22], + [59, -61], + [-6, -73], + [7, -14], + [80, -50], + [80, -15], + [180, 4], + [45, 12], + [144, -15], + [120, 0], + [47, -32], + [278, -14], + [72, -27], + [19, -22], + [12, -39], + [2, -164], + [10, -67], + [-12, -112], + [-39, -47], + [-2, -15], + [-25, -20], + [-62, -116], + [-26, -84], + [-9, -62], + [0, -117], + [28, -52], + [4, -112], + [-38, -92], + [-4, -94], + [-76, -110], + [-7, -32], + [-92, -179], + [-89, -94], + [-29, -50], + [-51, -62], + [-102, -94], + [-195, -219], + [-46, -82], + [1, -80], + [-23, -45], + [-65, -84], + [7, -115], + [-9, -40], + [-84, -116], + [0, -14], + [28, -58], + [0, -88], + [54, -71], + [0, -256], + [45, -74], + [3, -35], + [-131, -211], + [-3, -65], + [-22, -67], + [0, -55], + [-45, -82], + [-38, -129], + [-77, -107], + [-16, -7], + [-91, -133], + [-10, -46], + [-130, -198], + [0, -20], + [-52, -141], + [-27, -121], + [7, -325], + [40, -90], + [56, -69], + [189, -318], + [122, -137], + [61, -114], + [36, -43], + [102, -58], + [57, -71], + [310, -294], + [242, -171], + [226, -194], + [288, -200], + [393, -341], + [260, -175], + [48, -67], + [39, -30], + [187, -100], + [72, -47], + [35, -13], + [115, -22], + [68, 0], + [226, -46], + [378, -170], + [415, -141], + [221, -106], + [73, -20], + [120, -54], + [131, -69], + [89, -61], + [60, -52], + [368, -146], + [287, -81], + [283, -64], + [148, -13], + [63, -22], + [26, -18], + [115, -25], + [50, -2], + [91, -24], + [36, -1], + [15, -7], + [129, -153], + [9, -21], + [18, -8], + [26, -27], + [32, -102], + [114, -44], + [7, -16], + [39, -32], + [201, -45], + [47, -4], + [202, -119], + [61, -54], + [66, -103], + [-13, -164], + [-35, -80], + [-54, -74], + [-6, -24], + [5, -46], + [-16, -137], + [-2, -125], + [-12, -53], + [4, -33], + [-8, -12], + [-7, -189], + [-31, -40], + [-21, -44], + [2, -30], + [-49, -76], + [-10, -32], + [7, -59], + [-54, -47], + [-48, -25], + [-54, -7], + [-45, -30], + [-172, -22], + [-130, -33], + [-83, -5], + [-151, 10], + [-210, -4], + [-118, -36], + [-45, 0], + [-70, -20], + [-60, 8], + [-64, 52], + [-52, 25], + [-140, 27], + [-115, 52], + [-100, 16], + [-89, 43], + [-121, 6], + [-82, 49], + [-41, 55], + [-39, 25], + [-67, 5], + [-76, 62], + [-160, 60], + [-153, 27], + [-86, 43], + [-51, 7], + [-55, -5], + [-41, -13], + [-192, -20], + [-73, -17], + [-137, -7], + [-61, 2], + [-114, 26], + [-30, 42], + [-90, 6], + [-106, -12], + [-98, 30], + [-76, 35], + [-38, 41], + [0, 136], + [-44, 22], + [-2, 60], + [-14, 8], + [-55, -33], + [-84, 54], + [-117, 7], + [-181, 0], + [-58, 13], + [-32, 37], + [-64, 112], + [-172, 74], + [-80, 17], + [-26, 17], + [-113, 25], + [-46, 41], + [-99, 49], + [-139, 25], + [-34, 22], + [-21, 4], + [-123, 80], + [-75, 23], + [-74, 45], + [-108, 47], + [-136, 50], + [-139, 15], + [-185, 114], + [-76, 42], + [-60, 18], + [-45, 34], + [-125, 25], + [-132, -13], + [-242, 77], + [-136, 76], + [-53, 12], + [-136, 6], + [-58, 28], + [-95, 22], + [-78, 34], + [-50, 8], + [-9, 65], + [-118, 125], + [-38, 14], + [-58, 5], + [-166, 82], + [-22, 35], + [0, 85], + [44, 99], + [-6, 47], + [-29, 30], + [-77, 50], + [-73, 27], + [-45, 12], + [-172, 15], + [-99, 58], + [-57, 64], + [-7, 47], + [-19, 28], + [-32, 27], + [-115, 67], + [-47, 17], + [-42, 30], + [-71, 102], + [-31, 22], + [-45, 13], + [-134, 109], + [-35, 50], + [-23, 99], + [-22, 42], + [-24, 17], + [-6, 59], + [-149, 28], + [-37, 58], + [-50, 184], + [-12, 232], + [-87, 87], + [-162, 212], + [-820, 754], + [-124, 203], + [-74, 213], + [-112, 164], + [-12, 164], + [-50, 297], + [52, 101], + [16, 348], + [-19, 104], + [-55, 139], + [-9, 85], + [12, 97], + [48, 176], + [0, 95], + [16, 18], + [37, 251], + [12, 251], + [348, 445], + [297, 532], + [174, 212], + [0, 68], + [34, 81], + [4, 130], + [25, 64], + [0, 99], + [-29, 177], + [-59, 61], + [37, 191], + [17, 154], + [39, 92], + [205, 92], + [180, 45], + [53, 51], + [38, 59], + [83, 95], + [10, 57], + [54, 60], + [29, 22], + [191, 50], + [32, 35], + [19, 64], + [22, 32], + [48, 23], + [83, -5], + [35, -10], + [84, -57], + [44, -20], + [163, -35], + [118, -5], + [125, -18], + [233, 165], + [47, 13], + [105, 4], + [74, -12], + [48, 3], + [86, 52], + [51, 52], + [77, 52], + [137, 75], + [99, 82], + [38, 14], + [93, 58], + [38, 11], + [30, 24], + [88, 4] + ], + [ + [120450, 89242], + [35, -14], + [53, 14], + [51, 60], + [34, 22], + [162, -4], + [98, -29], + [68, 5], + [92, -24], + [9, -12], + [51, -19], + [36, -33], + [54, -29], + [55, -4], + [14, -15], + [27, -9], + [89, -4], + [42, 14], + [88, -17], + [62, 22], + [53, -6], + [10, -19], + [-34, -56], + [8, -16], + [20, -9], + [38, -3], + [18, 2], + [88, 54], + [0, 47], + [18, 7], + [75, -18], + [128, -100], + [44, -50], + [6, -104], + [38, -56], + [22, -68], + [14, -123], + [-9, -43], + [37, -92], + [50, -44], + [95, -54], + [18, -22], + [15, -49], + [137, -105], + [20, -34], + [43, -27], + [62, -17], + [14, -20], + [30, -125], + [44, -83], + [60, -66], + [31, -20], + [86, -104], + [68, -103], + [46, -92], + [32, -108], + [71, -81], + [158, -91], + [54, -41], + [21, -28], + [30, -69], + [8, -81], + [96, -110], + [54, -39], + [66, -30], + [13, -15], + [2, -21], + [-50, -74], + [2, -90], + [-30, -25], + [-56, -17], + [-53, -41], + [-48, -9], + [-30, -36], + [12, -44], + [73, -72], + [74, -28], + [106, -57], + [27, -24], + [7, -42], + [-1, -25], + [-15, -33], + [-20, -28], + [-30, -23], + [-64, -22], + [-56, -1], + [-38, -36], + [-18, -34], + [-27, -106], + [5, -132], + [20, -39], + [16, -21], + [141, -63], + [8, -25], + [-22, -60], + [10, -34], + [46, -48], + [0, -77], + [34, -68], + [0, -17], + [-42, -55], + [-10, -26], + [8, -64], + [12, -22], + [-16, -14], + [-32, 5], + [-20, 20], + [-32, 3], + [-34, -14], + [-54, -38], + [-42, -107], + [-22, -89], + [4, -59], + [76, -103], + [33, -22], + [48, 26], + [39, -5], + [11, -10], + [2, -23], + [2, -70], + [-16, -48], + [-47, -67], + [19, -67], + [-2, -50], + [-80, -82], + [-10, -28], + [-66, -86], + [-8, -34], + [2, -74], + [11, -34], + [25, -7], + [12, -20], + [24, -82], + [-18, -95], + [-50, -61], + [-8, -37], + [2, -31], + [30, -37], + [2, -22], + [-64, -64], + [8, -22], + [22, -4], + [37, 15], + [23, -4], + [10, -69], + [51, -25], + [18, -19], + [-20, -29], + [-34, -25], + [-4, -82], + [-36, -85], + [4, -22], + [38, -18], + [18, -76], + [18, -31], + [8, -67], + [-10, -32], + [-22, -28], + [-50, -17], + [-78, -69], + [-10, -18], + [0, -89], + [22, -89], + [-18, -29], + [-80, -8], + [-34, -20], + [-87, -78], + [-23, -64], + [-2, -37], + [10, -15], + [40, -16], + [26, -25], + [10, -18], + [-6, -22], + [-18, -8], + [-38, 3], + [-120, 53], + [-147, 13], + [-64, 24], + [-20, 60], + [-38, 24], + [-127, 52], + [-66, 17], + [-104, 87], + [-48, 22], + [-37, 5], + [-35, 32], + [-43, 2], + [-86, 71], + [-72, 18], + [-39, 21], + [-27, 30], + [-39, 6], + [-96, 55], + [-131, 168], + [-144, 102], + [-91, 96], + [-43, 16], + [-127, 109], + [-140, 62], + [-123, 31], + [-32, 24], + [-32, 34], + [-48, 115], + [-84, 58], + [-213, 82], + [-46, 0], + [-56, -11], + [-30, 8], + [-74, 42], + [-51, 47], + [-94, 57], + [-10, 0], + [-16, -42], + [-22, -12], + [-44, 28], + [2, 22], + [26, 24], + [0, 27], + [-80, 73], + [-119, 83], + [-24, 9], + [-34, -2], + [-30, -26], + [-44, -3], + [-30, 11], + [-97, 63], + [-28, -3], + [-30, 8], + [-164, 145], + [-6, 50], + [21, 21], + [-2, 60], + [-58, 115], + [-56, 40], + [-142, 95], + [-422, 154], + [-17, 19], + [-41, 9], + [-136, 73], + [-54, 19], + [-79, 13], + [-58, 42], + [-152, 41], + [-4, 50], + [18, 24], + [34, 23], + [8, 18], + [-6, 17], + [-99, 8], + [-47, -21], + [-115, -14], + [-66, 69], + [-36, 16], + [-6, 28], + [-34, 34], + [-8, 31], + [-26, 18], + [-79, 14], + [-26, 56], + [-88, 18], + [-74, 33], + [20, 84], + [-10, 30], + [-31, 29], + [0, 40], + [-13, 33], + [-71, 78], + [-48, 32], + [-84, 21], + [-28, 19], + [-30, 0], + [-110, 99], + [-45, 22], + [-38, 12], + [-60, -1], + [-147, 137], + [-57, 11], + [-52, 22], + [-14, 19], + [-3, 61], + [-21, 21], + [19, 28], + [43, 21], + [14, 27], + [-24, 99], + [-14, 12], + [9, 63], + [-18, 29], + [0, 30], + [34, 49], + [6, 47], + [-32, 59], + [-64, 62], + [-39, 21], + [-94, 6], + [-16, 15], + [10, 36], + [60, 31], + [17, 17], + [1, 61], + [-12, 29], + [2, 17], + [22, 19], + [8, 3], + [45, -16], + [16, -25], + [86, 69], + [92, 3], + [46, -21], + [66, -2], + [24, 16], + [19, 26], + [74, 5], + [14, 21], + [73, 40], + [26, 6], + [51, -45], + [54, -29], + [6, -40], + [-18, -30], + [0, -25], + [42, -85], + [28, -7], + [18, -17], + [56, -11], + [23, -24], + [108, -24], + [44, -31], + [94, -9], + [42, 11], + [28, 22], + [32, 49], + [-9, 82], + [33, 30], + [109, 66], + [15, 18], + [17, 0], + [28, 31], + [20, 46], + [90, 38], + [24, 0], + [46, -26], + [32, 1], + [38, 45], + [123, 39], + [16, 73], + [49, 56], + [5, 90], + [20, 25], + [2, 17], + [-15, 85], + [21, 22], + [41, 12], + [83, -6], + [278, 70], + [-2, 34], + [-62, 58], + [-50, 76], + [-2, 136], + [-38, 109], + [-15, 265], + [-14, 68], + [-66, 70], + [-74, 61], + [-10, 36], + [0, 26], + [56, 83], + [82, 35], + [4, 13], + [-22, 17], + [-4, 20], + [6, 61], + [49, 87], + [38, 23], + [89, 34], + [118, -9], + [51, -28], + [29, -5], + [82, -2], + [73, -80], + [12, -74], + [18, -24], + [59, -38], + [8, -17], + [6, -70], + [-50, -66], + [-3, -42], + [42, -138], + [39, 8], + [46, 86], + [32, 5], + [32, -5], + [57, -53], + [234, -41], + [39, -28], + [14, -25], + [68, -50], + [0, -63], + [-40, -42], + [-88, -55], + [-8, -42], + [39, -79], + [89, -119], + [7, -25], + [-7, -36], + [-29, -58], + [7, -28], + [117, -119], + [25, -44], + [46, -22], + [36, 0], + [156, -108], + [113, -63], + [53, -62], + [11, -38], + [-7, -91], + [-21, -42], + [14, -85], + [99, -36], + [46, -31], + [39, -63], + [25, -6], + [25, 17], + [14, 35], + [0, 152], + [25, 53], + [14, 179], + [-35, 42], + [-21, 44], + [-18, 169], + [39, 72], + [59, 34], + [13, 29], + [-8, 19], + [-82, 53], + [4, 17], + [-20, 11], + [-32, 33], + [-29, 97], + [-22, 33], + [-7, 108], + [71, 43], + [-3, 23], + [-29, 13], + [-47, 2], + [-48, 17], + [-37, 31], + [-72, 155], + [11, 168], + [37, 27], + [16, 29], + [3, 25], + [-14, 22], + [-119, 40], + [-32, 21], + [-22, 18], + [-30, 51], + [-129, 101], + [-35, 19], + [-74, 70], + [19, 44], + [24, 14], + [30, 35], + [24, 5], + [-1, 78], + [16, 23], + [32, -2], + [90, -48], + [38, -23], + [68, -64] + ], + [ + [124106, 94948], + [0, -59], + [22, -52], + [60, -89], + [20, -75], + [54, -83], + [24, -63], + [9, -73], + [5, -155], + [-33, -113], + [4, -267], + [24, -132], + [13, -185], + [-9, -202], + [-28, -100], + [9, -99], + [71, -155], + [75, -77], + [38, -133], + [-5, -74], + [-62, -73], + [-42, -103], + [-24, -100], + [-28, -74], + [-5, -51], + [-11, -11], + [0, -67], + [77, -239], + [89, -100], + [18, -60], + [16, -13], + [68, -6], + [136, -76], + [68, -59], + [18, -56], + [64, -39], + [52, -60], + [14, -51], + [9, -111], + [76, -70], + [61, -26], + [15, -36], + [-24, -48], + [0, -26], + [18, -26], + [57, -22], + [10, -29], + [-10, -70], + [5, -48], + [23, -41], + [62, -55], + [-19, -151], + [-57, -110], + [70, -67], + [-22, -58], + [-152, -142], + [-45, -53], + [-98, -17], + [-182, -88], + [-37, -77], + [-68, -35], + [-129, -6], + [-38, 47], + [-30, 94], + [-87, 76], + [-48, 20], + [-52, 51], + [-14, 23], + [0, 44], + [-19, 29], + [-52, 71], + [-28, 25], + [-38, 19], + [-28, 41], + [0, 44], + [-33, 16], + [-114, 107], + [-6, 34], + [-135, 46], + [-57, 0], + [-81, -41], + [-28, 26], + [-9, 81], + [-81, 74], + [-33, 44], + [-9, 138], + [-28, 109], + [9, 22], + [-9, 18], + [-52, 44], + [-62, 19], + [-37, 26], + [-67, 29], + [-94, 1], + [-52, 36], + [-38, 41], + [-14, 37], + [-29, 33], + [-42, 18], + [-79, 59], + [-22, 53], + [-5, 66], + [-69, 29], + [-14, 40], + [52, 74], + [-19, 37], + [-52, 3], + [-42, 19], + [23, 63], + [-14, 11], + [-61, 3], + [-10, 26], + [24, 33], + [61, 26], + [20, 52], + [75, 29], + [47, 37], + [-38, 122], + [0, 47], + [20, 30], + [56, 25], + [43, 4], + [28, -22], + [57, 63], + [81, 7], + [156, -4], + [75, -22], + [57, -37], + [73, -84], + [8, 73], + [28, 15], + [118, -4], + [47, 11], + [-18, 22], + [-119, 48], + [-18, 254], + [-33, 37], + [-71, 19], + [-14, 33], + [28, 29], + [28, 52], + [85, 11], + [5, 40], + [-28, 41], + [-161, 37], + [-90, 52], + [-80, 66], + [-52, 77], + [-90, 107], + [-122, 63], + [-24, 55], + [-57, 81], + [-129, 116], + [-27, -5], + [-28, -25], + [-71, -12], + [-62, 70], + [-4, 56], + [28, 66], + [-24, 70], + [-89, 103], + [43, 37], + [56, 22], + [38, 29], + [33, 236], + [67, 129], + [5, 96], + [61, 136], + [5, 52], + [24, 44], + [52, 52], + [0, 29], + [-15, 26], + [-32, 7], + [-48, -7], + [-104, -63], + [-80, 0], + [-166, 100], + [-56, 55], + [-53, 104], + [-118, 118], + [-138, 179], + [-36, 19], + [-104, 34], + [-38, 22], + [-66, 129], + [0, 92], + [23, 44], + [29, 37], + [57, 41], + [80, 25], + [132, 11], + [93, -3], + [75, 22], + [151, 65], + [188, 41], + [62, 33], + [236, 18], + [66, 19], + [33, 19], + [156, 33], + [143, -1], + [51, -18], + [85, -80], + [15, -82], + [68, -165], + [75, -70], + [143, -195], + [61, -47], + [60, -94], + [76, -6], + [67, -59], + [8, -76], + [68, -106], + [15, -59], + [30, -59], + [8, -118] + ], + [ + [126446, 127821], + [44, -35], + [4, -35], + [51, -34], + [20, -38], + [32, -28], + [36, -20], + [23, -27], + [56, -4], + [21, -20], + [14, -31], + [0, -134], + [-36, -66], + [3, -45], + [16, -17], + [28, -14], + [81, -11], + [42, 3], + [17, -70], + [30, -41], + [-14, -24], + [-16, -4], + [-11, -31], + [16, -13], + [33, 13], + [20, 0], + [14, -17], + [-23, -67], + [31, -46], + [0, -26], + [-19, -44], + [-6, -58], + [50, -73], + [-5, -49], + [-28, -15], + [-15, -41], + [0, -69], + [15, -66], + [-93, -56], + [-49, -130], + [-15, -18], + [-20, -88], + [9, -61], + [27, -39], + [11, -53], + [98, -128], + [0, -22], + [-9, -23], + [-11, -7], + [-83, 8], + [-6, -75], + [-17, -56], + [6, -33], + [28, -20], + [86, -30], + [14, -15], + [-3, -35], + [-58, -26], + [-23, -41], + [14, -50], + [25, -11], + [76, -4], + [30, -14], + [28, -24], + [8, -71], + [-3, -19], + [-30, -44], + [5, -35], + [20, -34], + [103, -57], + [9, -24], + [-23, -54], + [2, -98], + [20, -50], + [14, -11], + [39, 0], + [17, -17], + [0, -26], + [-31, -37], + [-48, -35], + [-14, -30], + [21, -70], + [47, -42], + [24, -49], + [40, -50], + [97, -78], + [151, -83], + [44, -23], + [103, -31], + [67, -2], + [47, 23], + [22, 0], + [5, -16], + [-12, -29], + [11, -28], + [64, -2], + [47, -13], + [78, -79], + [56, -41], + [72, -26], + [37, 35], + [87, 10], + [69, -71], + [42, -18], + [19, -30], + [-8, -26], + [-19, -11], + [-40, 4], + [-22, -10], + [-6, -55], + [-22, -24], + [-75, -20], + [-17, -21], + [-6, -89], + [20, -43], + [-11, -67], + [5, -26], + [39, -13], + [45, 38], + [36, -8], + [8, -22], + [-8, -17], + [-28, -14], + [9, -25], + [46, -57], + [16, -64], + [14, -7], + [68, -3], + [35, -28], + [8, -20], + [30, -27], + [2, -41], + [24, -28], + [4, -52], + [-92, -93], + [-56, -21], + [-29, 2], + [-78, -34], + [-86, -12], + [-44, -14], + [-27, -20], + [-30, -105], + [-44, -27], + [-14, -29], + [-5, -58], + [39, -23], + [77, -97], + [26, -18], + [92, -22], + [25, -16], + [12, -20], + [8, -79], + [20, -22], + [0, -49], + [12, -42], + [91, -68], + [42, -51], + [17, -9], + [4, -40], + [-27, -32], + [-18, -7], + [-72, -65], + [-24, -37], + [8, -126], + [-12, -24], + [0, -29], + [48, -67], + [37, -29], + [62, -20], + [89, 31], + [17, -4], + [-4, -9], + [21, -11], + [2, -17], + [-10, -16], + [-54, -53], + [-15, -33], + [-2, -29], + [23, -49], + [-14, -30], + [-2, -61], + [22, -49], + [101, -148], + [20, -137], + [10, -19], + [-18, -124], + [-14, -16], + [9, -34], + [30, -40], + [44, 9], + [76, 40], + [27, -3], + [25, -34], + [-5, -23], + [-18, -17], + [-20, -8], + [-93, -3], + [-25, -19], + [57, -35], + [7, -100], + [53, -62], + [4, -117], + [-9, -67], + [45, -89], + [25, -69], + [11, -74], + [72, -115], + [-4, -70], + [-19, -55], + [-19, -20], + [-56, -28], + [-73, -14], + [-102, 11], + [-115, 120], + [-77, 149], + [-36, 36], + [-60, 40], + [-19, 3], + [-20, -12], + [-12, -25], + [-30, -11], + [-38, 56], + [-67, 18], + [-94, 4], + [-169, -34], + [-193, -65], + [-187, -140], + [-15, -58], + [-1, -52], + [-19, -41], + [-84, -89], + [-8, -33], + [-36, -247], + [9, -156], + [-27, -71], + [-20, -121], + [-36, -72], + [-4, -64], + [-76, -94], + [-30, -56], + [0, -22], + [-39, -69], + [-4, -63], + [186, -323], + [91, -76], + [129, -148], + [0, -18], + [-42, -20], + [-2, -33], + [10, -11], + [90, 3], + [25, -11], + [17, -46], + [-29, -31], + [-55, -26], + [-14, -16], + [-2, -15], + [38, -26], + [14, -34], + [-6, -31], + [-48, -40], + [-14, -33], + [1, -106], + [26, -45], + [-12, -98], + [-73, -178], + [-120, -192], + [-26, -139], + [-37, -50], + [-33, -24], + [-83, -52], + [-36, -2], + [-25, 20], + [-15, 25], + [-11, 68], + [13, 58], + [27, 46], + [2, 29], + [-36, 65], + [-16, 66], + [-53, 70], + [-28, 57], + [-23, 124], + [-99, 115], + [-94, 76], + [2, 27], + [22, 11], + [31, 67], + [54, -8], + [30, 9], + [80, 103], + [4, 126], + [-8, 2], + [-6, 23], + [-50, 43], + [-20, 28], + [-14, 63], + [-70, 75], + [-134, 8], + [-11, 31], + [23, 22], + [23, 44], + [74, 22], + [100, 71], + [52, 71], + [21, 108], + [-7, 51], + [-58, 39], + [-14, 35], + [92, 111], + [10, 72], + [-108, 100], + [-37, 47], + [-91, 41], + [15, 28], + [112, 51], + [23, 19], + [70, 80], + [142, 170], + [27, 54], + [37, 39], + [21, 94], + [-15, 164], + [-23, 41], + [-67, 36], + [-31, 41], + [0, 159], + [-16, 28], + [-28, 17], + [-16, 25], + [2, 24], + [26, 8], + [34, -6], + [30, -17], + [29, 4], + [34, 27], + [16, 29], + [-2, 50], + [-49, 94], + [-42, 29], + [-34, 3], + [-26, -10], + [-55, 1], + [-46, 36], + [-50, 7], + [-25, 26], + [0, 27], + [18, 25], + [63, 31], + [16, 24], + [0, 32], + [-23, 48], + [2, 59], + [-46, 29], + [-37, 47], + [-4, 94], + [77, 39], + [103, 73], + [66, 0], + [119, -23], + [36, 8], + [183, 103], + [44, 66], + [4, 49], + [13, 20], + [20, 0], + [40, -39], + [46, 8], + [25, 30], + [30, 19], + [37, 94], + [8, 76], + [23, 54], + [-15, 87], + [-135, 91], + [-64, 79], + [-12, 28], + [-8, 119], + [-44, 27], + [-77, 126], + [-4, 28], + [-14, 23], + [-37, 17], + [-20, 23], + [4, 25], + [20, 28], + [67, 35], + [44, 66], + [8, 46], + [-4, 28], + [-24, 26], + [6, 51], + [82, 58], + [-5, 28], + [-82, 55], + [-20, 34], + [-6, 35], + [30, 104], + [20, 34], + [48, 34], + [-2, 35], + [-24, 70], + [0, 25], + [22, 43], + [0, 33], + [-8, 18], + [-48, 17], + [-29, 58], + [-6, 32], + [14, 55], + [-6, 22], + [-52, 44], + [-14, 116], + [-24, 80], + [-24, 45], + [-6, 64], + [-25, 32], + [-82, 68], + [-119, 67], + [-29, 30], + [4, 79], + [19, 40], + [34, 11], + [58, 70], + [6, 51], + [-9, 16], + [1, 34], + [-17, 24], + [-31, 8], + [-25, 20], + [-6, 68], + [-18, 46], + [-127, 30], + [-22, 12], + [-26, 45], + [-61, 8], + [-18, 15], + [-12, 140], + [-38, 52], + [-25, 73], + [-30, 21], + [-2, 21], + [44, 71], + [5, 46], + [-101, 91], + [-15, 46], + [-29, 26], + [-115, 55], + [-59, 21], + [-14, 21], + [-4, 53], + [-44, 70], + [20, 20], + [-6, 23], + [-47, 24], + [-26, 46], + [-26, 23], + [-81, 41], + [-61, 66], + [3, 20], + [34, 43], + [0, 33], + [54, 18], + [20, 41], + [-4, 10], + [34, 36], + [-80, 98], + [28, 38], + [4, 23], + [-73, 117], + [2, 54], + [-12, 27], + [-36, 26], + [-14, 22], + [15, 85], + [77, 66], + [-2, 25], + [-44, 57], + [-1, 46], + [13, 33], + [72, 57], + [14, 51], + [14, 19], + [-6, 15], + [-34, 22], + [-38, 38], + [2, 39], + [22, 37], + [96, 16], + [65, 51], + [10, 29], + [-8, 77], + [10, 41], + [35, 21], + [39, 2], + [14, 8], + [-2, 23], + [-74, 60], + [-49, 66], + [-6, 27], + [8, 22], + [32, 28], + [-3, 15], + [-75, 65], + [-15, 53], + [-23, 29], + [-11, 35], + [-8, 76], + [63, 34], + [17, 23], + [51, 0], + [34, 8], + [-12, 26], + [-18, 14], + [0, 112], + [27, 9], + [33, -5] + ], + [ + [92339, 105988], + [89, -16], + [69, 1], + [77, -61], + [44, -53], + [38, -88], + [23, -14], + [67, -71], + [24, -54], + [11, -55], + [73, -109], + [19, -50], + [38, -47], + [70, -159], + [185, -226], + [1, -41], + [17, -23], + [31, -17], + [25, 0], + [58, -70], + [45, -82], + [21, -75], + [28, -41], + [19, -63], + [75, -75], + [28, -75], + [20, -20], + [50, -28], + [43, -41], + [-10, -91], + [38, -30], + [-11, -26], + [-41, -21], + [-10, -13], + [7, -40], + [41, -49], + [31, -17], + [22, -70], + [33, -12], + [15, -19], + [2, -40], + [-14, -17], + [-3, -19], + [10, -15], + [0, -63], + [-30, -38], + [37, -114], + [52, -36], + [-7, -82], + [-24, -48], + [0, -31], + [-22, -52], + [-74, -71], + [-34, -13], + [-74, -63], + [-45, -26], + [-68, -9], + [-85, 0], + [-85, -57], + [-46, -4], + [-85, 17], + [-51, -4], + [-107, -27], + [-63, 14], + [-34, 27], + [-62, 6], + [-91, -29], + [23, -106], + [0, -47], + [-17, -6], + [-40, 13], + [-46, 27], + [-11, 22], + [-62, 44], + [-102, 53], + [-17, 1], + [-8, 28], + [-36, 46], + [-7, 38], + [-53, 57], + [-61, 93], + [-54, 42], + [0, 89], + [-15, 47], + [-71, 68], + [-41, 8], + [-114, 75], + [-68, 18], + [-80, 44], + [-136, 53], + [-68, 83], + [-85, 45], + [-40, 57], + [-85, 62], + [-85, 40], + [-39, 57], + [-29, 62], + [-113, 110], + [-12, 58], + [-72, 105], + [-24, 70], + [-59, 56], + [-2, 117], + [-9, 18], + [8, 159], + [19, 70], + [12, 5], + [31, 50], + [-5, 40], + [34, 129], + [47, 116], + [5, 56], + [48, 67], + [105, 77], + [65, 62], + [160, 81], + [129, 82], + [120, 53], + [455, 130], + [105, 11] + ], + [ + [75194, 120512], + [42, -22], + [103, -22], + [200, -160], + [182, -102], + [294, -223], + [53, -27], + [206, -171], + [94, -179], + [-18, -115], + [-54, -82], + [-32, -89], + [-38, -252], + [3, -96], + [13, -67], + [41, -102], + [26, -23], + [31, -1], + [172, -79], + [33, -134], + [-43, -159], + [-119, -51], + [-339, 7], + [-76, -18], + [-74, -5], + [-140, 15], + [-112, 30], + [-220, 42], + [-207, 5], + [-280, 125], + [-69, 68], + [-25, 6], + [-90, 47], + [-19, 29], + [-96, 95], + [-61, 85], + [-38, 74], + [-35, 40], + [-74, 169], + [1, 13], + [-17, 24], + [-6, 84], + [16, 125], + [19, 67], + [35, 63], + [37, 171], + [195, 353], + [38, 51], + [23, 68], + [160, 216], + [42, 47], + [79, 57], + [144, 3] + ], + [ + [135911, 31695], + [-61, -24], + [-120, 24], + [-249, 29], + [-135, 6], + [-61, 54], + [-38, 85], + [-29, 150], + [7, 64], + [-7, 136], + [-22, 59], + [-38, 35], + [-45, 77], + [-8, 117], + [-90, 71], + [-37, 47], + [-16, 35], + [-7, 124], + [-37, 177], + [-38, 58], + [-38, 24], + [-45, 71], + [30, 41], + [-8, 16], + [31, 25], + [38, 47], + [45, 23], + [0, 35], + [30, 30], + [98, 0], + [23, -6], + [7, -94], + [15, -53], + [128, -82], + [0, -54], + [128, -135], + [6, -177], + [69, -23], + [98, -100], + [98, -136], + [406, -335], + [-7, -41], + [-76, -65], + [-22, -106], + [-1, -65], + [-22, -164] + ], + [ + [133170, 44968], + [-122, 7], + [-113, 192], + [-128, 110], + [-42, 52], + [-28, 41], + [-34, 99], + [1, 155], + [-19, 29], + [0, 41], + [23, 40], + [104, 63], + [109, 52], + [66, 10], + [128, 48], + [95, 0], + [155, -22], + [29, -29], + [0, -41], + [-29, -96], + [5, -143], + [18, -45], + [52, -44], + [71, -37], + [128, -41], + [103, -66], + [47, -66], + [10, -41], + [0, -29], + [-47, -41], + [-241, -44], + [-109, -52], + [-85, -21], + [-95, -63], + [-52, -18] + ], + [ + [120222, 53066], + [-74, -20], + [-54, 28], + [-24, 0], + [-57, -20], + [-32, 9], + [7, 85], + [-14, 25], + [-71, 59], + [-24, 33], + [0, 47], + [71, 138], + [10, 71], + [-24, 48], + [-121, 94], + [-14, 58], + [18, 74], + [64, 69], + [14, 31], + [0, 36], + [28, 33], + [50, 30], + [35, 6], + [71, -3], + [28, -33], + [85, -61], + [29, -31], + [99, -55], + [60, -80], + [99, -74], + [53, -15], + [50, -27], + [35, -39], + [14, -47], + [7, -99], + [-7, -39], + [-35, -42], + [-82, -72], + [-28, -46], + [-64, -70], + [-39, -27], + [-135, -52], + [-28, -22] + ], + [ + [140592, 44936], + [-144, -76], + [-75, -18], + [-83, 24], + [-98, 6], + [-91, 18], + [-45, 41], + [-98, 23], + [-38, 0], + [-105, 106], + [-30, 83], + [30, 59], + [46, 23], + [37, 65], + [68, 35], + [91, 18], + [52, 23], + [-7, 53], + [23, 42], + [91, 23], + [75, -41], + [52, -48], + [23, -47], + [90, -29], + [8, -82], + [83, -18], + [60, -36], + [-15, -70], + [-53, -23], + [53, -60], + [0, -94] + ], + [ + [129465, 50631], + [135, -10], + [135, -65], + [59, -11], + [174, 0], + [19, -40], + [0, -30], + [-52, -55], + [-26, -55], + [-13, -86], + [-25, -55], + [-39, -51], + [-64, -15], + [-142, 46], + [-59, 0], + [-167, 45], + [-90, 0], + [-52, -10], + [-38, -25], + [-78, 5], + [-32, 56], + [0, 45], + [13, 45], + [-32, 55], + [0, 21], + [13, 20], + [26, 15], + [19, 30], + [103, 60], + [65, 70], + [148, -5] + ], + [ + [129913, 115061], + [12, -24], + [84, -91], + [22, -15], + [50, -17], + [57, -58], + [62, -13], + [10, -13], + [-17, -13], + [-88, 7], + [-31, -9], + [-48, -26], + [-48, -45], + [-26, -5], + [-29, 11], + [-53, 58], + [-105, 39], + [-98, 4], + [-43, 18], + [-46, 8], + [-26, 0], + [-26, -21], + [-77, -3], + [-86, 125], + [-12, 63], + [-70, 26], + [-124, 0], + [-7, 69], + [2, 9], + [27, 0], + [57, -37], + [82, 6], + [54, -12], + [91, 4], + [20, -9], + [17, 2], + [23, 18], + [31, 2], + [18, -7], + [16, -25], + [108, -9], + [65, 4], + [40, 20], + [51, 11], + [28, -2], + [26, -18], + [7, -32] + ], + [ + [128228, 50612], + [-26, -30], + [-110, 10], + [-58, 30], + [-109, 96], + [-19, 35], + [-7, 76], + [32, 25], + [33, 10], + [135, 0], + [264, -46], + [52, -35], + [-45, -40], + [-65, -20], + [-64, -30], + [-13, -81] + ], + [ + [146851, 37308], + [-7, -24], + [-60, -47], + [-38, 0], + [-23, 65], + [-30, 0], + [-15, 29], + [0, 24], + [31, 47], + [75, 35], + [45, 12], + [37, 0], + [76, 29], + [53, 35], + [0, -64], + [-68, -59], + [-45, -18], + [-31, -64] + ], + [ + [125944, 128265], + [-26, -31], + [0, -18], + [25, -23], + [8, -27], + [-33, -24], + [0, -27], + [-20, -9], + [-20, 9], + [-32, 45], + [-41, 31], + [-4, 25], + [-30, 28], + [0, 17], + [18, 18], + [16, 4], + [29, -14], + [52, 0], + [14, 27], + [20, 5], + [26, -19], + [-2, -17] + ], + [ + [128250, 115301], + [12, -4], + [45, 10], + [29, -25], + [19, -46], + [0, -19], + [-16, -15], + [-17, -7], + [-67, 24], + [-5, 56], + [-62, 34], + [-19, 20], + [9, 41], + [48, -4], + [24, -65] + ], + [ + [128918, 115051], + [-27, 2], + [-45, 37], + [26, 15], + [48, 2], + [98, -28], + [5, -15], + [-26, -9], + [-79, -4] + ], + [ + [44034, 385275], + [18, -11], + [93, 11], + [63, -16], + [9, -24], + [18, -7], + [19, -21], + [18, -38], + [24, -14], + [21, -65], + [2, -51], + [9, -23], + [37, -41], + [25, -85], + [72, 4], + [34, -47], + [85, 0], + [37, -7], + [20, -14], + [25, -26], + [30, -127], + [67, -79], + [46, -35], + [27, -55], + [2, -53], + [-31, -41], + [-6, -54], + [49, -48], + [23, -52], + [2, -32], + [-30, -65], + [8, -132], + [111, -24], + [22, -13], + [9, -26], + [-2, -19], + [-18, -21], + [-47, -36], + [-27, -33], + [9, -111], + [23, -51], + [25, -15], + [61, 35], + [15, 33], + [34, 12], + [41, -4], + [11, -19], + [7, -41], + [21, -24], + [11, -35], + [2, -38], + [-4, -37], + [-18, -22], + [-7, -30], + [43, -86], + [23, -162], + [-20, -191], + [-17, -57], + [-81, -155], + [22, -112], + [-77, -130], + [1, -138], + [-9, -19], + [-33, -21], + [-28, -3], + [-24, 8], + [-32, 0], + [-54, -26], + [-22, -34], + [18, -25], + [56, -1], + [43, -16], + [0, -49], + [25, -34], + [190, -179], + [27, -55], + [111, -66], + [111, -92], + [9, -26], + [-12, -91], + [-55, -43], + [-41, -15], + [-99, 22], + [-111, -59], + [-52, -44], + [-65, -114], + [-36, -97], + [-116, -172], + [-79, -148], + [-42, -137], + [-7, -43], + [18, -38], + [0, -30], + [-25, -64], + [-2, -61], + [-22, -61], + [4, -31], + [46, -38], + [7, -19], + [0, -66], + [-11, -33], + [-73, -58], + [0, -27], + [-33, -33], + [-7, -17], + [9, -63], + [-16, -10], + [-2, -117], + [-24, -107], + [36, -42], + [27, -12], + [52, 50], + [16, 28], + [0, 67], + [34, 58], + [89, 73], + [36, 50], + [13, 101], + [41, 63], + [31, 12], + [97, 0], + [17, 7], + [6, 36], + [178, 141], + [66, 65], + [31, 43], + [67, 45], + [34, 4], + [25, -19], + [2, -26], + [-4, -33], + [-38, -52], + [-14, -66], + [0, -122], + [3, -19], + [63, -22], + [14, -16], + [0, -21], + [-5, -22], + [-47, -23], + [-63, 14], + [13, 27], + [-27, -7], + [-54, -102], + [9, -24], + [48, -16], + [13, -17], + [9, -21], + [3, -61], + [-20, -36], + [-2, -68], + [-23, -33], + [-63, -52], + [-13, -62], + [-20, -40], + [-5, -84], + [32, -13], + [18, 17], + [13, 76], + [25, 47], + [91, 104], + [159, 137], + [76, 178], + [47, 156], + [54, 80], + [56, 50], + [13, 55], + [30, 63], + [-1, 33], + [-13, 14], + [6, 65], + [68, 38], + [93, 31], + [24, 16], + [39, 50], + [32, 18], + [1, 16], + [-24, 24], + [-3, 17], + [12, 26], + [-5, 24], + [-16, 4], + [-30, -20], + [-6, -46], + [-27, -21], + [-31, -5], + [-14, 17], + [-2, 40], + [58, 53], + [16, 79], + [20, 24], + [52, 21], + [32, -2], + [24, -29], + [-31, -66], + [-29, -12], + [-3, -37], + [23, -10], + [79, -9], + [22, -26], + [12, -41], + [25, -20], + [75, -22], + [128, 0], + [36, 30], + [47, 12], + [46, 52], + [31, 18], + [174, 40], + [214, 75], + [212, 17], + [40, 9], + [141, 0], + [62, 23], + [75, 6], + [59, -13], + [11, -10], + [2, -20], + [54, -30], + [181, -29], + [74, -4], + [37, -10], + [158, -5], + [146, -42], + [25, -10], + [25, -26], + [-6, -54], + [7, -19], + [81, -17], + [20, 2], + [25, 17], + [18, -2], + [86, -64], + [61, -35], + [38, -7], + [56, 30], + [21, 26], + [15, 54], + [19, 19], + [130, 94], + [34, 40], + [20, 4], + [56, -18], + [93, -64], + [174, -67], + [30, -16], + [42, -41], + [34, -18], + [61, -10], + [32, -24], + [-7, -75], + [-47, -87], + [0, -26], + [32, -62], + [7, -56], + [-47, -104], + [52, -87], + [-5, -27], + [-47, -51], + [-15, -41], + [27, -70], + [0, -63], + [19, -103], + [22, -23], + [6, -52], + [-31, -66], + [-45, -43], + [-9, -66], + [-29, -44], + [-18, -15], + [-49, -3], + [-30, -11], + [-70, -40], + [-51, -37], + [-7, -26], + [2, -30], + [32, -44], + [4, -26], + [25, -12], + [21, 8], + [4, 45], + [16, 19], + [-16, 30], + [-5, 47], + [23, 20], + [38, 16], + [10, -4], + [-10, -103], + [7, -215], + [-20, -89], + [3, -92], + [-119, -186], + [-32, -22], + [-210, -361], + [-82, -174], + [-13, -193], + [-16, -31], + [-34, -23], + [-38, -47], + [-81, -161], + [-238, -336], + [-27, -105], + [-65, -113], + [-33, -132], + [-13, -20], + [3, -125], + [-12, -204], + [-36, -57], + [-16, -51], + [-238, -280], + [-109, -67], + [-175, -184], + [-31, -15], + [-71, -169], + [-30, -150], + [-74, -212], + [0, -88], + [39, -56], + [40, -36], + [-6, -45], + [-52, -92], + [-15, -217], + [-16, -96], + [-20, -43], + [-21, -232], + [54, -391], + [14, -29], + [11, -73], + [23, -52], + [77, -104], + [50, -118], + [0, -36], + [-5, -42], + [-114, -106], + [-18, -40], + [-16, -111], + [-76, -113], + [9, -9], + [18, 14], + [52, 75], + [24, 56], + [11, 60], + [34, 77], + [50, 50], + [70, 17], + [49, -31], + [95, -90], + [115, -135], + [-6, -48], + [34, -96], + [0, -55], + [-16, -39], + [-113, -78], + [-53, -19], + [56, -4], + [137, 84], + [43, 41], + [12, 25], + [-3, 26], + [-45, 77], + [2, 15], + [28, 11], + [258, -87], + [72, -43], + [257, -68], + [189, -21], + [216, -58], + [141, -92], + [40, -48], + [42, -28], + [22, -1], + [113, -62], + [28, -28], + [9, -44], + [55, -50], + [24, -158], + [-38, -71], + [-84, -100], + [-99, -76], + [-37, -44], + [-5, -62], + [-21, -15], + [-67, -37], + [-132, -38], + [-152, -59], + [-66, -14], + [-2, -13], + [17, -8], + [72, 17], + [32, -8], + [14, -22], + [-9, -21], + [7, -11], + [139, -15], + [215, 21], + [60, -3], + [71, -19], + [74, 44], + [96, 30], + [92, -4], + [43, -10], + [80, -73], + [29, -38], + [4, -64], + [-7, -24], + [-74, -70], + [1, -21], + [34, -27], + [29, -11], + [41, 4], + [135, 74], + [72, 12], + [49, -1], + [79, -44], + [34, -61], + [60, -61], + [-8, -22], + [-36, -41], + [-68, -48], + [-39, -39], + [0, -18], + [18, -17], + [34, -11], + [74, -13], + [85, -4], + [149, 16], + [19, 4], + [53, 42], + [43, 10], + [22, -7], + [32, -29], + [89, -42], + [24, -9], + [33, 5], + [22, 19], + [8, 21], + [142, 47], + [82, 56], + [13, 13], + [-3, 52], + [17, 29], + [36, 19], + [85, 26], + [103, -6], + [64, 12], + [45, 0], + [26, -13], + [36, -35], + [46, -11], + [40, -23], + [5, -23], + [-11, -13], + [35, -35], + [110, -2], + [35, -17], + [24, -25], + [10, -30], + [-3, -77], + [-3, -24], + [-57, -83], + [-29, -15], + [-53, -5], + [-29, -21], + [0, -56], + [-18, -40], + [-80, -58], + [-120, -56], + [-24, -2], + [-44, 13], + [-54, 47], + [-47, -4], + [-19, -20], + [5, -55], + [-15, -12], + [-24, -1], + [-46, 21], + [-21, -4], + [-5, -12], + [-1, -72], + [49, -44], + [7, -33], + [19, -20], + [2, -58], + [-14, -33], + [-17, -9], + [-75, -3], + [-14, -14], + [23, -34], + [-22, -39], + [54, -74], + [0, -23], + [-18, -38], + [1, -47], + [30, -45], + [-7, -24], + [-77, -34], + [-8, -90], + [34, -59], + [19, -10], + [43, 6], + [41, 18], + [32, -7], + [19, -15], + [5, -19], + [-38, -44], + [-1, -19], + [13, -27], + [115, -26], + [77, -32], + [21, -16], + [5, -43], + [-24, -17], + [-9, -73], + [-13, -15], + [-60, -26], + [-118, -4], + [-47, 10], + [-7, 12], + [-91, 12], + [-137, 51], + [-59, 4], + [-2, -5], + [-48, -3], + [-36, 20], + [-87, 1], + [-33, 14], + [-29, -18], + [-60, 0], + [-34, 14], + [-10, 17], + [-77, 21], + [-113, -11], + [-123, -60], + [-39, 5], + [-19, 24], + [-1, 23], + [-23, 20], + [-30, -33], + [-9, -22], + [82, -128], + [9, -34], + [-9, -16], + [-63, -47], + [-128, -41], + [-88, -53], + [-55, 7], + [-55, 28], + [-84, 19], + [-80, 4], + [-53, 14], + [-99, 48], + [-36, 28], + [-19, 54], + [9, 54], + [38, 91], + [-20, 25], + [-55, 42], + [-22, 5], + [-62, -33], + [-42, -5], + [-67, 25], + [-67, 49], + [-58, 129], + [5, 136], + [8, 33], + [34, 56], + [-5, 26], + [-29, 26], + [-5, 39], + [-21, 31], + [-27, -51], + [-48, -28], + [-70, -64], + [-55, -37], + [-73, -1], + [-82, 68], + [-29, 45], + [1, 81], + [45, 71], + [1, 35], + [-7, 19], + [-48, 26], + [-29, 37], + [-58, -16], + [-22, -18], + [-55, -70], + [-11, -36], + [-45, -60], + [-44, -12], + [-87, 9], + [-137, 60], + [-63, 54], + [-19, 26], + [-2, 43], + [2, 34], + [16, 43], + [-5, 34], + [-82, 20], + [-32, 19], + [-36, 32], + [-38, 54], + [0, 26], + [15, 21], + [60, 29], + [58, 53], + [-7, 8], + [-51, 31], + [-26, 4], + [-12, -6], + [0, -16], + [17, -28], + [-13, -15], + [-53, -31], + [-44, -14], + [-53, 0], + [-42, 32], + [-22, -13], + [8, -28], + [81, -45], + [50, -53], + [14, -49], + [2, -71], + [22, -25], + [17, -44], + [5, -67], + [49, -99], + [-5, -52], + [-25, -20], + [-57, 21], + [-66, 88], + [-63, 47], + [-31, 20], + [-58, 4], + [-92, -45], + [-7, -13], + [15, -4], + [82, 8], + [54, -17], + [6, -16], + [-1, -47], + [-45, -72], + [-27, -67], + [-78, -62], + [-125, -19], + [-15, -14], + [75, -13], + [139, -69], + [83, 2], + [91, -14], + [80, 26], + [65, 5], + [33, -10], + [17, -13], + [10, -34], + [-42, -52], + [-2, -33], + [-29, -27], + [-4, -69], + [-13, -15], + [-5, -50], + [-56, -55], + [-43, -4], + [-49, -36], + [-77, -2], + [-52, 14], + [-41, -4], + [-36, -21], + [-32, -7], + [-62, -2], + [-37, 11], + [-19, 20], + [-21, -3], + [-47, -32], + [-29, -7], + [-7, -12], + [16, -67], + [-4, -28], + [-53, -102], + [-3, -37], + [65, -12], + [76, -24], + [28, 0], + [12, 23], + [26, 22], + [60, 18], + [34, -2], + [75, -23], + [87, 0], + [19, -10], + [12, -32], + [34, -13], + [70, 0], + [45, -21], + [8, -64], + [-44, -78], + [-49, -54], + [-29, -8], + [-52, 3], + [-47, 21], + [-25, 0], + [-39, -19], + [-73, 3], + [-34, -19], + [-5, -32], + [30, -17], + [84, -14], + [50, -18], + [70, -46], + [21, -26], + [32, -20], + [45, -61], + [5, -19], + [99, 37], + [5, 75], + [30, 56], + [62, 35], + [58, 15], + [13, 31], + [50, 60], + [84, 29], + [56, -1], + [78, -10], + [86, -33], + [19, -16], + [50, -77], + [89, -50], + [8, -18], + [-1, -19], + [-11, -8], + [5, -16], + [30, -9], + [64, 2], + [60, -11], + [12, -35], + [-37, -20], + [-2, -11], + [9, -9], + [51, -16], + [31, -26], + [0, -30], + [-15, -5], + [-7, -18], + [-186, -71], + [-65, -42], + [-39, -37], + [-4, -17], + [10, -16], + [30, -6], + [73, 13], + [33, -9], + [61, -27], + [26, -20], + [36, -66], + [-9, -27], + [-65, -65], + [-6, -42], + [122, -76], + [83, -81], + [28, -17], + [61, -15], + [39, 3], + [11, 18], + [65, 40], + [75, -5], + [97, -47], + [106, 4], + [89, 21], + [12, 18], + [-2, 20], + [-36, 30], + [-15, 47], + [17, 23], + [119, 63], + [-31, 68], + [0, 50], + [48, 49], + [64, -6], + [45, 22], + [29, 23], + [-5, 75], + [15, 19], + [55, 26], + [48, 49], + [97, 37], + [140, 15], + [41, -24], + [36, -4], + [12, 8], + [70, 0], + [38, -27], + [1, -34], + [-29, -18], + [-12, -42], + [-87, -72], + [-15, -74], + [-3, -129], + [52, -90], + [-7, -53], + [-16, -11], + [0, -19], + [30, -72], + [31, -30], + [85, -58], + [105, -104], + [20, -45], + [-42, -42], + [-161, -31], + [-68, 3], + [-43, -28], + [-32, -7], + [-50, 7], + [-37, 19], + [-28, 24], + [-12, 38], + [-17, 15], + [-151, -25], + [-39, -16], + [-16, -30], + [-23, -11], + [-80, -8], + [-53, -17], + [-27, -17], + [-55, -13], + [-113, 7], + [-152, -30], + [-119, 4], + [-62, 14], + [-97, -29], + [-77, -1], + [-65, -39], + [-118, -30], + [-46, -4], + [-120, 6], + [-68, 77], + [-24, 11], + [-14, -14], + [-10, -64], + [-44, -66], + [-71, -55], + [-35, -14], + [-39, 1], + [-62, 45], + [-27, 12], + [-15, -5], + [-2, -163], + [31, -10], + [12, -38], + [-17, -82], + [-30, -52], + [-9, -37], + [-1, -28], + [25, -22], + [19, 5], + [13, 24], + [40, 8], + [27, -5], + [24, 17], + [17, 37], + [58, 13], + [27, -2], + [31, 11], + [168, 105], + [111, 17], + [44, 43], + [46, 23], + [155, 4], + [67, -16], + [5, 16], + [22, 8], + [36, -9], + [38, -23], + [44, -52], + [0, -15], + [-28, -10], + [-8, -11], + [88, -41], + [61, -41], + [71, -16], + [105, -66], + [9, -25], + [-36, -42], + [-1, -58], + [-17, -23], + [-53, -8], + [-44, 3], + [-34, -36], + [-2, -194], + [-56, -88], + [-50, -16], + [-41, -1], + [-84, -43], + [-81, -85], + [-5, -22], + [-28, -22], + [-264, -102], + [-58, -4], + [-89, 14], + [-134, 88], + [-15, 21], + [0, 28], + [24, 27], + [55, 24], + [-37, 49], + [-7, 50], + [38, 18], + [10, 17], + [-18, 38], + [-54, 10], + [-34, -11], + [-48, -47], + [-97, -47], + [-80, -55], + [-215, -95], + [-68, -10], + [-24, -11], + [-60, -59], + [-20, -33], + [-134, -78], + [-69, -13], + [-92, 3], + [-44, 13], + [-45, 24], + [-66, 78], + [-3, 49], + [18, 35], + [-17, 16], + [-6, 28], + [30, 28], + [10, 39], + [-61, 61], + [-2, 52], + [27, 45], + [34, 34], + [33, 12], + [140, 14], + [68, 17], + [34, 80], + [31, 41], + [82, 71], + [15, 28], + [12, 64], + [-11, 24], + [-99, 71], + [-45, 51], + [14, 32], + [55, 69], + [1, 65], + [-19, 51], + [2, 80], + [148, 153], + [-2, 16], + [-73, 5], + [-62, 33], + [-38, 4], + [-99, -28], + [-20, 1], + [-49, 11], + [-54, 29], + [-77, 2], + [-56, -30], + [-51, -6], + [-7, -29], + [-32, -22], + [-36, 1], + [-17, 18], + [0, 20], + [-10, 5], + [-33, -2], + [-10, -9], + [-16, -69], + [-52, -27], + [-87, -9], + [-60, -65], + [0, -43], + [19, -44], + [41, -7], + [92, 36], + [60, -4], + [44, -12], + [14, -13], + [-7, -26], + [-142, -45], + [-17, -25], + [-14, -138], + [-52, -168], + [-4, -78], + [-65, -95], + [-44, -37], + [-31, -17], + [-24, -2], + [-27, -21], + [-2, -22], + [15, -19], + [54, -41], + [12, -31], + [-4, -30], + [-288, -65], + [-80, -37], + [7, -26], + [56, -9], + [38, -30], + [10, -39], + [51, -59], + [7, -28], + [4, -66], + [-50, -48], + [-56, -15], + [-22, -39], + [68, -71], + [21, -5], + [55, -34], + [60, 15], + [45, 44], + [60, 18], + [55, 41], + [34, 10], + [7, 23], + [22, 9], + [48, -5], + [101, -48], + [22, -16], + [63, -80], + [12, -50], + [48, -53], + [28, -50], + [24, -18], + [22, -43], + [35, -41], + [8, -65], + [-13, -27], + [-4, -46], + [-17, -50], + [-42, -22], + [-38, -3], + [-26, 9], + [-82, 56], + [-44, 20], + [-54, 16], + [-71, -5], + [-77, -48], + [-65, -26], + [-39, -8], + [-48, -24], + [-63, -14], + [-46, -25], + [-13, -18], + [5, -17], + [44, -22], + [32, -43], + [-10, -68], + [-74, -32], + [-50, -40], + [-30, -48], + [-42, -9], + [-35, -27], + [-59, 8], + [-5, 17], + [-58, 58], + [-116, 36], + [-32, -12], + [23, -29], + [23, -8], + [-4, -34], + [-56, -41], + [-31, -4], + [-37, 12], + [-57, 62], + [-31, 19], + [-13, -9], + [-3, -41], + [13, -17], + [86, -56], + [5, -68], + [-17, -64], + [28, -83], + [-7, -72], + [-27, -83], + [-53, -44], + [-13, -106], + [-21, -47], + [-88, -99], + [-40, -13], + [-18, -25], + [-50, -10], + [-10, -12], + [1, -17], + [43, -34], + [19, -52], + [19, -18], + [37, -10], + [59, 5], + [73, -24], + [22, -26], + [-1, -29], + [-39, -67], + [-124, -81], + [-23, -27], + [-3, -43], + [50, -65], + [8, -24], + [31, -28], + [7, -43], + [33, -47], + [2, -51], + [-21, -59], + [65, -77], + [9, -18], + [0, -54], + [-37, -75], + [-60, -61], + [-33, -12], + [-75, -6], + [-50, 53], + [-30, -24], + [-29, -57], + [-5, -57], + [-20, -65], + [-24, -22], + [-21, -87], + [2, -17], + [77, -81], + [16, -27], + [30, 3], + [9, 79], + [36, 64], + [27, 24], + [102, 56], + [41, 16], + [98, 15], + [47, 0], + [156, -44], + [77, -38], + [60, -75], + [31, -15], + [92, -76], + [19, -33], + [3, -85], + [-20, -19], + [-22, 2], + [-36, 31], + [-9, -13], + [12, -64], + [14, -28], + [22, -5], + [0, 25], + [38, 4], + [24, -13], + [32, -89], + [28, -35], + [-3, -255], + [-25, -16], + [-36, -65], + [5, -76], + [-12, -73], + [-17, -36], + [-64, -57], + [7, -31], + [24, -25], + [27, -50], + [5, -39], + [48, -50], + [12, -63], + [-22, -19], + [-3, -69], + [-46, -65], + [26, -26], + [2, -19], + [37, -49], + [35, -158], + [-31, -55], + [-41, -46], + [-32, -151], + [15, -5], + [11, -14], + [-2, -35], + [-28, -15], + [-67, -13], + [-64, -57], + [-26, -10], + [-36, -31], + [6, -33], + [44, 13], + [104, 6], + [52, 32], + [28, 0], + [29, -12], + [64, -59], + [6, -49], + [41, -37], + [58, -74], + [-1, -170], + [-29, -97], + [-129, -192], + [-80, -70], + [-112, -56], + [10, -10], + [50, -6], + [50, 11], + [107, 0], + [32, -13], + [18, -18], + [-3, -113], + [-15, -48], + [21, -51], + [0, -25], + [-16, -15], + [-35, -128], + [-19, -183], + [-37, -162], + [-34, -60], + [-31, -34], + [23, -24], + [0, -13], + [-48, -27], + [-45, -4], + [-15, -47], + [-14, -16], + [10, -13], + [35, -16], + [65, 2], + [63, -20], + [33, -34], + [5, -21], + [-18, -165], + [10, -128], + [7, -29], + [34, -46], + [13, -71], + [-4, -87], + [35, -110], + [15, -107], + [57, -101], + [-5, -184], + [-52, -92], + [-34, -186], + [-90, -256], + [-46, -226], + [-28, -57], + [-86, -118], + [-22, -20], + [-85, -176], + [-110, -141], + [-2, -32], + [-51, -169], + [-63, -129], + [-3, -56], + [-133, -134], + [-39, -55], + [-17, -118], + [-12, -21], + [-22, -13], + [-45, -2], + [-9, -19], + [1, -38], + [-52, -94], + [-16, -60], + [16, -33], + [5, -39], + [-49, -83], + [-337, -444], + [-158, -167], + [-41, -60], + [-216, -141], + [-130, -64], + [-111, -36], + [-183, -42], + [-145, 0], + [-106, 14], + [-78, -4], + [-93, 76], + [-133, 73], + [-143, 41], + [-105, 0], + [0, -15], + [23, -12], + [88, -7], + [80, -20], + [76, -58], + [51, -88], + [0, -58], + [-19, -20], + [-54, 0], + [-60, 15], + [-406, 187], + [-57, 12], + [-38, 25], + [-244, 28], + [-426, 161], + [-174, 26], + [-172, 37], + [-47, -10], + [16, -32], + [54, -29], + [155, -61], + [165, -39], + [83, -31], + [248, -119], + [142, -57], + [60, -14], + [61, -5], + [114, 17], + [70, 3], + [66, -7], + [67, -27], + [35, -27], + [38, -119], + [0, -37], + [-12, -39], + [-32, -39], + [-38, -41], + [-89, -67], + [-110, -136], + [-64, -42], + [-129, -54], + [-260, -13], + [-67, -19], + [-56, -5], + [-39, 5], + [-44, -22], + [-91, -88], + [-76, -125], + [-38, -107], + [-13, -88], + [26, -15], + [47, 12], + [107, 189], + [79, 97], + [168, 108], + [86, 15], + [171, 0], + [104, 20], + [86, 44], + [205, 195], + [118, 73], + [285, 133], + [152, 95], + [39, 4], + [168, -36], + [58, 8], + [48, 19], + [54, 10], + [197, 2], + [105, 47], + [175, 15], + [78, 16], + [83, 33], + [57, 37], + [65, 98], + [55, 60], + [47, 91], + [-7, 4], + [0, 29], + [78, 68], + [70, 46], + [180, 176], + [30, 12], + [48, 6], + [80, 42], + [135, 168], + [-10, 124], + [22, 41], + [10, 168], + [25, 48], + [80, 140], + [70, 75], + [90, 122], + [15, 27], + [0, 29], + [15, 40], + [23, 34], + [87, 86], + [10, 21], + [42, 38], + [61, 34], + [95, 149], + [27, 120], + [40, 41], + [-10, 195], + [29, 35], + [13, 67], + [25, 37], + [43, 98], + [22, 30], + [80, 56], + [75, 15], + [66, 64], + [90, 162], + [16, 65], + [-19, 50], + [-61, 36], + [-12, 25], + [-31, 26], + [-27, 7], + [-15, 27], + [0, 41], + [14, 48], + [-7, 73], + [72, 194], + [-16, 152], + [11, 78], + [18, 27], + [-13, 33], + [-1, 35], + [37, 117], + [-7, 27], + [7, 84], + [63, 102], + [12, 41], + [28, 34], + [10, 101], + [34, 3], + [-19, 6], + [-66, 59], + [-17, 90], + [10, 27], + [15, 14], + [95, -10], + [15, 2], + [10, 23], + [-103, 2], + [-31, 17], + [-6, 21], + [-21, -1], + [-17, 21], + [-21, 48], + [0, 134], + [-10, 100], + [10, 132], + [87, 185], + [2, 123], + [25, 24], + [-8, 182], + [-60, 63], + [-28, 46], + [-3, 120], + [30, 50], + [12, 6], + [6, 34], + [-21, 13], + [-2, 21], + [13, 56], + [44, 98], + [20, 134], + [32, 82], + [-2, 65], + [60, 64], + [0, 23], + [40, 71], + [32, 89], + [46, 68], + [32, 106], + [90, 149], + [44, 147], + [55, 68], + [6, 29], + [22, 27], + [190, 162], + [153, 105], + [48, 97], + [22, 216], + [125, 155], + [33, 56], + [15, 12], + [31, 3], + [24, 25], + [-1, 39], + [38, 33], + [32, 7], + [5, 103], + [48, 53], + [81, 29], + [132, -2], + [46, -10], + [12, -19], + [151, 4], + [28, -25], + [35, -14], + [90, 2], + [35, -7], + [55, 43], + [10, 30], + [23, 27], + [160, 72], + [33, 50], + [25, 18], + [47, 8], + [43, -2], + [141, -29], + [30, 23], + [-20, 36], + [-28, 9], + [-12, 15], + [2, 27], + [53, 42], + [40, 11], + [58, 0], + [37, -14], + [18, -21], + [40, 11], + [42, 26], + [46, 42], + [15, 27], + [-13, 60], + [22, 31], + [98, 27], + [31, 45], + [55, -2], + [100, -85], + [81, -46], + [105, 4], + [101, 54], + [84, 17], + [63, 55], + [63, -12], + [118, -44], + [281, -29], + [139, -40], + [42, -4], + [48, -17], + [148, -89], + [83, -12], + [141, -34], + [37, 8], + [53, 31], + [25, -2], + [10, -11], + [108, -28], + [15, -19], + [3, -44], + [25, -39], + [-32, -17], + [-46, -1], + [-75, -27], + [-47, -40], + [-75, -157], + [13, -88], + [29, -45], + [100, -94], + [144, -91], + [73, -10], + [53, -25], + [28, -31], + [20, -32], + [7, -37], + [-25, -60], + [18, -189], + [20, -6], + [0, -39], + [-27, -72], + [53, -36], + [5, -16], + [-7, -23], + [-34, -5], + [-13, -75], + [-19, -14], + [-24, -78], + [-51, -48], + [-9, -83], + [-33, -47], + [-23, -8], + [-62, -128], + [7, -79], + [31, -32], + [-3, -19], + [-32, -49], + [-5, -29], + [-30, -58], + [-18, -17], + [-53, -17], + [-47, -113], + [-5, -73], + [8, -18], + [60, -61], + [91, 13], + [55, -7], + [15, -20], + [-10, -26], + [-23, -12], + [-12, -39], + [15, -23], + [41, -29], + [67, -17], + [35, 10], + [3, 26], + [25, 18], + [55, 8], + [20, -10], + [-5, -25], + [-20, -25], + [15, -52], + [-5, -29], + [-30, -25], + [-20, 0], + [-55, 34], + [-33, 12], + [-40, 0], + [-60, -41], + [-23, -23], + [-19, -43], + [-18, -13], + [-70, 38], + [-53, -6], + [-103, -50], + [-160, -99], + [-66, -50], + [-47, -138], + [-23, -92], + [-4, -56], + [13, -60], + [32, -41], + [133, -28], + [55, -35], + [29, -38], + [16, -106], + [38, -83], + [46, -20], + [80, 12], + [197, -105], + [62, -13], + [50, -25], + [76, -6], + [22, -15], + [-7, -27], + [-50, -14], + [-78, -44], + [-26, -2], + [-50, -28], + [-23, -142], + [9, -136], + [33, -23], + [40, -52], + [8, -48], + [-5, -25], + [-43, -33], + [-18, -5], + [-31, -60], + [35, -100], + [67, -40], + [5, -19], + [-2, -39], + [-47, -45], + [5, -100], + [-10, -23], + [-32, -26], + [-21, -34], + [1, -115], + [39, -59], + [-7, -124], + [-54, -47], + [-38, -105], + [-10, -62], + [-53, -39], + [-47, -50], + [-20, -29], + [-5, -33], + [21, -176], + [39, -41], + [34, -12], + [19, 13], + [35, 2], + [28, -14], + [8, -44], + [43, -64], + [-5, -31], + [-33, -31], + [-37, -125], + [-39, -51], + [-27, -19], + [-50, -25], + [-25, -4], + [-27, 10], + [-23, 23], + [-55, 9], + [-78, 2], + [-30, 9], + [-74, -54], + [-1, -140], + [-5, -32], + [-39, -69], + [-8, -126], + [40, -15], + [15, -35], + [53, -54], + [18, -31], + [-36, -60], + [-60, -19], + [-110, -74], + [-91, -36], + [-19, -39], + [8, -82], + [31, -80], + [26, -29], + [8, -22], + [-70, -98], + [-60, -60], + [-21, -6], + [-72, -75], + [-12, -29], + [3, -53], + [17, -5], + [6, -61], + [92, -59], + [53, -58], + [32, -65], + [-39, -141], + [-60, -65], + [-39, -30], + [-60, -23], + [-42, -46], + [1, -154], + [-9, -19], + [4, -11], + [46, -35], + [0, -100], + [-83, -153], + [-84, -100], + [-15, -30], + [0, -116], + [54, -52], + [15, -56], + [0, -20], + [-27, -34], + [-18, -8], + [-24, -45], + [27, -25], + [5, -19], + [-7, -23], + [-47, -17], + [-116, -128], + [0, -55], + [20, -54], + [-2, -64], + [-15, -28], + [-53, -72], + [-30, -21], + [-70, -20], + [-25, -54], + [18, -69], + [-3, -42], + [5, -18], + [31, -33], + [-3, -17], + [-32, -22], + [-91, -27], + [-47, -50], + [5, -60], + [28, -52], + [20, -8], + [15, -37], + [0, -52], + [28, -27], + [5, -15], + [0, -31], + [-10, -19], + [-14, -7], + [-36, -68], + [-10, -49], + [46, -108], + [64, -56], + [16, -25], + [23, -83], + [-13, -58], + [-35, -84], + [-2, -46], + [15, -102], + [-135, -188], + [-29, -7], + [-19, -61], + [-80, -56], + [-19, -4], + [-19, -61], + [-45, -29], + [-8, -36], + [10, -56], + [69, -109], + [61, -37], + [30, -29], + [10, -46], + [-20, -52], + [0, -28], + [13, -36], + [-5, -21], + [-20, -24], + [5, -38], + [-8, -24], + [-32, -38], + [-10, -33], + [-132, -87], + [-61, -93], + [-47, -35], + [-42, -14], + [-18, -17], + [-15, -48], + [3, -29], + [24, -40], + [3, -45], + [15, -21], + [48, -29], + [14, -18], + [1, -135], + [-23, -53], + [-132, -27], + [-13, -34], + [18, -88], + [15, 13], + [63, -16], + [28, -23], + [10, -25], + [12, -69], + [-5, -61], + [18, -48], + [-16, -65], + [26, -128], + [0, -106], + [-79, -122], + [-5, -41], + [-13, -17], + [-80, -54], + [-67, -79], + [-68, -41], + [-34, -2], + [-80, -91], + [-15, -82], + [53, -112], + [59, -73], + [0, -27], + [-17, -25], + [0, -25], + [-28, -41], + [-7, -30], + [-23, -26], + [-24, -23], + [-17, 0], + [-102, -71], + [-32, -26], + [-17, -30], + [-35, -126], + [5, -91], + [30, -75], + [-2, -20], + [-28, -20], + [-4, -124], + [15, -36], + [-51, -119], + [-42, -37], + [-42, -15], + [-71, -66], + [-52, -22], + [-2, -69], + [15, -29], + [55, -54], + [-22, -147], + [8, -136], + [-106, -106], + [-39, -17], + [-31, -35], + [5, -71], + [8, -16], + [33, -23], + [2, -37], + [58, -27], + [38, -50], + [12, -31], + [3, -40], + [45, -49], + [20, -61], + [-2, -55], + [8, -21], + [22, -13], + [5, -23], + [-7, -93], + [23, -93], + [-46, -36], + [-3, -26], + [-54, -106], + [-83, -118], + [-25, -83], + [-1, -54], + [-18, -19], + [-28, -10], + [-40, -2], + [-68, 60], + [-6, 36], + [-44, 36], + [-40, 1], + [-33, 11], + [-27, 24], + [-31, 13], + [-12, 29], + [5, 11], + [22, 9], + [5, 21], + [-17, 44], + [-58, 44], + [-72, 81], + [-94, 55], + [-65, 69], + [-78, 62], + [-24, 31], + [-29, 7], + [-15, 42], + [-3, 76], + [-35, 33], + [-5, 60], + [-15, 31], + [-70, 17], + [-15, -43], + [-36, -13], + [-67, 9], + [-45, -37], + [-28, -11], + [-40, 7], + [-22, -48], + [7, -29], + [15, -9], + [8, -19], + [-10, -20], + [-35, -14], + [-8, -48], + [-2, -260], + [26, -45], + [17, -75], + [0, -64], + [64, -117], + [23, -71], + [0, -54], + [32, -55], + [5, -91], + [-4, -43], + [-17, -16], + [1, -99], + [32, -100], + [42, -61], + [35, -83], + [5, -62], + [-70, -64], + [-32, -19], + [-56, -12], + [-105, -16], + [-271, 2], + [-65, 35], + [-90, 25], + [-35, 51], + [-54, 30], + [-60, 0], + [-35, 17], + [-17, 23], + [22, 43], + [-7, 36], + [-45, 23], + [-22, 3], + [-85, 66], + [-19, -5], + [-38, 6], + [-28, 19], + [-22, 25], + [-13, 31], + [-2, 60], + [-50, 73], + [-66, -11], + [-23, -31], + [-30, 0], + [-22, 46], + [-111, -29], + [-11, -186], + [-18, -32], + [-45, -10], + [-73, 21], + [-32, 23], + [-33, 64], + [2, 83], + [-20, 11], + [-90, -15], + [-55, -20], + [-56, 19], + [-132, 13], + [-36, -7], + [-37, 14], + [-46, 39], + [-2, 42], + [-72, 75], + [-8, 147], + [-61, 89], + [-54, 129], + [-115, 58], + [-99, -6], + [-84, -30], + [-15, -49], + [-42, -26], + [-68, -23], + [-24, -1], + [-6, -25], + [-13, -5], + [-14, -23], + [15, -31], + [8, -191], + [12, -10], + [13, -44], + [-5, -27], + [-20, -14], + [0, -19], + [-61, -53], + [4, -29], + [-23, -25], + [31, -42], + [3, -21], + [-129, -83], + [-54, 0], + [-252, 264], + [-61, 112], + [-17, -7], + [-11, 70], + [8, 35], + [54, 39], + [5, 17], + [-12, 21], + [-108, 80], + [-35, 34], + [-43, 26], + [-96, 94], + [-88, 39], + [-115, 1], + [-55, 45], + [-63, 22], + [-13, -7], + [3, -18], + [55, -55], + [-22, -32], + [13, -19], + [82, -30], + [33, -29], + [128, -66], + [53, -63], + [7, -45], + [-17, -12], + [-344, -19], + [-165, -24], + [-90, 2], + [-16, 21], + [-22, -2], + [-98, -35], + [-20, -14], + [-72, -21], + [-25, -13], + [-11, -18], + [23, -19], + [45, 0], + [203, 29], + [98, 6], + [48, -4], + [150, 10], + [316, -9], + [78, -17], + [36, -15], + [37, -59], + [0, -86], + [35, -51], + [-2, -38], + [-25, -17], + [-40, -6], + [-15, 29], + [4, 40], + [-22, 8], + [-10, 15], + [7, 64], + [-22, 8], + [-30, 0], + [-163, -62], + [-125, -93], + [-28, -58], + [0, -79], + [-12, -68], + [-40, -64], + [-31, -25], + [0, -25], + [99, -103], + [-2, -40], + [11, -40], + [29, -22], + [18, -96], + [25, -58], + [4, -172], + [22, -10], + [15, -27], + [20, -79], + [-2, -22], + [-85, -86], + [-22, -71], + [-108, -60], + [2, -96], + [-10, -21], + [-15, -8], + [-15, 2], + [-20, 23], + [-5, -7], + [-10, -62], + [30, -43], + [0, -21], + [-17, -24], + [1, -106], + [69, -106], + [59, -41], + [49, 43], + [33, -11], + [67, -41], + [84, -10], + [40, -3], + [90, 24], + [30, -11], + [50, -5], + [107, 0], + [57, -95], + [-3, -31], + [-16, -15], + [-47, 18], + [-34, 0], + [-23, -29], + [-14, -59], + [-19, -15], + [-91, 2], + [-97, -10], + [-53, -26], + [-20, -26], + [-10, -54], + [-27, -8], + [-207, -21], + [-33, -10], + [-81, 2], + [-5, 29], + [-15, -1], + [-106, -48], + [-41, -41], + [-66, -8], + [-39, 49], + [-22, -6], + [-97, 13], + [-120, 82], + [-71, 23], + [-50, 54], + [-23, 3], + [-43, -29], + [-51, -59], + [-3, -62], + [14, -116], + [-27, -33], + [-47, -23], + [-53, -14], + [-42, 5], + [-90, -28], + [-55, -62], + [-67, -20], + [-120, 38], + [-42, 35], + [-47, -45], + [-30, -59], + [-38, -130], + [-107, -61], + [-10, -18], + [17, -20], + [-6, -19], + [184, -90], + [56, -46], + [17, -29], + [7, -46], + [-33, -29], + [-71, -33], + [-10, -23], + [10, -47], + [-6, -23], + [-120, -51], + [-27, -47], + [-27, -77], + [-29, -10], + [-50, 7], + [-38, 18], + [-14, 26], + [-148, 21], + [-25, -6], + [-57, 2], + [-117, 44], + [-294, 79], + [-120, 8], + [-31, 15], + [-127, -15], + [-67, 15], + [-33, 18], + [-231, -5], + [-60, 10], + [-40, 20], + [-104, 5], + [0, -25], + [-80, -57], + [7, -14], + [57, 21], + [33, 1], + [37, -21], + [14, -23], + [0, -42], + [-16, -10], + [-46, -96], + [-32, -126], + [11, -48], + [-3, -72], + [-27, -34], + [-10, -28], + [-3, -67], + [-9, -20], + [74, -69], + [61, -12], + [66, -64], + [39, -18], + [3, -31], + [-37, -5], + [-30, -23], + [11, -31], + [26, -15], + [27, 15], + [23, 26], + [30, -11], + [31, -56], + [-3, -52], + [-27, -23], + [-47, -23], + [-16, -23], + [36, -15], + [14, -50], + [-30, -67], + [0, -85], + [14, -64], + [-9, -22], + [237, -311], + [10, 4], + [10, 51], + [13, 23], + [30, 10], + [44, 1], + [56, -8], + [31, -33], + [-21, -36], + [11, -18], + [70, -26], + [27, 23], + [27, 0], + [20, -18], + [6, -28], + [-6, -34], + [-94, -41], + [-33, -2], + [-6, -72], + [15, -77], + [115, -141], + [10, -7], + [63, 13], + [62, 54], + [60, 112], + [7, 99], + [30, 7], + [5, 22], + [30, 11], + [87, -8], + [107, 6], + [40, 15], + [53, 44], + [27, 38], + [10, 132], + [-27, 59], + [-81, 123], + [-7, 29], + [17, 28], + [87, 42], + [17, 41], + [46, 69], + [40, 16], + [24, 0], + [26, -13], + [4, -75], + [37, -53], + [23, -21], + [34, -2], + [33, -13], + [44, -32], + [24, -76], + [0, -135], + [-20, -121], + [3, -41], + [7, -33], + [31, -49], + [16, 2], + [13, 47], + [54, 15], + [7, 11], + [-54, 56], + [-17, 64], + [0, 42], + [90, 139], + [-7, 57], + [-27, 38], + [0, 42], + [76, 134], + [-33, 38], + [3, 116], + [33, 54], + [37, 13], + [43, 0], + [10, -12], + [64, -23], + [154, -163], + [31, -95], + [-7, -108], + [20, -106], + [1, -54], + [24, -77], + [-4, -44], + [-30, -26], + [-87, -39], + [-3, -41], + [37, -41], + [40, -10], + [50, 3], + [37, -13], + [94, -108], + [7, -47], + [30, -33], + [74, -131], + [94, -137], + [37, -46], + [36, -13], + [20, 8], + [-20, 69], + [0, 46], + [-37, 50], + [-20, 48], + [-7, 178], + [16, 82], + [-3, 42], + [-67, 121], + [-30, 92], + [-41, 55], + [-47, 90], + [-20, 105], + [3, 101], + [17, 49], + [23, 23], + [150, 88], + [60, 10], + [57, 0], + [91, -23], + [49, -2], + [34, 28], + [17, 36], + [53, 23], + [50, 11], + [127, 68], + [-20, 7], + [-20, 38], + [-30, 34], + [-41, 164], + [0, 68], + [57, 46], + [6, 49], + [-57, 62], + [-33, 61], + [-40, 39], + [-37, 0], + [-27, -15], + [-47, -8], + [-74, 18], + [-80, 5], + [-23, 20], + [-4, 18], + [17, 44], + [-10, 26], + [-34, 13], + [-77, 77], + [-3, 41], + [23, 33], + [87, 19], + [117, 0], + [24, -18], + [36, 0], + [70, 59], + [51, 29], + [100, 18], + [153, -8], + [18, -6], + [60, -41], + [45, -102], + [32, 0], + [77, -31], + [54, -51], + [94, -180], + [26, -106], + [1, -39], + [20, -41], + [63, -74], + [4, -70], + [13, -34], + [41, -25], + [103, 8], + [97, 23], + [130, -2], + [51, 34], + [36, 38], + [0, 26], + [-7, 28], + [-43, 59], + [-11, 122], + [-33, 15], + [-27, 25], + [-40, 60], + [-34, 28], + [-44, 77], + [0, 31], + [21, 28], + [27, 4], + [23, 38], + [70, 26], + [287, 39], + [54, -3], + [67, -32], + [259, 21], + [65, -11], + [84, 20], + [76, 44], + [39, 43], + [32, 13], + [10, 22], + [43, 43], + [47, 29], + [200, 16], + [65, 26], + [68, 12], + [8, 13], + [29, 13], + [124, 11], + [40, 18], + [77, 108], + [3, 106], + [-40, 67], + [-34, 15], + [-207, 2], + [-84, 11], + [-114, 30], + [-156, 3], + [-77, 10], + [-51, 13], + [-15, 13], + [-77, 18], + [-75, 2], + [-57, 33], + [0, 8], + [-94, 80], + [-77, 5], + [-30, -16], + [-47, 8], + [-3, 41], + [17, 42], + [16, 36], + [27, 17], + [-2, 145], + [92, 29], + [27, 20], + [19, 46], + [-50, 47], + [-50, 69], + [-10, 90], + [-48, 47], + [0, 23], + [17, 21], + [4, 25], + [-114, 80], + [3, 44], + [32, 0], + [-42, 36], + [-7, 23], + [13, 62], + [37, 23], + [63, 3], + [34, 33], + [-64, 34], + [6, 62], + [41, 29], + [13, 38], + [60, 15], + [20, 13], + [110, 121], + [107, 73], + [80, 121], + [20, 13], + [73, -36], + [-6, -24], + [-40, -20], + [0, -18], + [14, -18], + [23, -5], + [23, -37], + [27, -23], + [41, 0], + [23, 24], + [0, 74], + [28, 63], + [-6, 30], + [-50, 16], + [-36, 2], + [-70, 44], + [-4, 64], + [30, 57], + [135, 7], + [52, -13], + [40, -13], + [6, -49], + [39, 1], + [12, 18], + [33, 16], + [48, -3], + [10, -12], + [1, -46], + [-17, -27], + [-40, -26], + [-120, -44], + [-5, -58], + [-34, -119], + [0, -115], + [52, -44], + [106, -52], + [108, -65], + [41, -10], + [103, 21], + [131, 3], + [39, -10], + [30, -21], + [11, -81], + [34, -92], + [10, -84], + [-20, -93], + [8, -93], + [102, -51], + [69, -11], + [100, 11], + [53, 59], + [0, 94], + [-24, 35], + [-7, 71], + [106, 71], + [114, 21], + [73, 2], + [98, -12], + [40, -19], + [20, -20], + [137, -21], + [50, -20], + [77, -15], + [134, -60], + [53, -2], + [128, 62], + [36, 10], + [37, 8], + [103, 3], + [107, -35], + [23, -54], + [-8, -70], + [-37, -123], + [-69, -30], + [-69, -82], + [8, -36], + [69, -129], + [62, -65], + [60, -38], + [85, -17], + [51, -24], + [64, 65], + [74, 2], + [30, -18], + [68, -77], + [45, 6], + [21, 15], + [90, 2], + [20, -12], + [20, -54], + [48, -19], + [26, -50], + [-38, -65], + [-68, -88], + [19, -31], + [14, -3], + [4, -43], + [-77, -78], + [-8, -35], + [-36, -51], + [-23, -112], + [7, -26], + [57, -21], + [47, 17], + [63, -1], + [81, -33], + [23, -3], + [27, -20], + [0, -101], + [-33, -26], + [-60, -69], + [10, -80], + [44, -103], + [-17, -31], + [-40, -21], + [-17, -18], + [17, -18], + [24, -5], + [-4, -47], + [-30, -5], + [-30, -15], + [-22, -86], + [-107, -6], + [-45, -35], + [-71, -79], + [-2, -24], + [-20, -26], + [-67, -41], + [-46, -10], + [-253, 52], + [-115, -35], + [-19, 1], + [-79, -104], + [-4, -70], + [55, -30], + [14, -26], + [-23, -15], + [-34, 2], + [-28, 17], + [-55, -43], + [99, -47], + [42, 2], + [26, 22], + [33, 8], + [34, 0], + [23, -13], + [20, -20], + [14, -31], + [-70, -83], + [0, -26], + [23, -17], + [44, -11], + [46, 3], + [101, -54], + [7, -13], + [46, -33], + [7, -75], + [23, -16], + [18, -28], + [10, -64], + [12, -21], + [-5, -8], + [20, -25], + [0, -34], + [-37, -15], + [-20, -21], + [0, -31], + [-20, -41], + [-64, -75], + [7, -33], + [27, -46], + [91, -26], + [20, -39], + [-13, -38], + [16, -93], + [10, -16], + [4, -108], + [10, -28], + [-53, -44], + [0, -31], + [27, -33], + [70, -24], + [7, -23], + [-37, -20], + [-57, 5], + [-37, -18], + [-10, 2], + [0, -42], + [54, -59], + [21, -13], + [153, -27], + [17, -28], + [10, -57], + [-20, -36], + [-54, -21], + [-70, -8], + [-30, -34], + [0, -15], + [71, -56], + [47, -98], + [-11, -41], + [-63, -57], + [-47, -57], + [-6, -139], + [7, -18], + [-10, -41], + [-113, -101], + [-54, -13], + [-48, 23], + [-59, -39], + [-10, -25], + [-41, -23], + [-22, -66], + [10, -30], + [-31, -21], + [-29, -57], + [13, -25], + [50, -52], + [14, -33], + [4, -49], + [-14, -44], + [-33, -38], + [-47, -13], + [-191, -16], + [-76, -42], + [-97, -121], + [-50, -31], + [-95, -96], + [15, -2], + [20, -36], + [-26, -33], + [-7, -24], + [-110, -107], + [-16, -29], + [26, -152], + [31, -38], + [37, -16], + [30, 5], + [13, 11], + [59, 7], + [131, -4], + [17, -45], + [0, -35], + [-6, -34], + [-54, -59], + [-29, -268], + [-17, -31], + [-64, -23], + [-45, -77], + [0, -71], + [-25, -72], + [-2, -36], + [-38, -30], + [-19, -47], + [-47, 5], + [-22, 25], + [-151, 70], + [-20, 31], + [-81, -17], + [9, -71], + [-10, -48], + [5, -75], + [-19, -69], + [71, -113], + [28, -1], + [11, -13], + [23, -54], + [10, -31], + [0, -129], + [20, -33], + [4, -34], + [-74, -54], + [-80, -95], + [-45, -18], + [-93, -62], + [-15, -18], + [-77, -39], + [-106, -73], + [-70, -116], + [-20, -53], + [-51, -52], + [-93, -70], + [-126, -116], + [-7, -49], + [10, -54], + [57, -80], + [3, -82], + [14, -31], + [30, -23], + [19, 14], + [23, -11], + [38, 12], + [40, -5], + [34, -28], + [33, -8], + [47, -36], + [74, -26], + [16, -35], + [0, -31], + [-19, -49], + [-47, -54], + [0, -34], + [-16, -34], + [-47, 3], + [-25, 15], + [-39, -34], + [-8, -30], + [6, -23], + [36, 0], + [30, 10], + [23, -13], + [4, -36], + [-20, -28], + [-20, -59], + [-30, -29], + [-67, -8], + [-50, 10], + [-27, 19], + [-50, -3], + [-3, -46], + [39, -80], + [31, -99], + [31, -65], + [0, -47], + [-31, -59], + [-99, -70], + [-76, -13], + [-84, -47], + [-7, -70], + [-38, -71], + [-137, -88], + [-8, -76], + [-15, -48], + [-38, -41], + [-138, -101], + [-19, -44], + [30, -44], + [0, -23], + [-101, -106], + [16, -253], + [57, -64], + [42, 1], + [30, -18], + [27, -59], + [1, -108], + [11, -28], + [19, -23], + [30, -12], + [40, -30], + [54, -85], + [26, -97], + [-15, -57], + [9, -8], + [10, -49], + [-3, -44], + [-64, -62], + [-101, -24], + [-112, -97], + [-87, -34], + [14, -18], + [47, -5], + [16, -18], + [4, -31], + [-60, -98], + [-17, -44], + [-97, -111], + [-79, -11], + [-43, -37], + [16, -19], + [-4, -41], + [-30, -16], + [-80, -5], + [-39, -72], + [6, -83], + [-3, -28], + [-17, -26], + [-47, -28], + [-33, -10], + [-30, 0], + [-36, -49], + [0, -123], + [-30, -112], + [-38, -47], + [-8, -59], + [9, -47], + [24, -40], + [0, -29], + [-26, -59], + [16, -44], + [-6, -28], + [-14, -21], + [-46, -38], + [-101, -11], + [-13, 6], + [-25, -25], + [-60, -93], + [7, -48], + [31, -41], + [-8, -41], + [-53, -53], + [-145, -12], + [-30, -35], + [16, -177], + [32, -54], + [21, -104], + [-30, -59], + [-46, -30], + [-23, -47], + [15, -35], + [-7, -118], + [24, -99], + [-24, -48], + [-68, 12], + [-23, 47], + [-8, 100], + [-38, 41], + [-15, 35], + [-39, 35], + [-56, 0], + [-37, 8], + [-34, 25], + [-20, 39], + [-3, 148], + [-48, 22], + [-40, 41], + [-7, 62], + [60, 52], + [135, 73], + [-1, 37], + [22, 42], + [37, 21], + [6, 15], + [5, 38], + [-8, 30], + [-43, 34], + [-13, 26], + [-125, 64], + [-54, 9], + [-39, -8], + [-53, 0], + [-110, 15], + [5, 66], + [-24, 76], + [0, 63], + [-29, 6], + [-29, 18], + [-26, 69], + [6, 72], + [-11, 75], + [10, 13], + [-25, 22], + [-88, 32], + [-39, 27], + [-14, 37], + [-1, 55], + [-90, 76], + [-48, 19], + [-16, 20], + [1, 40], + [42, 30], + [10, 28], + [-7, 50], + [-25, 40], + [-74, 26], + [-7, 20], + [10, 35], + [-69, -6], + [-51, 43], + [-46, 17], + [-47, -9], + [-15, -13], + [-5, -34], + [-22, -6], + [-9, -24], + [-31, -26], + [-45, -16], + [-40, 3], + [-44, 14], + [-69, -29], + [-52, 7], + [-27, 14], + [-19, 24], + [24, 65], + [-24, 19], + [-39, 10], + [-111, 9], + [-55, 25], + [-84, -18], + [-35, -15], + [-37, -1], + [-39, 7], + [-73, 35], + [-89, 82], + [-50, 64], + [-20, 48], + [-41, 35], + [-32, 16], + [-111, 14], + [-41, -12], + [-98, -73], + [-71, -24], + [-53, 1], + [-81, 19], + [-35, 18], + [-42, 40], + [-64, 5], + [-62, -20], + [-71, -50], + [-39, -30], + [-81, -90], + [-65, -48], + [-3, -22], + [11, -33], + [-10, -17], + [-54, -24], + [-10, -22], + [-1, -20], + [35, -55], + [-7, -52], + [-25, -1], + [-47, 26], + [-59, 13], + [-53, -37], + [-11, -18], + [-2, -56], + [-12, -17], + [-50, -10], + [-39, 5], + [-54, 39], + [-78, 24], + [-62, -2], + [-53, -19], + [-93, 3], + [-46, -11], + [-28, 5], + [-20, 11], + [0, 13], + [-56, 33], + [-61, 67], + [-61, 22], + [-47, 41], + [-91, 100], + [-45, 69], + [-25, 24], + [-63, 36], + [-13, 58], + [-64, 70], + [-36, 11], + [-20, 32], + [-131, 110], + [-74, 35], + [-100, 1], + [-89, 21], + [-198, 145], + [-97, 108], + [-123, 17], + [-86, 85], + [-8, 21], + [-58, 48], + [-115, 26], + [-32, 14], + [-59, 85], + [3, 27], + [-15, 21], + [-54, 0], + [-22, 13], + [-16, 52], + [49, 86], + [5, 74], + [35, 30], + [-7, 15], + [9, 33], + [-5, 73], + [-67, 105], + [9, 33], + [-5, 27], + [-65, 132], + [17, 82], + [-27, 31], + [28, 35], + [34, 65], + [-15, 41], + [-66, 40], + [-26, 25], + [-59, 189], + [1, 88], + [18, 45], + [36, 28], + [116, 21], + [36, 13], + [72, 49], + [30, 56], + [103, 49], + [87, 145], + [4, 64], + [27, 50], + [69, 71], + [22, 2], + [-8, 111], + [-72, 67], + [-141, 97], + [-295, 147], + [-112, 73], + [-71, 61], + [-29, 45], + [-26, 60], + [-6, 56], + [-21, 40], + [39, 110], + [27, 28], + [21, 112], + [86, 80], + [69, 87], + [0, 33], + [60, 167], + [71, 100], + [10, 35], + [29, 35], + [15, 39], + [-56, 25], + [-148, 20], + [-61, 17], + [-98, 49], + [-201, 67], + [-166, 82], + [-88, 68], + [-159, 82], + [-74, 34], + [-85, 21], + [-82, 67], + [-39, 20], + [-48, -41], + [-15, -142], + [-15, -16], + [0, -56], + [25, -78], + [-3, -48], + [-89, -83], + [8, -12], + [38, -7], + [17, -34], + [-12, -50], + [-15, -22], + [-71, -31], + [-49, -4], + [-44, 3], + [-32, 22], + [0, 25], + [24, 34], + [-7, 2], + [-100, -32], + [-42, -50], + [-12, -33], + [-64, -64], + [-126, -98], + [-96, -114], + [-157, -91], + [0, -47], + [-8, -13], + [-22, -19], + [-90, -143], + [-48, -26], + [-35, -54], + [-36, -12], + [-52, 1], + [-47, 13], + [-27, 19], + [-19, 35], + [-89, 8], + [-29, 16], + [-19, 40], + [66, 151], + [-16, 30], + [-7, 68], + [57, 113], + [5, 27], + [105, 184], + [30, 100], + [15, 98], + [-10, 250], + [-23, 26], + [-10, 31], + [-21, 151], + [10, 41], + [-27, 65], + [-16, 87], + [-61, 64], + [-5, 46], + [-17, 34], + [-34, 37], + [-83, 30], + [-87, 3], + [-55, 17], + [-23, 26], + [-63, 42], + [-15, 59], + [-4, 65], + [-27, 26], + [-15, 37], + [-38, 11], + [-72, 43], + [-68, 101], + [-73, 65], + [-84, 48], + [-53, 17], + [-20, 0], + [-35, -23], + [-24, -29], + [-42, -10], + [-43, 9], + [-33, 16], + [-5, 20], + [8, 47], + [92, 172], + [22, 63], + [8, 66], + [31, 91], + [-1, 62], + [-74, 35], + [-46, 38], + [-22, 37], + [-80, 181], + [-15, 60], + [-31, 65], + [-17, 5], + [-10, 24], + [-2, 94], + [25, 57], + [0, 49], + [84, 144], + [108, 97], + [80, 112], + [-16, 68], + [36, 134], + [-18, 0], + [-29, 24], + [-2, 54], + [14, 17], + [-16, 86], + [29, 25], + [49, 13], + [29, 0], + [35, -1], + [40, -38], + [23, 10], + [30, 50], + [30, 11], + [26, -6], + [28, -26], + [25, 1], + [46, 25], + [24, 3], + [42, -4], + [32, -12], + [80, -6], + [143, 6], + [46, 10], + [88, -6], + [69, -27], + [37, -31], + [56, -24], + [52, -7], + [339, -177], + [55, 3], + [19, 29], + [5, 42], + [-6, 82], + [93, 168], + [18, 13], + [42, 57], + [29, 54], + [-7, 27], + [14, 18], + [30, 10], + [-12, 21], + [2, 44], + [16, 27], + [21, 3], + [47, -22], + [73, -19], + [25, -16], + [63, -120], + [12, -186], + [17, -35], + [-21, -51], + [1, -25], + [37, -45], + [-1, -23], + [-45, -68], + [28, -22], + [36, -14], + [62, -11], + [217, -1], + [32, -11], + [26, -32], + [68, -52], + [46, 1], + [40, 15], + [78, 70], + [315, 230], + [29, 30], + [22, 66], + [21, 31], + [211, 134], + [49, 62], + [38, 81], + [0, 128], + [37, 94], + [0, 157], + [15, 100], + [-22, 60], + [-4, 64], + [-36, 86], + [-3, 65], + [-19, 38], + [-54, 48], + [2, 55], + [-24, 32], + [-10, 7], + [-87, 11], + [-86, -40], + [-38, -8], + [-16, -32], + [12, -40], + [-11, -20], + [-49, -29], + [-23, -2], + [-27, -25], + [-46, -82], + [-17, -14], + [-130, -62], + [-127, -10], + [-56, 6], + [-33, 9], + [-50, 40], + [-50, 55], + [-7, 22], + [13, 104], + [77, 238], + [53, 53], + [104, 64], + [22, 34], + [16, 71], + [61, 63], + [12, 22], + [2, 44], + [-11, 27], + [-59, 61], + [-125, 85], + [-14, 27], + [0, 29], + [-49, 63], + [15, 59], + [-34, -6], + [-8, -24], + [-39, -27], + [-79, -29], + [-31, 3], + [-25, 10], + [-19, 56], + [-40, 47], + [-32, 31], + [-25, 5], + [-21, -71], + [-44, -66], + [-3, -117], + [7, -28], + [34, -32], + [15, -41], + [-2, -68], + [-17, -36], + [24, -51], + [30, -23], + [14, -148], + [59, -117], + [22, -15], + [7, -41], + [-15, -131], + [-7, -20], + [-20, -17], + [2, -78], + [-10, -66], + [-55, -119], + [-2, -85], + [-15, -36], + [-9, -144], + [43, -51], + [-13, -29], + [-46, -21], + [-62, -5], + [-84, 0], + [-97, 13], + [-47, -20], + [-27, 0], + [-129, 5], + [-48, 11], + [-85, 32], + [-39, 26], + [-67, 29], + [-21, 25], + [-30, 3], + [-26, 16], + [-64, 70], + [-22, 45], + [-83, 68], + [-95, 15], + [-49, -30], + [-38, -3], + [-173, 12], + [-132, 99], + [-77, 39], + [-159, 27], + [-21, 22], + [-27, 13], + [-67, 4], + [-44, -64], + [-71, -65], + [-20, -8], + [-133, 1], + [-40, 4], + [-30, 11], + [-5, 90], + [18, 22], + [27, 12], + [-10, 20], + [-25, 11], + [-4, 21], + [2, 21], + [23, 43], + [-18, 25], + [0, 31], + [-14, 26], + [-54, 38], + [10, 83], + [-50, 98], + [-37, 35], + [-24, 76], + [-106, 140], + [-38, 27], + [-33, 43], + [-21, 11], + [-48, 81], + [-74, 92], + [-36, 32], + [-43, 26], + [-50, 46], + [-23, 7], + [-100, 4], + [-36, 10], + [-20, 81], + [38, 135], + [12, 84], + [22, 23], + [96, 62], + [13, 15], + [-33, -1], + [-51, -14], + [-35, 1], + [-15, 17], + [20, 32], + [-4, 16], + [-15, -9], + [-2, 7], + [-29, -2], + [-37, 17], + [-18, 18], + [5, 55], + [-34, 40], + [-65, 130], + [-95, 104], + [-59, 83], + [-10, 31], + [-24, 27], + [-2, 28], + [-34, 41], + [-7, 57], + [-19, 21], + [-24, 21], + [-45, 20], + [-27, 4], + [-39, 28], + [-13, -5], + [-15, -48], + [-53, 9], + [-45, 39], + [-19, 52], + [-53, 45], + [-2, 53], + [14, 38], + [0, 37], + [79, 70], + [7, 24], + [30, 39], + [116, 30], + [44, 2], + [54, -20], + [59, 27], + [91, 123], + [53, 129], + [46, 59], + [55, 139], + [-26, 56], + [33, 130], + [29, 66], + [-20, 221], + [11, 27], + [38, 43], + [3, 18], + [-38, 32], + [-11, 24], + [14, 41], + [26, 24], + [17, 36], + [20, 68], + [21, 17], + [-38, 129], + [-189, 133], + [-90, 26], + [-2, 30], + [39, 67], + [4, 34], + [16, 24], + [-5, 60], + [-33, 31], + [-9, 30], + [-61, 41], + [-13, 25], + [-32, 27], + [-22, 64], + [-3, 47], + [-16, 16], + [-134, 68], + [-25, 22], + [-8, 89], + [11, 32], + [22, 45], + [20, -15], + [73, 106], + [18, 109], + [40, 67], + [24, 17], + [216, 22], + [1, 12], + [-141, -1], + [-34, 8], + [-14, 23], + [43, 31], + [-43, 0], + [-157, 87], + [-80, 63], + [-112, 45], + [-22, 27], + [-37, 21], + [-44, 10], + [-44, 26], + [-40, 42], + [-41, 23], + [-78, 66], + [-5, 61], + [25, 63], + [32, 36], + [20, 116], + [8, 82], + [-4, 189], + [-15, 0], + [-15, -64], + [-15, -268], + [-46, -86], + [-49, -57], + [-35, -80], + [-20, -69], + [10, -36], + [-2, -69], + [-18, -27], + [-31, -12], + [-47, 28], + [-91, 95], + [-26, 16], + [-88, 10], + [-57, 41], + [-5, 22], + [-43, 11], + [-140, 5], + [-169, -12], + [-115, -36], + [-120, -21], + [-71, 14], + [-29, 31], + [-46, -32], + [-23, -43], + [18, -77], + [-22, -52], + [44, -111], + [-6, -31], + [-24, -13], + [-14, -26], + [10, -26], + [-5, -26], + [-38, -35], + [10, -62], + [-17, -17], + [-30, -8], + [-14, -14], + [0, -18], + [14, -18], + [22, -6], + [5, -43], + [-3, -25], + [-31, -33], + [1, -94], + [-34, -56], + [-9, -97], + [-18, -36], + [23, -34], + [2, -68], + [-13, -95], + [-17, -37], + [-20, -10], + [-107, -18], + [-105, -51], + [-158, -98], + [-15, -47], + [-20, -24], + [-161, -61], + [-28, -17], + [-27, -125], + [-13, -18], + [-59, 1], + [-31, 11], + [-20, 14], + [-95, 34], + [-24, 20], + [-76, 33], + [-32, 68], + [-90, 131], + [-5, 59], + [-33, 41], + [-17, 92], + [-30, 51], + [-12, 49], + [-26, 24], + [-13, 29], + [-31, 89], + [-5, 47], + [-118, 172], + [-1, 30], + [22, 7], + [17, 16], + [-2, 40], + [-29, 14], + [-13, -2], + [-21, 16], + [-12, 55], + [-169, 353], + [-1, 62], + [-10, 25], + [-73, 97], + [-7, 56], + [-24, 26], + [-44, 116], + [10, 31], + [-107, -1], + [-35, 19], + [7, 51], + [42, 42], + [-11, 17], + [1, 38], + [-28, 28], + [-7, 25], + [9, 35], + [49, 70], + [14, 191], + [-17, 140], + [-40, 162], + [21, 214], + [-12, 113], + [2, 142], + [5, 27], + [24, 18], + [48, 12], + [19, 27], + [52, 32], + [15, 62], + [1, 115], + [-20, 52], + [-76, 94], + [-4, 23], + [1, 263], + [10, 39], + [-35, 31], + [0, 21], + [38, 13], + [0, 65], + [22, 26], + [-10, 253], + [-18, 37], + [-37, 33], + [-31, 20], + [-32, -5], + [-25, 10], + [-4, 77], + [49, 62], + [76, 36], + [6, 88], + [59, 62], + [19, 42], + [-9, 25], + [-76, 32], + [-27, 30], + [-9, 66], + [51, 52], + [11, 34], + [98, 64], + [-5, 78], + [22, 25], + [50, 19], + [98, 12], + [56, 24], + [58, 55], + [96, 32], + [25, 22], + [66, 92], + [-29, 2], + [-24, 13], + [2, 46], + [13, 25], + [-12, 55], + [15, 51], + [-5, 24], + [-9, 15], + [-96, -26], + [-115, -18], + [-39, 2], + [-22, 11], + [4, 52], + [-7, 19], + [-53, 48], + [-10, 31], + [-4, 133], + [-51, 104], + [-12, 150], + [-36, 71], + [-66, 69], + [-15, 54], + [-82, 29], + [-6, 20], + [11, 88], + [31, 53], + [25, 17], + [18, 83], + [-57, 70], + [1, 166], + [8, 28], + [30, 40], + [37, 33], + [61, 35], + [-8, 16], + [-38, 18], + [-34, 28], + [-12, 31], + [0, 67], + [14, 26], + [4, 52], + [-8, 25], + [-52, 36], + [-55, 65], + [10, 51], + [15, 18], + [-2, 25], + [-64, 31], + [-15, 25], + [12, 59], + [-9, 75], + [-54, 82], + [-16, 61], + [12, 30], + [25, 21], + [29, 48], + [-1, 69], + [-47, 53], + [-69, 28], + [-34, 50], + [-16, 121], + [41, 40], + [16, 75], + [-35, 45], + [-9, 139], + [-21, 50], + [-32, 36], + [-9, 82], + [-39, 40], + [-35, 18], + [-46, 2], + [-31, 14], + [-84, 64], + [-44, 46], + [-20, 3], + [-38, -17], + [-115, 10], + [-177, -68], + [-51, 1], + [-45, 15], + [-25, 36], + [-16, 61], + [20, 72], + [-4, 36], + [-14, 11], + [-2, 67], + [61, 90], + [101, 97], + [127, 88], + [78, 73], + [69, 17], + [50, 45], + [52, 134], + [18, 336], + [-19, 17], + [-13, -4], + [-47, -143], + [-61, -94], + [-10, -44], + [-102, -158], + [-90, -61], + [-54, -5], + [-35, 13], + [-9, 16], + [10, 47], + [-2, 191], + [8, 52], + [-15, 44], + [3, 100], + [-4, 48], + [-12, 19], + [-62, 73], + [-83, 58], + [-65, 28], + [-186, 54], + [-81, 3], + [-22, -9], + [-150, -197], + [-65, -64], + [-74, -109], + [-40, -30], + [-45, -1], + [-36, 6], + [-77, 44], + [-17, 1], + [-37, -69], + [-9, -87], + [-33, -38], + [-118, -35], + [-15, -21], + [0, -29], + [-14, -21], + [-60, -49], + [-131, -70], + [-20, -24], + [-76, -52], + [-77, -33], + [-52, -6], + [-42, 6], + [-23, 12], + [-101, 12], + [-37, 24], + [-22, 29], + [-32, 68], + [-72, 81], + [-46, 68], + [-45, 81], + [-43, 110], + [-43, 28], + [4, 58], + [-16, 56], + [9, 33], + [36, 31], + [47, 19], + [36, 2], + [9, 14], + [-22, 14], + [-3, 19], + [25, 45], + [7, 36], + [20, 23], + [5, 35], + [-44, 72], + [-14, 85], + [-15, 4], + [-23, 31], + [-59, 136], + [-52, 77], + [-43, 46], + [-34, 22], + [-41, 21], + [-101, 24], + [-27, 26], + [-48, 28], + [-20, 39], + [-7, 52], + [2, 58], + [29, 46], + [68, 43], + [21, 23], + [57, 129], + [13, 89], + [20, 43], + [40, 54], + [28, 28], + [62, 24], + [138, 22], + [-1, 69], + [-20, 86], + [0, 54], + [40, 63], + [63, 130], + [60, 233], + [16, 21], + [13, 43], + [114, 177], + [16, 39], + [21, 26], + [35, 22], + [111, 16], + [85, 54], + [11, 36], + [-36, 42], + [-25, 71], + [14, 99], + [33, 61], + [-34, 76], + [2, 149], + [63, 103], + [75, 30], + [59, 34], + [4, 44], + [-8, 117], + [-44, 48], + [-24, 102], + [-30, 67], + [-13, 185], + [0, 72], + [23, 139], + [29, 73], + [-2, 124], + [11, 76], + [70, 16], + [120, -2], + [177, 31], + [63, 27], + [117, 77], + [90, 28], + [111, 70], + [90, 41], + [132, 156], + [66, 136], + [8, 149], + [-9, 34], + [-57, 39], + [-42, 2], + [-94, 30], + [-21, 26], + [-12, 62], + [-54, 35], + [-19, 23], + [-21, 123], + [15, 50], + [36, 17], + [110, 28], + [16, 21], + [6, 48], + [21, 14], + [66, 17], + [48, 28], + [36, 39], + [75, 41], + [203, 69], + [4, 117], + [56, 133], + [0, 117], + [30, 46], + [78, 63], + [48, 14], + [84, 0], + [33, -14], + [93, 14], + [42, 13], + [57, 50], + [49, 16], + [171, 33], + [86, 39], + [79, -9], + [102, 7], + [81, -11], + [18, -11], + [36, -7], + [69, 7], + [27, -16], + [33, 2], + [0, 35], + [-31, 23], + [0, 103], + [46, 89], + [363, 378], + [17, 4], + [42, 40], + [36, 88], + [0, 23], + [-21, 9], + [-15, -2], + [-43, 141], + [-24, 28], + [-21, 9], + [-33, -3], + [-39, -32], + [-30, -5], + [-27, 23], + [18, 35], + [-3, 18], + [-18, 7], + [-6, 15], + [26, 32], + [43, 21], + [96, 21], + [0, 23], + [18, 35], + [20, 18], + [36, 9], + [4, 36], + [36, 51], + [-7, 57], + [27, 65], + [39, 37], + [64, 43], + [20, 6], + [39, -11], + [16, -22], + [18, -71], + [68, -92], + [48, -10], + [38, 3], + [31, -10], + [14, -21], + [-5, -57], + [26, -120], + [81, -80], + [23, -60], + [54, -95], + [30, -80], + [124, -135], + [14, -28], + [34, -161], + [184, -198], + [65, -27], + [25, -30], + [79, -38], + [205, -46], + [111, -4], + [22, 7], + [43, 40], + [25, 12], + [33, -3], + [62, -60], + [-9, -67], + [-18, -27], + [46, -21], + [5, 7], + [35, 0], + [45, -40], + [48, -147], + [-5, -63], + [12, -14], + [13, -53], + [-6, -35], + [-32, -49], + [9, -10], + [-13, -37], + [-47, -54], + [0, -29], + [77, -62], + [72, -82], + [23, -75], + [19, -156], + [15, -6], + [12, -19], + [2, -65], + [34, -33], + [2, -48], + [18, -25], + [23, -6], + [23, -59], + [-5, -56], + [-76, -92], + [-20, -1], + [-30, -22], + [3, -24], + [58, -82], + [23, -95], + [29, 0], + [41, -12], + [36, -26], + [50, -100], + [19, -165], + [3, -135], + [45, -69], + [27, -15], + [16, -53], + [-68, -108], + [-43, -90], + [28, -57], + [12, -105], + [39, -50], + [72, -62], + [45, -61], + [0, -24], + [14, -19], + [20, -11], + [54, 13], + [43, -7], + [50, -29], + [38, -7], + [43, 3], + [18, 14], + [94, 2], + [30, 21], + [45, 3], + [13, 9], + [-6, 26], + [17, 201], + [29, 91], + [11, 97], + [35, 95], + [57, 82], + [2, 28], + [-11, 23], + [-28, 13], + [-22, 40], + [0, 26], + [6, 31], + [25, 40], + [7, 37], + [47, 43], + [31, 9], + [86, -26], + [50, -61], + [7, -22], + [61, -57], + [63, -30], + [23, -20], + [33, -11], + [32, -3], + [36, 10], + [22, 26], + [5, 26], + [29, 46], + [23, 20], + [33, 7], + [38, 0], + [55, -15], + [29, -17], + [25, -46], + [36, -41], + [20, -33], + [5, -26], + [-20, -49], + [0, -133], + [-8, -28], + [-79, -92], + [0, -17], + [23, -120], + [59, -40], + [11, -28], + [0, -170], + [12, -64], + [-5, -26], + [-49, -51], + [-29, -50], + [-7, -52], + [5, -19], + [14, -7], + [11, -21], + [0, -29], + [-58, -101], + [0, -38], + [-7, -3], + [0, -25], + [59, -78], + [7, -29], + [7, -260], + [12, -51], + [-20, -87], + [-41, -43], + [-78, -132], + [0, -242], + [25, -16], + [16, -80], + [95, -99], + [57, -146], + [0, -28], + [154, -152], + [59, -24], + [70, -17], + [36, -25], + [18, -1], + [2, 14], + [-21, 12], + [-119, 48], + [4, 18], + [14, 5], + [0, 14], + [54, 22], + [-45, 33], + [-32, 68], + [-39, 50], + [-2, 43], + [-36, 68], + [-2, 24], + [15, 18], + [-63, 114], + [0, 24], + [42, 59], + [3, 26], + [101, 117], + [51, 21], + [70, 47], + [39, 10], + [76, 47], + [47, 16], + [77, 2], + [33, 9], + [86, -20], + [34, 6], + [14, 17], + [-9, 42], + [2, 80], + [37, 18], + [7, 65], + [-22, 24], + [0, 44], + [24, 130], + [-1, 139], + [14, 25], + [43, 43], + [-7, 22], + [-63, 10], + [-16, 30], + [0, 92], + [-21, 27], + [-3, 77], + [-24, 68], + [10, 114], + [-13, 19], + [-5, 76], + [7, 125], + [-35, 151], + [2, 262], + [29, 45], + [-14, 41], + [16, 62], + [17, 198], + [19, 27], + [3, 174], + [20, 194], + [-7, 28], + [-54, 82], + [-3, 51], + [9, 41], + [74, 94], + [9, 96], + [22, 54], + [16, 93], + [0, 53], + [36, 45], + [-11, 9], + [-39, -6], + [-102, 39], + [-72, 125], + [-27, 118], + [-84, -6], + [-88, -17], + [-60, -23], + [-63, 5], + [-18, 14], + [-14, 43], + [13, 45], + [11, 21], + [84, 75], + [0, 22], + [-73, 49], + [-11, 78], + [-18, 18], + [2, 24], + [63, 65], + [36, 63], + [71, 75], + [3, 28], + [67, 66], + [60, 133], + [37, 129], + [3, 70], + [23, 48], + [7, 118], + [31, 32], + [4, 17], + [-24, 26], + [2, 24], + [33, 118], + [47, 45], + [16, 76], + [13, 21], + [-4, 211], + [-31, 71], + [-24, 22], + [-59, 9], + [-25, 13], + [-20, 30], + [-54, 42], + [-57, 117], + [0, 77], + [29, 97], + [58, 68], + [5, 40], + [-16, 27], + [-21, 15], + [20, 84], + [50, 49], + [4, 28], + [0, 34], + [-38, 27], + [-16, 29], + [-5, 93], + [27, 42], + [205, 21], + [16, 21], + [95, 26], + [20, 16], + [-59, 18], + [-11, 38], + [45, 99], + [17, 164], + [36, 61], + [13, 78], + [13, 14], + [-16, 25], + [-40, 13], + [-27, 144], + [-59, 134], + [0, 34], + [17, 27], + [48, 33], + [0, 12], + [-10, 50], + [-60, 105], + [18, 128], + [-19, 74], + [13, 48], + [22, 27], + [1, 18], + [20, 18], + [-3, 61], + [-45, 120], + [-5, 178], + [11, 33], + [32, 39], + [13, 33], + [99, 347], + [76, 65], + [207, 27], + [29, 26], + [11, 30], + [-17, 57], + [-78, 14], + [-82, 32], + [-110, 95], + [-110, 121], + [-21, 116], + [-8, 290], + [-28, 121], + [-14, 121], + [-7, 132], + [7, 111], + [95, 80], + [165, 22], + [19, 64], + [-19, 9], + [-42, 68], + [-21, 106], + [109, 216], + [7, 158], + [95, 165], + [-7, 47], + [-55, 74], + [27, 94], + [103, 85], + [65, -4], + [92, 8], + [79, -21], + [75, 6], + [45, 47], + [-6, 23], + [61, 105], + [0, 53], + [-21, 42], + [-75, 43], + [-69, 26], + [-42, 79], + [0, 95], + [34, 105], + [76, 59], + [68, 89], + [-2, 101], + [-45, 12], + [-2, 6], + [-68, -29], + [-36, 16], + [4, 54], + [13, 31], + [-7, 140], + [49, 37], + [70, -33], + [19, -24], + [38, -12], + [101, 16], + [32, 12], + [34, 40], + [25, -3], + [49, -25], + [41, 16], + [117, 83], + [32, 6], + [21, 59], + [7, 57], + [0, 74], + [-28, 90], + [-55, 58], + [-117, 47], + [-185, 37], + [-82, 31], + [-21, 80], + [-21, 184], + [13, 85], + [62, 74], + [75, 179], + [-28, 52], + [14, 38], + [109, 16], + [21, 69], + [47, 73], + [-13, 37], + [-49, 27], + [-61, 0], + [-55, -59], + [-55, 16], + [-76, 42], + [-103, 74], + [-96, 89], + [-14, 111], + [14, 95], + [-1, 269], + [104, 117], + [11, 36], + [-14, 47], + [16, 49], + [36, 34], + [23, 53], + [4, 161], + [45, 114], + [24, 166], + [1, 159], + [25, 103], + [2, 135], + [-10, 87], + [9, 45], + [102, 106], + [-15, 193], + [-49, 74], + [-17, 44], + [23, 29], + [32, 22], + [13, -1], + [32, -40], + [-5, 144], + [30, 39], + [53, 194], + [7, 95], + [24, 51], + [13, 148], + [27, 51], + [9, 43], + [222, 278], + [61, 44], + [124, 49], + [18, 13], + [4, 16], + [-18, 7], + [-17, -2], + [-64, -38], + [-43, 0], + [-18, 17], + [0, 160], + [96, 111], + [66, 13], + [20, -14], + [12, -73], + [-21, -21], + [-6, -23], + [4, -43], + [-8, -62], + [20, -37], + [68, 5], + [42, 15], + [32, 29], + [13, 33], + [5, 95], + [19, 75], + [-30, 23], + [-13, 37], + [-145, 52], + [-14, 64], + [41, 47], + [62, 37], + [55, -10], + [130, 0], + [90, -74], + [23, -9], + [93, 59], + [0, 103], + [-75, 48], + [-179, 73], + [-45, -25], + [-82, 10], + [-9, 11], + [2, 62], + [86, 155], + [11, 83], + [23, 23], + [8, 22], + [13, 160], + [59, 64], + [-12, 97], + [18, 75], + [23, 24], + [22, 82], + [26, 46], + [18, 14], + [0, 116], + [21, 121], + [34, 90], + [75, 95], + [75, 74], + [81, 58], + [11, 25], + [0, 35], + [-15, 39], + [-31, 13], + [-35, 1], + [-14, 20], + [0, 27], + [49, 70], + [34, 33], + [32, 11], + [17, 68], + [0, 91], + [27, 95], + [55, 111], + [109, 137], + [0, 64], + [13, 79], + [109, 290], + [14, 201], + [40, 184], + [123, 264], + [40, 470], + [48, 85], + [109, 137], + [54, 85], + [185, 227], + [34, 105], + [41, 85], + [89, 111], + [239, 428], + [40, 105], + [144, 243], + [55, 90], + [52, 14], + [19, 23], + [18, 57], + [-2, 101], + [11, 48], + [74, 92], + [25, 20], + [22, 74], + [26, 34], + [16, 81], + [77, 147], + [85, 115], + [38, 89], + [32, 46], + [4, 63], + [18, 43], + [83, 120], + [25, 28], + [25, 13], + [20, -4], + [-4, -42], + [-18, -33], + [38, 9], + [41, 54], + [51, 21], + [127, -52], + [-2, -54], + [-30, -15], + [-26, -47], + [-2, -22], + [-38, -83], + [4, -86], + [-45, -42], + [-2, -78], + [-16, -28], + [-61, -57], + [-11, -118], + [-39, -50], + [6, -32], + [-9, -94], + [-18, -24], + [-74, -7], + [-30, -14], + [-6, -127], + [-56, -102], + [-11, -115], + [-38, -36], + [-64, -27], + [-17, -22], + [-18, -60], + [-27, -27], + [-16, -33], + [-20, -95], + [-52, -110], + [-24, -83], + [-79, -115], + [-36, -80], + [-54, -67], + [-9, -39], + [7, -71], + [-13, -38], + [-41, -52], + [-2, -24], + [32, -44], + [-5, -29], + [-76, -37], + [-14, -24], + [14, -54], + [-67, -85], + [18, -17], + [43, -19], + [27, -28], + [38, 7], + [27, 19], + [2, 23], + [30, 28], + [29, 3], + [34, -8], + [9, -29], + [47, 13], + [99, 113], + [56, 46], + [43, 68], + [2, 30], + [-15, 19], + [-82, 47], + [-70, 10], + [-14, 16], + [-6, 54], + [40, 46], + [38, 2], + [23, -7], + [32, 9], + [58, 35], + [2, 19], + [39, 49], + [81, 64], + [71, 90], + [21, 47], + [6, 113], + [56, 120], + [32, 128], + [53, 69], + [6, 36], + [93, 125], + [36, 92], + [36, 36], + [54, 31], + [96, 10], + [51, 23], + [46, 48], + [54, 32], + [44, 51], + [20, 45], + [13, 92], + [60, 110], + [76, 63], + [35, 83], + [103, 140], + [46, 91], + [22, 112], + [20, 19], + [20, 58], + [23, 31], + [42, 18], + [114, 3], + [67, -24], + [68, -37], + [34, -34], + [14, -29], + [9, -54], + [-14, -29], + [6, -195], + [-25, -122], + [11, -72], + [7, -212], + [-24, -123], + [4, -57], + [-46, -41], + [2, -14], + [72, 6], + [11, -18], + [25, 14], + [18, 37], + [34, 24], + [-2, 68], + [-14, 24], + [4, 49], + [59, 66], + [-14, 13], + [-50, 16], + [0, 107], + [45, 87], + [-6, 58], + [10, 115], + [38, 29], + [5, 19], + [23, 21], + [29, 17], + [56, 7], + [41, -7], + [52, -20], + [126, -18], + [43, -24], + [41, -192], + [-4, -42], + [-25, -51], + [-7, -161], + [84, 89], + [14, 25], + [4, 124], + [31, 68], + [74, 68], + [38, 52], + [20, 93], + [19, 22], + [-37, 51], + [-4, 26], + [2, 21], + [23, 42], + [-3, 19], + [-11, 17], + [-54, 30], + [-28, 81], + [-49, 12], + [-9, 16], + [-30, 68], + [-5, 100], + [36, 61], + [-4, 71], + [16, 50], + [70, 96], + [-6, 66], + [9, 47], + [29, 41], + [36, 29], + [88, 12], + [16, 26], + [0, 20], + [17, 10], + [34, 75], + [-20, 6], + [-9, 12], + [0, 22], + [20, 25], + [27, 15], + [3, 37], + [-25, 28], + [-27, 15], + [-7, 36], + [9, 20], + [47, 40], + [14, 22], + [2, 47], + [11, 23], + [22, 19], + [64, 5], + [60, -12], + [37, 9], + [13, 10], + [31, 73], + [84, 58], + [45, 48], + [43, 28], + [36, 47], + [29, 17], + [38, 14], + [154, 0], + [31, 20], + [27, 5], + [25, -1], + [27, -35] + ], + [ + [27929, 290979], + [60, -10], + [146, -7], + [11, -12], + [19, -1], + [65, -28], + [103, -139], + [34, -26], + [111, -44], + [85, -56], + [110, -88], + [92, -92], + [31, -87], + [107, -106], + [22, -12], + [33, -56], + [12, -56], + [-32, -29], + [-44, -19], + [-30, -42], + [0, -34], + [-52, -62], + [-8, -31], + [21, -37], + [47, -12], + [0, -8], + [22, -7], + [6, -15], + [-2, -15], + [-49, -53], + [1, -56], + [16, -2], + [10, -102], + [23, -6], + [2, 123], + [11, 10], + [16, 0], + [12, -5], + [12, -26], + [-7, -57], + [5, -30], + [22, -26], + [6, -32], + [37, -48], + [32, 0], + [59, 27], + [9, 26], + [2, 111], + [23, 80], + [0, 60], + [-12, 33], + [-48, 49], + [-107, 71], + [-3, 15], + [23, 41], + [91, 30], + [67, 6], + [124, -8], + [114, -29], + [335, -167], + [28, -33], + [37, -21], + [17, -36], + [444, -341], + [117, -118], + [165, -137], + [73, -48], + [59, -17], + [87, 21], + [59, -21], + [66, -56], + [12, -21], + [64, -42], + [60, -55], + [31, -11], + [16, -31], + [64, -51], + [96, -53], + [96, -93], + [103, -77], + [51, -59], + [41, -29], + [80, -113], + [32, -63], + [17, -134], + [-39, -116], + [-48, -55], + [-34, -25], + [-91, -111], + [-20, -74], + [-77, -171], + [7, -139], + [-22, -92], + [11, -190], + [19, -71], + [89, -109], + [46, -70], + [28, -90], + [78, -148], + [25, -88], + [96, -179], + [71, -167], + [30, -24], + [99, -116], + [34, -72], + [5, -69], + [-21, -47], + [-88, -141], + [-71, -81], + [-36, -121], + [8, -200], + [68, -108], + [8, -42], + [-12, -35], + [-102, -114], + [21, -49], + [30, -29], + [-7, -124], + [38, -100], + [35, -40], + [73, -33], + [78, -73], + [41, -23], + [105, -102], + [37, -63], + [-7, -19], + [-32, -11], + [-109, -14], + [-39, -28], + [-16, -50], + [21, -19], + [123, -21], + [87, -42], + [212, -44], + [111, 2], + [169, 22], + [66, -6], + [53, -19], + [37, -25], + [31, -37], + [42, -172], + [114, -176], + [72, -95], + [116, -94], + [73, -40], + [34, -28], + [192, -95], + [102, -21], + [62, -39], + [89, -40], + [110, -24], + [114, -39], + [85, -49], + [41, -60], + [21, -162], + [-14, -46], + [13, -65], + [-3, -134], + [18, -44], + [9, -81], + [-9, -49], + [-21, -38], + [0, -30], + [-18, -38], + [-50, -387], + [-111, -365], + [-91, -184], + [-22, -134], + [-34, -78], + [-45, -181], + [0, -141], + [-19, -78], + [14, -57], + [16, -174], + [-13, -180], + [-32, -117], + [-47, -120], + [0, -204], + [21, -53], + [34, -47], + [21, -116], + [32, -44], + [137, -116], + [30, -46], + [55, -122], + [96, -98], + [64, -99], + [60, -222], + [1, -251], + [11, -149], + [77, -364], + [174, -269], + [68, -73], + [35, -163], + [62, -117], + [53, -56], + [155, -127], + [130, -146], + [50, -128], + [33, -162], + [7, -85], + [-15, -211], + [-64, -210], + [-84, -109], + [7, -37], + [46, -78], + [1, -158], + [11, -81], + [-8, -136], + [9, -55], + [29, -65], + [8, -125], + [-2, -90], + [-12, -44], + [-61, -160], + [-38, -44], + [-32, -18], + [-169, -25], + [-89, 3], + [-319, 142], + [-57, 39], + [-87, 14], + [-225, -19], + [-301, -158], + [-50, -19], + [-157, -88], + [-43, -50], + [-77, -49], + [-146, -140], + [-71, -89], + [-13, -48], + [-6, -160], + [41, -48], + [50, -166], + [28, -53], + [48, -51], + [20, -38], + [-9, -43], + [5, -97], + [17, -63], + [45, -76], + [65, -67], + [66, -24], + [34, 9], + [47, 42], + [41, 16], + [41, 7], + [37, -4], + [11, -15], + [-15, -53], + [-100, -92], + [-48, -32], + [-87, -90], + [-47, -33], + [-53, -19], + [-38, -1], + [-187, -53], + [-75, -7], + [-226, -2], + [-153, -29], + [-54, -14], + [-266, -108], + [-276, -150], + [-47, -43], + [-539, -369], + [-235, -188], + [-79, -50], + [-223, -200], + [-254, -296], + [-134, -137], + [-84, -126], + [-24, -3], + [-112, -166], + [-223, -371], + [-6, -79], + [-57, -97], + [-78, -100], + [-60, -165], + [-22, -254], + [-6, -253], + [8, -188], + [30, -88], + [16, -166], + [61, -145], + [113, -221], + [84, -106], + [30, -51], + [99, -107], + [34, -32], + [95, -31], + [132, -19], + [288, -62], + [232, -82], + [105, -25], + [251, -75], + [228, -24], + [52, -2], + [37, 9], + [59, -5], + [87, -32], + [50, -42], + [35, -3], + [29, -16], + [128, -125], + [109, -63], + [27, -28], + [5, -23], + [94, -47], + [112, -113], + [5, -62], + [-12, -56], + [-41, -71], + [-8, -93], + [-110, -117], + [-59, -16], + [-68, -49], + [-72, -71], + [-26, -48], + [-115, -129], + [-78, -45], + [-34, -30], + [-56, -90], + [-37, -26], + [-86, -85], + [-48, -92], + [-65, -87], + [-35, -68], + [-77, -76], + [-280, -173], + [-33, -34], + [-30, -47], + [-32, -73], + [-95, -53], + [-357, -118], + [-73, -39], + [-9, -13], + [-91, -56], + [-80, -69], + [-70, -100], + [-41, -84], + [-20, -3], + [-27, -23], + [-7, -25], + [27, -17], + [41, -71], + [0, -49], + [-59, -72], + [14, -108], + [-11, -26], + [-31, -32], + [-35, -85], + [-60, -112], + [-75, -194], + [-84, -112], + [-122, -37], + [-165, -97], + [-30, -26], + [-49, -68], + [-62, -121], + [-88, -75], + [-83, -53], + [-23, -59], + [-38, -47], + [-24, -55], + [75, -113], + [7, -59], + [-19, -74], + [-3, -74], + [-52, -45], + [-29, -13], + [-58, -80], + [-2, -36], + [-16, -30], + [-93, -113], + [-106, -48], + [-117, -25], + [-182, 11], + [-98, -1], + [-72, -8], + [-48, -22], + [-2, -11], + [-96, -73], + [-155, -64], + [-442, -121], + [-84, -32], + [-185, -37], + [-222, 5], + [-82, 12], + [-82, 0], + [-123, -11], + [-214, -64], + [-66, -12], + [-298, -8], + [-171, 10], + [-107, 34], + [-39, 23], + [-39, 40], + [-73, 55], + [-123, 54], + [-101, 79], + [-75, 37], + [-209, 7], + [-119, 17], + [-399, 82], + [-134, 38], + [-130, 26], + [-76, 38], + [-65, 50], + [-28, 66], + [-30, 28], + [-183, 56], + [-119, 75], + [-191, 82], + [-305, 199], + [-446, 346], + [-20, 39], + [-96, 115], + [-154, 137], + [-38, 19], + [-55, 13], + [-149, 67], + [-18, 20], + [-214, 121], + [-37, 34], + [-241, 75], + [-48, 37], + [-64, 35], + [-51, 46], + [-255, 91], + [-185, 38], + [-57, 2], + [-120, 31], + [-178, 19], + [-161, 36], + [-35, 22], + [-189, 54], + [-162, 33], + [-50, 27], + [-94, 30], + [-175, 48], + [-110, 14], + [-303, 0], + [-169, 23], + [-296, -1], + [-184, -8], + [-228, -30], + [-75, -18], + [-48, -39], + [-81, -104], + [-43, -74], + [-80, -74], + [-54, -25], + [-57, -44], + [-193, -207], + [1, -9], + [-33, -23], + [-121, -130], + [-58, -42], + [-71, -71], + [-115, -71], + [-105, -76], + [-147, -66], + [-133, -28], + [-82, -35], + [-127, -41], + [-367, -45], + [-460, -15], + [-59, 2], + [-109, 26], + [-148, 7], + [-82, 22], + [-183, 23], + [-34, 12], + [-66, 46], + [-134, 73], + [-15, 48], + [0, 78], + [-16, 21], + [-91, 26], + [-27, 18], + [-10, 18], + [8, 46], + [-15, 110], + [27, 44], + [14, 53], + [42, 74], + [37, 39], + [107, 58], + [27, 69], + [27, 32], + [48, 21], + [43, 0], + [98, 43], + [50, 46], + [122, 81], + [125, 140], + [41, 35], + [39, 66], + [102, 99], + [61, 38], + [29, 26], + [23, 0], + [62, 39], + [-3, 65], + [-11, 22], + [-80, 62], + [-14, 22], + [-3, 127], + [52, 116], + [32, 34], + [136, 261], + [64, 79], + [49, 23], + [66, 18], + [41, 26], + [74, 77], + [35, 91], + [39, 42], + [31, 134], + [43, 85], + [39, 47], + [81, 68], + [100, 61], + [135, 31], + [218, 235], + [46, 67], + [55, 56], + [3, 14], + [86, 113], + [35, 25], + [80, 111], + [-39, 226], + [13, 109], + [36, 55], + [-25, 58], + [-2, 65], + [30, 44], + [37, 242], + [44, 79], + [71, 76], + [35, 93], + [7, 87], + [-8, 42], + [61, 126], + [39, 32], + [14, 25], + [-1, 99], + [-33, 53], + [33, 100], + [91, 118], + [106, 65], + [68, 59], + [76, 36], + [189, 17], + [61, 32], + [16, 18], + [25, 85], + [15, 246], + [-44, 94], + [-89, 297], + [-100, 199], + [-23, 70], + [-9, 194], + [-99, 171], + [-16, 112], + [-69, 99], + [-57, 54], + [-28, 64], + [-126, 182], + [-18, 47], + [-93, 139], + [-79, 174], + [-91, 167], + [-266, 352], + [-79, 66], + [-36, 92], + [-86, 81], + [-50, 65], + [-7, -3], + [-153, 170], + [-92, 118], + [-175, 176], + [-244, 217], + [-252, 164], + [-61, 12], + [-137, 0], + [-126, -22], + [-34, -25], + [-38, -11], + [-77, 0], + [-116, 26], + [-82, -1], + [-96, 25], + [-107, 5], + [-30, 12], + [-25, 32], + [-25, 14], + [-57, 7], + [-37, 14], + [-11, 21], + [9, 90], + [48, 51], + [29, 58], + [-3, 106], + [-11, 53], + [26, 92], + [5, 57], + [-12, 36], + [-123, 116], + [-28, 42], + [14, 21], + [52, 21], + [16, 23], + [4, 25], + [-2, 30], + [-14, 23], + [-29, 21], + [2, 30], + [-69, 123], + [-32, 300], + [0, 200], + [-47, 182], + [-16, 118], + [0, 59], + [13, 37], + [56, 57], + [20, 189], + [-7, 111], + [-83, 197], + [2, 376], + [32, 321], + [23, 106], + [45, 123], + [53, 54], + [45, 170], + [15, 94], + [-5, 71], + [-42, 141], + [-5, 84], + [-148, 228], + [-30, 141], + [-1, 76], + [-38, 117], + [-77, 147], + [-16, 106], + [-61, 100], + [-8, 135], + [19, 42], + [57, 26], + [23, 110], + [-1, 204], + [-39, 104], + [-2, 503], + [31, 146], + [64, 24], + [48, 30], + [20, 39], + [18, 47], + [8, 108], + [61, 24], + [22, 82], + [0, 106], + [-15, 47], + [-34, 59], + [-5, 59], + [-12, 23], + [-102, 70], + [-60, 65], + [-11, 25], + [0, 72], + [-21, 42], + [-30, 21], + [-54, 22], + [-54, 71], + [-15, 58], + [-8, 100], + [-54, 100], + [7, 159], + [-15, 76], + [-1, 136], + [53, 229], + [98, 124], + [137, 100], + [319, 260], + [95, 68], + [61, 19], + [18, -5], + [23, -23], + [9, -56], + [19, -23], + [18, -69], + [1, -157], + [-25, -105], + [9, -50], + [174, -106], + [238, -88], + [65, -35], + [190, -27], + [53, -13], + [25, -83], + [62, -71], + [59, -17], + [71, 35], + [54, 71], + [93, 83], + [73, 34], + [112, -4], + [36, 4], + [43, 19], + [219, 8], + [71, 23], + [27, 16], + [121, 36], + [263, 120], + [45, 53], + [174, 95], + [228, 177], + [129, 153], + [55, 33], + [190, 197], + [91, 62], + [69, 62], + [36, 51], + [20, 37], + [2, 54], + [44, 55], + [30, 65], + [121, 182], + [23, 54], + [0, 41], + [-23, 28], + [50, 43], + [27, 56], + [18, 104], + [43, 62], + [-50, 56], + [40, 21], + [107, 31], + [37, 22], + [52, 63], + [101, 235], + [66, 247], + [-11, 110], + [-21, 56], + [-10, 113], + [-30, 54], + [-5, 24], + [0, 26], + [20, 19], + [57, -3], + [70, -19], + [89, -46], + [23, -25], + [81, -35], + [109, -5], + [145, 6], + [159, 65], + [190, 124], + [135, 146], + [137, 91], + [263, 274], + [77, 54], + [87, 127], + [46, 44], + [7, 21], + [108, 105], + [119, 17], + [50, 39], + [43, 20], + [43, 8], + [144, -3], + [43, -10], + [84, -42], + [76, 1], + [85, 12], + [81, 15], + [73, 30], + [43, 23], + [69, 64], + [59, 125], + [51, 67], + [12, 40], + [72, 119], + [57, 198], + [23, 141], + [4, 100], + [-30, 291], + [-81, 144], + [-65, 72], + [-61, 50], + [-106, 63], + [-16, 46], + [8, 63], + [36, 73], + [141, 99], + [79, 36], + [109, 4], + [42, -9], + [72, 13], + [133, 47], + [154, 72], + [231, 83], + [54, 1], + [50, 11], + [78, 49], + [50, 69], + [20, 152], + [52, 0], + [110, -18], + [38, 2], + [62, 39], + [52, 4], + [133, -24], + [75, -36], + [68, -1], + [151, 41], + [104, 72], + [41, 43], + [20, 46], + [67, 58], + [106, 65], + [46, 65], + [62, 57], + [17, 93], + [23, 32], + [107, 71], + [37, 13], + [145, 137], + [32, 10], + [75, 64], + [54, 70], + [41, 83], + [7, 44], + [16, 32], + [61, 67], + [85, 63], + [4, 26], + [27, 38], + [93, 78], + [46, 18], + [70, -9], + [42, 11], + [45, 24], + [46, 4], + [117, -19], + [40, 21], + [61, 7], + [33, 14], + [129, 11], + [34, 14], + [44, 6], + [77, 4], + [92, 0], + [36, -11], + [59, -34], + [180, -59], + [88, 15], + [84, 71], + [7, 21], + [49, 38], + [30, 37], + [29, 41], + [21, 74], + [63, 79], + [21, 23], + [91, 55], + [198, 86], + [116, 33], + [228, 4], + [109, -13] + ], + [ + [38977, 334034], + [97, -7], + [85, 16], + [46, 18], + [66, 91], + [42, 14], + [25, -13], + [6, -279], + [-25, -142], + [4, -30], + [-13, -84], + [-44, -59], + [-6, -157], + [30, -48], + [55, -24], + [74, -2], + [65, 18], + [122, -48], + [48, -29], + [58, -52], + [212, -114], + [73, -55], + [54, -28], + [113, -41], + [103, -58], + [12, -69], + [-30, -42], + [3, -37], + [-30, -50], + [23, -12], + [23, 5], + [35, 45], + [45, 27], + [33, 9], + [41, -4], + [130, -46], + [52, -41], + [67, -19], + [233, -30], + [30, -9], + [78, 23], + [57, 52], + [38, 20], + [181, -3], + [56, -31], + [57, -49], + [39, -23], + [35, -38], + [25, -92], + [0, -82], + [29, -44], + [44, -23], + [34, -35], + [19, -46], + [0, -36], + [-19, -32], + [-2, -35], + [35, -75], + [-53, -82], + [42, -39], + [12, -21], + [-56, -64], + [19, -41], + [28, -12], + [37, -53], + [20, -56], + [3, -43], + [32, -11], + [78, -2], + [21, -11], + [10, -14], + [2, -38], + [80, -93], + [27, -17], + [6, -28], + [30, -19], + [42, -5], + [34, 10], + [39, -10], + [26, -16], + [13, -25], + [7, -60], + [12, -23], + [42, -33], + [-2, -97], + [-7, -29], + [-35, -51], + [16, -53], + [-45, -41], + [-7, -37], + [2, -27], + [35, -67], + [-5, -20], + [-57, -48], + [-9, -34], + [5, -149], + [18, -35], + [30, -25], + [88, -3], + [20, -15], + [5, -35], + [-30, -57], + [0, -27], + [40, -48], + [9, -47], + [19, -20], + [83, -14], + [23, -16], + [18, -25], + [9, -37], + [49, -61], + [-2, -17], + [-47, -23], + [5, -43], + [-29, -50], + [4, -23], + [83, -64], + [14, -25], + [-7, -40], + [19, -18], + [39, -14], + [16, -20], + [5, -60], + [34, -41], + [-2, -51], + [-13, -23], + [-21, -23], + [-14, 0], + [-35, -31], + [18, -15], + [1, -19], + [28, -19], + [126, -37], + [33, -18], + [25, -28], + [0, -36], + [19, -16], + [30, -10], + [48, -41], + [7, -53], + [-11, -50], + [-46, -64], + [-14, -35], + [37, -27], + [34, -6], + [24, -24], + [-7, -18], + [5, -44], + [30, -19], + [27, -76], + [-20, -53], + [14, -26], + [46, -46], + [0, -27], + [-11, -20], + [-49, -19], + [-6, -20], + [34, -16], + [0, -29], + [-61, -71], + [-68, -53], + [-107, -28], + [-26, 7], + [-60, -4], + [-28, -14], + [-20, -23], + [-16, -36], + [0, -73], + [9, -28], + [46, -53], + [97, -66], + [44, -14], + [102, -9], + [-17, -41], + [-222, -59], + [-47, 47], + [-2, 30], + [-16, 30], + [-51, 57], + [-65, 27], + [-66, 0], + [-40, -17], + [-27, -64], + [-32, -12], + [-28, 2], + [-25, 14], + [-53, -10], + [-48, -40], + [-28, 1], + [-21, -13], + [-25, 17], + [-28, 41], + [-23, 9], + [-48, -2], + [-53, -34], + [-64, 6], + [-79, -26], + [-15, -82], + [16, -100], + [122, -171], + [84, -70], + [8, -47], + [-15, -88], + [-61, -77], + [-84, -83], + [-122, -76], + [-602, -154], + [-190, -59], + [-404, -30], + [-216, -119], + [-142, -57], + [-170, 2], + [-174, -101], + [-123, -60], + [-16, -38], + [37, -16], + [28, 0], + [46, 7], + [19, 10], + [200, 24], + [230, 6], + [64, -7], + [100, -67], + [33, -12], + [66, 6], + [33, 19], + [77, -6], + [57, 9], + [46, -12], + [16, -25], + [4, -26], + [-24, -37], + [-4, -39], + [33, -78], + [-13, -26], + [-24, -19], + [4, -31], + [57, -13], + [90, 7], + [18, 9], + [31, 2], + [129, -5], + [39, -59], + [-15, -53], + [-115, -6], + [-60, -59], + [0, -76], + [-17, -17], + [24, -99], + [58, -79], + [41, -28], + [153, -69], + [31, -2], + [65, 9], + [74, -14], + [58, 3], + [17, 38], + [98, 35], + [100, -6], + [129, 36], + [77, 59], + [13, 64], + [-25, 12], + [-13, 16], + [2, 49], + [83, 29], + [50, -13], + [16, -21], + [29, -9], + [21, 6], + [32, 38], + [53, 3], + [13, -19], + [4, -33], + [41, -63], + [47, -124], + [30, -117], + [107, -100], + [192, -82], + [144, -29], + [84, -47], + [100, -35], + [99, -18], + [131, 3], + [37, 31], + [136, 35], + [16, 14], + [84, -17], + [-7, -77], + [-16, -53], + [62, -117], + [46, -24], + [99, 6], + [45, 35], + [76, 6], + [92, -5], + [8, -30], + [-159, -82], + [-60, -59], + [-54, -83], + [-30, -176], + [8, -47], + [46, -65], + [8, -64], + [99, -118], + [16, -58], + [-15, -89], + [-61, -88], + [-46, -159], + [0, -71], + [-53, -53], + [-84, -24], + [-129, -1], + [-66, -38], + [-91, -103], + [-232, -35], + [-84, 24], + [-45, -24], + [-96, -11], + [-57, -48], + [-3, -37], + [-23, -47], + [-31, -26], + [-135, -76], + [-77, -35], + [-165, -19], + [-166, 48], + [-1, 8], + [-33, 16], + [-49, 0], + [-82, -19], + [-159, -16], + [-86, -19], + [-245, -143], + [-2, -27], + [-53, -74], + [-84, -95], + [-30, -82], + [-7, -182], + [-38, -24], + [-47, 36], + [-160, 84], + [-197, 43], + [-47, 19], + [-221, 52], + [-260, 17], + [-136, 0], + [-305, -50], + [-134, -97], + [-164, -65], + [-212, -142], + [-198, -106], + [-130, -130], + [-76, -94], + [-38, -65], + [-59, -3], + [-15, 25], + [-107, 78], + [-81, 13], + [-107, 34], + [-82, 10], + [-115, -1], + [-32, 26], + [-135, 22], + [-78, 3], + [-205, -1], + [-65, -6], + [-85, -54], + [-21, -3], + [-119, -63], + [-73, -29], + [-40, -4], + [-42, 20], + [-67, 15], + [-32, 70], + [-29, 31], + [-45, 16], + [-65, 0], + [-70, -25], + [-229, -1], + [-121, -15], + [-42, -20], + [-86, -13], + [-94, -53], + [-90, -64], + [-53, -25], + [-327, 8], + [-66, -15], + [-234, 0], + [-159, 24], + [-70, 0], + [-253, 41], + [-37, 35], + [-78, 50], + [-119, 9], + [-65, 16], + [-120, 60], + [-221, 188], + [-221, 153], + [-23, 43], + [-102, 110], + [-21, 34], + [-25, 73], + [-14, 121], + [-107, 89], + [-152, 175], + [-55, 96], + [-130, 115], + [-14, 39], + [-1, 115], + [15, 46], + [149, 102], + [46, 21], + [161, 68], + [142, 38], + [182, 71], + [42, 30], + [13, 27], + [11, 4], + [72, 168], + [52, 21], + [31, 31], + [19, 36], + [31, 15], + [32, 58], + [18, 15], + [-20, 144], + [1, 66], + [-51, 263], + [-102, 329], + [-21, 34], + [-36, 136], + [-25, 53], + [-37, 142], + [-41, 101], + [-3, 39], + [-51, 47], + [-70, 28], + [-40, 53], + [-10, 26], + [117, 35], + [217, -17], + [48, 2], + [99, 19], + [35, -1], + [106, -55], + [99, -5], + [150, -23], + [45, 9], + [21, 13], + [42, 3], + [69, -9], + [168, 54], + [117, -7], + [32, -16], + [44, -5], + [166, -2], + [163, 29], + [55, 26], + [137, 36], + [421, -109], + [134, 6], + [82, 12], + [60, 13], + [67, 35], + [51, 14], + [84, 6], + [60, 25], + [56, 34], + [34, 44], + [94, 57], + [59, 18], + [113, 121], + [42, 82], + [71, 94], + [11, 61], + [-46, 182], + [13, 189], + [20, 44], + [23, 132], + [50, 86], + [7, 36], + [-2, 135], + [-40, 94], + [-12, 97], + [-9, 164], + [7, 62], + [-35, 77], + [-8, 65], + [-20, 11], + [-23, 30], + [-9, 32], + [4, 30], + [-14, 45], + [-35, 8], + [-39, 37], + [-55, 29], + [-46, -15], + [-48, -47], + [-16, -36], + [-51, -27], + [-48, 14], + [-14, 18], + [-3, 29], + [30, 32], + [28, 12], + [13, 25], + [-13, 14], + [13, 64], + [42, 77], + [-9, 24], + [-35, 20], + [-12, 44], + [14, 20], + [28, 7], + [36, -11], + [58, 16], + [28, -30], + [-5, -41], + [-25, -51], + [32, -62], + [39, 1], + [40, 23], + [52, 71], + [11, 55], + [-68, 56], + [-17, 78], + [21, 108], + [22, 66], + [24, 8], + [70, 111], + [-20, 18], + [-58, 7], + [-62, 40], + [-157, -53], + [-41, 16], + [-3, 73], + [11, 99], + [-55, 128], + [-49, 41], + [-46, 15], + [-285, 270], + [-45, 80], + [-48, 62], + [-36, 24], + [-22, 39], + [0, 22], + [-40, 99], + [-23, 32], + [-81, 72], + [-37, 50], + [-6, 36], + [-42, 30], + [-5, 70], + [29, 43], + [14, 154], + [30, 58], + [67, 80], + [4, 42], + [21, 24], + [14, 217], + [27, 135], + [-13, 26], + [0, 149], + [41, 132], + [16, 92], + [27, 31], + [15, 37], + [-3, 41], + [14, 57], + [67, 106], + [-36, 82], + [9, 43], + [92, 129], + [2, 39], + [-16, 34], + [55, 103], + [48, 2], + [12, -11], + [42, -10], + [33, 60], + [-1, 136], + [41, 59], + [9, 54], + [-5, 96], + [23, 50], + [52, 45], + [30, 59], + [55, 66], + [0, 101], + [18, 52], + [0, 72], + [46, 31], + [55, 25], + [14, 60], + [69, 87], + [99, 61], + [85, 23], + [78, 65], + [129, 6], + [53, 85], + [-6, 70], + [63, 71], + [46, 20], + [32, 34], + [29, 72], + [23, 164], + [25, 41], + [67, 55], + [116, 67], + [16, 80], + [-22, 45], + [5, 26], + [105, 58], + [99, 7], + [69, 39], + [58, 71], + [30, 13], + [34, -2], + [23, -11], + [17, -25], + [2, -112], + [23, -46], + [24, -6], + [82, -143], + [86, -87], + [85, -47], + [47, -18], + [41, -5] + ], + [ + [69756, 371372], + [46, -88], + [46, -47], + [192, -129], + [191, -100], + [160, -29], + [214, 0], + [253, -71], + [76, -41], + [145, -58], + [207, -148], + [314, -287], + [138, -200], + [23, -88], + [54, -89], + [122, -170], + [122, -141], + [39, -65], + [8, -206], + [-31, -97], + [-99, -135], + [-122, -195], + [-38, -199], + [-8, -100], + [0, -118], + [16, -59], + [115, -170], + [107, -94], + [84, -230], + [46, -35], + [46, -65], + [23, -129], + [61, -65], + [23, -47], + [76, -64], + [47, -53], + [76, -112], + [0, -53], + [130, -188], + [16, -82], + [76, -118], + [153, -159], + [31, -70], + [69, -118], + [176, -264], + [107, -124], + [77, -59], + [107, -105], + [30, -53], + [31, -59], + [15, -71], + [8, -117], + [-15, -65], + [-54, -100], + [130, -200], + [46, -135], + [31, -41], + [8, -212], + [138, -106], + [122, -118], + [84, -11], + [61, 6], + [77, 41], + [213, -6], + [62, -29], + [53, -59], + [46, -82], + [8, -159], + [107, -94], + [61, -74], + [38, -117], + [85, -106], + [38, -206], + [38, -82], + [0, -53], + [31, -71], + [84, -17], + [23, -41], + [69, -71], + [46, -83], + [8, -23], + [-8, -182], + [8, -53], + [54, -65], + [84, -29], + [61, -47], + [-38, -53], + [-54, -30], + [-15, -64], + [0, -48], + [92, -41], + [84, -11], + [7, -29], + [8, -83], + [-53, -94], + [53, -70], + [-7, -100], + [-38, -48], + [-8, -58], + [46, -59], + [53, -6], + [69, -53], + [8, -118], + [84, -200], + [123, -164], + [53, -18], + [99, -5], + [54, -65], + [16, -448], + [-16, -111], + [-68, -71], + [-77, -165], + [-106, -129], + [-169, -182], + [-243, -206], + [-84, -65], + [-100, -6], + [-84, -18], + [-137, -41], + [-145, -65], + [-161, -35], + [-267, 29], + [-138, 30], + [-84, 41], + [-390, 276], + [-161, 64], + [-68, 71], + [7, 117], + [-122, 124], + [-8, 153], + [-15, 70], + [-62, 77], + [-7, 82], + [-38, 130], + [-31, 64], + [-54, 77], + [-91, 82], + [-54, 70], + [-69, 54], + [0, 93], + [-176, 230], + [-84, 88], + [-69, 94], + [-23, 71], + [-76, 82], + [-222, 171], + [-92, 190], + [-100, 106], + [-45, 94], + [-8, 53], + [-108, 94], + [-137, 218], + [-92, 123], + [-191, 124], + [-69, 59], + [-146, 99], + [-53, 88], + [-115, 6], + [-99, 18], + [-38, 59], + [30, 47], + [23, 65], + [8, 76], + [-69, 53], + [-84, 12], + [-122, 70], + [-69, 53], + [-16, 71], + [31, 23], + [107, 47], + [84, 94], + [76, 47], + [92, 24], + [206, 130], + [69, 35], + [7, 53], + [-122, 35], + [-99, -6], + [-62, -53], + [-84, 0], + [-68, -18], + [-145, 24], + [-284, 176], + [-160, 47], + [-138, -29], + [-84, -41], + [-129, -106], + [-84, -106], + [30, -54], + [-53, -47], + [-92, -6], + [-175, 30], + [-131, 5], + [-129, 48], + [-138, 64], + [-184, 23], + [-221, 71], + [-299, 364], + [-92, 94], + [-61, 118], + [-168, 276], + [-54, 200], + [-23, 141], + [-46, 100], + [-8, 65], + [-123, 135], + [38, 206], + [-53, 47], + [-62, 106], + [-53, 12], + [-115, 147], + [-8, 76], + [-114, 188], + [-115, 47], + [-222, 106], + [-237, 58], + [-191, 12], + [-321, 70], + [-390, -6], + [-76, 12], + [-107, 41], + [-138, 12], + [-54, -6], + [-107, -60], + [-144, -17], + [-138, -6], + [-46, -12], + [-46, 41], + [-15, 47], + [-77, 47], + [15, 42], + [-69, 70], + [-15, 76], + [-53, 118], + [-146, 159], + [-107, 11], + [-161, 65], + [-69, 70], + [-23, 83], + [-61, 53], + [16, 47], + [122, 12], + [99, 29], + [92, 71], + [76, 135], + [7, 94], + [84, 82], + [115, 95], + [145, 0], + [245, 47], + [305, -17], + [252, 106], + [314, 94], + [313, 171], + [145, 130], + [61, 129], + [38, 165], + [389, 406], + [99, 118], + [130, 123], + [23, 88], + [99, 48], + [84, 147], + [31, 88], + [15, 188], + [114, 106], + [23, 65], + [115, 100], + [-16, 53], + [-23, 12], + [-68, -6], + [-47, 17], + [0, 65], + [-15, 70], + [8, 77], + [53, 0], + [53, -47], + [54, -76], + [54, -47], + [61, -142], + [69, -41], + [99, -40], + [46, -59], + [31, -24], + [-15, -41], + [0, -41], + [53, -47], + [8, -77], + [39, -23], + [68, 41], + [23, 41], + [69, 83], + [214, 29], + [53, 30], + [31, 88], + [7, 64], + [-54, 165], + [24, 88], + [-39, 24], + [31, 59], + [45, -9], + [214, 0], + [84, -29], + [54, -47], + [130, 6], + [130, 47], + [46, 6], + [46, -12], + [76, -47] + ], + [ + [77910, 383223], + [123, -3], + [46, -23], + [10, -69], + [34, -17], + [-6, -73], + [51, -40], + [0, -41], + [17, -31], + [15, -110], + [17, -33], + [0, -22], + [-40, -40], + [0, -21], + [14, -23], + [75, -9], + [17, -11], + [11, -22], + [6, -76], + [124, -44], + [17, -48], + [-12, -34], + [3, -20], + [23, -8], + [83, 7], + [39, -15], + [61, -59], + [46, -100], + [46, -59], + [124, -4], + [56, 5], + [23, -59], + [-12, -34], + [0, -65], + [44, -11], + [122, -4], + [15, -18], + [-9, -27], + [-28, -8], + [-83, 0], + [-37, -18], + [-9, -63], + [-17, -21], + [29, -57], + [17, -66], + [0, -33], + [-40, -63], + [11, -25], + [57, -57], + [41, -57], + [108, -90], + [15, -20], + [8, -53], + [0, -55], + [-54, -37], + [-51, -11], + [-44, -33], + [10, -18], + [76, 16], + [18, -27], + [63, -24], + [37, 0], + [40, 20], + [20, -51], + [-3, -92], + [-14, -57], + [49, -33], + [17, -22], + [23, -47], + [0, -28], + [-26, -51], + [-28, -31], + [-12, -33], + [-26, -114], + [3, -117], + [-39, -44], + [-3, -74], + [-99, -229], + [-19, -93], + [3, -53], + [-28, -15], + [-78, -13], + [1, -8], + [-47, -30], + [-8, -12], + [-2, -91], + [-24, -24], + [-17, -6], + [-26, -32], + [-7, -82], + [-39, -65], + [-4, -25], + [46, -45], + [11, -27], + [-9, -33], + [-49, -55], + [0, -24], + [63, -128], + [29, -19], + [72, -16], + [8, -48], + [-25, -37], + [5, -27], + [32, -16], + [60, 3], + [66, 57], + [37, 15], + [31, 0], + [55, -35], + [111, -19], + [37, -20], + [15, -18], + [22, -101], + [92, -29], + [99, -58], + [54, -48], + [19, -47], + [-9, -67], + [23, -33], + [20, -11], + [8, -53], + [-42, -46], + [6, -28], + [28, -37], + [18, -93], + [-14, -35], + [-58, -35], + [-2, -22], + [14, -49], + [-32, -35], + [-37, -7], + [-8, -16], + [2, -65], + [-19, -53], + [-75, -123], + [-71, -70], + [-40, -25], + [-72, -3], + [-8, -33], + [-66, -67], + [-23, -49], + [-66, -86], + [-31, -61], + [-46, -42], + [-6, -26], + [161, -115], + [25, -26], + [7, -29], + [8, -92], + [-15, -26], + [-48, -42], + [-94, -55], + [0, -24], + [28, -9], + [38, 2], + [71, 24], + [109, -8], + [31, -22], + [55, -5], + [51, -15], + [60, -68], + [6, -65], + [-17, -41], + [-106, -35], + [-6, -29], + [32, -22], + [-14, -35], + [31, -44], + [17, -79], + [32, -29], + [20, -35], + [-23, -20], + [-29, -2], + [-42, 22], + [-41, -5], + [-28, -22], + [-63, -17], + [-23, -16], + [-11, -26], + [0, -13], + [63, -88], + [68, -29], + [146, -33], + [23, -35], + [-29, -61], + [12, -78], + [-17, -13], + [-38, -2], + [-54, 33], + [-11, -11], + [37, -207], + [-11, -33], + [-40, -50], + [17, -47], + [0, -28], + [-8, -24], + [-24, -20], + [0, -90], + [-42, -89], + [-26, -26], + [-23, -95], + [9, -46], + [-29, -25], + [0, -27], + [-12, -19], + [9, -28], + [-25, -19], + [-32, -5], + [-34, -15], + [-57, -51], + [-120, -66], + [-43, -49], + [-6, -99], + [-17, -30], + [-17, -18], + [-26, -9], + [-40, -1], + [-23, -9], + [58, -62], + [22, -82], + [-31, -17], + [-8, 4], + [-41, -9], + [9, -68], + [-17, -26], + [-26, -18], + [-49, -18], + [-59, -4], + [-83, 6], + [-43, -24], + [-60, -2], + [-52, 11], + [-7, 14], + [-56, 24], + [-69, -17], + [-46, -41], + [1, -35], + [14, -33], + [-11, -33], + [-20, -15], + [-6, -53], + [-40, -68], + [-23, -22], + [-34, -20], + [-40, -9], + [-40, 7], + [0, 22], + [-17, 28], + [-43, 18], + [-34, 2], + [-78, -53], + [-5, -29], + [-29, -22], + [-29, -9], + [-37, 0], + [-14, 18], + [11, 57], + [-108, 95], + [-104, 53], + [-59, 17], + [-158, -4], + [-17, 17], + [63, 112], + [-29, 14], + [-14, 26], + [40, 35], + [6, 20], + [-15, 9], + [-77, -40], + [-17, 0], + [-69, 59], + [43, 71], + [-49, 31], + [-20, 28], + [-3, 27], + [-28, 53], + [-26, 24], + [-34, 11], + [-20, 24], + [2, 141], + [-34, 83], + [-54, 36], + [-49, 8], + [-37, -32], + [-17, -5], + [-46, 13], + [-60, 66], + [-4, 85], + [-18, 82], + [-53, 18], + [-5, 44], + [-15, 13], + [-88, 20], + [-24, 22], + [0, 28], + [-20, 9], + [-39, -2], + [-35, -22], + [-31, 4], + [-34, 18], + [-38, 46], + [-54, 36], + [-46, 67], + [-200, 97], + [-29, 24], + [-6, 66], + [-31, 24], + [2, 20], + [-17, 11], + [-11, 27], + [-57, 35], + [-83, 24], + [-12, 26], + [5, 41], + [-45, 12], + [-29, 29], + [-20, 66], + [-34, 42], + [-3, 41], + [-57, 18], + [-31, 20], + [-12, 35], + [17, 26], + [20, 11], + [0, 20], + [-26, 11], + [-5, 20], + [20, 37], + [2, 25], + [40, 33], + [86, 0], + [31, 24], + [32, 11], + [38, 40], + [-2, 47], + [50, 29], + [2, 76], + [29, 39], + [49, 33], + [28, 44], + [89, 42], + [0, 11], + [-31, 11], + [-20, -2], + [-192, -80], + [-97, -81], + [-35, -49], + [-71, -37], + [-112, 24], + [-48, 29], + [-33, 52], + [-23, 18], + [-62, 77], + [0, 47], + [-38, 64], + [-51, 55], + [-5, 28], + [14, 46], + [-20, 35], + [-6, 66], + [-17, 11], + [-37, -9], + [-37, 33], + [-54, 11], + [-29, -15], + [-81, -20], + [-28, 0], + [-106, -42], + [-28, -1], + [-32, -32], + [-43, -2], + [-78, 24], + [-28, 24], + [-38, 58], + [-12, 66], + [13, 34], + [-9, 31], + [-48, 36], + [-12, 41], + [-20, 7], + [-17, 28], + [-3, 31], + [-32, 16], + [-37, 6], + [-8, 31], + [-34, 37], + [5, 25], + [29, 30], + [24, 12], + [-4, 50], + [12, 58], + [42, 39], + [20, 37], + [-40, 90], + [3, 62], + [23, 48], + [51, 64], + [26, 60], + [8, 64], + [-20, 54], + [0, 47], + [38, 43], + [62, 136], + [0, 106], + [43, 54], + [17, 88], + [37, 64], + [8, 52], + [17, 29], + [35, 31], + [5, 26], + [83, 172], + [18, 118], + [85, 104], + [37, 108], + [34, 64], + [2, 68], + [52, 63], + [23, 88], + [76, 71], + [15, 117], + [54, 95], + [46, 65], + [107, 88], + [76, 200], + [0, 88], + [46, 82], + [15, 83], + [69, 82], + [8, 49], + [42, 73], + [23, 76], + [60, 60], + [9, 98], + [94, 179], + [92, 130], + [37, 110], + [31, 26], + [20, 73], + [31, 62], + [60, 68], + [12, 53], + [443, 567], + [76, 65], + [31, 52], + [100, 112], + [48, 147], + [19, 12], + [23, 46], + [-4, 31], + [13, 29], + [21, 39], + [30, 24], + [20, 62], + [48, 66], + [69, 39], + [115, 32], + [51, 0], + [78, -2], + [42, -16], + [106, -18], + [75, -22], + [185, -30] + ], + [ + [793, 339969], + [80, -8], + [41, -11], + [18, -17], + [-25, -70], + [37, -34], + [311, -53], + [187, -98], + [37, -36], + [81, -32], + [110, -22], + [51, -19], + [40, -17], + [85, -59], + [59, -17], + [186, -14], + [70, 12], + [65, 23], + [148, 91], + [41, 44], + [12, 57], + [26, 29], + [44, 28], + [61, 0], + [52, 20], + [245, -2], + [86, 22], + [80, 10], + [141, 1], + [68, -5], + [50, -12], + [125, -5], + [323, -80], + [134, 0], + [83, -19], + [74, -3], + [476, -1], + [70, -7], + [117, -32], + [146, -25], + [170, -3], + [34, -19], + [94, -90], + [39, -25], + [106, -31], + [58, -9], + [126, -76], + [94, -35], + [81, -48], + [29, -48], + [-9, -136], + [25, -46], + [-4, -47], + [-12, -10], + [6, -42], + [-30, -83], + [4, -35], + [16, -22], + [-16, -24], + [1, -15], + [26, -41], + [0, -16], + [-46, -43], + [-14, -25], + [-19, -120], + [-122, -200], + [-16, -98], + [0, -47], + [22, -61], + [0, -85], + [22, -46], + [30, -22], + [43, -15], + [12, -17], + [-50, -135], + [-37, -55], + [-6, -43], + [-29, -45], + [4, -121], + [26, -63], + [24, -96], + [-18, -130], + [28, -83], + [3, -53], + [52, -111], + [1, -31], + [15, -31], + [23, -228], + [57, -44], + [79, 0], + [35, -27], + [-23, -55], + [0, -23], + [42, -109], + [133, -249], + [69, -241], + [11, -51], + [0, -76], + [-12, -46], + [-41, -85], + [-96, -104], + [-49, -77], + [-54, -60], + [-13, -51], + [-56, -81], + [-16, -37], + [-2, -49], + [-23, -38], + [-40, -248], + [-22, -19], + [-27, -12], + [-173, -4], + [-43, -11], + [-35, -18], + [-69, -113], + [-54, -17], + [-115, -8], + [-35, -10], + [-132, -74], + [-36, -54], + [-29, -22], + [-23, -13], + [-28, -1], + [-36, 4], + [-91, 73], + [-26, 10], + [-108, 123], + [-218, 179], + [-241, 150], + [-218, 47], + [-194, 26], + [-264, 3], + [-199, -90], + [-104, 0], + [-169, 24], + [-80, 31], + [-197, 7], + [-143, -38], + [-68, 8], + [-218, 47], + [-189, 61], + [-212, 88], + [-395, 127], + [-11, -7], + [-83, 3], + [-72, -18], + [-84, 6], + [-33, -8], + [-41, -27], + [-33, -11], + [-37, 0], + [-52, -32], + [-20, -22], + [-2, -19], + [13, -27], + [70, -70], + [4, -49], + [-6, -1], + [2, -11], + [-16, 0], + [-25, 10], + [-20, 31], + [-80, 30], + [-32, 34], + [0, 40], + [12, 42], + [64, 31], + [1, 22], + [-41, 33], + [-29, 13], + [-59, 4], + [-27, -14], + [-15, -13], + [23, -27], + [0, -32], + [-19, -15], + [-22, -5], + [-77, 14], + [-54, 40], + [-13, 27], + [2, 33], + [16, 21], + [68, 10], + [10, 12], + [-4, 68], + [-219, 184], + [-38, 89], + [-17, 80], + [-4, 121], + [-11, 31], + [-20, 10], + [-40, 48], + [-10, 25], + [-60, 40], + [-6, 16], + [6, 38], + [67, 46], + [-2, 18], + [-33, 47], + [-52, 46], + [-155, 205], + [-81, 71], + [9, 42], + [-36, 68], + [4, 27], + [51, 52], + [-6, 49], + [17, 53], + [-6, 66], + [11, 62], + [-7, 132], + [17, 71], + [75, 78], + [-13, 116], + [6, 55], + [26, 33], + [93, 67], + [51, 106], + [63, 70], + [6, 58], + [24, 81], + [21, 30], + [113, 104], + [12, 65], + [97, 113], + [34, 58], + [-11, 121], + [-15, 71], + [-16, 25], + [-19, 60], + [-17, 15], + [0, 32], + [-112, 176], + [-99, 109], + [-116, 106], + [-95, 59], + [-58, 46], + [-37, 11], + [-29, 20], + [-53, 22], + [0, 99], + [22, 47], + [152, 5], + [315, 85], + [188, 97], + [145, 162], + [35, 89], + [-2, 57], + [-19, 23], + [-25, 19], + [-103, 25], + [4, 31], + [29, 12], + [40, 2] + ], + [ + [73835, 380074], + [3, -49], + [32, -36], + [-2, -50], + [-62, -67], + [-28, -8], + [21, -64], + [0, -82], + [-49, -45], + [22, -42], + [10, -48], + [-27, -33], + [-20, -55], + [-50, -41], + [-27, -11], + [-5, -25], + [15, -23], + [5, -52], + [-12, -19], + [7, -26], + [-5, -48], + [-5, -13], + [-17, -11], + [6, -71], + [39, -57], + [7, -72], + [-5, -25], + [-29, -42], + [2, -61], + [-17, -29], + [20, -103], + [45, -77], + [72, -77], + [25, -51], + [-13, -58], + [-57, -50], + [-45, -13], + [-25, 4], + [-57, -26], + [-66, -9], + [-24, 12], + [-24, -2], + [-20, -11], + [10, -18], + [22, -6], + [30, -34], + [25, -117], + [80, -101], + [119, -33], + [18, -17], + [2, -52], + [-7, -14], + [12, -12], + [28, -6], + [25, 13], + [44, 0], + [50, -28], + [18, -48], + [55, -90], + [12, -101], + [18, -56], + [75, -148], + [62, -53], + [12, -23], + [28, -111], + [60, -7], + [77, 7], + [22, -9], + [-2, -79], + [42, -49], + [5, -45], + [-22, -32], + [-50, -36], + [-40, -2], + [-22, -14], + [-27, -38], + [-16, -75], + [-71, -115], + [-21, -50], + [-27, -13], + [-42, -8], + [-18, -21], + [38, -84], + [0, -23], + [-62, -40], + [-52, -46], + [0, -8], + [25, -11], + [77, 15], + [35, -34], + [2, -23], + [-10, -22], + [-62, -11], + [-23, -17], + [-7, -54], + [58, -55], + [0, -35], + [-15, -17], + [0, -80], + [-28, -28], + [9, -23], + [71, -30], + [15, -19], + [2, -21], + [0, -36], + [-11, -20], + [7, -19], + [23, -27], + [65, -38], + [15, -64], + [0, -76], + [-8, -15], + [26, -24], + [28, 21], + [55, -6], + [17, -50], + [35, -38], + [8, -23], + [-5, -15], + [-25, -10], + [20, -33], + [-5, -40], + [-22, -17], + [-73, -2], + [-14, 11], + [0, -49], + [15, -42], + [52, -12], + [25, -19], + [7, -16], + [-17, -5], + [-30, -36], + [32, -10], + [85, -70], + [22, -41], + [25, -23], + [30, -2], + [-13, -26], + [10, -12], + [70, 0], + [28, -42], + [54, -42], + [18, -36], + [57, -28], + [-10, -22], + [-22, -6], + [5, -33], + [117, -69], + [55, -47], + [20, -71], + [12, -15], + [-10, -20], + [35, -20], + [43, -56], + [66, -33], + [13, -76], + [117, -19], + [27, -16], + [13, -36], + [30, -21], + [54, -13], + [15, -17], + [0, -24], + [-17, -19], + [-2, -17], + [19, -25], + [48, -1], + [42, -25], + [65, -2], + [40, -18], + [92, -3], + [35, -8], + [29, -23], + [5, -17], + [23, -15], + [-5, -52], + [-54, -45], + [57, -3], + [32, -13], + [0, -58], + [25, -23], + [77, -23], + [20, -26], + [0, -33], + [-20, -34], + [4, -59], + [220, -92], + [18, -16], + [5, -26], + [0, -22], + [-22, -23], + [-36, -13], + [-54, 0], + [-40, 16], + [-25, -28], + [-22, -7], + [-53, 0], + [-44, 17], + [-13, -13], + [48, -27], + [2, -25], + [-12, -18], + [-25, 0], + [-28, -11], + [5, -25], + [25, -11], + [28, -8], + [24, 10], + [23, -8], + [7, -53], + [-12, -24], + [-37, -9], + [0, -40], + [44, 15], + [50, -11], + [20, -16], + [45, -95], + [10, -77], + [-21, -42], + [9, -188], + [-10, -29], + [-82, -82], + [-12, -25], + [-8, -63], + [15, -25], + [18, 10], + [0, 27], + [27, 11], + [27, -9], + [52, -52], + [10, -27], + [-17, -105], + [-87, -94], + [-22, -8], + [-35, 20], + [-5, 15], + [-40, -2], + [-35, -17], + [-20, -33], + [4, -13], + [-41, -18], + [-7, -15], + [22, -11], + [40, 6], + [22, -22], + [52, -31], + [25, -28], + [3, -34], + [-9, -4], + [-59, -112], + [-61, -71], + [-10, -60], + [-75, -68], + [-29, -51], + [-5, -31], + [-90, -97], + [-50, -27], + [-44, -2], + [-33, 2], + [-37, 28], + [-25, -5], + [0, -21], + [37, -22], + [28, -47], + [0, -19], + [-55, -31], + [-89, -24], + [42, -38], + [5, -15], + [-23, -21], + [-144, 21], + [-109, 6], + [-125, 23], + [-17, 23], + [-5, 46], + [-38, 28], + [-7, 52], + [-80, 79], + [7, 51], + [-32, 54], + [-206, 254], + [-37, 6], + [0, 100], + [6, 5], + [-37, 27], + [-2, 21], + [46, 40], + [-13, 25], + [-58, 46], + [-23, 9], + [-17, 24], + [-57, 136], + [-33, 39], + [-26, 9], + [-115, 101], + [-99, 44], + [-78, 72], + [-80, 54], + [-102, 94], + [-26, 48], + [-136, 90], + [-65, 15], + [-47, 36], + [-5, 21], + [-43, 40], + [-62, 0], + [-67, 48], + [-82, 8], + [-18, 17], + [-74, 11], + [-65, 33], + [-85, 59], + [-92, -3], + [-48, -21], + [-63, 4], + [-84, 30], + [-38, 0], + [-52, -17], + [-153, 16], + [-32, -15], + [-30, -4], + [-25, 6], + [-17, 38], + [-27, 4], + [-60, -33], + [-5, -50], + [-18, -17], + [-54, 2], + [-30, 19], + [-44, 49], + [-92, 51], + [-152, 126], + [-80, 124], + [-12, 92], + [-21, 35], + [-12, 50], + [-14, 126], + [0, 164], + [25, 119], + [40, 83], + [42, 124], + [-42, 106], + [-8, 195], + [10, 72], + [27, 80], + [98, 152], + [15, 43], + [22, 24], + [20, 73], + [0, 222], + [-60, 40], + [2, 25], + [18, 23], + [7, 29], + [-62, 53], + [5, 60], + [-26, 7], + [-40, 28], + [-32, 79], + [-25, 7], + [-10, 12], + [-5, 48], + [-43, 8], + [-32, -12], + [-45, 4], + [-77, 30], + [-27, 2], + [-40, -19], + [-10, -17], + [0, -17], + [30, -41], + [-4, -11], + [-40, -5], + [-83, 15], + [-122, 3], + [-60, 19], + [-7, 18], + [-3, 24], + [37, 39], + [0, 21], + [-20, 26], + [5, 68], + [46, 25], + [132, 6], + [65, 29], + [103, 89], + [15, 96], + [55, 32], + [-7, 12], + [20, 35], + [-7, 74], + [39, 73], + [0, 17], + [-62, 102], + [-8, 57], + [-26, 3], + [-10, 11], + [-2, 57], + [-7, 11], + [-23, 8], + [-7, 17], + [1, 49], + [-10, 11], + [-13, 90], + [-31, 26], + [3, 17], + [-27, 37], + [-2, 35], + [-44, 47], + [-12, 36], + [6, 37], + [13, 29], + [22, 21], + [2, 27], + [-32, 44], + [-8, 27], + [2, 68], + [13, 45], + [-5, 38], + [-20, 15], + [-3, 42], + [-49, 90], + [-10, 52], + [15, 34], + [48, 38], + [29, 41], + [22, 65], + [2, 56], + [95, 135], + [0, 27], + [22, 42], + [109, 102], + [45, 94], + [8, 76], + [22, 29], + [32, 103], + [50, 91], + [166, 170], + [155, 121], + [136, 49], + [259, 113], + [77, 20], + [28, 21], + [42, 17], + [45, 9], + [110, 73], + [28, 36], + [63, 45], + [49, 10], + [15, 19], + [53, 19], + [85, 119], + [32, 30], + [17, 46], + [29, 32], + [6, 37], + [-15, 36], + [0, 25], + [25, 60], + [227, 179], + [36, 21], + [45, -1], + [38, 17], + [22, 19], + [17, 46], + [45, 10], + [23, -6], + [2, -34], + [23, -17], + [59, -19], + [25, -21] + ], + [ + [70452, 376098], + [11, -67], + [121, -73], + [57, 0], + [36, 20], + [57, 9], + [36, -38], + [173, -20], + [92, -59], + [54, -16], + [48, 25], + [112, -4], + [60, -23], + [114, -23], + [20, -7], + [6, -13], + [91, -3], + [43, -17], + [55, -40], + [37, -13], + [25, -35], + [7, -36], + [-5, -54], + [-22, -46], + [17, -34], + [38, -38], + [-5, -23], + [-23, -18], + [26, -31], + [-5, -26], + [-113, -17], + [-39, -39], + [-18, -36], + [-14, -77], + [-23, -50], + [0, -36], + [48, -96], + [-18, -19], + [-64, -21], + [-84, -64], + [0, -52], + [-35, -77], + [-23, 0], + [10, -25], + [55, -50], + [-3, -55], + [-15, -21], + [-5, -40], + [-22, -54], + [-72, -52], + [-35, -9], + [-7, -28], + [53, -61], + [-15, -22], + [-61, -18], + [10, -146], + [28, -36], + [39, -177], + [-38, -53], + [-37, -28], + [-36, 11], + [-5, -15], + [21, -23], + [41, -17], + [3, -12], + [-23, -19], + [3, -19], + [17, -19], + [35, -15], + [98, -21], + [42, -39], + [-8, -34], + [-24, -13], + [-20, -77], + [-33, -15], + [-80, 15], + [-47, 17], + [0, 16], + [-22, 0], + [-37, -37], + [5, -55], + [-15, -47], + [-27, -32], + [-27, -4], + [20, -26], + [36, -8], + [92, -48], + [33, -35], + [13, -22], + [-5, -29], + [-26, -33], + [21, -17], + [2, -33], + [-27, -69], + [-30, -21], + [-59, 5], + [-38, 36], + [-52, 22], + [2, -26], + [-20, -71], + [-12, -17], + [-24, -11], + [14, -50], + [-4, -15], + [19, -31], + [-30, -40], + [0, -32], + [67, 0], + [30, 18], + [80, -8], + [149, -68], + [10, -19], + [-3, -33], + [-29, -12], + [2, -13], + [-46, -59], + [-15, -88], + [-28, -31], + [-50, -13], + [-30, -43], + [31, -7], + [27, -21], + [22, -38], + [-7, -49], + [-63, -74], + [-19, -39], + [0, -45], + [17, -60], + [48, -4], + [7, -15], + [-20, -27], + [-27, -7], + [12, -23], + [72, -15], + [28, -14], + [17, -25], + [0, -21], + [-32, -71], + [-59, -48], + [-25, -7], + [2, -127], + [-59, -9], + [-28, -48], + [-47, -21], + [-27, -73], + [-26, -5], + [-58, -51], + [-155, -21], + [-63, -21], + [-148, 15], + [-53, -7], + [-62, 14], + [8, 26], + [-18, 9], + [-71, -10], + [-25, 19], + [-62, 22], + [-24, 44], + [-37, 17], + [-10, 56], + [-22, 23], + [-48, 5], + [-10, -40], + [-11, -2], + [-39, 19], + [-7, 37], + [7, 15], + [-72, 27], + [-5, 17], + [-25, 21], + [-54, 42], + [-25, 2], + [-45, 32], + [-17, 24], + [-68, 1], + [-15, -11], + [-55, 40], + [-56, 21], + [-36, 0], + [-34, -24], + [-34, -5], + [-46, 14], + [-41, -1], + [-6, 25], + [-55, 60], + [10, 44], + [42, 55], + [-8, 79], + [-34, 34], + [-50, 23], + [-20, 35], + [-18, 64], + [-37, 24], + [-62, 17], + [-30, 19], + [-33, 51], + [-12, 39], + [-35, 44], + [-20, 99], + [-35, 12], + [-55, 32], + [-29, 0], + [-20, -9], + [0, -104], + [-38, -27], + [0, -10], + [-10, 1], + [-14, -12], + [-5, -15], + [-20, -7], + [-28, 3], + [-22, 25], + [-10, 38], + [6, 62], + [19, 11], + [-8, 67], + [12, 59], + [58, 54], + [89, 50], + [3, 115], + [64, 34], + [5, 16], + [-22, 1], + [-47, -17], + [-70, -61], + [-124, -42], + [-87, 16], + [-21, 29], + [-25, 15], + [0, 60], + [26, 31], + [0, 7], + [-13, 4], + [-40, -13], + [-42, 0], + [-62, 38], + [-55, 17], + [-37, 6], + [-58, -4], + [-54, 21], + [-63, 11], + [-39, 31], + [-33, 4], + [-64, -42], + [-48, -4], + [-47, 38], + [-3, 13], + [-39, 7], + [-125, 173], + [-55, 2], + [-30, 27], + [0, 23], + [20, 33], + [3, 35], + [-28, 42], + [-7, 100], + [-54, 118], + [-41, 135], + [4, 213], + [23, 69], + [65, 38], + [74, -13], + [-5, 38], + [10, 17], + [22, 13], + [68, 0], + [22, 10], + [27, -1], + [12, 26], + [68, 42], + [34, 10], + [40, -4], + [211, 49], + [114, 17], + [123, 6], + [68, 41], + [8, 85], + [-14, 2], + [-37, 28], + [-58, 60], + [25, 151], + [-22, 11], + [-42, 0], + [-37, -25], + [-68, -23], + [-58, -31], + [-64, -3], + [-40, -10], + [-47, -44], + [-37, -8], + [-43, 10], + [-22, 28], + [-10, 39], + [2, 94], + [10, 50], + [30, 57], + [15, 23], + [37, 19], + [0, 21], + [-15, 17], + [-27, 10], + [-47, -6], + [-18, -21], + [-34, -9], + [-50, 5], + [-35, -12], + [-25, -32], + [-42, -23], + [-50, -8], + [-107, 8], + [-25, 25], + [-17, 28], + [5, 31], + [42, 35], + [32, 11], + [102, 6], + [18, -23], + [-3, -17], + [37, 13], + [17, 23], + [-4, 11], + [-40, 21], + [-65, 29], + [-39, 8], + [-13, 86], + [67, 42], + [13, 21], + [-78, 4], + [-4, 17], + [-21, 19], + [-2, 23], + [4, 27], + [13, 16], + [23, 3], + [7, 14], + [-3, 45], + [33, 28], + [3, 24], + [-31, -1], + [-62, 24], + [-30, 19], + [-40, 45], + [-15, 32], + [0, 32], + [18, 79], + [-11, 23], + [-47, 40], + [-20, 39], + [-5, 61], + [23, 28], + [43, 8], + [34, -6], + [15, 17], + [0, 21], + [11, 3], + [18, 26], + [38, 8], + [32, -6], + [112, -69], + [114, -40], + [18, 6], + [5, 46], + [97, 40], + [-30, 31], + [10, 34], + [60, 6], + [32, -29], + [2, -16], + [178, -116], + [0, -39], + [86, -10], + [15, -8], + [45, 1], + [3, -45], + [-17, -63], + [-15, -31], + [-60, -32], + [2, -19], + [41, 5], + [73, 42], + [55, -15], + [13, 6], + [48, 0], + [28, -43], + [99, -54], + [7, -25], + [20, -8], + [88, 50], + [66, 10], + [45, 17], + [77, -13], + [28, 7], + [51, 31], + [18, 25], + [-45, 3], + [-119, -30], + [-30, 2], + [-70, -16], + [-46, 4], + [-48, 17], + [-25, 29], + [12, 58], + [20, 15], + [35, 7], + [35, 0], + [22, -13], + [35, 4], + [15, 51], + [72, 1], + [85, -60], + [15, -48], + [19, 2], + [0, 54], + [28, 44], + [104, 35], + [145, 12], + [43, -10], + [1, -21], + [18, -6], + [35, 7], + [102, 64], + [17, 23], + [40, 28], + [6, 17], + [48, 21], + [25, 24], + [82, 38], + [284, 16], + [33, -21], + [37, 3], + [37, -26], + [28, 0], + [19, 17], + [8, 36], + [22, 7], + [25, -7], + [67, -40] + ], + [ + [67957, 379032], + [185, -37], + [62, -5], + [44, -13], + [13, -33], + [44, -10], + [39, -3], + [103, 34], + [136, -71], + [97, -34], + [52, -8], + [34, 13], + [36, 0], + [54, -10], + [23, -13], + [39, -2], + [47, 30], + [113, -2], + [46, -20], + [56, -5], + [34, -21], + [14, -30], + [12, 2], + [14, 23], + [33, -2], + [8, -8], + [21, 8], + [-26, 18], + [-13, 22], + [30, 11], + [56, 0], + [70, -5], + [116, -64], + [50, -7], + [-33, 53], + [3, 30], + [26, 29], + [50, 8], + [47, -3], + [192, -91], + [85, -18], + [76, -41], + [15, -26], + [17, -3], + [40, -33], + [46, -69], + [40, -12], + [17, -64], + [46, 8], + [13, 25], + [43, 8], + [70, 0], + [120, -28], + [-3, -53], + [96, -151], + [13, -71], + [-16, -42], + [-7, -58], + [-20, -41], + [-3, -66], + [-13, -26], + [-24, -17], + [0, -22], + [27, -40], + [47, -8], + [43, -17], + [40, -52], + [13, -30], + [53, -59], + [10, -38], + [-13, -66], + [-30, -41], + [0, -26], + [10, -20], + [50, -41], + [0, -38], + [10, -23], + [47, -38], + [36, -54], + [40, -15], + [43, -3], + [7, -30], + [-30, -18], + [-3, -65], + [18, -13], + [52, -2], + [39, -12], + [30, -23], + [43, -15], + [24, -36], + [-15, -56], + [74, -77], + [24, -5], + [66, -48], + [7, -21], + [-18, -42], + [7, -49], + [11, -8], + [13, -44], + [0, -33], + [-26, -9], + [-5, -43], + [-84, -47], + [-54, -53], + [-62, -78], + [2, -35], + [-10, -16], + [-49, -49], + [-43, -7], + [-50, -23], + [-10, -28], + [-40, -20], + [-46, -3], + [-120, 10], + [-20, 43], + [-49, 10], + [-63, -28], + [-13, -25], + [-37, -15], + [-123, 2], + [-47, -33], + [-119, 7], + [-70, 34], + [-29, 5], + [-33, 0], + [-57, -31], + [-33, -8], + [-23, 10], + [2, 47], + [-65, -23], + [-115, -24], + [-38, -47], + [-69, -52], + [-130, -12], + [-92, 12], + [-69, 64], + [-30, 53], + [-215, -6], + [-63, 32], + [-16, 22], + [-6, 48], + [9, 64], + [44, 41], + [92, 54], + [-16, 10], + [-93, -13], + [-63, 16], + [-33, 20], + [-4, 74], + [-33, 5], + [-40, -28], + [-106, 8], + [-36, 15], + [-53, 2], + [-96, -41], + [-197, 8], + [-26, 15], + [-2, 16], + [-96, 25], + [-138, 59], + [-107, 70], + [-76, 77], + [-122, 82], + [-77, 77], + [-38, 100], + [-55, 73], + [-23, 49], + [-14, 155], + [-56, 133], + [-33, 56], + [-67, 81], + [-113, 115], + [0, 21], + [12, 11], + [-46, 35], + [-35, 94], + [-21, 5], + [-20, 38], + [-13, 49], + [18, 46], + [-2, 20], + [-46, 170], + [-47, 65], + [7, 61], + [29, 95], + [4, 117], + [13, 44], + [43, 58], + [80, 49], + [130, 53], + [76, 18], + [123, 82], + [229, -11] + ], + [ + [80505, 386761], + [65, -7], + [70, -22], + [49, 2], + [29, -9], + [7, -17], + [-49, -57], + [10, -19], + [42, 15], + [20, -57], + [0, -54], + [-25, -37], + [-37, 3], + [-16, -14], + [-5, -85], + [12, -25], + [20, -3], + [7, 51], + [24, -4], + [43, -25], + [-45, -94], + [7, -97], + [23, -54], + [4, -165], + [-35, -8], + [-4, -22], + [36, -42], + [-7, -35], + [-23, -25], + [19, -15], + [8, -25], + [3, -79], + [-39, -41], + [2, -29], + [23, 7], + [11, 20], + [13, -18], + [0, -21], + [-21, -25], + [-21, -13], + [-16, 0], + [40, -112], + [-18, -85], + [-31, -14], + [-24, 0], + [-10, -9], + [-4, -26], + [25, -30], + [11, -33], + [-6, -52], + [-18, -23], + [-10, 0], + [-104, -66], + [-28, -66], + [-43, -56], + [-70, -64], + [-53, -37], + [-47, -52], + [-52, -119], + [13, -125], + [61, -46], + [19, -29], + [52, -263], + [0, -57], + [26, -39], + [45, -112], + [-11, -17], + [-31, -3], + [-19, -29], + [44, -8], + [59, -36], + [4, -35], + [-11, -24], + [-34, -5], + [-47, -48], + [-7, -122], + [6, -131], + [-21, -50], + [24, -49], + [75, -26], + [6, -13], + [-2, -17], + [-58, -28], + [-4, -90], + [-18, -56], + [0, -55], + [-43, -107], + [14, -108], + [-18, -12], + [0, -28], + [13, -18], + [-4, -44], + [-32, -18], + [-7, -29], + [-22, -31], + [-82, -63], + [-111, 6], + [-22, 9], + [-4, 73], + [-18, 9], + [-18, 77], + [-42, 23], + [-11, 22], + [-15, 5], + [-24, 82], + [-52, 52], + [-6, 16], + [-104, 51], + [-29, 3], + [-33, -6], + [-42, -46], + [-50, 2], + [-7, 16], + [2, 56], + [78, 43], + [-47, 16], + [-24, 18], + [-11, 19], + [18, 50], + [-7, 12], + [-44, -24], + [-15, -22], + [-59, -35], + [-37, 12], + [-11, 20], + [7, 177], + [13, 22], + [26, 15], + [0, 16], + [-26, 1], + [-9, -16], + [-45, -30], + [-28, 7], + [-26, 50], + [35, 41], + [58, 36], + [11, 20], + [-15, 0], + [-24, -19], + [-28, 1], + [-22, 9], + [-6, 14], + [17, 36], + [37, 1], + [32, -27], + [17, -4], + [20, 17], + [12, 16], + [-6, 7], + [-31, 6], + [-53, 57], + [4, 28], + [22, 29], + [89, -6], + [33, 26], + [5, 20], + [-23, 21], + [-3, 15], + [58, 45], + [-34, 9], + [-12, 68], + [38, 43], + [-4, 11], + [-35, 2], + [-12, 20], + [12, 51], + [-38, 51], + [-26, 18], + [-19, -8], + [-7, -20], + [-32, -3], + [-58, 31], + [-39, 9], + [-5, -85], + [-19, -16], + [-36, -3], + [-47, 43], + [-58, -23], + [-37, 46], + [-66, 20], + [-85, 3], + [-52, -9], + [-52, -23], + [-89, -108], + [-52, -34], + [-111, 2], + [-271, 89], + [-63, 39], + [0, 21], + [-30, 28], + [-59, 0], + [-57, -19], + [-42, -6], + [-53, 8], + [-137, 48], + [-56, 6], + [-41, 24], + [-4, 50], + [-30, 6], + [-48, -32], + [-20, -37], + [-43, 3], + [-84, 41], + [-84, 12], + [-63, 27], + [-40, 3], + [-122, 34], + [-67, 55], + [-25, 3], + [-108, -39], + [-48, -2], + [-41, 8], + [-91, 52], + [-61, 82], + [-31, 82], + [16, 106], + [-1, 71], + [27, 37], + [0, 12], + [155, 163], + [61, 40], + [43, 60], + [18, 48], + [-7, 84], + [9, 97], + [27, 78], + [49, 41], + [7, 31], + [-30, 29], + [-10, 65], + [14, 91], + [-11, 63], + [52, 57], + [-4, 63], + [11, 31], + [15, 15], + [49, 16], + [60, 38], + [53, 41], + [2, 13], + [59, -11], + [29, 25], + [0, 46], + [-11, 6], + [0, 18], + [15, 18], + [48, 9], + [41, 40], + [48, 97], + [-18, 29], + [-23, 11], + [-15, 20], + [-2, 46], + [17, 20], + [-4, 34], + [-45, 26], + [-3, 42], + [8, 43], + [22, 28], + [25, 29], + [71, 49], + [126, 62], + [167, 60], + [97, 20], + [111, 0], + [40, -11], + [90, -51], + [-12, -34], + [-22, -29], + [8, -26], + [48, -14], + [52, 29], + [56, 46], + [62, -6], + [30, -15], + [8, -20], + [40, -42], + [93, -58], + [-3, -59], + [11, -29], + [63, -68], + [11, -57], + [-93, -69], + [0, -18], + [17, 5], + [6, 14], + [30, 7], + [41, -8], + [7, -51], + [21, -39], + [-13, -68], + [41, -29], + [6, -33], + [-15, -17], + [24, -39], + [-2, -23], + [-69, -66], + [-5, -14], + [7, -12], + [19, 2], + [58, 27], + [47, -19], + [5, -8], + [-9, -29], + [-51, -15], + [-23, -31], + [79, -14], + [21, -18], + [9, -23], + [-7, -63], + [-66, -54], + [-5, -15], + [26, -7], + [13, 5], + [10, -14], + [14, -81], + [-3, -22], + [-19, -14], + [30, -25], + [2, -18], + [-22, -35], + [-47, -42], + [37, -28], + [-16, -31], + [-36, -35], + [-22, -4], + [-19, -39], + [-17, -13], + [-6, -34], + [39, -18], + [31, -32], + [76, -37], + [88, -20], + [119, -8], + [70, 14], + [35, 33], + [233, 7], + [73, 41], + [15, 13], + [10, 47], + [45, 99], + [20, 31], + [41, 31], + [22, 53], + [62, 28], + [39, -2], + [17, 17], + [50, 113], + [-4, 44], + [-22, 27], + [18, 90], + [31, 35], + [93, 48], + [111, 36], + [36, 48], + [0, 59], + [-24, 34], + [-2, 91], + [-21, 58], + [-7, 88], + [25, 64], + [42, 60], + [34, 77], + [3, 96], + [13, 71], + [36, 33], + [143, 79], + [45, -2], + [53, -13] + ], + [ + [74051, 356977], + [32, -14], + [86, 8], + [62, -4], + [148, -28], + [116, -3], + [218, 85], + [20, 17], + [88, 20], + [41, 2], + [287, 166], + [93, 42], + [140, 40], + [109, 56], + [130, 28], + [151, 5], + [57, 41], + [65, -6], + [42, 16], + [39, 27], + [31, 4], + [60, -6], + [67, 32], + [107, -4], + [57, -12], + [52, 10], + [73, -6], + [39, 6], + [106, 46], + [66, 2], + [23, -6], + [73, -40], + [44, -2], + [44, 12], + [21, 16], + [75, 8], + [24, -10], + [23, -26], + [26, -53], + [138, -89], + [44, -4], + [71, 6], + [62, -4], + [23, -10], + [73, 14], + [70, -22], + [78, -80], + [53, -74], + [46, -48], + [0, -60], + [-20, -38], + [0, -30], + [23, -92], + [3, -66], + [-3, -28], + [-34, -64], + [-34, -34], + [-64, -40], + [-83, -84], + [-21, -16], + [-15, 2], + [-30, -40], + [16, -43], + [-5, -34], + [-36, -24], + [-22, -1], + [-33, -17], + [-45, -41], + [9, -31], + [-29, -32], + [-102, -33], + [-39, -4], + [-17, -49], + [-79, -68], + [-57, -70], + [-119, -94], + [-8, -32], + [-36, -32], + [-18, -52], + [5, -30], + [18, -14], + [39, 6], + [39, -24], + [50, -58], + [-5, -32], + [-81, -52], + [-52, -53], + [-112, -74], + [-215, -112], + [-141, -14], + [-49, -22], + [-68, -2], + [-124, -38], + [-149, 4], + [-96, -57], + [-75, 0], + [-122, 6], + [-29, 13], + [-23, 42], + [-29, 23], + [-179, 4], + [-39, 18], + [-21, 22], + [-96, 29], + [-42, 21], + [-83, 48], + [-86, 66], + [-73, 16], + [-135, 46], + [-109, 70], + [-89, 6], + [-18, 18], + [-3, 20], + [-49, 48], + [-49, 20], + [-54, 57], + [-87, 11], + [-96, 26], + [-52, 22], + [-177, 104], + [-24, 32], + [11, 52], + [-6, 50], + [-15, 22], + [-42, 32], + [-39, 12], + [-33, 0], + [-102, -22], + [-67, 10], + [-52, 34], + [-50, 10], + [-26, 14], + [-54, 42], + [-117, 28], + [-120, 90], + [-73, 14], + [-26, 30], + [-67, 2], + [-50, 32], + [-18, -22], + [-34, -20], + [-31, 0], + [-34, 24], + [-10, 20], + [-55, 14], + [-94, 0], + [-49, -24], + [-16, -52], + [-82, -99], + [-24, 1], + [-16, 32], + [24, 32], + [7, 34], + [-51, 94], + [-76, 78], + [13, 32], + [52, 22], + [16, 20], + [-3, 24], + [-34, 44], + [5, 84], + [-65, 74], + [-18, 52], + [-81, 82], + [8, 228], + [10, 65], + [-5, 171], + [9, 79], + [-16, 85], + [6, 135], + [15, 36], + [19, 4], + [50, -16], + [56, -40], + [222, -214], + [68, -52], + [278, -136], + [182, -70], + [34, -24], + [161, -48], + [96, -46], + [120, -42], + [91, -56], + [29, -32], + [254, -152] + ], + [ + [29957, 340578], + [96, -10], + [14, -13], + [3, -19], + [47, -16], + [49, -32], + [121, -13], + [39, 0], + [19, 7], + [82, -3], + [98, -28], + [10, -16], + [-3, -22], + [13, -15], + [53, -31], + [20, -22], + [-2, -15], + [-17, -12], + [-26, -2], + [-137, -54], + [-20, -20], + [-20, -48], + [-2, -29], + [5, -60], + [25, -54], + [-35, -34], + [-48, -7], + [-9, -15], + [0, -55], + [15, -29], + [-14, -37], + [-4, -75], + [15, -9], + [96, -9], + [18, -12], + [14, -33], + [23, -5], + [32, 8], + [57, 64], + [100, 34], + [105, 72], + [51, 9], + [39, -34], + [71, -4], + [35, -17], + [12, -31], + [20, -14], + [66, 3], + [17, -8], + [20, -18], + [23, -45], + [48, -4], + [22, 13], + [23, 0], + [57, -34], + [22, -4], + [89, 31], + [95, -8], + [39, 19], + [106, -3], + [80, 40], + [63, -4], + [50, 17], + [43, 3], + [49, 15], + [144, -18], + [36, -12], + [40, -27], + [42, -3], + [46, 54], + [35, 15], + [31, -12], + [3, -43], + [44, -22], + [5, -35], + [-22, -22], + [24, -55], + [35, -7], + [94, 15], + [38, -12], + [9, -11], + [-8, -114], + [-35, -29], + [-53, -14], + [-77, 13], + [-50, -6], + [-127, -47], + [-178, -52], + [-115, -68], + [-21, -33], + [-6, -26], + [-22, -193], + [3, -77], + [56, -68], + [6, -48], + [32, -102], + [109, -75], + [31, -35], + [24, -14], + [66, -103], + [11, -60], + [-7, -9], + [-48, -8], + [-47, 17], + [-55, 5], + [-147, -74], + [-102, -34], + [-106, -51], + [-54, -32], + [-65, -55], + [-69, -28], + [-70, -49], + [-64, -54], + [-39, -53], + [11, -33], + [50, -43], + [-3, -42], + [-39, -36], + [-106, -48], + [-11, -11], + [-48, -58], + [-19, -95], + [-19, -12], + [-49, -8], + [-135, 0], + [-89, -16], + [-80, -27], + [-25, -2], + [-84, -35], + [-59, -1], + [-157, 61], + [-363, 95], + [-138, 4], + [-109, -11], + [-53, -17], + [-45, -3], + [-74, -50], + [-112, -170], + [-43, -20], + [-54, -38], + [-93, -27], + [-61, -27], + [-28, -46], + [-72, -26], + [-45, -56], + [-68, -35], + [-35, -63], + [-29, -13], + [-19, 1], + [-23, 8], + [-5, 13], + [45, 72], + [-3, 45], + [-16, 14], + [-3, 18], + [60, 73], + [-5, 71], + [60, 42], + [75, 120], + [80, 58], + [-16, 12], + [6, 20], + [45, 13], + [97, 3], + [74, 89], + [24, 58], + [-25, 116], + [-76, 174], + [-84, 82], + [-96, 40], + [-17, 30], + [-14, 90], + [0, 18], + [31, 37], + [-5, 114], + [32, 28], + [76, 2], + [66, 66], + [-4, 178], + [37, 63], + [12, 55], + [20, 30], + [9, 88], + [-13, 129], + [-23, 71], + [-39, 52], + [-17, 46], + [-169, 246], + [4, 49], + [-19, 202], + [9, 143], + [34, 96], + [41, 33], + [3, 34], + [-18, 18], + [1, 23], + [59, 56], + [26, 48], + [-1, 98], + [-13, 18], + [41, 48], + [49, 23], + [25, 82], + [109, 139], + [48, 23], + [57, 2], + [28, -9], + [122, -104], + [14, -19], + [0, -33], + [34, -13], + [105, -15] + ], + [ + [149199, 389094], + [34, -18], + [45, 6], + [76, -41], + [445, -344], + [53, -134], + [-8, -192], + [91, -93], + [15, -47], + [75, -64], + [68, -18], + [-8, -69], + [-30, -65], + [-46, -63], + [-84, -76], + [-7, -46], + [53, -82], + [7, -117], + [-46, -63], + [-75, -53], + [-130, -162], + [-106, -70], + [-159, -6], + [-265, -22], + [-122, -47], + [-106, -12], + [-144, 1], + [-265, -93], + [-234, 1], + [-182, -17], + [-91, 23], + [-83, 70], + [-144, 30], + [-61, 58], + [-52, 81], + [-68, 47], + [-68, 23], + [-106, 18], + [-121, 70], + [-61, 64], + [-22, 117], + [106, 69], + [-53, 29], + [-7, 41], + [46, 76], + [76, 52], + [106, 140], + [-7, 64], + [-15, 17], + [-61, 35], + [-61, 0], + [-45, 47], + [0, 29], + [69, 46], + [-16, 53], + [16, 47], + [53, 75], + [0, 76], + [61, 58], + [0, 81], + [61, 64], + [99, 35], + [257, 28], + [83, 24], + [31, 52], + [76, 52], + [151, 64], + [106, 17], + [76, -35], + [159, 76], + [46, 35], + [83, 17], + [99, 0], + [280, 34], + [15, -70], + [42, -23] + ], + [ + [49256, 366142], + [113, -11], + [271, 0], + [82, 18], + [98, 0], + [75, -18], + [68, -63], + [15, -40], + [68, 0], + [99, 13], + [16, -42], + [-30, -206], + [0, -76], + [53, -118], + [24, -76], + [68, -94], + [16, -82], + [0, -89], + [-91, -100], + [-107, -70], + [-145, -24], + [-92, -100], + [-91, -65], + [-153, -41], + [-237, 58], + [-237, -100], + [-130, -83], + [-183, -71], + [-466, -59], + [-122, 76], + [-131, 165], + [-7, 58], + [-85, 130], + [-114, 53], + [-214, -1], + [-99, -53], + [-62, 59], + [69, 159], + [7, 106], + [129, 235], + [53, 162], + [37, 24], + [188, 6], + [121, 64], + [59, 6], + [76, -6], + [60, -35], + [38, -57], + [71, -4], + [161, 53], + [129, 77], + [76, 76], + [-15, 77], + [-77, 35], + [-7, 82], + [30, 21], + [-9, 17], + [15, 29], + [106, 11], + [188, -5], + [128, -57], + [97, -24] + ], + [ + [35348, 366385], + [16, -72], + [-10, -59], + [61, -76], + [108, -82], + [15, -71], + [-7, -88], + [-15, -53], + [0, -70], + [23, -77], + [0, -34], + [120, -192], + [16, -46], + [7, -131], + [34, -47], + [37, -84], + [21, -100], + [40, -50], + [74, -44], + [20, -36], + [-14, -247], + [19, -188], + [118, -60], + [29, -21], + [16, -24], + [20, -57], + [5, -125], + [-24, -32], + [-61, -15], + [-37, -19], + [-8, -36], + [-45, -76], + [-69, -58], + [-129, -60], + [-88, 0], + [-17, 8], + [-73, 3], + [-36, -34], + [-76, -136], + [-14, -68], + [5, -59], + [-20, -91], + [-20, -34], + [-36, -32], + [-122, -68], + [-36, -66], + [-45, -6], + [-24, 31], + [0, 22], + [-163, 93], + [-5, 200], + [-20, 28], + [8, 32], + [21, 24], + [-1, 91], + [-41, 50], + [0, 65], + [-32, 19], + [-16, 34], + [24, 25], + [28, 10], + [89, 8], + [13, 138], + [-14, 18], + [17, 14], + [-4, 34], + [-53, 9], + [-49, 31], + [-8, 57], + [40, 56], + [0, 56], + [-29, 91], + [-1, 275], + [12, 46], + [29, 48], + [50, 50], + [0, 15], + [-77, 106], + [0, 81], + [-43, 72], + [0, 162], + [28, 38], + [16, 50], + [-6, 95], + [-64, 108], + [-37, 221], + [-61, 116], + [-17, 49], + [0, 32], + [-79, 87], + [-128, 16], + [-53, 62], + [-16, 28], + [-4, 38], + [-21, 31], + [-28, 9], + [-61, 3], + [-36, 12], + [-9, 31], + [-36, 10], + [-29, 22], + [8, 25], + [-8, 6], + [0, 95], + [-16, 106], + [23, 35], + [153, -6], + [221, 53], + [153, -11], + [130, -47], + [62, -65], + [27, -90], + [71, -53], + [14, -22], + [64, -16], + [18, -52], + [123, -44], + [45, -50] + ], + [ + [44831, 318460], + [38, -110], + [36, -37], + [0, -21], + [-18, -20], + [-25, -8], + [-21, -31], + [3, -74], + [16, -33], + [32, -4], + [8, -28], + [-48, -38], + [-18, -39], + [1, -28], + [-11, -12], + [9, -64], + [37, -49], + [9, -50], + [-9, -14], + [-49, -25], + [-13, -26], + [11, -46], + [-5, -26], + [-43, -47], + [5, -54], + [24, -24], + [19, -183], + [-15, -45], + [-48, -56], + [-41, -70], + [0, -130], + [36, -241], + [19, -47], + [8, -64], + [-84, -82], + [-49, -15], + [-50, -43], + [-66, -33], + [-13, -28], + [3, -26], + [-51, -39], + [-77, 1], + [-218, -119], + [-48, -72], + [-13, -86], + [-76, -59], + [-119, -50], + [-83, -64], + [-9, -28], + [-50, -44], + [-26, -39], + [-6, -35], + [1, -72], + [45, -111], + [6, -57], + [-16, -41], + [-51, -51], + [-32, -64], + [-52, -72], + [0, -37], + [-27, -53], + [-35, -21], + [-64, 5], + [-180, -22], + [-143, -45], + [-32, 41], + [0, 59], + [44, 56], + [0, 63], + [21, 25], + [3, 70], + [10, 27], + [134, 111], + [22, 60], + [22, 3], + [37, 31], + [8, 101], + [16, 28], + [72, 62], + [23, 68], + [11, 127], + [10, 33], + [38, 31], + [23, 4], + [35, -6], + [85, 43], + [48, 37], + [21, 54], + [-2, 17], + [88, 112], + [68, 67], + [8, 42], + [-9, 96], + [-29, 90], + [-96, 177], + [-19, 59], + [-53, 41], + [-81, 102], + [-10, 92], + [-28, 57], + [9, 99], + [65, 64], + [-10, 71], + [-36, 64], + [-29, 128], + [-33, 61], + [-9, 69], + [5, 69], + [83, 92], + [4, 19], + [62, 59], + [3, 36], + [15, 26], + [38, 37], + [68, 35], + [24, -2], + [133, 37], + [107, 61], + [107, 41], + [182, 88], + [53, 12], + [98, -1], + [66, 34], + [36, 29], + [34, 12], + [43, -6], + [30, -68] + ], + [ + [34999, 336254], + [-13, -115], + [-32, -46], + [-9, -46], + [-3, -91], + [-55, -85], + [-9, -131], + [9, -34], + [-9, -60], + [-34, -12], + [-22, 2], + [-19, 19], + [12, 77], + [-6, 12], + [-66, 17], + [-49, 21], + [-25, 0], + [-10, 15], + [0, 70], + [-6, 9], + [-57, 12], + [-34, 0], + [-124, -62], + [-177, -119], + [-60, -22], + [-12, 28], + [-6, -6], + [0, 41], + [15, 235], + [15, 94], + [-23, 47], + [-77, 65], + [-96, 8], + [-7, -101], + [-59, -72], + [-25, -82], + [-56, -80], + [-23, -86], + [-53, 6], + [-9, 341], + [46, 118], + [68, 18], + [137, 17], + [0, 8], + [30, -8], + [3, 10], + [-3, 79], + [-23, 41], + [0, 36], + [-22, 71], + [-1, 28], + [-61, 88], + [-23, 59], + [-28, 44], + [-40, 17], + [6, 115], + [31, 106], + [27, 34], + [44, 24], + [44, 48], + [65, 10], + [12, 51], + [19, 7], + [6, 12], + [0, 33], + [9, 20], + [87, 79], + [6, 29], + [-9, 26], + [-7, 133], + [15, 65], + [61, 36], + [23, 65], + [-46, 158], + [-39, 77], + [-23, 129], + [0, 124], + [45, 211], + [111, 220], + [81, 56], + [25, 39], + [50, 36], + [15, 28], + [71, 61], + [50, -3], + [7, -45], + [28, -31], + [3, -171], + [29, -33], + [25, -94], + [47, -43], + [6, -22], + [0, -65], + [-9, -26], + [-50, -48], + [-3, -92], + [-9, -21], + [-44, -25], + [13, -26], + [94, -69], + [143, -65], + [35, -33], + [32, -91], + [0, -33], + [27, -38], + [10, -50], + [0, -60], + [-18, -91], + [3, -24], + [38, -63], + [0, -127], + [-31, -108], + [-27, -47], + [0, -106], + [8, -159], + [38, -53], + [-8, -423], + [-2, -27], + [-22, -26], + [-11, -89] + ], + [ + [36333, 339499], + [23, -60], + [106, -55], + [116, -73], + [80, -62], + [64, -63], + [29, -15], + [59, -10], + [20, -10], + [53, -173], + [7, -53], + [26, -52], + [60, -79], + [15, -63], + [4, -284], + [-51, -87], + [-13, -103], + [-108, -169], + [-56, -60], + [-11, -29], + [11, -94], + [-10, -31], + [-36, -34], + [-52, -32], + [-22, -48], + [-3, -48], + [-13, -21], + [-25, -6], + [-29, 10], + [-5, 45], + [-31, 54], + [-172, 11], + [-60, 86], + [-28, 19], + [-57, 22], + [-13, 24], + [-5, 55], + [-23, 42], + [0, 40], + [-77, 93], + [-23, 6], + [-116, -74], + [-32, -4], + [-61, 8], + [-44, 37], + [-3, 68], + [10, 47], + [-36, 25], + [-46, 1], + [-21, -16], + [-15, -111], + [-23, -22], + [-74, -39], + [-80, -12], + [-13, -20], + [-49, -32], + [-87, -16], + [-51, 9], + [-8, 18], + [-14, 125], + [-15, 30], + [-11, 54], + [0, 128], + [19, 148], + [-12, 17], + [2, 93], + [13, 44], + [39, 22], + [-13, 31], + [-47, 34], + [-7, 32], + [46, 111], + [46, 65], + [-6, 201], + [-13, 75], + [0, 54], + [10, 19], + [26, 20], + [102, 25], + [37, 33], + [143, 8], + [85, 64], + [72, 6], + [42, -10], + [97, 22], + [70, 38], + [25, -2], + [16, -12], + [10, -27], + [33, 0], + [52, 47], + [59, 6], + [93, -61] + ], + [ + [36168, 337422], + [12, -8], + [14, 8], + [12, 28], + [55, 37], + [24, 35], + [-1, 22], + [15, 24], + [85, 18], + [40, -7], + [57, -42], + [45, -13], + [52, -57], + [15, -38], + [8, -93], + [81, -47], + [53, -3], + [40, 34], + [4, 27], + [31, 41], + [5, 83], + [29, 35], + [55, 15], + [67, -3], + [12, -8], + [9, -64], + [76, -69], + [7, -51], + [24, -54], + [4, -81], + [-2, -47], + [-14, -37], + [3, -135], + [-9, -44], + [-51, -84], + [-44, -198], + [31, -170], + [0, -65], + [-24, -109], + [-33, -52], + [-5, -42], + [-77, -95], + [11, -59], + [-55, -56], + [6, -17], + [28, -27], + [-1, -41], + [-51, -72], + [-88, -59], + [-28, -34], + [-91, -13], + [-84, -52], + [-94, -38], + [-90, -5], + [-47, -15], + [-35, -59], + [-10, -36], + [-16, -11], + [-23, -3], + [-40, 20], + [-20, 98], + [-51, 78], + [-38, 31], + [0, 19], + [-13, 17], + [-63, 14], + [-16, 12], + [-28, 66], + [-56, 72], + [-2, 124], + [-13, 49], + [-50, 93], + [-33, 110], + [-6, 76], + [9, 53], + [-21, 47], + [6, 71], + [31, 29], + [4, 30], + [13, 11], + [0, 60], + [-48, 37], + [-19, 46], + [-76, 54], + [-11, 76], + [-12, 19], + [-126, 9], + [-39, 23], + [-10, 21], + [-16, 10], + [-25, 59], + [-14, 78], + [2, 43], + [12, 16], + [12, 7], + [43, -1], + [61, 10], + [85, -71], + [16, -3], + [44, -46], + [74, -35], + [5, 26], + [-35, 48], + [3, 22], + [7, 10], + [48, 20], + [70, -7], + [33, -36], + [55, -31], + [82, -7], + [41, -27], + [24, 0], + [80, 122], + [-2, 39], + [-8, 12], + [-62, -9], + [-80, 9], + [-67, 38], + [-25, 67], + [-33, 26], + [-11, 65], + [-79, 100], + [-5, 63], + [17, 32], + [1, 37], + [58, 56], + [53, 34], + [19, -1], + [37, -26], + [35, -60], + [0, -54], + [15, -27], + [59, -55], + [43, -97], + [19, -15] + ], + [ + [31702, 335957], + [12, -273], + [19, -37], + [82, -96], + [176, -89], + [182, -32], + [33, -29], + [17, -49], + [18, -13], + [70, -1], + [24, -13], + [26, -34], + [25, -12], + [64, -4], + [21, -18], + [-7, -104], + [-35, -91], + [-2, -53], + [-19, -37], + [-27, -142], + [-45, -68], + [-11, -130], + [-52, -68], + [-29, -8], + [-45, 0], + [-26, 9], + [-105, -4], + [-159, -38], + [-80, 20], + [-15, 59], + [-50, 97], + [5, 58], + [-15, 56], + [-65, 34], + [-26, 23], + [-91, 2], + [-10, 41], + [-70, 63], + [-49, 20], + [-5, 84], + [-150, 170], + [-45, 61], + [-34, 25], + [-54, 106], + [-65, 35], + [-41, 7], + [-35, 19], + [2, 35], + [-19, 59], + [0, 175], + [-36, 35], + [-2, 21], + [11, 158], + [23, 16], + [17, 25], + [84, -10], + [16, 3], + [19, 17], + [32, -20], + [22, -49], + [39, 4], + [75, 47], + [152, 159], + [88, 49], + [54, 7], + [21, -12], + [-12, -18], + [5, -37], + [57, -75], + [4, -44], + [31, -62], + [5, -29] + ], + [ + [46427, 321510], + [8, -56], + [-23, -29], + [6, -55], + [-46, -59], + [-40, -95], + [-6, -90], + [-55, -75], + [-1, -116], + [9, -39], + [57, -75], + [10, -132], + [63, -124], + [-17, -71], + [-34, -37], + [-65, -50], + [-35, -57], + [-86, -51], + [-32, -4], + [-46, 13], + [-26, 29], + [-17, 50], + [-20, 23], + [-43, 27], + [-89, 11], + [-84, -41], + [-13, -30], + [-4, -57], + [-35, -29], + [-25, -38], + [-9, -44], + [-4, -185], + [-36, -30], + [-41, -80], + [-24, -21], + [-54, -9], + [-35, 2], + [-28, 12], + [-39, 28], + [-101, -10], + [-46, -19], + [-54, -52], + [-3, -179], + [49, -99], + [25, -26], + [4, -20], + [-117, -64], + [-47, -65], + [-22, -7], + [-72, 3], + [-135, 102], + [-25, 39], + [-77, 26], + [-11, 11], + [15, 21], + [-4, 60], + [-121, 93], + [-29, 34], + [-123, 73], + [-234, 54], + [-24, 14], + [-34, 6], + [-70, 0], + [-45, -18], + [-54, -6], + [-27, 27], + [0, 50], + [22, 26], + [55, 10], + [38, 21], + [61, 18], + [73, 0], + [42, -12], + [23, -24], + [4, -59], + [65, -45], + [64, -12], + [6, -8], + [135, -21], + [35, -23], + [180, -18], + [215, -2], + [175, 85], + [46, 50], + [101, 64], + [64, 64], + [9, 57], + [47, 78], + [27, 78], + [64, 50], + [18, 135], + [0, 99], + [-55, 15], + [-9, 42], + [-27, 8], + [-18, 18], + [-8, 30], + [6, 27], + [24, 20], + [86, 39], + [26, 29], + [54, 32], + [145, 57], + [19, 25], + [13, 40], + [-17, 60], + [8, 20], + [54, 28], + [7, 29], + [-4, 21], + [-48, 29], + [-18, 19], + [-19, 57], + [0, 40], + [49, 93], + [71, 36], + [26, 27], + [12, 42], + [54, 47], + [51, -6], + [41, 13], + [98, 68], + [30, 5], + [83, -14], + [38, -71] + ], + [ + [82039, 378858], + [0, -35], + [23, -56], + [4, -100], + [118, -41], + [53, -26], + [4, -29], + [-105, -91], + [8, -93], + [38, -41], + [60, -17], + [80, 10], + [11, -15], + [0, -26], + [-110, -135], + [-65, -35], + [-172, -147], + [-78, -39], + [-109, -118], + [-38, -25], + [-99, -99], + [-31, -92], + [-15, -18], + [-39, -4], + [-52, 31], + [-50, 59], + [-15, 61], + [0, 89], + [-16, 35], + [-87, 61], + [-39, 0], + [-38, 41], + [-29, 73], + [10, 68], + [-19, 53], + [-23, 26], + [-32, 11], + [-106, 81], + [-23, 30], + [0, 35], + [46, 88], + [5, 51], + [99, 45], + [69, 11], + [23, 20], + [56, 3], + [126, 42], + [61, 29], + [88, 94], + [46, 65], + [0, 67], + [31, 8], + [84, 0], + [76, -11], + [86, 5], + [55, 21], + [26, 0], + [4, -20] + ], + [ + [67305, 375161], + [-61, -53], + [-111, -46], + [-50, -29], + [-58, -19], + [-89, -59], + [-74, -58], + [-60, -75], + [2, -70], + [40, -136], + [75, -101], + [30, -19], + [8, -22], + [-33, -46], + [-2, -45], + [-42, -10], + [-35, 10], + [-3, 59], + [-30, 53], + [3, 31], + [14, 23], + [-37, 30], + [3, 41], + [-55, 120], + [-8, 78], + [-40, 151], + [23, 41], + [0, 47], + [-62, 200], + [23, 35], + [14, 6], + [-16, 28], + [-12, 82], + [31, 30], + [0, 86], + [-27, 26], + [-2, 116], + [15, 119], + [37, 103], + [2, 156], + [10, 43], + [-13, 26], + [-8, 112], + [-23, 88], + [-16, 36], + [-61, 82], + [-15, 77], + [-54, 70], + [-5, 26], + [15, 8], + [50, -8], + [27, -24], + [27, -48], + [88, -86], + [52, -36], + [75, -71], + [85, -46], + [46, -77], + [16, -5], + [40, -37], + [62, -132], + [45, -65], + [120, -136], + [10, -38], + [76, -151], + [41, -33], + [0, -19], + [-10, -9], + [14, -142], + [23, -105], + [-54, -65], + [-76, -118] + ], + [ + [1752, 296912], + [77, 8], + [50, 23], + [18, 0], + [15, -19], + [-4, -74], + [-65, -70], + [-10, -134], + [-43, -90], + [-32, -42], + [-68, -26], + [-105, -25], + [-196, -105], + [-149, -16], + [-135, -48], + [-105, 6], + [-78, 19], + [-81, 68], + [-51, 56], + [-99, 137], + [0, 14], + [-24, 33], + [0, 77], + [47, 40], + [103, 37], + [40, 25], + [87, 15], + [63, 55], + [135, 90], + [95, 18], + [127, 8], + [60, -11], + [78, -29], + [176, -21], + [74, -19] + ], + [ + [47101, 365214], + [-83, -35], + [-57, -49], + [-26, -61], + [13, -14], + [1, -39], + [-89, -112], + [0, -37], + [38, -44], + [7, -44], + [-32, -39], + [3, -32], + [38, -26], + [51, -12], + [63, -3], + [58, -17], + [41, -36], + [-3, -64], + [-35, -36], + [-57, -25], + [-171, -39], + [-212, -108], + [-60, 2], + [-48, 27], + [-29, 107], + [-83, 179], + [0, 80], + [49, 50], + [32, 131], + [29, 35], + [14, 69], + [60, 64], + [-31, 11], + [-60, -11], + [-127, -82], + [-53, 6], + [-30, 52], + [0, 58], + [18, 3], + [-3, 8], + [60, 70], + [67, 52], + [30, 6], + [36, -21], + [66, 3], + [30, 42], + [0, 53], + [69, 47], + [92, 29], + [259, 118], + [160, 54], + [24, 0], + [53, 23], + [22, -29], + [-7, -58], + [-22, -52], + [0, -98], + [-90, -104], + [-75, -52] + ], + [ + [36709, 293603], + [101, -11], + [138, -91], + [103, -137], + [0, -13], + [52, -57], + [5, -17], + [-7, -20], + [-209, -99], + [-218, -15], + [-168, 7], + [-197, 83], + [-81, 55], + [-88, 45], + [-254, 246], + [-67, 131], + [19, 87], + [94, 44], + [36, 7], + [217, 4], + [38, -14], + [58, -45], + [58, -61], + [211, -94], + [87, -24], + [72, -11] + ], + [ + [41131, 297678], + [69, -6], + [69, -20], + [136, -100], + [76, -93], + [16, -64], + [-1, -43], + [10, -13], + [0, -47], + [-70, -100], + [-23, -17], + [-193, -80], + [-66, -37], + [-8, -14], + [-70, -51], + [-93, -25], + [-116, 4], + [-109, 14], + [-40, 17], + [-45, 36], + [-73, 109], + [-21, 152], + [12, 95], + [39, 104], + [118, 124], + [93, 46], + [124, 10], + [166, -1] + ], + [ + [35662, 335774], + [27, -14], + [36, 0], + [26, -8], + [27, -16], + [61, -60], + [9, -21], + [1, -373], + [2, -31], + [20, -18], + [-22, -229], + [0, -89], + [-26, -74], + [-39, 10], + [-48, 51], + [-96, 31], + [-26, 27], + [-19, 8], + [-82, -1], + [-76, 42], + [-3, 33], + [11, 20], + [3, 44], + [-19, 38], + [0, 35], + [6, 72], + [32, 59], + [-5, 25], + [-25, 22], + [-91, 38], + [-21, 20], + [0, 21], + [47, 51], + [3, 23], + [-12, 68], + [-16, 41], + [-19, 24], + [24, 50], + [-2, 84], + [72, 75], + [31, 79], + [54, 56], + [27, 0], + [29, -26], + [43, -87], + [3, -26], + [53, -74] + ], + [ + [35449, 362630], + [-5, -40], + [-49, -134], + [-71, -105], + [-50, -26], + [-38, -82], + [-68, -71], + [-5, -52], + [64, -27], + [14, -46], + [-18, -15], + [-17, -77], + [-45, -53], + [-15, -47], + [-110, -26], + [-32, -30], + [-49, -9], + [-84, 17], + [-14, 46], + [-21, 27], + [3, 22], + [31, 34], + [-30, 47], + [-16, 124], + [-9, 358], + [22, 45], + [113, 119], + [50, 41], + [23, 10], + [48, 2], + [40, -35], + [63, 31], + [109, 75], + [51, 0], + [113, -62], + [2, -61] + ], + [ + [78903, 353654], + [44, -44], + [20, -41], + [-11, -145], + [-18, -35], + [-105, -71], + [-13, -60], + [-25, -30], + [-33, -23], + [-50, -18], + [-31, -28], + [-3, -32], + [28, -89], + [-38, -46], + [-25, -6], + [-98, -3], + [-91, 21], + [-50, -14], + [-69, -2], + [-41, -24], + [-34, 7], + [-4, 13], + [17, 15], + [3, 31], + [-58, 24], + [-12, 14], + [0, 31], + [34, 43], + [2, 21], + [24, 18], + [0, 29], + [11, 24], + [21, 16], + [44, 62], + [-5, 36], + [41, 97], + [72, 93], + [146, 111], + [39, 16], + [134, -1], + [18, 13], + [40, 10], + [21, -2], + [55, -31] + ], + [ + [49536, 381194], + [48, -26], + [84, -15], + [65, -1], + [135, -48], + [51, -34], + [65, -63], + [0, -60], + [-36, -93], + [0, -31], + [-101, -184], + [-56, -153], + [-182, -281], + [-15, -42], + [-22, -23], + [-4, 11], + [-9, -9], + [-26, 4], + [-17, 24], + [0, 93], + [6, 46], + [45, 58], + [2, 15], + [-5, 132], + [11, 17], + [-3, 78], + [17, 17], + [-3, 34], + [-43, 33], + [-14, 24], + [51, 99], + [8, 113], + [-9, 17], + [-37, 32], + [-44, 30], + [-25, 5], + [-32, 19], + [-33, 31], + [-60, 2], + [-22, 36], + [-3, 22], + [6, 37], + [19, 19], + [25, 9], + [58, 6], + [38, 20], + [25, 0], + [42, -20] + ], + [ + [42246, 311048], + [33, 2], + [17, 9], + [51, -11], + [191, -91], + [10, -33], + [-7, -35], + [-47, -21], + [-80, -11], + [-25, -31], + [0, -26], + [-97, -56], + [-14, -33], + [-28, -28], + [-43, -2], + [-42, 24], + [-29, 33], + [24, 56], + [-7, 44], + [-47, 28], + [-14, 20], + [-10, 70], + [-13, 26], + [-36, 32], + [0, 25], + [-19, 49], + [-25, 33], + [-7, 73], + [-18, 20], + [-44, 9], + [-38, 43], + [23, 32], + [8, 46], + [56, 93], + [6, 38], + [47, 42], + [76, -6], + [40, -17], + [33, -54], + [-5, -74], + [13, -41], + [19, -17], + [4, -31], + [-50, -25], + [-25, -48], + [-6, -24], + [8, -5], + [-11, -19], + [128, -108] + ], + [ + [31930, 326091], + [33, -47], + [2, -82], + [-80, -87], + [-65, -49], + [-40, -23], + [-138, -48], + [-95, -21], + [-81, -34], + [-44, -47], + [-53, 6], + [-19, -5], + [-42, 15], + [-15, 25], + [-4, 32], + [22, 28], + [4, 43], + [55, 20], + [-9, 24], + [17, 32], + [-14, 37], + [2, 27], + [86, 87], + [166, 82], + [183, 4], + [33, 14], + [35, 3], + [61, -36] + ], + [ + [47260, 308577], + [45, -12], + [2, -15], + [28, -33], + [3, -63], + [27, -39], + [-21, -10], + [-81, 3], + [-66, -44], + [-6, -54], + [-38, -44], + [-64, -44], + [-50, -24], + [-25, -2], + [-186, 53], + [-24, 19], + [-12, 86], + [-31, 37], + [-15, 46], + [3, 16], + [36, 45], + [70, 55], + [102, 58], + [128, 56], + [36, 5], + [34, -3], + [38, -18], + [43, -55], + [24, -19] + ], + [ + [50154, 345794], + [-30, -41], + [-84, -65], + [-23, -76], + [-15, -112], + [-129, -171], + [-99, -58], + [-1, 341], + [-31, 35], + [-107, 29], + [-8, 71], + [39, 53], + [137, -12], + [46, 48], + [243, 118], + [92, 111], + [54, -11], + [15, -59], + [-30, -77], + [0, -41], + [-69, -59], + [0, -24] + ], + [ + [73900, 387978], + [-27, -11], + [-51, 0], + [-8, -7], + [6, -64], + [-12, -36], + [-30, -39], + [-31, -22], + [-2, -22], + [-19, -30], + [-75, -48], + [-48, -20], + [-107, 0], + [-37, 20], + [-242, 24], + [-14, 16], + [9, 73], + [37, 40], + [60, 28], + [112, 98], + [91, 19], + [136, 60], + [87, 51], + [37, 8], + [70, -6], + [37, -5], + [26, -19], + [9, -62], + [-2, -29], + [-12, -17] + ], + [ + [44133, 344839], + [252, -11], + [15, -47], + [-76, -24], + [-23, -53], + [16, -58], + [46, -71], + [-76, -18], + [-214, 6], + [-130, -18], + [-122, 29], + [-115, 0], + [-61, 23], + [-30, 36], + [0, 53], + [38, 17], + [121, 30], + [16, 41], + [53, 30], + [69, 5], + [84, 42], + [69, 18], + [68, -30] + ], + [ + [71485, 376453], + [-32, -51], + [6, -8], + [72, -26], + [11, -11], + [-2, -30], + [-71, -59], + [-56, -20], + [-62, 4], + [-93, 34], + [-103, -2], + [-24, 12], + [-5, 35], + [78, 73], + [13, 18], + [-2, 20], + [-34, -3], + [-64, -40], + [-57, -1], + [-17, 21], + [5, 31], + [59, 56], + [16, 44], + [75, 87], + [31, 12], + [45, 31], + [72, 10], + [44, 32], + [19, 2], + [35, -3], + [47, -43], + [1, -59], + [21, -41], + [0, -26], + [-6, -42], + [-22, -57] + ], + [ + [42754, 383645], + [-26, -92], + [-31, -22], + [-48, 0], + [-45, 22], + [-7, 31], + [24, 38], + [-8, 11], + [-40, 2], + [-58, 41], + [-23, 27], + [-14, 62], + [-12, 4], + [-34, 56], + [-5, 33], + [22, 39], + [42, 7], + [21, 20], + [46, 115], + [-1, 19], + [41, 73], + [18, 55], + [41, 20], + [31, 0], + [31, -16], + [26, -42], + [-1, -56], + [-21, -54], + [0, -66], + [43, -120], + [-4, -57], + [22, -44], + [-7, -60], + [-23, -46] + ], + [ + [32395, 364901], + [19, -58], + [102, -76], + [20, -34], + [11, -82], + [-7, -38], + [-61, -44], + [-77, -14], + [-77, 0], + [-30, 71], + [-47, 29], + [-99, 35], + [0, 29], + [-11, -2], + [-15, 18], + [-57, 34], + [-37, -5], + [-34, 5], + [-12, 29], + [25, 38], + [-14, 27], + [-8, 46], + [46, 44], + [41, 15], + [42, -10], + [38, -39], + [78, -9], + [138, 40], + [26, -49] + ], + [ + [51090, 369708], + [45, -88], + [-15, -47], + [-68, -88], + [-38, -65], + [-61, -47], + [-123, 17], + [-69, 18], + [-53, 52], + [-8, 36], + [-69, 123], + [38, 41], + [115, -11], + [107, 12], + [76, 58], + [123, -11] + ], + [ + [77741, 390783], + [51, -35], + [18, -34], + [0, -14], + [-19, -17], + [-27, -45], + [-71, 1], + [-64, 32], + [-30, 2], + [-21, -12], + [-65, -9], + [-127, 28], + [-104, -19], + [-52, 8], + [-219, 3], + [-62, -19], + [-52, -31], + [-28, -6], + [-25, 11], + [-3, 15], + [41, 33], + [84, 40], + [172, 29], + [105, 51], + [1, 15], + [21, 22], + [127, -2], + [105, -30], + [39, 3], + [49, 31], + [77, 5], + [49, -45], + [30, -11] + ], + [ + [32945, 337697], + [-77, 10], + [-28, 22], + [-31, 99], + [6, 68], + [19, 34], + [39, 39], + [14, 45], + [57, 61], + [55, 22], + [51, 36], + [12, 20], + [-1, 39], + [11, 23], + [42, 35], + [8, 29], + [14, 13], + [33, 0], + [-6, -34], + [13, -21], + [-3, -128], + [-88, -97], + [-6, -143], + [-28, -26], + [-45, -100], + [-43, -45], + [-18, -1] + ], + [ + [37773, 336277], + [-42, -1], + [-25, 9], + [-13, 18], + [13, 50], + [-30, 36], + [6, 109], + [27, 19], + [13, 48], + [1, 165], + [47, 46], + [73, 7], + [61, -36], + [31, -39], + [-3, -83], + [-30, -82], + [7, -55], + [-17, -34], + [17, -31], + [-4, -26], + [-26, -37], + [-88, -76], + [-18, -7] + ], + [ + [47750, 375957], + [-48, 3], + [-6, 8], + [4, 83], + [150, 249], + [55, 62], + [35, 58], + [46, 46], + [96, 57], + [49, 7], + [23, -13], + [0, -64], + [-50, -59], + [-37, -97], + [-77, -60], + [-119, -161], + [-90, -98], + [-31, -21] + ], + [ + [36663, 334032], + [-187, -140], + [-61, -26], + [-67, -56], + [-38, -47], + [-8, -59], + [-23, -16], + [-2, -15], + [-79, -66], + [-33, -6], + [-27, 8], + [-33, 42], + [-9, 76], + [6, 46], + [45, 30], + [43, 47], + [110, 65], + [160, 112], + [34, 6], + [11, -7], + [42, 13], + [109, 75], + [23, 7], + [17, -12], + [2, -35], + [-35, -42] + ], + [ + [33910, 366878], + [-4, -38], + [-35, 3], + [-67, -24], + [-11, -14], + [-61, -9], + [-34, 6], + [-18, 19], + [-39, 1], + [-30, 20], + [-9, 74], + [42, 133], + [86, 96], + [9, 24], + [22, 20], + [45, 12], + [38, 0], + [15, -18], + [8, -64], + [16, -41], + [0, -78], + [23, -61], + [4, -61] + ], + [ + [30841, 326107], + [28, -31], + [0, -24], + [25, -22], + [-7, -32], + [-10, -15], + [-79, -57], + [-80, -44], + [-80, -23], + [-101, 5], + [-110, 66], + [-2, 70], + [99, 76], + [168, 42], + [149, -11] + ], + [ + [80047, 378050], + [33, -9], + [44, 17], + [20, -8], + [7, -29], + [-57, -42], + [-6, -13], + [12, -15], + [-3, -12], + [-32, -22], + [1, -26], + [-45, -57], + [-37, -17], + [-46, -2], + [-43, 24], + [-50, 71], + [0, 55], + [21, 73], + [21, 21], + [30, 14], + [50, 12], + [43, -2], + [37, -33] + ], + [ + [32331, 338284], + [17, -8], + [1, -47], + [-47, -44], + [0, -32], + [-56, -41], + [-16, -45], + [-25, -11], + [-17, 3], + [-61, 25], + [-31, 35], + [-3, 29], + [43, 43], + [22, 52], + [67, 47], + [39, -6], + [33, 16], + [34, -16] + ], + [ + [46447, 308119], + [-42, -2], + [-27, 11], + [-18, 19], + [-11, 39], + [-25, 37], + [32, 70], + [55, 21], + [80, -3], + [62, -15], + [20, -17], + [-9, -70], + [-69, -30], + [-48, -60] + ], + [ + [33364, 339269], + [61, -62], + [7, -45], + [-36, -38], + [-48, -16], + [-35, -23], + [-57, 10], + [-35, 48], + [-15, 48], + [-6, 72], + [20, 18], + [28, 3], + [56, -12], + [8, 13], + [34, 0], + [18, -16] + ], + [ + [48158, 365991], + [-129, -6], + [-24, 23], + [0, 65], + [46, 41], + [69, 35], + [84, 12], + [61, -41], + [-38, -106], + [-69, -23] + ], + [ + [68523, 372925], + [-37, 4], + [-18, 10], + [3, 40], + [27, 30], + [42, 14], + [75, 0], + [27, -12], + [23, -36], + [-15, -30], + [-33, -8], + [-62, 0], + [-32, -12] + ], + [ + [34705, 339655], + [43, -13], + [34, -27], + [3, -29], + [-56, -9], + [-72, 10], + [-13, 18], + [-1, 39], + [15, 16], + [16, 3], + [31, -8] + ] + ], + "transform": { + "scale": [0.00001112561462401693, 0.000014233113729716832], + "translate": [92.207669, 6.755953] + }, + "objects": { + "andamannicobarislands_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [ + [[0]], + [[1]], + [[2]], + [[3]], + [[4]], + [[5]], + [[6]], + [[7]], + [[8]], + [[9]], + [[10]], + [[11]], + [[12]], + [[13]], + [[14]], + [[15]], + [[16]], + [[17]], + [[18]], + [[19]], + [[20]], + [[21]], + [[22]], + [[23]], + [[24]], + [[25]], + [[26]], + [[27]], + [[28]], + [[29]], + [[30]], + [[31]], + [[32]], + [[33]], + [[34]], + [[35]], + [[36]], + [[37]], + [[38]], + [[39]], + [[40]], + [[41]], + [[42]], + [[43]], + [[44]], + [[45]], + [[46]], + [[47]], + [[48]], + [[49]], + [[50]], + [[51]], + [[52]], + [[53]], + [[54]], + [[55]], + [[56]], + [[57]], + [[58]], + [[59]], + [[60]], + [[61]], + [[62]], + [[63]], + [[64]], + [[65]], + [[66]], + [[67]], + [[68]], + [[69]], + [[70]], + [[71]], + [[72]], + [[73]], + [[74]], + [[75]], + [[76]], + [[77]], + [[78]], + [[79]], + [[80]], + [[81]], + [[82]], + [[83]], + [[84]], + [[85]], + [[86]], + [[87]], + [[88]], + [[89]], + [[90]], + [[91]], + [[92]], + [[93]], + [[94]], + [[95]], + [[96]], + [[97]], + [[98]], + [[99]], + [[100]], + [[101]], + [[102]], + [[103]], + [[104]], + [[105]], + [[106]], + [[107]], + [[108]] + ], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 640, + "censuscode": 639, + "st_cen_cd": 35, + "dt_cen_cd": 2, + "district": "North & Middle Andaman", + "st_nm": "Andaman & Nicobar Island" + } + }, + { + "arcs": [ + [[109]], + [[110]], + [[111]], + [[112]], + [[113]], + [[114]], + [[115]], + [[116]], + [[117]], + [[118]], + [[119]], + [[120]], + [[121]], + [[122]], + [[123]], + [[124]], + [[125]], + [[126]], + [[127]], + [[128]], + [[129]], + [[130]] + ], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 638, + "censuscode": 638, + "st_cen_cd": 35, + "dt_cen_cd": 1, + "district": "Nicobar", + "st_nm": "Andaman & Nicobar Island" + } + }, + { + "arcs": [ + [[131]], + [[132]], + [[133]], + [[134]], + [[135]], + [[136]], + [[137]], + [[138]], + [[139]], + [[140]], + [[141]], + [[142]], + [[143]], + [[144]], + [[145]], + [[146]], + [[147]], + [[148]], + [[149]], + [[150]], + [[151]], + [[152]], + [[153]], + [[154]], + [[155]], + [[156]], + [[157]], + [[158]], + [[159]], + [[160]], + [[161]], + [[162]], + [[163]], + [[164]], + [[165]], + [[166]], + [[167]], + [[168]], + [[169]], + [[170]], + [[171]], + [[172]], + [[173]], + [[174]], + [[175]], + [[176]], + [[177]], + [[178]], + [[179]], + [[180]], + [[181]], + [[182]], + [[183]], + [[184]], + [[185]] + ], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 639, + "censuscode": 640, + "st_cen_cd": 35, + "dt_cen_cd": 3, + "district": "South Andaman", + "st_nm": "Andaman & Nicobar Island" + } + } + ] + } + } +} diff --git a/public/maps/andhrapradesh.json b/public/maps/andhrapradesh.json index 90c7ba3ca2..46d35a70f9 100644 --- a/public/maps/andhrapradesh.json +++ b/public/maps/andhrapradesh.json @@ -1 +1,3333 @@ -{"type":"Topology","arcs":[[[15114,12452],[-47,14],[1,38]],[[15068,12504],[-47,70],[25,43],[-23,62],[71,30]],[[15094,12709],[37,-28],[32,58],[15,114],[79,29],[-116,61],[-64,-2],[-8,27],[-40,-12],[12,18],[-57,40],[48,81],[-24,42],[-48,15],[0,27],[46,18],[-28,29],[11,28],[61,-13],[-76,104],[20,21],[82,4],[9,102],[-121,30],[-35,-17],[-5,-54],[-16,-2],[-54,36],[39,70],[58,21],[-47,7],[2,120],[25,42],[-44,42],[-7,57],[66,60],[47,4],[-8,34],[46,0],[21,30],[86,25],[15,34],[57,31],[110,-79],[29,37]],[[15349,14000],[-12,82],[60,-8],[85,29],[-8,64]],[[15474,14167],[-29,-3],[-46,86],[-40,28]],[[15359,14278],[-10,35],[53,-31],[21,17],[-39,82],[-24,-10],[-24,104],[75,27],[-9,21],[37,1],[64,-134],[10,-99],[42,-7],[1,-101],[99,-121],[49,31],[76,-52],[34,21],[88,-13],[72,17],[116,-133],[68,23],[33,-14],[6,35],[42,24],[67,-23],[12,32],[50,-3],[18,19],[75,-35],[57,21],[6,26],[70,-38],[14,27],[37,7],[-29,36],[41,6],[33,42],[-65,46],[-5,52],[13,14],[51,-62],[27,1],[22,29],[-53,46],[70,-41],[12,33],[-41,30],[86,-15],[2,46],[20,-20],[22,27],[-30,60],[14,49],[47,20],[-45,38],[-23,62],[120,-74],[15,62],[74,72],[88,19],[36,39],[22,-3],[-3,-96],[42,-12],[38,93],[94,-7],[22,31],[-26,41],[-74,-22],[0,32],[-35,4],[-31,72],[158,-6],[3,75],[20,9],[75,-19],[-3,-27],[-23,-5],[6,-60],[138,-100],[-192,-243],[18,-1],[-177,-176],[-101,-164],[-14,-62],[-127,-112],[-88,-109],[-30,-76],[-157,-151],[-30,-87],[-453,-411],[-43,-67],[0,-70],[-423,-237],[-409,-182],[-188,-118],[-42,67]],[[15474,14167],[10,-57],[-25,-25],[-122,-3],[12,-82]],[[15094,12709],[-71,-31],[23,-49],[-5,-43],[-20,-2],[11,-48],[36,-32]],[[15114,12452],[46,-57],[-213,-163],[-82,-133],[-107,-5]],[[14758,12094],[-37,38],[-32,-12]],[[14689,12120],[-1,-35],[-30,5],[29,-50],[-16,-6],[-81,93],[40,72],[-7,42],[-63,8],[24,92],[-59,-14],[-41,30],[-10,-36],[-42,-7],[-36,-45],[-28,12],[22,-59],[-58,7],[10,-27],[-44,25],[-67,-128],[-41,-11],[27,-49],[23,9],[31,-30],[-48,-26],[-23,-69],[-38,19],[-13,-79],[-131,-5],[-1,57],[-39,16],[-5,69],[-38,36],[6,36],[-90,11],[-38,46],[-101,30],[0,104],[20,26],[-17,2],[36,55],[59,8],[-9,20],[177,60],[3,23],[-53,3],[39,12],[-45,44],[36,44],[-24,10],[24,26],[-31,43],[62,-29],[45,33],[-20,21],[31,1],[36,65]],[[14081,12730],[35,-72],[68,-19],[-7,80],[23,-43]],[[14200,12676],[28,-6],[-20,79],[76,-47]],[[14284,12702],[-12,127],[-70,36],[-42,-5],[16,110],[-109,-48]],[[14067,12922],[-15,35],[-28,-4],[6,32],[-40,19],[-46,-2],[-16,20],[-29,-34]],[[13899,12988],[-27,10],[-9,55]],[[13863,13053],[63,95],[-57,-22],[-34,16],[-15,23],[22,24],[-15,13],[-40,-26],[-3,37],[-44,35],[75,67],[88,139],[-16,15],[-53,-28],[-41,7],[-33,67],[51,33],[-1,25],[-60,-24],[-26,13],[4,24],[-32,6],[0,29],[41,34],[-6,33],[90,35],[33,92],[108,118],[-15,24],[50,38],[41,-38],[47,6],[63,-44],[12,-48],[34,56],[-7,45],[103,-24],[29,76],[53,26],[48,-7],[-5,27],[82,57],[30,-28],[58,26],[20,71],[-80,53],[33,24],[-55,2],[-33,49],[-2,31],[41,-2],[-7,44],[-33,9],[-6,-92],[-36,0],[-20,28],[30,21],[-8,49],[-34,9],[-19,60],[62,-5],[9,48],[54,-4],[11,-32],[62,17],[46,-24],[-9,-23],[51,-31],[15,-41],[31,-5],[13,82],[-28,0],[-11,43],[65,-4],[8,57],[-46,69],[9,37],[26,-2],[-23,32],[39,-5],[-6,-31],[39,-35],[29,16],[17,-71],[-10,-24],[-41,16],[10,-33],[75,-20],[10,69],[35,34],[-19,55],[29,13],[3,-60],[46,-4],[3,65],[55,21],[-26,78],[48,26],[13,46],[28,-22],[-2,-46],[40,-8],[-17,-25],[35,-44],[-4,-41],[53,-51],[33,-75],[65,-8],[-45,-45],[52,-33],[51,-175]],[[13863,13053],[9,-55],[27,-10]],[[14067,12922],[49,37],[62,10],[-18,-109],[106,-22],[18,-136]],[[14200,12676],[-21,44],[-9,-53],[23,-16],[-36,-11],[-43,20],[-33,70]],[[14689,12120],[33,13],[36,-39]],[[14758,12094],[61,14],[31,-17],[-117,-80],[-58,-89],[-54,-37],[-20,-107],[-125,-123],[-16,-67],[-102,-67],[17,2],[-5,-21],[-20,12],[-5,-43],[-121,-98],[-3,-44],[-55,-48],[-112,-70],[-311,-121],[-62,-78],[-635,-292],[-352,-216]],[[12694,10504],[-53,113],[36,16],[1,49],[49,-3],[18,54],[-49,56]],[[12696,10789],[134,195],[-95,70]],[[12735,11054],[-19,82],[-34,-47],[-81,4],[-28,-20],[-46,83]],[[12527,11156],[-2,-54],[-35,-2]],[[12490,11100],[4,-70],[-90,-31]],[[12404,10999],[-82,29],[5,71],[-67,-37],[-30,20],[14,47]],[[12244,11129],[-19,75],[32,57],[-87,18]],[[12170,11279],[-64,50],[4,27],[-61,-10]],[[12049,11346],[-51,44],[-97,-69]],[[11901,11321],[-40,4],[-59,87]],[[11802,11412],[-97,19],[-75,-48]],[[11630,11383],[-14,17],[-62,-25],[-16,-32],[-31,47],[18,18],[-9,28],[36,23],[24,102],[-48,54],[10,35],[-77,38],[-47,-25],[28,-28],[-81,-19],[-128,7]],[[11233,11623],[-39,27],[144,109]],[[11338,11759],[-4,16],[82,21],[38,69],[66,-7],[5,-39],[21,27],[-41,105],[63,121],[-49,59]],[[11519,12131],[5,34],[-70,79],[68,39],[-4,60],[53,26],[17,-27],[54,-3],[25,43],[56,-34],[69,0],[8,-37],[70,19],[34,-53],[-13,-19],[60,-4],[99,-60],[40,14],[9,55],[-26,44],[25,35],[64,27],[-7,-32],[46,-24],[6,35],[26,-20],[21,15],[17,43],[-35,66],[7,93],[54,-27],[20,30],[-42,54],[-83,28],[-10,45],[57,46],[-28,16],[27,21],[18,91],[70,0],[34,39],[-7,70],[-73,-29],[-38,25],[103,92],[-13,83],[-33,40],[148,149],[17,64],[107,78],[-3,-50],[39,-32],[64,-7],[-12,-34],[16,-42],[-32,-28],[42,-48],[5,32],[45,-22],[-57,-97],[131,-38],[24,-53],[34,-14],[-43,-17],[12,-55],[-31,4],[-30,-32],[38,-25],[-24,-63],[110,-90],[33,30],[-23,32],[22,39],[-21,48],[53,-10],[236,97],[36,51],[-18,43],[25,9],[12,47],[-27,9],[-11,46],[58,45],[86,-40],[11,-29],[97,7],[-2,-96],[96,-46],[68,-2],[57,58],[55,14],[72,-26],[74,71],[32,3],[-57,-96]],[[9151,7020],[0,4],[5,3],[-5,-7]],[[8896,7055],[-3,6],[4,-3],[-1,-3]],[[8855,7108],[0,2],[4,2],[-4,-4]],[[8852,7114],[2,4],[0,-2],[-2,-2]],[[8852,7118],[0,0],[3,2],[-3,-2]],[[8855,7146],[-3,-3],[0,3],[3,0]],[[9323,7193],[-3,1],[5,10],[-2,-11]],[[9344,7228],[6,-30],[-31,52],[25,-22]],[[8848,7277],[-3,10],[7,-5],[-4,-5]],[[8843,7297],[-2,14],[3,-8],[-1,-6]],[[8838,7338],[3,-23],[-9,22],[6,1]],[[8819,7358],[14,-13],[-19,12],[5,1]],[[9080,10085],[70,15],[66,-45]],[[9216,10055],[3,-90],[-17,-46],[-34,-18],[-3,-56],[46,-52],[88,-246],[89,-45]],[[9388,9502],[13,-51],[-56,-19]],[[9345,9432],[-52,-113],[-26,-9],[18,-95],[38,-21],[-18,-17],[43,-33],[-16,-31],[-35,-2],[-42,67],[-48,14],[41,-102]],[[9248,9090],[73,-91],[12,-59],[147,33]],[[9480,8973],[36,28],[-13,41],[58,-29],[47,32],[32,-27],[35,57],[47,4],[105,-117],[2,51],[61,32],[31,114],[61,81],[48,-8],[-3,-158],[38,-35],[21,15],[6,-28],[-25,-16],[-5,-138]],[[10062,8872],[-24,-46],[83,-24]],[[10121,8802],[6,-92],[85,-88],[30,-3],[25,-46],[72,-1]],[[10339,8572],[55,-64],[62,24],[52,-6],[11,-23],[2,-46]],[[10521,8457],[-144,18],[-208,-29],[-280,-146],[-112,-161],[-50,-237],[-100,-204],[5,-89],[-292,-280],[-25,-37],[7,-31],[-13,26],[-12,-66],[42,-71],[-13,-40],[-153,-86],[-236,-22]],[[8937,7002],[16,130],[75,186],[30,23],[37,138],[-18,13]],[[9077,7492],[-31,329],[-21,2]],[[9025,7823],[-8,84],[-28,-4],[19,66],[-78,150],[29,38],[-46,6],[-7,51]],[[8906,8214],[-32,1],[-8,95],[-111,106]],[[8755,8416],[-50,116],[-113,100]],[[8592,8632],[1,40],[-26,17],[15,38],[-415,272],[-248,3],[-80,54]],[[7839,9056],[-172,-2],[-244,92],[-13,36],[30,49],[-19,45],[15,36]],[[7436,9312],[-67,217],[-99,-6],[-53,38],[-2,45],[-106,27],[41,113],[49,4],[24,43],[11,81],[79,-7],[8,51],[99,-1],[29,38],[74,29],[20,55],[33,-77],[32,12],[85,-41],[39,23],[24,-26],[-7,-34],[36,-17],[-3,-45],[25,-12],[-11,-72],[27,-24],[-5,-61],[49,-12],[-7,-33],[73,-16],[14,-80],[52,33],[8,37],[-64,9],[12,30],[96,-35],[2,-27],[78,-41],[1,-56],[232,-62],[59,55],[35,3],[-110,89],[12,83],[61,36],[-20,43],[32,33],[-10,12],[-137,85],[-19,-31],[-59,20],[-13,-66],[-96,62],[-189,50],[53,74],[43,15],[-47,118],[52,54],[21,1],[-4,-42],[47,-82],[57,-17],[15,46],[43,2],[31,39],[20,122],[107,25],[37,45],[74,-46],[51,-10],[74,-61],[-29,-27],[-3,-49],[82,13],[14,23],[103,-14],[217,-85],[66,70],[46,-15]],[[7436,9312],[-16,-164],[219,-87],[200,-5]],[[7839,9056],[84,-55],[225,3],[125,-59],[58,-67],[240,-138],[21,-108]],[[8755,8416],[112,-108],[7,-94],[32,0]],[[9025,7823],[21,0],[31,-331]],[[8937,7002],[-34,15],[-61,106],[25,38],[-18,-52],[68,-98],[-94,296],[47,-80],[4,24],[29,-12],[-7,46],[-84,82],[-208,41],[-314,-75],[-260,-125]],[[8030,7208],[-2,22],[80,29],[-14,62],[61,12],[-53,10],[-31,47],[-66,-47],[-63,90],[4,175],[83,-24],[19,82],[-120,31],[-29,31],[-73,-18],[-25,23],[10,36],[-36,24],[-87,-4],[-3,-18],[-46,15],[-22,-46],[-88,15],[-6,-30],[-70,46],[-40,0],[6,-68]],[[7419,7703],[-106,-6],[-20,113],[-26,28],[8,38]],[[7275,7876],[-59,-15],[-15,16]],[[7201,7877],[25,85],[-86,-29],[-27,52]],[[7113,7985],[-58,14],[-47,42],[-7,-44],[-37,-29],[-119,51],[-27,-46],[20,-13],[-15,-74]],[[6823,7886],[112,-60],[-4,-52]],[[6931,7774],[-105,-38],[-15,-84],[37,14],[50,-36],[-9,-29],[30,-9]],[[6919,7592],[-20,-55],[-50,-5]],[[6849,7532],[-23,-55],[-173,56],[-17,-59],[-61,-35],[-19,-91],[57,-39],[-4,-39]],[[6609,7270],[-132,28]],[[6477,7298],[20,49],[-69,39],[10,50],[-83,51],[-43,-31],[-53,34],[9,24],[-95,10],[-29,25],[30,130],[-56,142],[18,75],[-38,74],[-3,68],[49,71],[17,185]],[[6161,8294],[-67,68],[-83,-35],[-112,28]],[[5899,8355],[-168,-159],[-164,-41],[-163,-117],[-15,143]],[[5389,8181],[42,247],[-48,39],[-10,74],[8,143],[48,26],[-42,58],[12,64],[55,43],[26,78],[75,-10],[108,48],[173,-6],[62,90],[80,8],[45,29],[84,-8],[124,93],[75,-29],[107,77],[91,-10],[47,66],[65,26],[40,-12],[55,-76],[74,32],[58,-20],[64,-138],[90,-3],[40,25],[69,127],[72,28],[55,69],[38,163],[71,13],[51,-46],[43,-177]],[[11338,11759],[-142,-110],[37,-26]],[[11630,11383],[73,48],[99,-19]],[[11901,11321],[21,32],[82,37],[45,-44]],[[12170,11279],[81,-6],[-26,-72],[19,-72]],[[12404,10999],[60,10],[36,43],[-10,48]],[[12490,11100],[41,17],[-4,39]],[[12735,11054],[94,-82],[-95,-106],[-38,-77]],[[12694,10504],[-215,-165],[-275,-270],[-70,-101],[-42,-132],[21,-9],[-63,-36],[-2,-134],[23,30],[15,-43],[38,16],[1,-29],[11,28],[8,-29],[25,22],[24,-63],[40,40],[46,-29],[10,27],[7,-17],[-1,169],[-76,140],[45,-22],[30,-52],[13,-182],[-49,-297],[10,-72],[38,-21],[-107,-102],[28,-112],[-35,-122],[-178,-39],[-607,-331],[-234,-52],[-289,-151],[-16,23],[14,95]],[[10882,8482],[-38,146],[41,56],[39,-57],[42,2],[113,137],[87,28],[26,234],[-36,109],[-124,139],[12,85],[-57,36],[-45,72],[15,132],[-60,143],[11,68],[35,47],[-7,102],[-51,113],[-83,79],[-88,257],[43,158],[44,32],[-2,24],[-142,67],[-22,101],[20,71],[-60,-3],[-50,78],[-72,1],[-65,91],[-125,-42],[-82,7],[-96,78],[-109,-27],[-40,20]],[[9956,11066],[-16,63],[-65,91],[-268,39],[-47,86],[-215,-48],[-21,14],[4,90],[-22,18],[-64,-5],[-69,-38]],[[9173,11376],[-61,12],[3,45],[-32,25],[16,19],[-42,9],[19,49],[-20,75],[193,101],[39,-69],[108,-5],[39,-33],[101,88],[-41,59],[19,26],[158,110],[218,-106],[196,5],[84,-42],[10,60],[43,-16],[41,42],[22,-16],[67,29],[35,-58],[157,33],[23,26],[94,-36],[55,43],[44,90],[56,11],[27,37],[26,-68],[167,121],[46,70],[208,56],[36,34],[81,5],[45,37],[12,-23],[30,-12],[30,-44],[-6,-34]],[[11999,9390],[-45,-54],[-42,6],[15,-35],[101,-13],[60,-49],[96,55],[-11,67],[-34,-49],[-44,-11],[-115,25],[32,50],[-13,8]],[[12244,9041],[-15,5],[0,25],[15,-30]],[[12259,9046],[-19,-40],[-10,6],[29,34]],[[12204,8969],[-5,-12],[-4,10],[9,2]],[[12207,8958],[-2,1],[1,0],[1,-1]],[[12204,8956],[-1,-2],[-2,2],[3,0]],[[12206,8952],[-2,1],[1,2],[1,-3]],[[6477,7298],[64,-25],[68,-3]],[[6849,7532],[51,5],[19,55]],[[6931,7774],[6,31],[-10,32],[-104,49]],[[7113,7985],[44,-57],[65,36],[-21,-87]],[[7275,7876],[26,-161],[24,-22],[52,21],[42,-11]],[[8030,7208],[-225,-169],[-142,-205],[-98,-363],[-183,-238],[-74,-185],[-1,-172],[-92,-289],[16,-180],[-31,10]],[[7200,5417],[-26,-65],[-146,96],[-61,0]],[[6967,5448],[-89,-42],[-11,-34],[-33,-4]],[[6834,5368],[-17,-54]],[[6817,5314],[-189,39]],[[6628,5353],[31,90],[-26,20],[34,59],[-42,26],[-97,-82],[-42,51],[-94,-47],[-239,25],[-7,-49]],[[6146,5446],[-22,1],[-178,105]],[[5946,5552],[-65,-30],[-49,8],[5,33],[-63,5],[5,35],[-55,-13]],[[5724,5590],[-36,71],[-16,-71],[-35,12]],[[5637,5602],[17,59],[-63,-67],[-8,19],[-83,3],[-11,22],[-101,-48],[-189,33],[3,-33],[-65,-4]],[[5137,5586],[-25,-80]],[[5112,5506],[-37,215],[24,69]],[[5099,5790],[-138,14],[-22,-27]],[[4939,5777],[-84,2],[-32,17]],[[4823,5796],[-21,119]],[[4802,5915],[-46,0]],[[4756,5915],[-17,-94],[-311,29]],[[4428,5850],[-78,-41]],[[4350,5809],[-12,328]],[[4338,6137],[76,213],[1,555],[84,461],[58,87],[164,141]],[[4721,7594],[44,284],[-57,205],[121,59],[56,4],[51,67],[45,4],[152,-43],[55,18],[73,-49],[128,38]],[[5899,8355],[56,-28],[145,24],[61,-57]],[[4338,6137],[1,-287],[11,-41]],[[4350,5809],[36,7]],[[4386,5816],[-18,-115]],[[4368,5701],[25,-181],[-101,-121]],[[4292,5399],[5,-74],[-57,-1],[-16,-67]],[[4224,5257],[-50,-19],[-70,-11]],[[4104,5227],[1,43],[-64,23],[-21,-35],[-21,15],[-64,-35],[-3,70],[-25,9],[-45,-26],[-76,-121],[-17,4],[86,215],[-18,19],[16,126]],[[3853,5534],[-63,26],[-29,-21]],[[3761,5539],[30,-29],[-5,-31],[-144,-11],[-22,-134]],[[3620,5334],[-49,-7],[-98,76]],[[3473,5403],[23,64],[36,-12],[67,52],[-48,17],[10,30],[-25,5],[-17,-45]],[[3519,5514],[-84,49],[-71,0],[-39,-35],[19,-61]],[[3344,5467],[-52,-10],[-36,-63],[-17,10],[-34,-110]],[[3205,5294],[-116,20],[-67,-36],[-7,30]],[[3015,5308],[-102,25],[2,23],[-62,47],[-12,-25],[-45,17],[-50,63],[-2,54],[-34,30],[42,108],[-46,49],[-41,13],[-29,-69],[-121,32],[19,14],[-12,24],[33,20],[-11,59],[-76,10],[-20,-99],[-72,-12],[-9,34],[-51,-4],[-59,-82],[-39,16],[7,23],[-57,14],[-40,49],[8,38],[-37,9],[-11,32],[-41,-6],[11,50],[-75,64],[-57,-28],[-6,-34],[-43,-1],[-9,-52],[-64,10],[-121,82],[-101,-37],[-66,32],[-2,-38],[-53,41],[-138,0],[-26,-104],[-77,0],[-54,-105]],[[1166,5694],[-201,65],[-52,-40],[-84,3],[6,34],[48,-2],[14,33],[-31,97],[-66,28],[3,29],[38,40],[53,2],[-2,23],[-43,10],[9,44],[-72,6],[-12,88],[-108,-13],[2,36],[-51,41],[12,64],[-39,33],[6,71],[-124,129],[-2,41],[122,-18],[0,299],[116,56],[84,-63],[17,79],[-111,66],[20,46],[-19,2],[2,26],[-68,6],[-6,23],[46,107],[-4,92],[-88,21],[104,166],[175,88],[212,35],[287,-56],[110,21],[262,-68],[137,-3],[105,-74],[74,-5],[68,29],[175,-49],[120,21],[65,51],[108,-51],[84,0],[74,-49],[50,103],[29,-7],[4,-67],[54,-29],[27,-48],[110,-10],[4,42],[87,7],[32,78],[-23,22],[11,18],[148,57],[23,208],[110,-34],[31,57],[85,23],[98,64],[146,-16],[165,-57],[110,93],[42,10],[65,-21],[68,-100],[131,-60],[107,33],[67,60],[48,81],[-20,131],[48,14],[42,-17],[34,-129],[70,41],[3,54],[11,-124],[-37,-237]],[[3015,5308],[3,-48],[-49,-19]],[[2969,5241],[-41,-108],[-11,-60],[53,-16]],[[2970,5057],[-27,-76],[-55,23]],[[2888,5004],[-66,-126],[67,-44]],[[2889,4834],[-23,-83],[61,-5]],[[2927,4746],[34,-49],[56,7]],[[3017,4704],[-26,-158],[-76,11]],[[2915,4557],[-52,-132],[-56,-14],[10,-56],[-23,-25],[-101,23],[-9,60],[-38,48],[-48,-41],[72,-74],[52,-111],[186,-153],[47,-65],[180,-97],[89,-79],[106,-24],[17,-29],[158,2],[85,-36],[54,14],[-32,-186],[52,-11],[-17,-109],[48,-24]],[[3695,3438],[39,-70],[-15,-52]],[[3719,3316],[-27,-8],[14,-65],[-18,-76],[63,-26]],[[3751,3141],[-5,-27],[-87,-36]],[[3659,3078],[-87,-92],[-33,13],[-5,28],[-51,-50],[-21,4],[-13,-42],[-29,6],[-42,-33],[-2,-28],[-56,2],[-17,-84],[-53,-29],[34,-24],[11,-98],[-54,-28]],[[3241,2623],[-237,15],[-33,50],[25,56],[-23,70],[-72,-4],[-7,45],[-64,34],[-8,-77],[-100,25],[-53,-99],[-51,-5],[-9,134],[83,38],[-14,56],[16,63],[-43,11],[-91,-125],[-68,34],[0,47],[-125,-11],[-27,20],[-28,-69],[40,-43],[8,-33],[-18,-15],[21,-11],[-55,-47],[-65,-11],[15,-31],[-17,-28],[-136,-41],[-4,-134],[-20,0],[-11,65],[-70,-21],[19,60],[-130,-42],[-5,-30],[52,-19],[-32,-28],[-31,40],[-30,-3],[-87,-64],[-29,69],[-44,2],[-11,-21],[32,-32],[-25,-90],[-29,15],[4,36],[-64,3],[16,-56],[-81,-18],[-11,66],[33,-1],[12,108],[-31,69],[18,40],[-43,11],[-18,-33],[-32,6],[14,17],[-27,5],[35,78],[-111,-9],[-43,34],[-81,-48],[-31,76],[-50,-43],[-70,-2],[5,37],[-28,11],[5,76],[-28,6],[-35,-82],[-14,42],[-28,-53],[-42,16],[21,95],[-14,30],[-50,-42],[15,-96],[-46,9],[-43,-27],[89,-61],[-25,-53],[47,-53],[-12,-47],[-182,11],[-10,-56],[-46,3],[-47,77],[-42,4],[-17,-93],[-40,16],[-29,103],[10,50],[-29,10],[3,22],[32,50],[48,26],[19,96],[53,9],[-12,61],[-105,66],[13,63],[-151,91],[3,54],[87,9],[12,30],[-9,28],[-55,19],[-6,60],[-45,43],[-27,-19],[-59,21],[19,67],[105,13],[12,56],[28,-37],[138,-12],[6,-117],[-25,-57],[33,-27],[-4,-59],[106,-20],[6,-24],[106,10],[48,-104],[52,0],[3,27],[156,-3],[55,51],[19,-4],[-9,-48],[70,47],[34,-5],[31,-78],[54,-11],[-25,-74],[48,-12],[-52,-84],[22,-28],[88,7],[2,-42],[80,61],[-42,21],[-9,48],[51,5],[6,64],[-26,24],[-98,-23],[19,92],[-127,32],[18,67],[44,5],[89,128],[-23,18],[-95,-53],[10,63],[60,11],[32,87],[161,-5],[80,-34],[30,66],[-27,18],[-27,84],[24,65],[-11,43],[-43,31],[-63,-26],[-9,83],[-33,-10],[-6,36],[-48,20],[-38,-10],[-27,-58],[23,-84],[47,-25],[20,-77],[1,-38],[-56,-23],[-30,63],[-43,17],[9,95],[-176,15],[7,131],[-106,-52],[-90,9],[-67,47],[-61,-5],[-63,-163],[22,-12],[-8,-83],[-35,-21],[-43,-6],[-63,71],[-103,-22],[-44,26],[-101,-6],[-32,66],[70,47],[-25,42],[-92,22],[-41,56],[0,110],[30,5],[38,52],[59,-48],[4,116],[34,0],[32,78],[-162,9],[-72,-34],[-27,81],[-54,47],[-55,1],[-53,149],[-37,13],[22,179],[61,138],[-44,100],[118,11],[2,45],[36,-2],[-27,61],[27,15],[7,59],[-26,46],[41,14],[12,96],[-4,73],[-86,-31],[-22,30],[-114,14],[-13,32],[32,8],[33,62],[-36,88],[6,43],[52,40],[79,-38],[65,-44],[25,-67],[90,12],[147,-46],[2,25],[40,17],[99,-2],[-11,-52],[84,-9],[5,56],[62,8],[14,26],[23,125],[44,25],[18,78],[48,-7],[17,32],[32,6],[60,-36],[136,-29]],[[5637,5602],[39,-11],[15,70],[33,-71]],[[5946,5552],[179,-105],[21,-1]],[[6628,5353],[115,-32],[74,-7]],[[6834,5368],[133,80]],[[6967,5448],[66,-1],[139,-95],[28,65]],[[7200,5417],[32,-11],[121,-602],[62,-56],[72,-228],[37,-21],[18,-42],[-33,-162],[-28,-373],[-81,-277],[-9,-179],[43,-248],[238,-586],[-38,-139],[-9,-147],[76,-210],[-58,-213],[-60,44],[-152,3],[-14,29],[-58,4],[-10,-39],[-65,0],[-3,85],[25,20],[-16,33],[-53,-29],[-42,5]],[[7195,2078],[3,38],[26,6]],[[7224,2122],[-8,32],[-56,8]],[[7160,2162],[-48,153],[-77,16],[-17,37]],[[7018,2368],[33,51],[-34,42]],[[7017,2461],[-191,-3],[-41,143],[-68,6],[-13,38],[-68,-13],[-15,46]],[[6621,2678],[-36,-12],[-64,47]],[[6521,2713],[18,89],[-27,11],[4,96]],[[6516,2909],[-109,44],[-22,-200]],[[6385,2753],[-135,39],[36,62],[-63,19],[-5,77],[-252,-22],[-9,-31]],[[5957,2897],[-68,-21],[35,127]],[[5924,3003],[-20,57],[11,37],[-40,82],[39,175],[-70,239],[28,84],[-100,222],[-52,24],[-4,62],[-75,107],[-29,114],[-52,20],[-33,109],[-80,137],[-27,21],[-21,-33],[-68,65],[-3,96],[-29,54],[21,14],[6,50],[-79,188],[-37,167],[-69,82]],[[5141,5176],[-46,180],[42,230]],[[10882,8482],[0,-112],[-59,42],[-302,45]],[[10521,8457],[-16,70],[-117,-18],[-49,63]],[[10339,8572],[-38,15],[-33,-15],[-27,49],[-90,53],[-34,73],[4,55]],[[10121,8802],[-84,26],[25,44]],[[9480,8973],[-128,-40],[-104,157]],[[9345,9432],[56,19],[-3,23],[-10,28]],[[9216,10055],[-35,37],[-101,-7]],[[9080,10085],[-62,32],[18,62],[-19,41],[23,26],[3,58],[97,-7],[-11,141],[49,-1],[117,-64],[81,-2],[51,79],[55,-22],[207,34],[30,55],[-24,75],[30,85],[184,-18],[107,130],[-23,78],[-96,22],[-139,71],[-6,-36],[-20,4],[-46,31],[7,33],[-60,0],[25,47],[-39,10],[-8,62],[-24,23],[-65,-50],[-39,25],[-132,11],[-111,177],[-198,-3],[-52,12],[-13,43],[35,33],[161,-6]],[[9173,11376],[106,47],[43,-13],[4,-33],[14,-79],[210,50],[60,-90],[185,-38],[65,8],[69,-80],[27,-82]],[[4823,5796],[53,-26],[63,7]],[[4939,5777],[14,27],[146,-14]],[[5099,5790],[-24,-64],[37,-220]],[[5112,5506],[-16,-153],[45,-177]],[[5924,3003],[-55,-167],[50,-161]],[[5919,2675],[27,-9],[-50,-34],[-61,3],[-1,-44],[-100,-19]],[[5734,2572],[-146,-73],[-28,80],[-150,-4],[-74,81],[55,45],[-148,118],[-48,-34],[-60,0],[-19,69],[-148,25]],[[4968,2879],[-56,42],[-19,4]],[[4893,2925],[-12,-45],[-61,-16],[-32,-1],[-13,29],[-38,-1],[-2,-18],[-72,24],[-55,-29],[-135,-14],[-39,-37],[18,-24],[-10,-55]],[[4442,2738],[-27,-5],[-93,132]],[[4322,2865],[-40,6],[-28,-38],[-122,-8],[26,95],[-36,-19],[-51,26],[-61,-4],[26,111],[-59,7],[28,50],[-89,13],[-89,-72],[-23,-48],[-55,47],[16,57]],[[3765,3088],[-21,24],[7,29]],[[3719,3316],[15,51],[-39,71]],[[2915,4557],[74,-15],[28,162]],[[2927,4746],[-67,11],[29,77]],[[2889,4834],[-66,49],[65,121]],[[2970,5057],[-53,24],[52,160]],[[2969,5241],[40,6],[60,64],[136,-17]],[[3344,5467],[-20,53],[22,37],[89,6],[84,-49]],[[3473,5403],[109,-79],[38,10]],[[3761,5539],[17,19],[55,-4],[20,-20]],[[4104,5227],[67,10],[53,20]],[[4292,5399],[101,119],[-25,183]],[[4386,5816],[42,34]],[[4756,5915],[23,2],[23,-2]],[[4163,2916],[-1,-4],[4,5],[-3,-1]],[[4163,2916],[4,1],[-5,-5],[1,4]],[[4322,2865],[92,-132],[28,5]],[[4893,2925],[75,-46]],[[5734,2572],[101,20],[2,44],[58,-5],[48,29],[-24,15]],[[5919,2675],[-50,171],[33,41],[55,10]],[[6385,2753],[29,204],[102,-48]],[[6521,2713],[42,-19],[-11,-15],[69,-1]],[[7017,2461],[28,-34],[-27,-59]],[[7160,2162],[54,-6],[10,-34]],[[7195,2078],[-84,8],[2,-38],[38,9],[21,-36],[45,-3],[-3,-43],[-67,10],[-18,-45],[-52,3],[-26,-24],[2,-89],[-85,-30],[22,-45],[40,-12],[-10,-28],[-29,6],[1,-41],[-27,-27],[-38,18],[-2,-26],[-69,-35],[-1,-22],[-33,18],[-11,-32],[-119,0],[-37,-53],[-69,56],[-8,-52],[-58,-29],[141,-97],[0,-31],[-67,-16],[-9,-27],[-22,1],[-28,65],[-41,-45],[-35,13],[22,51],[-26,19],[-11,-33],[-25,13],[-13,39],[38,13],[-29,65],[-38,-39],[-3,25],[-47,1],[-24,-47],[-56,23],[6,18],[-28,-6],[-10,-53],[-27,-9],[-98,40],[21,94],[-15,50],[-25,13],[-34,-22],[-33,24],[-86,-15],[-46,30],[-8,-34],[-58,-4],[-7,-40],[-31,1],[-13,-24],[15,5],[2,-28],[57,5],[10,-23],[55,27],[-25,-60],[-56,-22],[31,-31],[-9,-19],[42,0],[-14,-30],[48,19],[2,-48],[-36,6],[2,-72],[-141,3],[30,-27],[-40,-10],[23,-23],[-53,4],[10,-94],[-34,-4],[-9,35],[-74,-71],[-28,9],[39,37],[-62,-7],[-8,68],[-40,-9],[-10,27],[-27,-51],[-6,74],[-17,0],[-54,-51],[50,-21],[3,-77],[-79,-54],[-39,6],[25,-38],[-30,-19],[30,-7],[-25,-16],[27,-5],[-18,-38],[-47,-22],[-107,43],[-74,-31],[-40,34],[2,29],[-151,76],[-49,-7],[-5,-20],[-102,13],[-44,-75],[56,-4],[17,-35],[-99,6],[-1,145],[-36,0],[-9,-34],[-63,-8],[-64,24],[-41,-51],[-94,-26],[-81,31],[-21,-121],[-107,36],[-2,-36],[-76,-55],[58,-57],[-20,-3],[41,-74],[-51,-1],[-70,-184],[13,-66],[-33,-89],[-81,-61],[16,-10],[-17,-27],[19,-4],[-18,-85],[-46,-21],[-11,44],[32,1],[-42,11],[-9,47],[-16,-25],[-45,50],[-1,-27],[60,-53],[-38,11],[-7,-93],[-70,0],[15,-64],[-21,-54],[-83,25],[-117,-20],[-160,90],[-64,88],[-60,4],[-15,-47],[-84,16],[91,85],[-22,69],[32,63],[15,164],[35,16],[97,-20],[3,40],[51,14],[-37,11],[7,33],[36,3],[35,85],[72,-77],[22,24],[30,-32],[73,20],[42,-103],[5,88],[-63,54],[-43,-17],[-16,54],[59,42],[-6,39],[70,-14],[16,37],[-24,32],[-3,86],[114,42],[-11,68],[64,32],[-47,59],[61,23],[12,51],[65,7],[-8,44],[-58,7],[1,24],[62,29],[-27,18],[47,135],[-20,0],[-28,72],[-9,-54],[-49,-1],[-16,-48],[-40,54],[-76,24],[9,45],[-86,-29],[-8,46],[-27,6],[-59,-36],[-53,38],[13,26],[22,-22],[34,21],[-96,43],[37,80],[-16,254],[71,154],[-12,25],[-165,16],[-146,-28],[-52,38],[-7,-28],[-29,14],[-58,-64],[-6,57],[28,37],[2,50],[-79,10],[2,48],[-28,11],[-92,-3],[-60,-33],[6,37],[-53,39],[12,50],[93,-13],[16,52],[-64,61],[77,104],[242,-21]],[[3659,3078],[84,33],[22,-23]]],"transform":{"scale":[0.00045549089356858313,0.0004402913470596152],"translate":[76.760595,12.624077]},"objects":{"andhrapradesh_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"dt_code":"542","district":"Srikakulam","st_nm":"Andhra Pradesh","st_code":"37","year":"2011_c"}},{"arcs":[[-5,6,-3,7,-1,8,9,10,11,12,13,14,15,16]],"type":"Polygon","properties":{"dt_code":"543","district":"Vizianagaram","st_nm":"Andhra Pradesh","st_code":"37","year":"2011_c"}},{"arcs":[[17,-15,18,-13,19,-11,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36]],"type":"Polygon","properties":{"dt_code":"544","district":"Visakhapatnam","st_nm":"Andhra Pradesh","st_code":"37","year":"2011_c"}},{"arcs":[[[37]],[[38]],[[39]],[[40]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66]]],"type":"MultiPolygon","properties":{"dt_code":"547","district":"Krishna","st_nm":"Andhra Pradesh","st_code":"37","year":"2011_c"}},{"arcs":[[67,68,-64,69,-62,70,-60,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85]],"type":"Polygon","properties":{"dt_code":"548","district":"Guntur","st_nm":"Andhra Pradesh","st_code":"37","year":"2011_c"}},{"arcs":[[[-36,86,-34,87,-32,88,-30,89,-28,90,91,-25,92,-23,93,94,95,96],[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]]],"type":"MultiPolygon","properties":{"dt_code":"545","district":"East Godavari","st_nm":"Andhra Pradesh","st_code":"37","year":"2011_c"}},{"arcs":[[-83,104,-81,105,-79,106,-77,107,-75,108,-73,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,-85,130]],"type":"Polygon","properties":{"dt_code":"549","district":"Prakasam","st_nm":"Andhra Pradesh","st_code":"37","year":"2011_c"}},{"arcs":[[-129,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146]],"type":"Polygon","properties":{"dt_code":"552","district":"Kurnool","st_nm":"Andhra Pradesh","st_code":"37","year":"2011_c"}},{"arcs":[[147,148,149,150,151,152,153,154,155,156,157,158,159,-146]],"type":"Polygon","properties":{"dt_code":"553","district":"Anantapur","st_nm":"Andhra Pradesh","st_code":"37","year":"2011_c"}},{"arcs":[[160,-117,161,-115,162,-113,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,-119]],"type":"Polygon","properties":{"dt_code":"550","district":"S.P.S. Nellore","st_nm":"Andhra Pradesh","st_code":"37","year":"2011_c"}},{"arcs":[[-95,178,179,180,181,-55,182,-53,183,-51,184,185,186]],"type":"Polygon","properties":{"dt_code":"546","district":"West Godavari","st_nm":"Andhra Pradesh","st_code":"37","year":"2011_c"}},{"arcs":[[-124,187,188,189,190,-177,191,192,193,194,195,196,197,198,-157,199,-155,200,-153,201,202,-150,203,204,-144,205,-142,206,-140,207,-138,208,-136,209,-134,210,-126,211],[212]],"type":"Polygon","properties":{"dt_code":"551","district":"Y.S.R.","st_nm":"Andhra Pradesh","st_code":"37","year":"2011_c"}},{"arcs":[[[213]],[[-198,214,-196,215,-194,216,217,-175,218,-173,219,-171,220,-169,221,-167,222,-159,223]]],"type":"MultiPolygon","properties":{"dt_code":"554","district":"Chittoor","st_nm":"Andhra Pradesh","st_code":"37","year":"2011_c"}}]}},"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}}} +{ + "type": "Topology", + "arcs": [ + [ + [15114, 12452], + [-47, 14], + [1, 38] + ], + [ + [15068, 12504], + [-47, 70], + [25, 43], + [-23, 62], + [71, 30] + ], + [ + [15094, 12709], + [37, -28], + [32, 58], + [15, 114], + [79, 29], + [-116, 61], + [-64, -2], + [-8, 27], + [-40, -12], + [12, 18], + [-57, 40], + [48, 81], + [-24, 42], + [-48, 15], + [0, 27], + [46, 18], + [-28, 29], + [11, 28], + [61, -13], + [-76, 104], + [20, 21], + [82, 4], + [9, 102], + [-121, 30], + [-35, -17], + [-5, -54], + [-16, -2], + [-54, 36], + [39, 70], + [58, 21], + [-47, 7], + [2, 120], + [25, 42], + [-44, 42], + [-7, 57], + [66, 60], + [47, 4], + [-8, 34], + [46, 0], + [21, 30], + [86, 25], + [15, 34], + [57, 31], + [110, -79], + [29, 37] + ], + [ + [15349, 14000], + [-12, 82], + [60, -8], + [85, 29], + [-8, 64] + ], + [ + [15474, 14167], + [-29, -3], + [-46, 86], + [-40, 28] + ], + [ + [15359, 14278], + [-10, 35], + [53, -31], + [21, 17], + [-39, 82], + [-24, -10], + [-24, 104], + [75, 27], + [-9, 21], + [37, 1], + [64, -134], + [10, -99], + [42, -7], + [1, -101], + [99, -121], + [49, 31], + [76, -52], + [34, 21], + [88, -13], + [72, 17], + [116, -133], + [68, 23], + [33, -14], + [6, 35], + [42, 24], + [67, -23], + [12, 32], + [50, -3], + [18, 19], + [75, -35], + [57, 21], + [6, 26], + [70, -38], + [14, 27], + [37, 7], + [-29, 36], + [41, 6], + [33, 42], + [-65, 46], + [-5, 52], + [13, 14], + [51, -62], + [27, 1], + [22, 29], + [-53, 46], + [70, -41], + [12, 33], + [-41, 30], + [86, -15], + [2, 46], + [20, -20], + [22, 27], + [-30, 60], + [14, 49], + [47, 20], + [-45, 38], + [-23, 62], + [120, -74], + [15, 62], + [74, 72], + [88, 19], + [36, 39], + [22, -3], + [-3, -96], + [42, -12], + [38, 93], + [94, -7], + [22, 31], + [-26, 41], + [-74, -22], + [0, 32], + [-35, 4], + [-31, 72], + [158, -6], + [3, 75], + [20, 9], + [75, -19], + [-3, -27], + [-23, -5], + [6, -60], + [138, -100], + [-192, -243], + [18, -1], + [-177, -176], + [-101, -164], + [-14, -62], + [-127, -112], + [-88, -109], + [-30, -76], + [-157, -151], + [-30, -87], + [-453, -411], + [-43, -67], + [0, -70], + [-423, -237], + [-409, -182], + [-188, -118], + [-42, 67] + ], + [ + [15474, 14167], + [10, -57], + [-25, -25], + [-122, -3], + [12, -82] + ], + [ + [15094, 12709], + [-71, -31], + [23, -49], + [-5, -43], + [-20, -2], + [11, -48], + [36, -32] + ], + [ + [15114, 12452], + [46, -57], + [-213, -163], + [-82, -133], + [-107, -5] + ], + [ + [14758, 12094], + [-37, 38], + [-32, -12] + ], + [ + [14689, 12120], + [-1, -35], + [-30, 5], + [29, -50], + [-16, -6], + [-81, 93], + [40, 72], + [-7, 42], + [-63, 8], + [24, 92], + [-59, -14], + [-41, 30], + [-10, -36], + [-42, -7], + [-36, -45], + [-28, 12], + [22, -59], + [-58, 7], + [10, -27], + [-44, 25], + [-67, -128], + [-41, -11], + [27, -49], + [23, 9], + [31, -30], + [-48, -26], + [-23, -69], + [-38, 19], + [-13, -79], + [-131, -5], + [-1, 57], + [-39, 16], + [-5, 69], + [-38, 36], + [6, 36], + [-90, 11], + [-38, 46], + [-101, 30], + [0, 104], + [20, 26], + [-17, 2], + [36, 55], + [59, 8], + [-9, 20], + [177, 60], + [3, 23], + [-53, 3], + [39, 12], + [-45, 44], + [36, 44], + [-24, 10], + [24, 26], + [-31, 43], + [62, -29], + [45, 33], + [-20, 21], + [31, 1], + [36, 65] + ], + [ + [14081, 12730], + [35, -72], + [68, -19], + [-7, 80], + [23, -43] + ], + [ + [14200, 12676], + [28, -6], + [-20, 79], + [76, -47] + ], + [ + [14284, 12702], + [-12, 127], + [-70, 36], + [-42, -5], + [16, 110], + [-109, -48] + ], + [ + [14067, 12922], + [-15, 35], + [-28, -4], + [6, 32], + [-40, 19], + [-46, -2], + [-16, 20], + [-29, -34] + ], + [ + [13899, 12988], + [-27, 10], + [-9, 55] + ], + [ + [13863, 13053], + [63, 95], + [-57, -22], + [-34, 16], + [-15, 23], + [22, 24], + [-15, 13], + [-40, -26], + [-3, 37], + [-44, 35], + [75, 67], + [88, 139], + [-16, 15], + [-53, -28], + [-41, 7], + [-33, 67], + [51, 33], + [-1, 25], + [-60, -24], + [-26, 13], + [4, 24], + [-32, 6], + [0, 29], + [41, 34], + [-6, 33], + [90, 35], + [33, 92], + [108, 118], + [-15, 24], + [50, 38], + [41, -38], + [47, 6], + [63, -44], + [12, -48], + [34, 56], + [-7, 45], + [103, -24], + [29, 76], + [53, 26], + [48, -7], + [-5, 27], + [82, 57], + [30, -28], + [58, 26], + [20, 71], + [-80, 53], + [33, 24], + [-55, 2], + [-33, 49], + [-2, 31], + [41, -2], + [-7, 44], + [-33, 9], + [-6, -92], + [-36, 0], + [-20, 28], + [30, 21], + [-8, 49], + [-34, 9], + [-19, 60], + [62, -5], + [9, 48], + [54, -4], + [11, -32], + [62, 17], + [46, -24], + [-9, -23], + [51, -31], + [15, -41], + [31, -5], + [13, 82], + [-28, 0], + [-11, 43], + [65, -4], + [8, 57], + [-46, 69], + [9, 37], + [26, -2], + [-23, 32], + [39, -5], + [-6, -31], + [39, -35], + [29, 16], + [17, -71], + [-10, -24], + [-41, 16], + [10, -33], + [75, -20], + [10, 69], + [35, 34], + [-19, 55], + [29, 13], + [3, -60], + [46, -4], + [3, 65], + [55, 21], + [-26, 78], + [48, 26], + [13, 46], + [28, -22], + [-2, -46], + [40, -8], + [-17, -25], + [35, -44], + [-4, -41], + [53, -51], + [33, -75], + [65, -8], + [-45, -45], + [52, -33], + [51, -175] + ], + [ + [13863, 13053], + [9, -55], + [27, -10] + ], + [ + [14067, 12922], + [49, 37], + [62, 10], + [-18, -109], + [106, -22], + [18, -136] + ], + [ + [14200, 12676], + [-21, 44], + [-9, -53], + [23, -16], + [-36, -11], + [-43, 20], + [-33, 70] + ], + [ + [14689, 12120], + [33, 13], + [36, -39] + ], + [ + [14758, 12094], + [61, 14], + [31, -17], + [-117, -80], + [-58, -89], + [-54, -37], + [-20, -107], + [-125, -123], + [-16, -67], + [-102, -67], + [17, 2], + [-5, -21], + [-20, 12], + [-5, -43], + [-121, -98], + [-3, -44], + [-55, -48], + [-112, -70], + [-311, -121], + [-62, -78], + [-635, -292], + [-352, -216] + ], + [ + [12694, 10504], + [-53, 113], + [36, 16], + [1, 49], + [49, -3], + [18, 54], + [-49, 56] + ], + [ + [12696, 10789], + [134, 195], + [-95, 70] + ], + [ + [12735, 11054], + [-19, 82], + [-34, -47], + [-81, 4], + [-28, -20], + [-46, 83] + ], + [ + [12527, 11156], + [-2, -54], + [-35, -2] + ], + [ + [12490, 11100], + [4, -70], + [-90, -31] + ], + [ + [12404, 10999], + [-82, 29], + [5, 71], + [-67, -37], + [-30, 20], + [14, 47] + ], + [ + [12244, 11129], + [-19, 75], + [32, 57], + [-87, 18] + ], + [ + [12170, 11279], + [-64, 50], + [4, 27], + [-61, -10] + ], + [ + [12049, 11346], + [-51, 44], + [-97, -69] + ], + [ + [11901, 11321], + [-40, 4], + [-59, 87] + ], + [ + [11802, 11412], + [-97, 19], + [-75, -48] + ], + [ + [11630, 11383], + [-14, 17], + [-62, -25], + [-16, -32], + [-31, 47], + [18, 18], + [-9, 28], + [36, 23], + [24, 102], + [-48, 54], + [10, 35], + [-77, 38], + [-47, -25], + [28, -28], + [-81, -19], + [-128, 7] + ], + [ + [11233, 11623], + [-39, 27], + [144, 109] + ], + [ + [11338, 11759], + [-4, 16], + [82, 21], + [38, 69], + [66, -7], + [5, -39], + [21, 27], + [-41, 105], + [63, 121], + [-49, 59] + ], + [ + [11519, 12131], + [5, 34], + [-70, 79], + [68, 39], + [-4, 60], + [53, 26], + [17, -27], + [54, -3], + [25, 43], + [56, -34], + [69, 0], + [8, -37], + [70, 19], + [34, -53], + [-13, -19], + [60, -4], + [99, -60], + [40, 14], + [9, 55], + [-26, 44], + [25, 35], + [64, 27], + [-7, -32], + [46, -24], + [6, 35], + [26, -20], + [21, 15], + [17, 43], + [-35, 66], + [7, 93], + [54, -27], + [20, 30], + [-42, 54], + [-83, 28], + [-10, 45], + [57, 46], + [-28, 16], + [27, 21], + [18, 91], + [70, 0], + [34, 39], + [-7, 70], + [-73, -29], + [-38, 25], + [103, 92], + [-13, 83], + [-33, 40], + [148, 149], + [17, 64], + [107, 78], + [-3, -50], + [39, -32], + [64, -7], + [-12, -34], + [16, -42], + [-32, -28], + [42, -48], + [5, 32], + [45, -22], + [-57, -97], + [131, -38], + [24, -53], + [34, -14], + [-43, -17], + [12, -55], + [-31, 4], + [-30, -32], + [38, -25], + [-24, -63], + [110, -90], + [33, 30], + [-23, 32], + [22, 39], + [-21, 48], + [53, -10], + [236, 97], + [36, 51], + [-18, 43], + [25, 9], + [12, 47], + [-27, 9], + [-11, 46], + [58, 45], + [86, -40], + [11, -29], + [97, 7], + [-2, -96], + [96, -46], + [68, -2], + [57, 58], + [55, 14], + [72, -26], + [74, 71], + [32, 3], + [-57, -96] + ], + [ + [9151, 7020], + [0, 4], + [5, 3], + [-5, -7] + ], + [ + [8896, 7055], + [-3, 6], + [4, -3], + [-1, -3] + ], + [ + [8855, 7108], + [0, 2], + [4, 2], + [-4, -4] + ], + [ + [8852, 7114], + [2, 4], + [0, -2], + [-2, -2] + ], + [ + [8852, 7118], + [0, 0], + [3, 2], + [-3, -2] + ], + [ + [8855, 7146], + [-3, -3], + [0, 3], + [3, 0] + ], + [ + [9323, 7193], + [-3, 1], + [5, 10], + [-2, -11] + ], + [ + [9344, 7228], + [6, -30], + [-31, 52], + [25, -22] + ], + [ + [8848, 7277], + [-3, 10], + [7, -5], + [-4, -5] + ], + [ + [8843, 7297], + [-2, 14], + [3, -8], + [-1, -6] + ], + [ + [8838, 7338], + [3, -23], + [-9, 22], + [6, 1] + ], + [ + [8819, 7358], + [14, -13], + [-19, 12], + [5, 1] + ], + [ + [9080, 10085], + [70, 15], + [66, -45] + ], + [ + [9216, 10055], + [3, -90], + [-17, -46], + [-34, -18], + [-3, -56], + [46, -52], + [88, -246], + [89, -45] + ], + [ + [9388, 9502], + [13, -51], + [-56, -19] + ], + [ + [9345, 9432], + [-52, -113], + [-26, -9], + [18, -95], + [38, -21], + [-18, -17], + [43, -33], + [-16, -31], + [-35, -2], + [-42, 67], + [-48, 14], + [41, -102] + ], + [ + [9248, 9090], + [73, -91], + [12, -59], + [147, 33] + ], + [ + [9480, 8973], + [36, 28], + [-13, 41], + [58, -29], + [47, 32], + [32, -27], + [35, 57], + [47, 4], + [105, -117], + [2, 51], + [61, 32], + [31, 114], + [61, 81], + [48, -8], + [-3, -158], + [38, -35], + [21, 15], + [6, -28], + [-25, -16], + [-5, -138] + ], + [ + [10062, 8872], + [-24, -46], + [83, -24] + ], + [ + [10121, 8802], + [6, -92], + [85, -88], + [30, -3], + [25, -46], + [72, -1] + ], + [ + [10339, 8572], + [55, -64], + [62, 24], + [52, -6], + [11, -23], + [2, -46] + ], + [ + [10521, 8457], + [-144, 18], + [-208, -29], + [-280, -146], + [-112, -161], + [-50, -237], + [-100, -204], + [5, -89], + [-292, -280], + [-25, -37], + [7, -31], + [-13, 26], + [-12, -66], + [42, -71], + [-13, -40], + [-153, -86], + [-236, -22] + ], + [ + [8937, 7002], + [16, 130], + [75, 186], + [30, 23], + [37, 138], + [-18, 13] + ], + [ + [9077, 7492], + [-31, 329], + [-21, 2] + ], + [ + [9025, 7823], + [-8, 84], + [-28, -4], + [19, 66], + [-78, 150], + [29, 38], + [-46, 6], + [-7, 51] + ], + [ + [8906, 8214], + [-32, 1], + [-8, 95], + [-111, 106] + ], + [ + [8755, 8416], + [-50, 116], + [-113, 100] + ], + [ + [8592, 8632], + [1, 40], + [-26, 17], + [15, 38], + [-415, 272], + [-248, 3], + [-80, 54] + ], + [ + [7839, 9056], + [-172, -2], + [-244, 92], + [-13, 36], + [30, 49], + [-19, 45], + [15, 36] + ], + [ + [7436, 9312], + [-67, 217], + [-99, -6], + [-53, 38], + [-2, 45], + [-106, 27], + [41, 113], + [49, 4], + [24, 43], + [11, 81], + [79, -7], + [8, 51], + [99, -1], + [29, 38], + [74, 29], + [20, 55], + [33, -77], + [32, 12], + [85, -41], + [39, 23], + [24, -26], + [-7, -34], + [36, -17], + [-3, -45], + [25, -12], + [-11, -72], + [27, -24], + [-5, -61], + [49, -12], + [-7, -33], + [73, -16], + [14, -80], + [52, 33], + [8, 37], + [-64, 9], + [12, 30], + [96, -35], + [2, -27], + [78, -41], + [1, -56], + [232, -62], + [59, 55], + [35, 3], + [-110, 89], + [12, 83], + [61, 36], + [-20, 43], + [32, 33], + [-10, 12], + [-137, 85], + [-19, -31], + [-59, 20], + [-13, -66], + [-96, 62], + [-189, 50], + [53, 74], + [43, 15], + [-47, 118], + [52, 54], + [21, 1], + [-4, -42], + [47, -82], + [57, -17], + [15, 46], + [43, 2], + [31, 39], + [20, 122], + [107, 25], + [37, 45], + [74, -46], + [51, -10], + [74, -61], + [-29, -27], + [-3, -49], + [82, 13], + [14, 23], + [103, -14], + [217, -85], + [66, 70], + [46, -15] + ], + [ + [7436, 9312], + [-16, -164], + [219, -87], + [200, -5] + ], + [ + [7839, 9056], + [84, -55], + [225, 3], + [125, -59], + [58, -67], + [240, -138], + [21, -108] + ], + [ + [8755, 8416], + [112, -108], + [7, -94], + [32, 0] + ], + [ + [9025, 7823], + [21, 0], + [31, -331] + ], + [ + [8937, 7002], + [-34, 15], + [-61, 106], + [25, 38], + [-18, -52], + [68, -98], + [-94, 296], + [47, -80], + [4, 24], + [29, -12], + [-7, 46], + [-84, 82], + [-208, 41], + [-314, -75], + [-260, -125] + ], + [ + [8030, 7208], + [-2, 22], + [80, 29], + [-14, 62], + [61, 12], + [-53, 10], + [-31, 47], + [-66, -47], + [-63, 90], + [4, 175], + [83, -24], + [19, 82], + [-120, 31], + [-29, 31], + [-73, -18], + [-25, 23], + [10, 36], + [-36, 24], + [-87, -4], + [-3, -18], + [-46, 15], + [-22, -46], + [-88, 15], + [-6, -30], + [-70, 46], + [-40, 0], + [6, -68] + ], + [ + [7419, 7703], + [-106, -6], + [-20, 113], + [-26, 28], + [8, 38] + ], + [ + [7275, 7876], + [-59, -15], + [-15, 16] + ], + [ + [7201, 7877], + [25, 85], + [-86, -29], + [-27, 52] + ], + [ + [7113, 7985], + [-58, 14], + [-47, 42], + [-7, -44], + [-37, -29], + [-119, 51], + [-27, -46], + [20, -13], + [-15, -74] + ], + [ + [6823, 7886], + [112, -60], + [-4, -52] + ], + [ + [6931, 7774], + [-105, -38], + [-15, -84], + [37, 14], + [50, -36], + [-9, -29], + [30, -9] + ], + [ + [6919, 7592], + [-20, -55], + [-50, -5] + ], + [ + [6849, 7532], + [-23, -55], + [-173, 56], + [-17, -59], + [-61, -35], + [-19, -91], + [57, -39], + [-4, -39] + ], + [ + [6609, 7270], + [-132, 28] + ], + [ + [6477, 7298], + [20, 49], + [-69, 39], + [10, 50], + [-83, 51], + [-43, -31], + [-53, 34], + [9, 24], + [-95, 10], + [-29, 25], + [30, 130], + [-56, 142], + [18, 75], + [-38, 74], + [-3, 68], + [49, 71], + [17, 185] + ], + [ + [6161, 8294], + [-67, 68], + [-83, -35], + [-112, 28] + ], + [ + [5899, 8355], + [-168, -159], + [-164, -41], + [-163, -117], + [-15, 143] + ], + [ + [5389, 8181], + [42, 247], + [-48, 39], + [-10, 74], + [8, 143], + [48, 26], + [-42, 58], + [12, 64], + [55, 43], + [26, 78], + [75, -10], + [108, 48], + [173, -6], + [62, 90], + [80, 8], + [45, 29], + [84, -8], + [124, 93], + [75, -29], + [107, 77], + [91, -10], + [47, 66], + [65, 26], + [40, -12], + [55, -76], + [74, 32], + [58, -20], + [64, -138], + [90, -3], + [40, 25], + [69, 127], + [72, 28], + [55, 69], + [38, 163], + [71, 13], + [51, -46], + [43, -177] + ], + [ + [11338, 11759], + [-142, -110], + [37, -26] + ], + [ + [11630, 11383], + [73, 48], + [99, -19] + ], + [ + [11901, 11321], + [21, 32], + [82, 37], + [45, -44] + ], + [ + [12170, 11279], + [81, -6], + [-26, -72], + [19, -72] + ], + [ + [12404, 10999], + [60, 10], + [36, 43], + [-10, 48] + ], + [ + [12490, 11100], + [41, 17], + [-4, 39] + ], + [ + [12735, 11054], + [94, -82], + [-95, -106], + [-38, -77] + ], + [ + [12694, 10504], + [-215, -165], + [-275, -270], + [-70, -101], + [-42, -132], + [21, -9], + [-63, -36], + [-2, -134], + [23, 30], + [15, -43], + [38, 16], + [1, -29], + [11, 28], + [8, -29], + [25, 22], + [24, -63], + [40, 40], + [46, -29], + [10, 27], + [7, -17], + [-1, 169], + [-76, 140], + [45, -22], + [30, -52], + [13, -182], + [-49, -297], + [10, -72], + [38, -21], + [-107, -102], + [28, -112], + [-35, -122], + [-178, -39], + [-607, -331], + [-234, -52], + [-289, -151], + [-16, 23], + [14, 95] + ], + [ + [10882, 8482], + [-38, 146], + [41, 56], + [39, -57], + [42, 2], + [113, 137], + [87, 28], + [26, 234], + [-36, 109], + [-124, 139], + [12, 85], + [-57, 36], + [-45, 72], + [15, 132], + [-60, 143], + [11, 68], + [35, 47], + [-7, 102], + [-51, 113], + [-83, 79], + [-88, 257], + [43, 158], + [44, 32], + [-2, 24], + [-142, 67], + [-22, 101], + [20, 71], + [-60, -3], + [-50, 78], + [-72, 1], + [-65, 91], + [-125, -42], + [-82, 7], + [-96, 78], + [-109, -27], + [-40, 20] + ], + [ + [9956, 11066], + [-16, 63], + [-65, 91], + [-268, 39], + [-47, 86], + [-215, -48], + [-21, 14], + [4, 90], + [-22, 18], + [-64, -5], + [-69, -38] + ], + [ + [9173, 11376], + [-61, 12], + [3, 45], + [-32, 25], + [16, 19], + [-42, 9], + [19, 49], + [-20, 75], + [193, 101], + [39, -69], + [108, -5], + [39, -33], + [101, 88], + [-41, 59], + [19, 26], + [158, 110], + [218, -106], + [196, 5], + [84, -42], + [10, 60], + [43, -16], + [41, 42], + [22, -16], + [67, 29], + [35, -58], + [157, 33], + [23, 26], + [94, -36], + [55, 43], + [44, 90], + [56, 11], + [27, 37], + [26, -68], + [167, 121], + [46, 70], + [208, 56], + [36, 34], + [81, 5], + [45, 37], + [12, -23], + [30, -12], + [30, -44], + [-6, -34] + ], + [ + [11999, 9390], + [-45, -54], + [-42, 6], + [15, -35], + [101, -13], + [60, -49], + [96, 55], + [-11, 67], + [-34, -49], + [-44, -11], + [-115, 25], + [32, 50], + [-13, 8] + ], + [ + [12244, 9041], + [-15, 5], + [0, 25], + [15, -30] + ], + [ + [12259, 9046], + [-19, -40], + [-10, 6], + [29, 34] + ], + [ + [12204, 8969], + [-5, -12], + [-4, 10], + [9, 2] + ], + [ + [12207, 8958], + [-2, 1], + [1, 0], + [1, -1] + ], + [ + [12204, 8956], + [-1, -2], + [-2, 2], + [3, 0] + ], + [ + [12206, 8952], + [-2, 1], + [1, 2], + [1, -3] + ], + [ + [6477, 7298], + [64, -25], + [68, -3] + ], + [ + [6849, 7532], + [51, 5], + [19, 55] + ], + [ + [6931, 7774], + [6, 31], + [-10, 32], + [-104, 49] + ], + [ + [7113, 7985], + [44, -57], + [65, 36], + [-21, -87] + ], + [ + [7275, 7876], + [26, -161], + [24, -22], + [52, 21], + [42, -11] + ], + [ + [8030, 7208], + [-225, -169], + [-142, -205], + [-98, -363], + [-183, -238], + [-74, -185], + [-1, -172], + [-92, -289], + [16, -180], + [-31, 10] + ], + [ + [7200, 5417], + [-26, -65], + [-146, 96], + [-61, 0] + ], + [ + [6967, 5448], + [-89, -42], + [-11, -34], + [-33, -4] + ], + [ + [6834, 5368], + [-17, -54] + ], + [ + [6817, 5314], + [-189, 39] + ], + [ + [6628, 5353], + [31, 90], + [-26, 20], + [34, 59], + [-42, 26], + [-97, -82], + [-42, 51], + [-94, -47], + [-239, 25], + [-7, -49] + ], + [ + [6146, 5446], + [-22, 1], + [-178, 105] + ], + [ + [5946, 5552], + [-65, -30], + [-49, 8], + [5, 33], + [-63, 5], + [5, 35], + [-55, -13] + ], + [ + [5724, 5590], + [-36, 71], + [-16, -71], + [-35, 12] + ], + [ + [5637, 5602], + [17, 59], + [-63, -67], + [-8, 19], + [-83, 3], + [-11, 22], + [-101, -48], + [-189, 33], + [3, -33], + [-65, -4] + ], + [ + [5137, 5586], + [-25, -80] + ], + [ + [5112, 5506], + [-37, 215], + [24, 69] + ], + [ + [5099, 5790], + [-138, 14], + [-22, -27] + ], + [ + [4939, 5777], + [-84, 2], + [-32, 17] + ], + [ + [4823, 5796], + [-21, 119] + ], + [ + [4802, 5915], + [-46, 0] + ], + [ + [4756, 5915], + [-17, -94], + [-311, 29] + ], + [ + [4428, 5850], + [-78, -41] + ], + [ + [4350, 5809], + [-12, 328] + ], + [ + [4338, 6137], + [76, 213], + [1, 555], + [84, 461], + [58, 87], + [164, 141] + ], + [ + [4721, 7594], + [44, 284], + [-57, 205], + [121, 59], + [56, 4], + [51, 67], + [45, 4], + [152, -43], + [55, 18], + [73, -49], + [128, 38] + ], + [ + [5899, 8355], + [56, -28], + [145, 24], + [61, -57] + ], + [ + [4338, 6137], + [1, -287], + [11, -41] + ], + [ + [4350, 5809], + [36, 7] + ], + [ + [4386, 5816], + [-18, -115] + ], + [ + [4368, 5701], + [25, -181], + [-101, -121] + ], + [ + [4292, 5399], + [5, -74], + [-57, -1], + [-16, -67] + ], + [ + [4224, 5257], + [-50, -19], + [-70, -11] + ], + [ + [4104, 5227], + [1, 43], + [-64, 23], + [-21, -35], + [-21, 15], + [-64, -35], + [-3, 70], + [-25, 9], + [-45, -26], + [-76, -121], + [-17, 4], + [86, 215], + [-18, 19], + [16, 126] + ], + [ + [3853, 5534], + [-63, 26], + [-29, -21] + ], + [ + [3761, 5539], + [30, -29], + [-5, -31], + [-144, -11], + [-22, -134] + ], + [ + [3620, 5334], + [-49, -7], + [-98, 76] + ], + [ + [3473, 5403], + [23, 64], + [36, -12], + [67, 52], + [-48, 17], + [10, 30], + [-25, 5], + [-17, -45] + ], + [ + [3519, 5514], + [-84, 49], + [-71, 0], + [-39, -35], + [19, -61] + ], + [ + [3344, 5467], + [-52, -10], + [-36, -63], + [-17, 10], + [-34, -110] + ], + [ + [3205, 5294], + [-116, 20], + [-67, -36], + [-7, 30] + ], + [ + [3015, 5308], + [-102, 25], + [2, 23], + [-62, 47], + [-12, -25], + [-45, 17], + [-50, 63], + [-2, 54], + [-34, 30], + [42, 108], + [-46, 49], + [-41, 13], + [-29, -69], + [-121, 32], + [19, 14], + [-12, 24], + [33, 20], + [-11, 59], + [-76, 10], + [-20, -99], + [-72, -12], + [-9, 34], + [-51, -4], + [-59, -82], + [-39, 16], + [7, 23], + [-57, 14], + [-40, 49], + [8, 38], + [-37, 9], + [-11, 32], + [-41, -6], + [11, 50], + [-75, 64], + [-57, -28], + [-6, -34], + [-43, -1], + [-9, -52], + [-64, 10], + [-121, 82], + [-101, -37], + [-66, 32], + [-2, -38], + [-53, 41], + [-138, 0], + [-26, -104], + [-77, 0], + [-54, -105] + ], + [ + [1166, 5694], + [-201, 65], + [-52, -40], + [-84, 3], + [6, 34], + [48, -2], + [14, 33], + [-31, 97], + [-66, 28], + [3, 29], + [38, 40], + [53, 2], + [-2, 23], + [-43, 10], + [9, 44], + [-72, 6], + [-12, 88], + [-108, -13], + [2, 36], + [-51, 41], + [12, 64], + [-39, 33], + [6, 71], + [-124, 129], + [-2, 41], + [122, -18], + [0, 299], + [116, 56], + [84, -63], + [17, 79], + [-111, 66], + [20, 46], + [-19, 2], + [2, 26], + [-68, 6], + [-6, 23], + [46, 107], + [-4, 92], + [-88, 21], + [104, 166], + [175, 88], + [212, 35], + [287, -56], + [110, 21], + [262, -68], + [137, -3], + [105, -74], + [74, -5], + [68, 29], + [175, -49], + [120, 21], + [65, 51], + [108, -51], + [84, 0], + [74, -49], + [50, 103], + [29, -7], + [4, -67], + [54, -29], + [27, -48], + [110, -10], + [4, 42], + [87, 7], + [32, 78], + [-23, 22], + [11, 18], + [148, 57], + [23, 208], + [110, -34], + [31, 57], + [85, 23], + [98, 64], + [146, -16], + [165, -57], + [110, 93], + [42, 10], + [65, -21], + [68, -100], + [131, -60], + [107, 33], + [67, 60], + [48, 81], + [-20, 131], + [48, 14], + [42, -17], + [34, -129], + [70, 41], + [3, 54], + [11, -124], + [-37, -237] + ], + [ + [3015, 5308], + [3, -48], + [-49, -19] + ], + [ + [2969, 5241], + [-41, -108], + [-11, -60], + [53, -16] + ], + [ + [2970, 5057], + [-27, -76], + [-55, 23] + ], + [ + [2888, 5004], + [-66, -126], + [67, -44] + ], + [ + [2889, 4834], + [-23, -83], + [61, -5] + ], + [ + [2927, 4746], + [34, -49], + [56, 7] + ], + [ + [3017, 4704], + [-26, -158], + [-76, 11] + ], + [ + [2915, 4557], + [-52, -132], + [-56, -14], + [10, -56], + [-23, -25], + [-101, 23], + [-9, 60], + [-38, 48], + [-48, -41], + [72, -74], + [52, -111], + [186, -153], + [47, -65], + [180, -97], + [89, -79], + [106, -24], + [17, -29], + [158, 2], + [85, -36], + [54, 14], + [-32, -186], + [52, -11], + [-17, -109], + [48, -24] + ], + [ + [3695, 3438], + [39, -70], + [-15, -52] + ], + [ + [3719, 3316], + [-27, -8], + [14, -65], + [-18, -76], + [63, -26] + ], + [ + [3751, 3141], + [-5, -27], + [-87, -36] + ], + [ + [3659, 3078], + [-87, -92], + [-33, 13], + [-5, 28], + [-51, -50], + [-21, 4], + [-13, -42], + [-29, 6], + [-42, -33], + [-2, -28], + [-56, 2], + [-17, -84], + [-53, -29], + [34, -24], + [11, -98], + [-54, -28] + ], + [ + [3241, 2623], + [-237, 15], + [-33, 50], + [25, 56], + [-23, 70], + [-72, -4], + [-7, 45], + [-64, 34], + [-8, -77], + [-100, 25], + [-53, -99], + [-51, -5], + [-9, 134], + [83, 38], + [-14, 56], + [16, 63], + [-43, 11], + [-91, -125], + [-68, 34], + [0, 47], + [-125, -11], + [-27, 20], + [-28, -69], + [40, -43], + [8, -33], + [-18, -15], + [21, -11], + [-55, -47], + [-65, -11], + [15, -31], + [-17, -28], + [-136, -41], + [-4, -134], + [-20, 0], + [-11, 65], + [-70, -21], + [19, 60], + [-130, -42], + [-5, -30], + [52, -19], + [-32, -28], + [-31, 40], + [-30, -3], + [-87, -64], + [-29, 69], + [-44, 2], + [-11, -21], + [32, -32], + [-25, -90], + [-29, 15], + [4, 36], + [-64, 3], + [16, -56], + [-81, -18], + [-11, 66], + [33, -1], + [12, 108], + [-31, 69], + [18, 40], + [-43, 11], + [-18, -33], + [-32, 6], + [14, 17], + [-27, 5], + [35, 78], + [-111, -9], + [-43, 34], + [-81, -48], + [-31, 76], + [-50, -43], + [-70, -2], + [5, 37], + [-28, 11], + [5, 76], + [-28, 6], + [-35, -82], + [-14, 42], + [-28, -53], + [-42, 16], + [21, 95], + [-14, 30], + [-50, -42], + [15, -96], + [-46, 9], + [-43, -27], + [89, -61], + [-25, -53], + [47, -53], + [-12, -47], + [-182, 11], + [-10, -56], + [-46, 3], + [-47, 77], + [-42, 4], + [-17, -93], + [-40, 16], + [-29, 103], + [10, 50], + [-29, 10], + [3, 22], + [32, 50], + [48, 26], + [19, 96], + [53, 9], + [-12, 61], + [-105, 66], + [13, 63], + [-151, 91], + [3, 54], + [87, 9], + [12, 30], + [-9, 28], + [-55, 19], + [-6, 60], + [-45, 43], + [-27, -19], + [-59, 21], + [19, 67], + [105, 13], + [12, 56], + [28, -37], + [138, -12], + [6, -117], + [-25, -57], + [33, -27], + [-4, -59], + [106, -20], + [6, -24], + [106, 10], + [48, -104], + [52, 0], + [3, 27], + [156, -3], + [55, 51], + [19, -4], + [-9, -48], + [70, 47], + [34, -5], + [31, -78], + [54, -11], + [-25, -74], + [48, -12], + [-52, -84], + [22, -28], + [88, 7], + [2, -42], + [80, 61], + [-42, 21], + [-9, 48], + [51, 5], + [6, 64], + [-26, 24], + [-98, -23], + [19, 92], + [-127, 32], + [18, 67], + [44, 5], + [89, 128], + [-23, 18], + [-95, -53], + [10, 63], + [60, 11], + [32, 87], + [161, -5], + [80, -34], + [30, 66], + [-27, 18], + [-27, 84], + [24, 65], + [-11, 43], + [-43, 31], + [-63, -26], + [-9, 83], + [-33, -10], + [-6, 36], + [-48, 20], + [-38, -10], + [-27, -58], + [23, -84], + [47, -25], + [20, -77], + [1, -38], + [-56, -23], + [-30, 63], + [-43, 17], + [9, 95], + [-176, 15], + [7, 131], + [-106, -52], + [-90, 9], + [-67, 47], + [-61, -5], + [-63, -163], + [22, -12], + [-8, -83], + [-35, -21], + [-43, -6], + [-63, 71], + [-103, -22], + [-44, 26], + [-101, -6], + [-32, 66], + [70, 47], + [-25, 42], + [-92, 22], + [-41, 56], + [0, 110], + [30, 5], + [38, 52], + [59, -48], + [4, 116], + [34, 0], + [32, 78], + [-162, 9], + [-72, -34], + [-27, 81], + [-54, 47], + [-55, 1], + [-53, 149], + [-37, 13], + [22, 179], + [61, 138], + [-44, 100], + [118, 11], + [2, 45], + [36, -2], + [-27, 61], + [27, 15], + [7, 59], + [-26, 46], + [41, 14], + [12, 96], + [-4, 73], + [-86, -31], + [-22, 30], + [-114, 14], + [-13, 32], + [32, 8], + [33, 62], + [-36, 88], + [6, 43], + [52, 40], + [79, -38], + [65, -44], + [25, -67], + [90, 12], + [147, -46], + [2, 25], + [40, 17], + [99, -2], + [-11, -52], + [84, -9], + [5, 56], + [62, 8], + [14, 26], + [23, 125], + [44, 25], + [18, 78], + [48, -7], + [17, 32], + [32, 6], + [60, -36], + [136, -29] + ], + [ + [5637, 5602], + [39, -11], + [15, 70], + [33, -71] + ], + [ + [5946, 5552], + [179, -105], + [21, -1] + ], + [ + [6628, 5353], + [115, -32], + [74, -7] + ], + [ + [6834, 5368], + [133, 80] + ], + [ + [6967, 5448], + [66, -1], + [139, -95], + [28, 65] + ], + [ + [7200, 5417], + [32, -11], + [121, -602], + [62, -56], + [72, -228], + [37, -21], + [18, -42], + [-33, -162], + [-28, -373], + [-81, -277], + [-9, -179], + [43, -248], + [238, -586], + [-38, -139], + [-9, -147], + [76, -210], + [-58, -213], + [-60, 44], + [-152, 3], + [-14, 29], + [-58, 4], + [-10, -39], + [-65, 0], + [-3, 85], + [25, 20], + [-16, 33], + [-53, -29], + [-42, 5] + ], + [ + [7195, 2078], + [3, 38], + [26, 6] + ], + [ + [7224, 2122], + [-8, 32], + [-56, 8] + ], + [ + [7160, 2162], + [-48, 153], + [-77, 16], + [-17, 37] + ], + [ + [7018, 2368], + [33, 51], + [-34, 42] + ], + [ + [7017, 2461], + [-191, -3], + [-41, 143], + [-68, 6], + [-13, 38], + [-68, -13], + [-15, 46] + ], + [ + [6621, 2678], + [-36, -12], + [-64, 47] + ], + [ + [6521, 2713], + [18, 89], + [-27, 11], + [4, 96] + ], + [ + [6516, 2909], + [-109, 44], + [-22, -200] + ], + [ + [6385, 2753], + [-135, 39], + [36, 62], + [-63, 19], + [-5, 77], + [-252, -22], + [-9, -31] + ], + [ + [5957, 2897], + [-68, -21], + [35, 127] + ], + [ + [5924, 3003], + [-20, 57], + [11, 37], + [-40, 82], + [39, 175], + [-70, 239], + [28, 84], + [-100, 222], + [-52, 24], + [-4, 62], + [-75, 107], + [-29, 114], + [-52, 20], + [-33, 109], + [-80, 137], + [-27, 21], + [-21, -33], + [-68, 65], + [-3, 96], + [-29, 54], + [21, 14], + [6, 50], + [-79, 188], + [-37, 167], + [-69, 82] + ], + [ + [5141, 5176], + [-46, 180], + [42, 230] + ], + [ + [10882, 8482], + [0, -112], + [-59, 42], + [-302, 45] + ], + [ + [10521, 8457], + [-16, 70], + [-117, -18], + [-49, 63] + ], + [ + [10339, 8572], + [-38, 15], + [-33, -15], + [-27, 49], + [-90, 53], + [-34, 73], + [4, 55] + ], + [ + [10121, 8802], + [-84, 26], + [25, 44] + ], + [ + [9480, 8973], + [-128, -40], + [-104, 157] + ], + [ + [9345, 9432], + [56, 19], + [-3, 23], + [-10, 28] + ], + [ + [9216, 10055], + [-35, 37], + [-101, -7] + ], + [ + [9080, 10085], + [-62, 32], + [18, 62], + [-19, 41], + [23, 26], + [3, 58], + [97, -7], + [-11, 141], + [49, -1], + [117, -64], + [81, -2], + [51, 79], + [55, -22], + [207, 34], + [30, 55], + [-24, 75], + [30, 85], + [184, -18], + [107, 130], + [-23, 78], + [-96, 22], + [-139, 71], + [-6, -36], + [-20, 4], + [-46, 31], + [7, 33], + [-60, 0], + [25, 47], + [-39, 10], + [-8, 62], + [-24, 23], + [-65, -50], + [-39, 25], + [-132, 11], + [-111, 177], + [-198, -3], + [-52, 12], + [-13, 43], + [35, 33], + [161, -6] + ], + [ + [9173, 11376], + [106, 47], + [43, -13], + [4, -33], + [14, -79], + [210, 50], + [60, -90], + [185, -38], + [65, 8], + [69, -80], + [27, -82] + ], + [ + [4823, 5796], + [53, -26], + [63, 7] + ], + [ + [4939, 5777], + [14, 27], + [146, -14] + ], + [ + [5099, 5790], + [-24, -64], + [37, -220] + ], + [ + [5112, 5506], + [-16, -153], + [45, -177] + ], + [ + [5924, 3003], + [-55, -167], + [50, -161] + ], + [ + [5919, 2675], + [27, -9], + [-50, -34], + [-61, 3], + [-1, -44], + [-100, -19] + ], + [ + [5734, 2572], + [-146, -73], + [-28, 80], + [-150, -4], + [-74, 81], + [55, 45], + [-148, 118], + [-48, -34], + [-60, 0], + [-19, 69], + [-148, 25] + ], + [ + [4968, 2879], + [-56, 42], + [-19, 4] + ], + [ + [4893, 2925], + [-12, -45], + [-61, -16], + [-32, -1], + [-13, 29], + [-38, -1], + [-2, -18], + [-72, 24], + [-55, -29], + [-135, -14], + [-39, -37], + [18, -24], + [-10, -55] + ], + [ + [4442, 2738], + [-27, -5], + [-93, 132] + ], + [ + [4322, 2865], + [-40, 6], + [-28, -38], + [-122, -8], + [26, 95], + [-36, -19], + [-51, 26], + [-61, -4], + [26, 111], + [-59, 7], + [28, 50], + [-89, 13], + [-89, -72], + [-23, -48], + [-55, 47], + [16, 57] + ], + [ + [3765, 3088], + [-21, 24], + [7, 29] + ], + [ + [3719, 3316], + [15, 51], + [-39, 71] + ], + [ + [2915, 4557], + [74, -15], + [28, 162] + ], + [ + [2927, 4746], + [-67, 11], + [29, 77] + ], + [ + [2889, 4834], + [-66, 49], + [65, 121] + ], + [ + [2970, 5057], + [-53, 24], + [52, 160] + ], + [ + [2969, 5241], + [40, 6], + [60, 64], + [136, -17] + ], + [ + [3344, 5467], + [-20, 53], + [22, 37], + [89, 6], + [84, -49] + ], + [ + [3473, 5403], + [109, -79], + [38, 10] + ], + [ + [3761, 5539], + [17, 19], + [55, -4], + [20, -20] + ], + [ + [4104, 5227], + [67, 10], + [53, 20] + ], + [ + [4292, 5399], + [101, 119], + [-25, 183] + ], + [ + [4386, 5816], + [42, 34] + ], + [ + [4756, 5915], + [23, 2], + [23, -2] + ], + [ + [4163, 2916], + [-1, -4], + [4, 5], + [-3, -1] + ], + [ + [4163, 2916], + [4, 1], + [-5, -5], + [1, 4] + ], + [ + [4322, 2865], + [92, -132], + [28, 5] + ], + [ + [4893, 2925], + [75, -46] + ], + [ + [5734, 2572], + [101, 20], + [2, 44], + [58, -5], + [48, 29], + [-24, 15] + ], + [ + [5919, 2675], + [-50, 171], + [33, 41], + [55, 10] + ], + [ + [6385, 2753], + [29, 204], + [102, -48] + ], + [ + [6521, 2713], + [42, -19], + [-11, -15], + [69, -1] + ], + [ + [7017, 2461], + [28, -34], + [-27, -59] + ], + [ + [7160, 2162], + [54, -6], + [10, -34] + ], + [ + [7195, 2078], + [-84, 8], + [2, -38], + [38, 9], + [21, -36], + [45, -3], + [-3, -43], + [-67, 10], + [-18, -45], + [-52, 3], + [-26, -24], + [2, -89], + [-85, -30], + [22, -45], + [40, -12], + [-10, -28], + [-29, 6], + [1, -41], + [-27, -27], + [-38, 18], + [-2, -26], + [-69, -35], + [-1, -22], + [-33, 18], + [-11, -32], + [-119, 0], + [-37, -53], + [-69, 56], + [-8, -52], + [-58, -29], + [141, -97], + [0, -31], + [-67, -16], + [-9, -27], + [-22, 1], + [-28, 65], + [-41, -45], + [-35, 13], + [22, 51], + [-26, 19], + [-11, -33], + [-25, 13], + [-13, 39], + [38, 13], + [-29, 65], + [-38, -39], + [-3, 25], + [-47, 1], + [-24, -47], + [-56, 23], + [6, 18], + [-28, -6], + [-10, -53], + [-27, -9], + [-98, 40], + [21, 94], + [-15, 50], + [-25, 13], + [-34, -22], + [-33, 24], + [-86, -15], + [-46, 30], + [-8, -34], + [-58, -4], + [-7, -40], + [-31, 1], + [-13, -24], + [15, 5], + [2, -28], + [57, 5], + [10, -23], + [55, 27], + [-25, -60], + [-56, -22], + [31, -31], + [-9, -19], + [42, 0], + [-14, -30], + [48, 19], + [2, -48], + [-36, 6], + [2, -72], + [-141, 3], + [30, -27], + [-40, -10], + [23, -23], + [-53, 4], + [10, -94], + [-34, -4], + [-9, 35], + [-74, -71], + [-28, 9], + [39, 37], + [-62, -7], + [-8, 68], + [-40, -9], + [-10, 27], + [-27, -51], + [-6, 74], + [-17, 0], + [-54, -51], + [50, -21], + [3, -77], + [-79, -54], + [-39, 6], + [25, -38], + [-30, -19], + [30, -7], + [-25, -16], + [27, -5], + [-18, -38], + [-47, -22], + [-107, 43], + [-74, -31], + [-40, 34], + [2, 29], + [-151, 76], + [-49, -7], + [-5, -20], + [-102, 13], + [-44, -75], + [56, -4], + [17, -35], + [-99, 6], + [-1, 145], + [-36, 0], + [-9, -34], + [-63, -8], + [-64, 24], + [-41, -51], + [-94, -26], + [-81, 31], + [-21, -121], + [-107, 36], + [-2, -36], + [-76, -55], + [58, -57], + [-20, -3], + [41, -74], + [-51, -1], + [-70, -184], + [13, -66], + [-33, -89], + [-81, -61], + [16, -10], + [-17, -27], + [19, -4], + [-18, -85], + [-46, -21], + [-11, 44], + [32, 1], + [-42, 11], + [-9, 47], + [-16, -25], + [-45, 50], + [-1, -27], + [60, -53], + [-38, 11], + [-7, -93], + [-70, 0], + [15, -64], + [-21, -54], + [-83, 25], + [-117, -20], + [-160, 90], + [-64, 88], + [-60, 4], + [-15, -47], + [-84, 16], + [91, 85], + [-22, 69], + [32, 63], + [15, 164], + [35, 16], + [97, -20], + [3, 40], + [51, 14], + [-37, 11], + [7, 33], + [36, 3], + [35, 85], + [72, -77], + [22, 24], + [30, -32], + [73, 20], + [42, -103], + [5, 88], + [-63, 54], + [-43, -17], + [-16, 54], + [59, 42], + [-6, 39], + [70, -14], + [16, 37], + [-24, 32], + [-3, 86], + [114, 42], + [-11, 68], + [64, 32], + [-47, 59], + [61, 23], + [12, 51], + [65, 7], + [-8, 44], + [-58, 7], + [1, 24], + [62, 29], + [-27, 18], + [47, 135], + [-20, 0], + [-28, 72], + [-9, -54], + [-49, -1], + [-16, -48], + [-40, 54], + [-76, 24], + [9, 45], + [-86, -29], + [-8, 46], + [-27, 6], + [-59, -36], + [-53, 38], + [13, 26], + [22, -22], + [34, 21], + [-96, 43], + [37, 80], + [-16, 254], + [71, 154], + [-12, 25], + [-165, 16], + [-146, -28], + [-52, 38], + [-7, -28], + [-29, 14], + [-58, -64], + [-6, 57], + [28, 37], + [2, 50], + [-79, 10], + [2, 48], + [-28, 11], + [-92, -3], + [-60, -33], + [6, 37], + [-53, 39], + [12, 50], + [93, -13], + [16, 52], + [-64, 61], + [77, 104], + [242, -21] + ], + [ + [3659, 3078], + [84, 33], + [22, -23] + ] + ], + "transform": { + "scale": [0.00045549089356858313, 0.0004402913470596152], + "translate": [76.760595, 12.624077] + }, + "objects": { + "andhrapradesh_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5]], + "type": "Polygon", + "properties": { + "dt_code": "542", + "district": "Srikakulam", + "st_nm": "Andhra Pradesh", + "st_code": "37", + "year": "2011_c" + } + }, + { + "arcs": [[-5, 6, -3, 7, -1, 8, 9, 10, 11, 12, 13, 14, 15, 16]], + "type": "Polygon", + "properties": { + "dt_code": "543", + "district": "Vizianagaram", + "st_nm": "Andhra Pradesh", + "st_code": "37", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + 17, + -15, + 18, + -13, + 19, + -11, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "544", + "district": "Visakhapatnam", + "st_nm": "Andhra Pradesh", + "st_code": "37", + "year": "2011_c" + } + }, + { + "arcs": [ + [[37]], + [[38]], + [[39]], + [[40]], + [[42]], + [[43]], + [[44]], + [[45]], + [[46]], + [[47]], + [[48]], + [ + [ + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66 + ] + ] + ], + "type": "MultiPolygon", + "properties": { + "dt_code": "547", + "district": "Krishna", + "st_nm": "Andhra Pradesh", + "st_code": "37", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + 67, + 68, + -64, + 69, + -62, + 70, + -60, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "548", + "district": "Guntur", + "st_nm": "Andhra Pradesh", + "st_code": "37", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + [ + -36, + 86, + -34, + 87, + -32, + 88, + -30, + 89, + -28, + 90, + 91, + -25, + 92, + -23, + 93, + 94, + 95, + 96 + ], + [97] + ], + [[98]], + [[99]], + [[100]], + [[101]], + [[102]], + [[103]] + ], + "type": "MultiPolygon", + "properties": { + "dt_code": "545", + "district": "East Godavari", + "st_nm": "Andhra Pradesh", + "st_code": "37", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + -83, + 104, + -81, + 105, + -79, + 106, + -77, + 107, + -75, + 108, + -73, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + -85, + 130 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "549", + "district": "Prakasam", + "st_nm": "Andhra Pradesh", + "st_code": "37", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + -129, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "552", + "district": "Kurnool", + "st_nm": "Andhra Pradesh", + "st_code": "37", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + -146 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "553", + "district": "Anantapur", + "st_nm": "Andhra Pradesh", + "st_code": "37", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + 160, + -117, + 161, + -115, + 162, + -113, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + -119 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "550", + "district": "S.P.S. Nellore", + "st_nm": "Andhra Pradesh", + "st_code": "37", + "year": "2011_c" + } + }, + { + "arcs": [ + [-95, 178, 179, 180, 181, -55, 182, -53, 183, -51, 184, 185, 186] + ], + "type": "Polygon", + "properties": { + "dt_code": "546", + "district": "West Godavari", + "st_nm": "Andhra Pradesh", + "st_code": "37", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + -124, + 187, + 188, + 189, + 190, + -177, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + -157, + 199, + -155, + 200, + -153, + 201, + 202, + -150, + 203, + 204, + -144, + 205, + -142, + 206, + -140, + 207, + -138, + 208, + -136, + 209, + -134, + 210, + -126, + 211 + ], + [212] + ], + "type": "Polygon", + "properties": { + "dt_code": "551", + "district": "Y.S.R.", + "st_nm": "Andhra Pradesh", + "st_code": "37", + "year": "2011_c" + } + }, + { + "arcs": [ + [[213]], + [ + [ + -198, + 214, + -196, + 215, + -194, + 216, + 217, + -175, + 218, + -173, + 219, + -171, + 220, + -169, + 221, + -167, + 222, + -159, + 223 + ] + ] + ], + "type": "MultiPolygon", + "properties": { + "dt_code": "554", + "district": "Chittoor", + "st_nm": "Andhra Pradesh", + "st_code": "37", + "year": "2011_c" + } + } + ] + } + }, + "crs": { + "type": "name", + "properties": {"name": "urn:ogc:def:crs:OGC:1.3:CRS84"} + } +} diff --git a/public/maps/arunachalpradesh.json b/public/maps/arunachalpradesh.json index 133aba5b0e..1d151a4e31 100644 --- a/public/maps/arunachalpradesh.json +++ b/public/maps/arunachalpradesh.json @@ -1 +1,2331 @@ -{"type":"Topology","arcs":[[[16532,3840],[-9,-14],[5,-108],[11,-15],[34,-6],[6,-120],[26,-28],[41,-84],[-13,-58],[-56,-91],[-13,-45],[1,-75],[67,-49],[25,-94],[23,-24],[51,-22],[10,-54],[21,-23],[-20,-39],[8,-29],[32,-21],[9,-45],[38,-30],[18,-100],[114,-88],[10,-73],[40,-16],[21,-54],[57,-73],[38,-24],[3,-105],[16,-26],[50,-23],[22,-38],[11,-58],[40,-31],[30,3],[18,-64],[35,-27],[14,-75],[-49,-41],[-29,-94],[-48,4],[-50,65],[-19,5],[-91,-44],[-51,5],[-100,122],[-96,49],[-44,51],[-91,28],[-114,8],[-161,96],[-8,78],[9,18],[58,35],[19,34],[4,27],[-17,28],[5,35],[-11,18],[-31,-3],[-41,21],[-19,31],[-18,104],[-41,17],[-36,40],[-69,135],[-91,43],[-99,-3],[-87,66],[-41,-60],[-90,27],[-74,-18],[-79,20],[-69,-65],[8,-47],[-79,-61],[-42,-15],[-122,-125],[-52,55],[-16,7],[-43,-16],[-48,29],[-28,-14],[-87,4],[-54,-40],[-75,-21],[-85,23],[-8,-25],[-43,-22],[-36,30],[-77,25],[-63,-32],[-37,-58],[-34,-6],[-103,28],[-50,-61],[-67,-17],[-44,-43],[-57,1],[-152,-84],[-48,-7],[-38,-58],[-54,-15],[-37,-41],[-64,-27],[-21,-33],[-39,-131],[-85,-118],[-100,-226],[-35,-34],[-93,-57],[-47,-54],[-73,-44],[-59,7],[-61,-28],[-70,28],[-23,-7],[-10,-34],[-78,-87],[-58,-103],[9,-76],[-22,-19],[-12,-40],[16,-60],[-9,-28],[-75,-82],[-30,-15],[-54,14],[-15,33],[-54,39]],[[12764,988],[31,21],[21,56],[-2,106],[-36,69],[-2,92],[-67,1],[-51,22],[-37,81],[-6,63],[64,144],[-2,70],[-31,77],[17,45],[59,54],[23,99],[3,73],[-12,41],[-85,58],[1,62],[-23,88]],[[12629,2310],[147,81],[113,1],[58,49],[139,36],[18,25],[48,25],[13,-44],[154,53],[1,-57],[36,-52],[31,0],[17,-15],[32,5],[19,61],[-6,32],[13,16],[105,70],[70,30],[7,18],[-9,11],[16,1],[3,29],[48,10],[-44,10],[73,58],[10,48],[50,2],[24,28],[-58,89],[-3,40],[-31,44],[-4,28],[-31,2],[-5,54],[-14,5],[-17,-51],[-3,51],[-18,-32],[-25,18],[-8,16],[8,25],[-9,6],[-52,7],[-51,-14],[-17,-13],[-34,-114],[-22,-21],[4,49],[-13,32],[-4,71],[-19,0],[-21,-35],[-34,-25],[-5,-17],[12,-30],[-28,14],[-7,27],[-20,11],[11,58],[34,28],[-14,43],[6,14],[46,19],[16,66],[-7,46],[33,28],[-34,54],[9,134]],[[13386,3568],[371,48],[10,-11],[159,144],[25,53],[199,53],[23,-17],[5,-14],[-14,-10],[8,-12],[23,4],[91,-37],[37,-31],[33,-7],[13,-21],[59,-23],[28,-36],[39,-4],[16,-14],[67,-2],[13,-21],[63,-10],[120,95],[27,76],[37,30],[10,74],[65,81],[34,-25],[32,40],[58,10],[31,-11],[52,16],[13,-2],[26,-43],[86,19],[88,-11],[32,-26],[36,40],[59,0],[52,40],[48,-3],[44,-8],[22,-29],[16,0],[-2,-14],[18,-21],[83,-40],[54,24],[34,54],[40,29],[55,23]],[[15924,4018],[17,-39],[66,-13],[92,-104],[36,-21],[45,105],[61,-40],[72,1],[13,-15],[58,-19],[39,27],[109,-60]],[[15924,4018],[-61,33],[-97,20],[-60,43],[-32,55],[-9,43],[14,43],[44,37],[15,33],[-81,112],[-3,31],[69,119],[-14,94],[-34,33],[3,49],[-20,38],[-17,9],[-69,-26],[-109,130],[-68,58],[-57,21],[-245,32],[-45,37],[-61,136],[-15,70],[-64,91],[-115,99],[-142,155],[-45,73],[-1,44],[91,58],[76,101],[-4,66],[30,97],[0,51],[-116,205],[-8,50],[-1,74],[20,63],[102,176],[8,46],[-26,59],[-76,78]],[[14701,6854],[30,37]],[[14731,6891],[14,-8],[157,31],[28,-120],[38,-6],[22,-72],[41,9],[31,17],[29,162],[81,109],[67,22],[52,-5],[42,-21],[126,95],[26,43],[62,40],[59,12],[204,-2],[52,-58],[76,-55],[86,-27],[52,-37],[37,-70],[35,-120],[25,-15],[89,-9],[126,1],[32,40],[111,29],[66,-90],[3,-44],[15,-29],[83,-20],[66,-66],[39,-6],[30,-24],[81,40],[90,127],[44,6],[82,40],[62,-44],[41,-10],[80,-89],[67,-140],[58,-18],[98,21],[30,-76],[22,-23],[83,12],[43,-8],[75,-49],[21,-49],[44,-4],[74,-66],[42,-11],[30,-24],[79,-100],[0,-28],[-26,-9],[-62,37],[-26,-16],[-13,-32],[-88,-101],[-19,-59],[47,-94],[-3,-20],[-90,-105],[-7,-64],[12,-29],[62,-18],[129,19],[1,-31],[-18,-40],[28,-53],[16,4],[50,-25],[51,-40],[-11,-35],[-63,-13],[-41,-102],[-8,-167],[37,-55],[0,-16],[-28,-34],[32,-87],[-74,-44],[-66,36],[-69,-18],[9,89],[-47,72],[-162,-81],[-28,-22],[-32,-56],[-106,-101],[-48,-74],[-60,-38],[4,-27],[-27,-27],[-71,-30],[-10,-34],[-31,-32],[-67,-20],[-13,-19],[20,-53],[-26,-101],[-15,-6],[-74,45],[-60,-41],[-33,11],[-27,-11],[-40,-34],[-71,-219],[-6,-58],[-99,13],[-31,-11],[-20,-16],[-71,-143],[-58,-29]],[[15094,7708],[-406,292],[23,311],[46,177],[-220,-14],[-211,82],[-219,-80],[-330,-346],[-476,104],[58,-375],[-101,-52],[-196,-158],[80,-54],[129,-49],[112,-112],[-163,-180],[-99,113],[-96,43],[-48,56],[-54,27],[-100,-32],[-93,29],[-193,99],[-97,18],[-62,33],[-110,100],[-85,-12],[-47,20],[-62,60],[-46,109],[-24,9],[-37,-35],[-62,-162],[-28,-4],[-44,48]],[[11833,7773],[-2,37],[-31,46],[6,72],[-24,61],[-8,144],[-19,35],[51,39],[23,51],[17,8],[28,48],[-47,93],[10,52],[-46,37],[-28,124],[6,20],[-27,12],[-17,28],[-33,3],[-19,37],[-3,29],[14,13],[-18,33],[4,48],[-22,47],[29,23],[-22,71],[30,37],[-12,43],[-36,17],[-20,47],[5,18],[-25,25],[-50,-40],[-33,-6],[-52,24],[12,44],[-13,30],[2,35],[-34,35],[-5,53],[38,25],[30,71],[32,16],[-1,59],[-21,17]],[[11502,9534],[15,35],[94,18],[132,-68],[168,-43],[31,-5],[35,29],[101,-18],[33,71],[65,86],[33,255],[22,10],[133,-57],[-4,207],[-23,133],[149,16],[6,97],[34,78],[20,2],[80,-54],[21,3],[15,25],[125,84],[58,93],[41,-9],[36,17],[51,54],[7,52],[99,108],[17,0],[24,-73],[17,-7],[94,77],[42,-7],[24,19],[101,131],[235,-36],[93,96],[48,21],[37,37],[62,86],[65,62],[42,15],[56,-3],[80,-136],[113,-113],[24,-65],[54,-73],[32,-80],[-9,-141],[62,-62],[21,-75],[50,-60],[24,-66],[29,-33],[153,2],[61,93],[101,33],[55,73],[36,-8],[55,-109],[-16,-90],[-50,-63],[-41,-145],[-37,-42],[-120,-10],[-52,-25],[-94,-8],[-35,-40],[-65,-15],[-32,-33],[-53,-128],[-46,-44],[-50,-28],[-169,-40],[110,-98],[32,-66],[25,-94],[49,-99],[-14,-78],[-78,-52],[-4,-36],[-27,-35],[55,-62],[11,-65],[25,-6],[35,31],[130,68],[62,54],[23,65],[118,157],[86,56],[78,78],[275,20],[71,33],[24,32],[104,68],[77,33],[-148,-340],[31,-114],[18,-12],[23,5],[56,29],[14,-92],[47,-107],[-5,-148],[119,-214],[59,-61],[40,-68],[24,-78],[-2,-55],[-91,-172],[-80,-38],[-117,-11],[-98,-82],[-55,-1],[-7,-14],[76,-163],[-3,-22],[-154,-128],[-37,-50]],[[5230,3837],[-14,-23],[32,-38],[75,-17],[37,-23],[11,-48],[43,6],[40,-48],[31,-6],[26,-43],[-3,-23],[-32,-19],[-3,-31],[-21,-24],[-51,-28],[18,-15],[14,-45],[18,-10],[29,-64],[-1,-46],[20,-54],[-18,-83],[25,2],[30,-43],[93,-66],[14,-118],[-15,-29],[12,-33],[-201,-107],[-20,-40],[-33,-20],[17,-83],[-2,-71],[-113,-63],[-20,-33],[-77,-61],[21,-48],[-33,-42],[10,-22],[-12,-16],[-1,-54],[14,-22],[70,12],[40,29],[35,5],[83,-97],[-1,-28],[18,-22],[-34,-44],[-35,-1],[-40,-36],[-78,1],[-49,-54],[-40,-7],[-17,-31],[7,-57],[51,-28],[40,7],[92,-32],[65,-101],[20,-7],[40,13],[92,-170],[-4,-80],[10,-23],[-15,-15],[1,-23],[64,-77],[57,3],[24,-41],[9,-58]],[[5695,1224],[-132,14],[-250,-29],[-137,-27],[-118,-41],[-233,-46],[-53,-46],[-70,35],[-153,-29],[-68,53],[-245,136],[-9,22],[5,59],[-52,46],[-84,46],[-110,23],[-159,69],[-50,9],[-171,-28],[-169,50],[-26,-54],[-35,-25]],[[3376,1461],[-11,26],[-36,19],[-80,97],[-24,104],[31,71],[-19,30],[24,14],[-1,47],[17,22],[3,59],[52,34],[23,-5],[55,17],[117,55],[29,27],[60,13],[102,78],[58,-5],[40,-52],[107,-13],[50,38],[99,25],[35,27],[56,17],[28,36],[-24,138],[13,17],[-16,23],[7,31],[-33,37],[14,21],[-40,37],[-92,-3],[-8,52],[-110,100],[-1,36],[-28,54],[20,7],[0,27],[29,-2],[-6,55],[7,28],[20,-8],[0,100],[-11,55],[-43,11],[24,17],[-29,93],[0,72],[19,48],[17,163],[-76,144],[-31,3],[-26,-22],[-171,23],[-116,-70],[-40,-7],[-26,-42],[-33,39],[-11,68],[-105,13],[-9,28],[11,48],[30,51],[-4,16],[-21,-2],[-14,27],[9,85],[-48,45],[-85,-33],[-86,-11],[-26,38],[13,68],[-15,135],[-49,87],[-12,50],[4,55],[13,25],[-107,143],[-63,46]],[[2826,4501],[35,101],[-12,29]],[[2849,4631],[106,104],[43,-5],[89,-91],[51,15],[78,142],[60,82],[198,90],[138,195],[60,115]],[[3672,5278],[71,-81],[93,-26],[105,33],[117,-10],[-2,-30],[221,-116],[3,-177],[19,-18],[22,-101],[47,-11],[21,-65],[15,-7],[101,4],[14,-21],[21,-2],[166,37],[19,-4],[52,-63],[23,2],[28,28],[38,-2],[29,16],[89,-18],[47,11],[35,43],[8,50],[26,6],[30,-40],[35,-20],[49,-91],[10,-46],[-21,-78],[-80,-169],[-4,-19],[62,-54],[-7,-33],[-68,-118],[18,-55],[72,-64],[-3,-27],[37,-105]],[[11851,6603],[11,-11],[37,27],[41,5],[13,-12],[62,6],[34,-40],[12,-59],[33,-43],[2,-55],[14,-23],[62,52],[20,-7],[60,14],[74,48],[19,-43],[21,0],[11,-44],[36,-37],[-12,-345],[29,-147],[-6,-209],[-28,-172],[-43,-69],[-33,-110],[-83,-87],[-21,-66],[-4,-22],[49,-136],[12,-103],[-13,-35]],[[12260,4880],[-406,-158],[-209,117],[-818,-321],[-64,-61],[-37,-9],[-65,16],[-34,-22],[-319,-114],[-55,14]],[[10253,4342],[-17,61],[43,91],[34,17],[36,66],[0,27],[-15,8],[29,51],[2,25],[25,19],[-12,34],[35,17],[39,41],[-25,14],[-37,-3],[-10,82],[57,36],[8,65],[44,70],[18,55],[-2,47],[23,26],[6,39],[4,61],[-20,5],[-11,20],[-59,21],[-19,20],[-66,-7],[-61,19],[19,47],[47,32],[24,58],[64,52],[-94,115],[48,58],[39,21],[46,72],[19,56],[-55,63],[-44,6],[-28,50],[14,168],[-68,105],[-29,20],[35,11],[20,-12],[22,22],[89,26],[3,27],[-47,85],[-2,92],[-22,28],[1,30],[-47,134],[-18,8],[-8,20],[-7,93],[-34,140],[-20,15],[-156,24],[-27,17],[-13,-14],[-95,19],[-38,-6],[-53,137],[19,35],[-2,21],[-30,104],[15,24],[5,68],[32,50]],[[9926,7490],[47,5],[67,44],[25,22],[16,41],[33,24],[53,4],[65,-21],[63,-46],[73,-14],[117,81],[56,15],[45,-30],[51,-144],[153,-55],[141,45],[82,-103],[-27,-69],[27,-82],[-19,-74],[-70,-116],[2,-79],[68,-65],[40,-9],[-33,-450],[100,-137],[-26,-48],[21,-53],[97,-11],[29,-22],[13,-21],[4,-62],[27,-39],[60,-40],[37,-9],[37,20],[73,85],[33,75],[27,19],[52,-14],[23,15],[-15,46],[21,39],[114,83],[13,156],[21,33],[89,74]],[[7629,5190],[-16,-21],[-92,-30],[-60,-78],[-71,-16],[-84,7],[-62,-18],[-25,-26],[2,-36],[119,-31],[16,-30],[1,-41],[-52,-148],[2,-47],[17,-30],[86,-60],[37,-77],[56,-43],[25,-37],[5,-50],[-17,-35],[-33,-22],[-170,-38],[-74,-85],[-58,-23],[-177,-33],[-117,-116],[-161,42],[-115,-99],[-74,-21],[-95,17],[-60,83],[-300,-71]],[[6082,3977],[-357,59],[-216,18],[-117,-48],[-162,-169]],[[3672,5278],[19,45],[-36,48],[-56,127],[-87,101],[-57,17],[-5,19],[59,200],[21,31],[153,102],[144,128],[51,74],[24,7],[27,-9],[16,-111],[20,-10],[208,132],[32,42],[23,79],[31,30],[58,24],[71,53],[30,-9],[35,-33],[13,-67],[14,-17],[18,2],[103,129],[-36,146],[154,37],[73,-9],[51,34],[40,45],[93,-34],[120,-2],[40,21],[40,49]],[[5176,6699],[15,3],[9,35],[31,25],[20,40],[43,25],[71,-9],[35,-97],[132,51],[23,-31],[50,-7],[1,-55],[55,-26],[1,-47],[16,5],[7,-26],[43,11],[26,-9],[17,-73],[33,-23],[21,-10],[42,12],[31,-46],[42,9],[34,30],[92,-37],[101,-17],[45,-29],[23,6],[23,-24],[65,60],[55,3],[61,145],[61,-20],[22,5],[43,48],[40,16],[117,-117],[75,-27],[60,-85],[163,-56],[65,-39],[22,-124],[142,-315],[-37,-12],[-13,-19],[14,-52],[-81,-106],[62,-32],[-2,-79],[44,-61],[66,-34],[9,-66],[78,-43],[15,-83],[72,-18],[7,-42],[33,44],[27,-8],[86,-78]],[[13386,3568],[-45,-9],[-45,58],[-38,5],[-25,48],[-33,12],[-2,55],[11,29],[-80,20],[-6,41],[-28,21],[1,36],[31,14],[13,52],[-69,46],[-2,47],[22,43],[28,4],[-4,32],[-58,18],[-12,77],[-37,43],[-1,17],[82,35],[-13,73],[63,74],[69,129],[62,48],[8,35],[19,16],[67,22],[57,69],[9,40],[37,13],[-3,27],[17,-17],[8,31],[26,22],[-4,17],[23,0],[-15,22],[4,19],[41,10],[3,26],[50,67],[-5,14],[11,10],[-16,36],[78,106]],[[13685,5221],[49,46],[-11,102],[18,207],[-42,78],[67,93],[26,88],[48,49],[3,35],[20,33],[-8,52],[25,10],[26,35],[15,103],[96,-32],[45,10],[22,-9],[41,-47],[75,-31],[6,21],[65,35],[30,50],[49,40],[77,96],[46,31],[116,1],[-92,241],[53,38],[35,84],[74,57],[19,88],[23,29]],[[15094,7708],[-31,-34],[-46,38],[-20,-1],[17,-120],[-111,1],[-49,-15],[-62,-87],[-28,-18],[-4,-15],[130,-102],[20,-71],[-19,-30],[-79,-37],[-20,-29],[-187,-154],[-33,-43],[11,-12],[115,-22],[33,-66]],[[13685,5221],[-468,37],[-676,-77],[-56,-63],[-54,3],[-19,-79],[-66,-37],[-1,-44],[-53,-17],[-32,-64]],[[11851,6603],[-21,35],[5,57],[-22,21],[-3,69],[-94,37],[0,160],[-56,79],[58,52],[-13,52],[6,98],[51,53],[40,8],[34,64],[48,16],[0,67],[53,81],[-27,72],[-59,11],[-18,138]],[[8561,4469],[-22,-114],[13,-25],[87,-50],[21,15],[22,-6],[-2,-37],[-12,-20],[-91,-45],[-62,-73],[-109,-75],[-111,-112],[-64,-117]],[[8231,3810],[7,-26],[36,-23],[-11,-43],[15,-49],[44,-20],[49,-52],[1,-68],[17,-52],[-9,-16],[-117,-65]],[[8263,3396],[-29,33],[-18,75],[-45,18],[-124,-21],[-24,-19],[-13,-46],[-59,-67],[-79,-56],[-79,-3],[-72,67],[-319,48],[-164,-80],[-112,-105],[-9,-98],[-69,-61],[1,-70],[23,-59],[1,-115],[-26,-21],[-64,52],[-67,-83],[-54,-17],[-82,26],[-89,-24],[-82,-44],[-60,3],[-31,48],[-77,47],[-55,-12],[-40,41],[-13,132],[-53,135],[-29,-7],[-37,20],[-6,58],[38,77],[122,86],[32,154],[-171,277],[-147,192]],[[7629,5190],[71,6],[92,-70],[-64,-109],[27,-22],[12,-147],[44,-80],[68,42],[79,8],[21,-15],[54,36],[43,-93],[32,7],[66,-35],[5,-100],[198,-15],[113,-69],[71,-65]],[[8263,3396],[-29,-36],[-65,-6],[-51,-48],[-21,0],[-33,-24],[9,-47],[-134,-141],[-32,-51],[-62,-54],[-79,-163],[-188,-114],[2,-18],[-137,-141],[-54,-85],[-117,-126],[-104,-170],[-85,-101],[-34,-11],[-63,-75],[-9,-56],[24,-23],[-6,-23],[10,-14],[22,-2],[17,-41],[-3,-50],[32,-84],[-27,-37],[-29,-16],[-18,23],[-14,-32],[-33,5],[-32,-38],[-19,26],[-6,-30],[-17,37],[-16,-76],[-153,-96],[-42,-43],[0,-19],[-92,-129],[-158,-27],[-125,-46],[-41,6],[-139,-22],[-112,-40],[-8,19],[-58,-17],[-62,61],[-177,23]],[[2727,4618],[51,-44],[34,9],[37,48]],[[2826,4501],[-9,-17],[-112,-44],[-28,-44],[13,-59],[-24,-93],[13,-33],[-62,-145],[-42,-25],[-114,24],[-226,-95],[-12,11],[-65,-1],[-35,-28],[-35,-66],[1,-97],[-41,-90],[-20,-11],[-110,13],[-47,-14],[-59,-58],[-26,-92],[-38,-57],[-58,-28],[-137,-6],[-91,-58],[-22,-82]],[[1440,3306],[-68,-30],[-31,-37],[-42,7],[-34,-21],[-46,-3],[-52,42],[-75,-12],[-23,20],[-58,-2],[-28,37],[-43,2],[-64,-54],[-59,15],[-110,-32],[-33,7],[-20,28],[-20,3],[-93,-15],[-19,13],[-9,70],[-63,46],[-21,-1],[-94,-77],[-17,6],[-11,57],[-73,57],[-34,113],[-12,8],[-34,-17],[-39,91],[-46,51],[-14,36],[45,61],[-2,35],[-40,47],[-17,53],[29,75],[71,77],[6,46],[21,13],[-7,24],[19,10],[23,-8],[19,36],[24,16],[18,163],[32,43],[-1,29],[-26,26],[-9,116],[-91,79],[-45,-8],[-34,-24],[-24,10],[-60,126],[-6,34],[27,13],[19,-28],[17,4],[17,32],[22,5],[23,-23],[30,23],[41,-32],[44,15],[62,-14],[62,16],[23,-6],[77,-138],[47,-35],[150,-48],[40,0],[102,30],[20,-23],[14,1],[28,28],[12,-11],[16,-110],[37,-17],[47,-154],[30,-10],[26,-50],[91,18],[32,-45],[81,54],[33,87],[32,3],[56,74],[166,-51],[54,8],[312,309],[136,80],[142,25],[55,-21],[63,-201],[70,-113],[27,-4],[106,49],[91,18],[10,81],[95,30],[42,-44]],[[12764,988],[-24,21],[-16,-8],[-32,-41],[-21,-56],[-44,-18],[-14,-119],[-65,-112],[-113,18],[-37,46],[-24,9],[-68,-33],[-25,-45],[-31,-26],[-79,-205],[-18,-27],[-55,-18],[-35,-71],[-38,-38],[-30,-77],[-28,-27],[-52,0],[-126,-76],[-59,2],[-88,-44],[-48,-43],[-29,21],[-65,7],[-31,42],[-6,51],[-28,24],[-22,6],[-19,-30],[-5,8],[-7,35],[7,60],[-61,93],[15,48],[-3,49],[41,48],[-5,23],[41,38],[-72,25],[-20,20],[-25,53],[-24,112],[29,43],[-40,-4],[-34,60],[68,52],[20,31],[52,0],[12,21],[-7,29],[8,89],[-26,55],[-26,-1],[-8,11],[-16,79],[13,8],[-21,15],[26,31],[-30,47],[14,2],[-45,30],[15,64],[-14,146],[26,1],[11,-33],[19,-5],[28,29],[21,-3],[4,22],[22,-10],[32,-52],[90,78],[1,28],[109,119],[109,71],[56,32],[15,-5],[-9,-17],[16,3],[-3,-25],[13,2],[27,11],[2,27],[62,26],[43,50],[28,12],[36,-5],[30,24],[22,-13],[25,76],[-22,34],[28,36],[-13,39],[16,34],[-27,91],[43,41],[42,89],[58,33],[13,18],[2,29],[16,9],[13,-19],[44,27],[60,-45],[6,-20],[57,-13],[10,-36],[38,-50],[53,7],[83,33],[8,-11]],[[9926,7490],[10,52],[48,49],[-54,3],[-42,111],[-3,391],[-49,59],[-102,108],[-194,152],[-2,70],[-40,38],[-39,13],[-48,-21],[-94,74],[-113,5],[-30,37],[5,62],[-115,87],[-347,390],[-77,109],[-479,217]],[[8161,9496],[91,180],[133,130],[93,125],[214,17],[21,18],[12,37],[15,95],[128,89],[54,57],[195,-41],[119,8],[77,40],[44,87],[5,98],[13,22],[102,81],[25,46],[14,131],[15,12],[41,-7],[110,-76],[104,-94],[204,-252],[42,-59],[22,-65],[-16,-160],[16,-20],[35,8],[115,64],[77,6],[146,-89],[150,-10],[85,-75],[85,-41],[-14,49],[-97,122],[33,-2],[131,-82],[181,-35],[46,-90],[25,-20],[75,-3],[156,-32],[168,9],[-10,-64],[11,-32],[-4,-69],[51,-43],[3,-32]],[[5176,6699],[9,22],[-10,82],[9,65],[29,91],[-18,30],[-138,97],[5,29],[77,49],[86,121],[125,88],[41,153],[50,91],[-23,103],[7,30],[86,34],[14,101],[14,26],[44,-5],[188,56],[55,37],[49,55],[35,-31],[31,-64],[23,5],[15,85],[37,36],[56,-16],[28,-24],[18,-50],[30,-10],[266,-5],[202,86],[44,2],[98,38],[135,-83],[31,11],[103,93],[78,50],[66,-14],[120,-108],[47,-25],[46,26],[80,143]],[[7464,8199],[130,-150],[36,-24],[24,-68],[-53,-118],[-15,-174],[149,-106],[26,-7],[41,-41],[43,-22],[36,9],[37,-58],[1,-73],[-11,-21],[28,-87],[36,-35],[39,-90],[73,-48],[33,11],[35,-23],[24,2],[83,26],[38,-32],[31,74],[80,-58],[78,-14],[12,-24],[37,-23],[-21,-84],[21,-81],[42,-27],[23,-43],[118,-18],[15,-36],[41,-33],[48,18],[5,-50],[-79,-75],[-8,-56],[46,-65],[13,-60],[71,-37],[-40,-5],[-64,20],[-44,-55],[-4,-130],[-35,-51],[13,-32],[43,-37],[10,-90],[42,-66],[-15,-83],[34,-65],[-18,-88],[23,-11],[28,-42],[96,-34],[86,-47],[53,-108],[68,-10],[20,-15],[59,-117],[-21,-35],[-7,-43],[61,-163],[48,-92],[107,-49],[6,-76],[-17,-37],[-38,-22],[-55,1],[-79,-25],[-92,-54],[-64,-1],[-42,-13],[-25,-31],[-41,1],[-14,-9],[-11,-47],[-68,-19],[-49,-55],[-53,7],[-119,-120],[-43,-26],[-48,65]],[[3376,1461],[17,-34],[2,-90],[-186,-101],[-98,-11],[-149,30],[-141,-13],[-41,-11],[-63,-68],[-43,3],[-38,-71],[-143,37],[-155,-45],[2,-58],[-84,-28],[-68,38],[-184,-84],[-100,7],[-118,-11],[-50,16],[28,153],[-15,68],[16,43],[-12,62],[-29,8],[-5,21],[3,98],[-72,51],[-10,77],[-39,49],[-59,-1],[-9,34],[-25,17],[7,22],[-26,33],[0,74],[-17,71],[45,93],[-38,63],[-3,32],[6,38],[96,70],[3,54],[38,82],[-12,85],[-79,67],[-1,19],[94,43],[40,-22],[37,4],[20,-16],[54,27],[5,47],[-55,55],[-76,36],[-59,67],[4,72],[-37,52],[-6,39],[-1,44],[26,83],[-38,50],[3,73],[-73,66],[-8,41],[7,86],[-24,9]],[[10253,4342],[-16,-49],[-22,-7],[-15,-83],[-29,-28],[-56,-29],[-65,3],[-29,-33],[-74,-34],[-23,-47],[-52,-19],[-68,26],[-12,-33],[-85,22],[-16,-15],[7,-25],[-12,-30],[-41,3],[-64,-33],[-43,-53],[-30,6],[-48,-30],[-71,-10],[-39,-52],[-84,-13],[-30,-26],[-33,-5],[-32,-44],[-48,-29],[-53,-1],[-72,-77],[-19,52],[-54,54],[-15,75],[-32,-8],[-54,-56],[-49,9],[-62,-50],[-16,14],[-20,-11],[-21,8],[-12,21],[-21,-15],[-28,29],[-52,5],[-44,59],[-29,-39],[-39,-4],[-11,40],[-56,41],[40,56],[-1,19],[-45,33],[-15,-20],[-38,-13],[-55,-94],[-19,8]],[[7464,8199],[17,41],[-2,79],[11,33],[102,96],[0,35],[-50,56],[1,33],[44,52],[-15,86],[62,39],[47,9],[43,81],[70,89],[273,233],[11,77],[45,70],[7,115],[31,73]]],"transform":{"scale":[0.0003236657286321254,0.0002515663308029492],"translate":[91.549499,26.649359]},"objects":{"arunachalpradesh_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"cartodb_id":109,"censuscode":253,"st_cen_cd":12,"dt_cen_cd":9,"district":"Changlang","st_nm":"Arunanchal Pradesh"}},{"arcs":[[-5,5,6,7]],"type":"Polygon","properties":{"cartodb_id":22,"censuscode":260,"st_cen_cd":12,"dt_cen_cd":16,"district":"Anjaw","st_nm":"Arunanchal Pradesh"}},{"arcs":[[8,9,10]],"type":"Polygon","properties":{"cartodb_id":155,"censuscode":257,"st_cen_cd":12,"dt_cen_cd":13,"district":"Upper Dibang Valley","st_nm":"Arunanchal Pradesh"}},{"arcs":[[11,12,13,14,15,16]],"type":"Polygon","properties":{"cartodb_id":170,"censuscode":247,"st_cen_cd":12,"dt_cen_cd":3,"district":"East Kameng","st_nm":"Arunanchal Pradesh"}},{"arcs":[[17,18,19,20]],"type":"Polygon","properties":{"cartodb_id":173,"censuscode":251,"st_cen_cd":12,"dt_cen_cd":7,"district":"East Siang","st_nm":"Arunanchal Pradesh"}},{"arcs":[[21,22,-17,23,24]],"type":"Polygon","properties":{"cartodb_id":330,"censuscode":256,"st_cen_cd":12,"dt_cen_cd":12,"district":"Kurung Kumey","st_nm":"Arunanchal Pradesh"}},{"arcs":[[-4,25,26,-6]],"type":"Polygon","properties":{"cartodb_id":341,"censuscode":259,"st_cen_cd":12,"dt_cen_cd":15,"district":"Lohit","st_nm":"Arunanchal Pradesh"}},{"arcs":[[27,-7,-27,28,-18,29,-9]],"type":"Polygon","properties":{"cartodb_id":343,"censuscode":258,"st_cen_cd":12,"dt_cen_cd":14,"district":"Lower Dibang Valley","st_nm":"Arunanchal Pradesh"}},{"arcs":[[30,31,32,-22,33]],"type":"Polygon","properties":{"cartodb_id":344,"censuscode":255,"st_cen_cd":12,"dt_cen_cd":11,"district":"Lower Subansiri","st_nm":"Arunanchal Pradesh"}},{"arcs":[[-33,34,-12,-23]],"type":"Polygon","properties":{"cartodb_id":431,"censuscode":248,"st_cen_cd":12,"dt_cen_cd":4,"district":"Papum Pare","st_nm":"Arunanchal Pradesh"}},{"arcs":[[35,-15,36,37]],"type":"Polygon","properties":{"cartodb_id":560,"censuscode":245,"st_cen_cd":12,"dt_cen_cd":1,"district":"Tawang","st_nm":"Arunanchal Pradesh"}},{"arcs":[[-2,38]],"type":"Polygon","properties":{"cartodb_id":575,"censuscode":254,"st_cen_cd":12,"dt_cen_cd":10,"district":"Tirap","st_nm":"Arunanchal Pradesh"}},{"arcs":[[-10,-30,-21,39,40]],"type":"Polygon","properties":{"cartodb_id":593,"censuscode":252,"st_cen_cd":12,"dt_cen_cd":8,"district":"Upper Siang","st_nm":"Arunanchal Pradesh"}},{"arcs":[[-34,-25,41,42]],"type":"Polygon","properties":{"cartodb_id":594,"censuscode":249,"st_cen_cd":12,"dt_cen_cd":5,"district":"Upper Subansiri","st_nm":"Arunanchal Pradesh"}},{"arcs":[[43,-37,-14]],"type":"Polygon","properties":{"cartodb_id":616,"censuscode":246,"st_cen_cd":12,"dt_cen_cd":2,"district":"West Kameng","st_nm":"Arunanchal Pradesh"}},{"arcs":[[-20,44,-31,-43,45,-40]],"type":"Polygon","properties":{"cartodb_id":619,"censuscode":250,"st_cen_cd":12,"dt_cen_cd":6,"district":"West Siang","st_nm":"Arunanchal Pradesh"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [16532, 3840], + [-9, -14], + [5, -108], + [11, -15], + [34, -6], + [6, -120], + [26, -28], + [41, -84], + [-13, -58], + [-56, -91], + [-13, -45], + [1, -75], + [67, -49], + [25, -94], + [23, -24], + [51, -22], + [10, -54], + [21, -23], + [-20, -39], + [8, -29], + [32, -21], + [9, -45], + [38, -30], + [18, -100], + [114, -88], + [10, -73], + [40, -16], + [21, -54], + [57, -73], + [38, -24], + [3, -105], + [16, -26], + [50, -23], + [22, -38], + [11, -58], + [40, -31], + [30, 3], + [18, -64], + [35, -27], + [14, -75], + [-49, -41], + [-29, -94], + [-48, 4], + [-50, 65], + [-19, 5], + [-91, -44], + [-51, 5], + [-100, 122], + [-96, 49], + [-44, 51], + [-91, 28], + [-114, 8], + [-161, 96], + [-8, 78], + [9, 18], + [58, 35], + [19, 34], + [4, 27], + [-17, 28], + [5, 35], + [-11, 18], + [-31, -3], + [-41, 21], + [-19, 31], + [-18, 104], + [-41, 17], + [-36, 40], + [-69, 135], + [-91, 43], + [-99, -3], + [-87, 66], + [-41, -60], + [-90, 27], + [-74, -18], + [-79, 20], + [-69, -65], + [8, -47], + [-79, -61], + [-42, -15], + [-122, -125], + [-52, 55], + [-16, 7], + [-43, -16], + [-48, 29], + [-28, -14], + [-87, 4], + [-54, -40], + [-75, -21], + [-85, 23], + [-8, -25], + [-43, -22], + [-36, 30], + [-77, 25], + [-63, -32], + [-37, -58], + [-34, -6], + [-103, 28], + [-50, -61], + [-67, -17], + [-44, -43], + [-57, 1], + [-152, -84], + [-48, -7], + [-38, -58], + [-54, -15], + [-37, -41], + [-64, -27], + [-21, -33], + [-39, -131], + [-85, -118], + [-100, -226], + [-35, -34], + [-93, -57], + [-47, -54], + [-73, -44], + [-59, 7], + [-61, -28], + [-70, 28], + [-23, -7], + [-10, -34], + [-78, -87], + [-58, -103], + [9, -76], + [-22, -19], + [-12, -40], + [16, -60], + [-9, -28], + [-75, -82], + [-30, -15], + [-54, 14], + [-15, 33], + [-54, 39] + ], + [ + [12764, 988], + [31, 21], + [21, 56], + [-2, 106], + [-36, 69], + [-2, 92], + [-67, 1], + [-51, 22], + [-37, 81], + [-6, 63], + [64, 144], + [-2, 70], + [-31, 77], + [17, 45], + [59, 54], + [23, 99], + [3, 73], + [-12, 41], + [-85, 58], + [1, 62], + [-23, 88] + ], + [ + [12629, 2310], + [147, 81], + [113, 1], + [58, 49], + [139, 36], + [18, 25], + [48, 25], + [13, -44], + [154, 53], + [1, -57], + [36, -52], + [31, 0], + [17, -15], + [32, 5], + [19, 61], + [-6, 32], + [13, 16], + [105, 70], + [70, 30], + [7, 18], + [-9, 11], + [16, 1], + [3, 29], + [48, 10], + [-44, 10], + [73, 58], + [10, 48], + [50, 2], + [24, 28], + [-58, 89], + [-3, 40], + [-31, 44], + [-4, 28], + [-31, 2], + [-5, 54], + [-14, 5], + [-17, -51], + [-3, 51], + [-18, -32], + [-25, 18], + [-8, 16], + [8, 25], + [-9, 6], + [-52, 7], + [-51, -14], + [-17, -13], + [-34, -114], + [-22, -21], + [4, 49], + [-13, 32], + [-4, 71], + [-19, 0], + [-21, -35], + [-34, -25], + [-5, -17], + [12, -30], + [-28, 14], + [-7, 27], + [-20, 11], + [11, 58], + [34, 28], + [-14, 43], + [6, 14], + [46, 19], + [16, 66], + [-7, 46], + [33, 28], + [-34, 54], + [9, 134] + ], + [ + [13386, 3568], + [371, 48], + [10, -11], + [159, 144], + [25, 53], + [199, 53], + [23, -17], + [5, -14], + [-14, -10], + [8, -12], + [23, 4], + [91, -37], + [37, -31], + [33, -7], + [13, -21], + [59, -23], + [28, -36], + [39, -4], + [16, -14], + [67, -2], + [13, -21], + [63, -10], + [120, 95], + [27, 76], + [37, 30], + [10, 74], + [65, 81], + [34, -25], + [32, 40], + [58, 10], + [31, -11], + [52, 16], + [13, -2], + [26, -43], + [86, 19], + [88, -11], + [32, -26], + [36, 40], + [59, 0], + [52, 40], + [48, -3], + [44, -8], + [22, -29], + [16, 0], + [-2, -14], + [18, -21], + [83, -40], + [54, 24], + [34, 54], + [40, 29], + [55, 23] + ], + [ + [15924, 4018], + [17, -39], + [66, -13], + [92, -104], + [36, -21], + [45, 105], + [61, -40], + [72, 1], + [13, -15], + [58, -19], + [39, 27], + [109, -60] + ], + [ + [15924, 4018], + [-61, 33], + [-97, 20], + [-60, 43], + [-32, 55], + [-9, 43], + [14, 43], + [44, 37], + [15, 33], + [-81, 112], + [-3, 31], + [69, 119], + [-14, 94], + [-34, 33], + [3, 49], + [-20, 38], + [-17, 9], + [-69, -26], + [-109, 130], + [-68, 58], + [-57, 21], + [-245, 32], + [-45, 37], + [-61, 136], + [-15, 70], + [-64, 91], + [-115, 99], + [-142, 155], + [-45, 73], + [-1, 44], + [91, 58], + [76, 101], + [-4, 66], + [30, 97], + [0, 51], + [-116, 205], + [-8, 50], + [-1, 74], + [20, 63], + [102, 176], + [8, 46], + [-26, 59], + [-76, 78] + ], + [ + [14701, 6854], + [30, 37] + ], + [ + [14731, 6891], + [14, -8], + [157, 31], + [28, -120], + [38, -6], + [22, -72], + [41, 9], + [31, 17], + [29, 162], + [81, 109], + [67, 22], + [52, -5], + [42, -21], + [126, 95], + [26, 43], + [62, 40], + [59, 12], + [204, -2], + [52, -58], + [76, -55], + [86, -27], + [52, -37], + [37, -70], + [35, -120], + [25, -15], + [89, -9], + [126, 1], + [32, 40], + [111, 29], + [66, -90], + [3, -44], + [15, -29], + [83, -20], + [66, -66], + [39, -6], + [30, -24], + [81, 40], + [90, 127], + [44, 6], + [82, 40], + [62, -44], + [41, -10], + [80, -89], + [67, -140], + [58, -18], + [98, 21], + [30, -76], + [22, -23], + [83, 12], + [43, -8], + [75, -49], + [21, -49], + [44, -4], + [74, -66], + [42, -11], + [30, -24], + [79, -100], + [0, -28], + [-26, -9], + [-62, 37], + [-26, -16], + [-13, -32], + [-88, -101], + [-19, -59], + [47, -94], + [-3, -20], + [-90, -105], + [-7, -64], + [12, -29], + [62, -18], + [129, 19], + [1, -31], + [-18, -40], + [28, -53], + [16, 4], + [50, -25], + [51, -40], + [-11, -35], + [-63, -13], + [-41, -102], + [-8, -167], + [37, -55], + [0, -16], + [-28, -34], + [32, -87], + [-74, -44], + [-66, 36], + [-69, -18], + [9, 89], + [-47, 72], + [-162, -81], + [-28, -22], + [-32, -56], + [-106, -101], + [-48, -74], + [-60, -38], + [4, -27], + [-27, -27], + [-71, -30], + [-10, -34], + [-31, -32], + [-67, -20], + [-13, -19], + [20, -53], + [-26, -101], + [-15, -6], + [-74, 45], + [-60, -41], + [-33, 11], + [-27, -11], + [-40, -34], + [-71, -219], + [-6, -58], + [-99, 13], + [-31, -11], + [-20, -16], + [-71, -143], + [-58, -29] + ], + [ + [15094, 7708], + [-406, 292], + [23, 311], + [46, 177], + [-220, -14], + [-211, 82], + [-219, -80], + [-330, -346], + [-476, 104], + [58, -375], + [-101, -52], + [-196, -158], + [80, -54], + [129, -49], + [112, -112], + [-163, -180], + [-99, 113], + [-96, 43], + [-48, 56], + [-54, 27], + [-100, -32], + [-93, 29], + [-193, 99], + [-97, 18], + [-62, 33], + [-110, 100], + [-85, -12], + [-47, 20], + [-62, 60], + [-46, 109], + [-24, 9], + [-37, -35], + [-62, -162], + [-28, -4], + [-44, 48] + ], + [ + [11833, 7773], + [-2, 37], + [-31, 46], + [6, 72], + [-24, 61], + [-8, 144], + [-19, 35], + [51, 39], + [23, 51], + [17, 8], + [28, 48], + [-47, 93], + [10, 52], + [-46, 37], + [-28, 124], + [6, 20], + [-27, 12], + [-17, 28], + [-33, 3], + [-19, 37], + [-3, 29], + [14, 13], + [-18, 33], + [4, 48], + [-22, 47], + [29, 23], + [-22, 71], + [30, 37], + [-12, 43], + [-36, 17], + [-20, 47], + [5, 18], + [-25, 25], + [-50, -40], + [-33, -6], + [-52, 24], + [12, 44], + [-13, 30], + [2, 35], + [-34, 35], + [-5, 53], + [38, 25], + [30, 71], + [32, 16], + [-1, 59], + [-21, 17] + ], + [ + [11502, 9534], + [15, 35], + [94, 18], + [132, -68], + [168, -43], + [31, -5], + [35, 29], + [101, -18], + [33, 71], + [65, 86], + [33, 255], + [22, 10], + [133, -57], + [-4, 207], + [-23, 133], + [149, 16], + [6, 97], + [34, 78], + [20, 2], + [80, -54], + [21, 3], + [15, 25], + [125, 84], + [58, 93], + [41, -9], + [36, 17], + [51, 54], + [7, 52], + [99, 108], + [17, 0], + [24, -73], + [17, -7], + [94, 77], + [42, -7], + [24, 19], + [101, 131], + [235, -36], + [93, 96], + [48, 21], + [37, 37], + [62, 86], + [65, 62], + [42, 15], + [56, -3], + [80, -136], + [113, -113], + [24, -65], + [54, -73], + [32, -80], + [-9, -141], + [62, -62], + [21, -75], + [50, -60], + [24, -66], + [29, -33], + [153, 2], + [61, 93], + [101, 33], + [55, 73], + [36, -8], + [55, -109], + [-16, -90], + [-50, -63], + [-41, -145], + [-37, -42], + [-120, -10], + [-52, -25], + [-94, -8], + [-35, -40], + [-65, -15], + [-32, -33], + [-53, -128], + [-46, -44], + [-50, -28], + [-169, -40], + [110, -98], + [32, -66], + [25, -94], + [49, -99], + [-14, -78], + [-78, -52], + [-4, -36], + [-27, -35], + [55, -62], + [11, -65], + [25, -6], + [35, 31], + [130, 68], + [62, 54], + [23, 65], + [118, 157], + [86, 56], + [78, 78], + [275, 20], + [71, 33], + [24, 32], + [104, 68], + [77, 33], + [-148, -340], + [31, -114], + [18, -12], + [23, 5], + [56, 29], + [14, -92], + [47, -107], + [-5, -148], + [119, -214], + [59, -61], + [40, -68], + [24, -78], + [-2, -55], + [-91, -172], + [-80, -38], + [-117, -11], + [-98, -82], + [-55, -1], + [-7, -14], + [76, -163], + [-3, -22], + [-154, -128], + [-37, -50] + ], + [ + [5230, 3837], + [-14, -23], + [32, -38], + [75, -17], + [37, -23], + [11, -48], + [43, 6], + [40, -48], + [31, -6], + [26, -43], + [-3, -23], + [-32, -19], + [-3, -31], + [-21, -24], + [-51, -28], + [18, -15], + [14, -45], + [18, -10], + [29, -64], + [-1, -46], + [20, -54], + [-18, -83], + [25, 2], + [30, -43], + [93, -66], + [14, -118], + [-15, -29], + [12, -33], + [-201, -107], + [-20, -40], + [-33, -20], + [17, -83], + [-2, -71], + [-113, -63], + [-20, -33], + [-77, -61], + [21, -48], + [-33, -42], + [10, -22], + [-12, -16], + [-1, -54], + [14, -22], + [70, 12], + [40, 29], + [35, 5], + [83, -97], + [-1, -28], + [18, -22], + [-34, -44], + [-35, -1], + [-40, -36], + [-78, 1], + [-49, -54], + [-40, -7], + [-17, -31], + [7, -57], + [51, -28], + [40, 7], + [92, -32], + [65, -101], + [20, -7], + [40, 13], + [92, -170], + [-4, -80], + [10, -23], + [-15, -15], + [1, -23], + [64, -77], + [57, 3], + [24, -41], + [9, -58] + ], + [ + [5695, 1224], + [-132, 14], + [-250, -29], + [-137, -27], + [-118, -41], + [-233, -46], + [-53, -46], + [-70, 35], + [-153, -29], + [-68, 53], + [-245, 136], + [-9, 22], + [5, 59], + [-52, 46], + [-84, 46], + [-110, 23], + [-159, 69], + [-50, 9], + [-171, -28], + [-169, 50], + [-26, -54], + [-35, -25] + ], + [ + [3376, 1461], + [-11, 26], + [-36, 19], + [-80, 97], + [-24, 104], + [31, 71], + [-19, 30], + [24, 14], + [-1, 47], + [17, 22], + [3, 59], + [52, 34], + [23, -5], + [55, 17], + [117, 55], + [29, 27], + [60, 13], + [102, 78], + [58, -5], + [40, -52], + [107, -13], + [50, 38], + [99, 25], + [35, 27], + [56, 17], + [28, 36], + [-24, 138], + [13, 17], + [-16, 23], + [7, 31], + [-33, 37], + [14, 21], + [-40, 37], + [-92, -3], + [-8, 52], + [-110, 100], + [-1, 36], + [-28, 54], + [20, 7], + [0, 27], + [29, -2], + [-6, 55], + [7, 28], + [20, -8], + [0, 100], + [-11, 55], + [-43, 11], + [24, 17], + [-29, 93], + [0, 72], + [19, 48], + [17, 163], + [-76, 144], + [-31, 3], + [-26, -22], + [-171, 23], + [-116, -70], + [-40, -7], + [-26, -42], + [-33, 39], + [-11, 68], + [-105, 13], + [-9, 28], + [11, 48], + [30, 51], + [-4, 16], + [-21, -2], + [-14, 27], + [9, 85], + [-48, 45], + [-85, -33], + [-86, -11], + [-26, 38], + [13, 68], + [-15, 135], + [-49, 87], + [-12, 50], + [4, 55], + [13, 25], + [-107, 143], + [-63, 46] + ], + [ + [2826, 4501], + [35, 101], + [-12, 29] + ], + [ + [2849, 4631], + [106, 104], + [43, -5], + [89, -91], + [51, 15], + [78, 142], + [60, 82], + [198, 90], + [138, 195], + [60, 115] + ], + [ + [3672, 5278], + [71, -81], + [93, -26], + [105, 33], + [117, -10], + [-2, -30], + [221, -116], + [3, -177], + [19, -18], + [22, -101], + [47, -11], + [21, -65], + [15, -7], + [101, 4], + [14, -21], + [21, -2], + [166, 37], + [19, -4], + [52, -63], + [23, 2], + [28, 28], + [38, -2], + [29, 16], + [89, -18], + [47, 11], + [35, 43], + [8, 50], + [26, 6], + [30, -40], + [35, -20], + [49, -91], + [10, -46], + [-21, -78], + [-80, -169], + [-4, -19], + [62, -54], + [-7, -33], + [-68, -118], + [18, -55], + [72, -64], + [-3, -27], + [37, -105] + ], + [ + [11851, 6603], + [11, -11], + [37, 27], + [41, 5], + [13, -12], + [62, 6], + [34, -40], + [12, -59], + [33, -43], + [2, -55], + [14, -23], + [62, 52], + [20, -7], + [60, 14], + [74, 48], + [19, -43], + [21, 0], + [11, -44], + [36, -37], + [-12, -345], + [29, -147], + [-6, -209], + [-28, -172], + [-43, -69], + [-33, -110], + [-83, -87], + [-21, -66], + [-4, -22], + [49, -136], + [12, -103], + [-13, -35] + ], + [ + [12260, 4880], + [-406, -158], + [-209, 117], + [-818, -321], + [-64, -61], + [-37, -9], + [-65, 16], + [-34, -22], + [-319, -114], + [-55, 14] + ], + [ + [10253, 4342], + [-17, 61], + [43, 91], + [34, 17], + [36, 66], + [0, 27], + [-15, 8], + [29, 51], + [2, 25], + [25, 19], + [-12, 34], + [35, 17], + [39, 41], + [-25, 14], + [-37, -3], + [-10, 82], + [57, 36], + [8, 65], + [44, 70], + [18, 55], + [-2, 47], + [23, 26], + [6, 39], + [4, 61], + [-20, 5], + [-11, 20], + [-59, 21], + [-19, 20], + [-66, -7], + [-61, 19], + [19, 47], + [47, 32], + [24, 58], + [64, 52], + [-94, 115], + [48, 58], + [39, 21], + [46, 72], + [19, 56], + [-55, 63], + [-44, 6], + [-28, 50], + [14, 168], + [-68, 105], + [-29, 20], + [35, 11], + [20, -12], + [22, 22], + [89, 26], + [3, 27], + [-47, 85], + [-2, 92], + [-22, 28], + [1, 30], + [-47, 134], + [-18, 8], + [-8, 20], + [-7, 93], + [-34, 140], + [-20, 15], + [-156, 24], + [-27, 17], + [-13, -14], + [-95, 19], + [-38, -6], + [-53, 137], + [19, 35], + [-2, 21], + [-30, 104], + [15, 24], + [5, 68], + [32, 50] + ], + [ + [9926, 7490], + [47, 5], + [67, 44], + [25, 22], + [16, 41], + [33, 24], + [53, 4], + [65, -21], + [63, -46], + [73, -14], + [117, 81], + [56, 15], + [45, -30], + [51, -144], + [153, -55], + [141, 45], + [82, -103], + [-27, -69], + [27, -82], + [-19, -74], + [-70, -116], + [2, -79], + [68, -65], + [40, -9], + [-33, -450], + [100, -137], + [-26, -48], + [21, -53], + [97, -11], + [29, -22], + [13, -21], + [4, -62], + [27, -39], + [60, -40], + [37, -9], + [37, 20], + [73, 85], + [33, 75], + [27, 19], + [52, -14], + [23, 15], + [-15, 46], + [21, 39], + [114, 83], + [13, 156], + [21, 33], + [89, 74] + ], + [ + [7629, 5190], + [-16, -21], + [-92, -30], + [-60, -78], + [-71, -16], + [-84, 7], + [-62, -18], + [-25, -26], + [2, -36], + [119, -31], + [16, -30], + [1, -41], + [-52, -148], + [2, -47], + [17, -30], + [86, -60], + [37, -77], + [56, -43], + [25, -37], + [5, -50], + [-17, -35], + [-33, -22], + [-170, -38], + [-74, -85], + [-58, -23], + [-177, -33], + [-117, -116], + [-161, 42], + [-115, -99], + [-74, -21], + [-95, 17], + [-60, 83], + [-300, -71] + ], + [ + [6082, 3977], + [-357, 59], + [-216, 18], + [-117, -48], + [-162, -169] + ], + [ + [3672, 5278], + [19, 45], + [-36, 48], + [-56, 127], + [-87, 101], + [-57, 17], + [-5, 19], + [59, 200], + [21, 31], + [153, 102], + [144, 128], + [51, 74], + [24, 7], + [27, -9], + [16, -111], + [20, -10], + [208, 132], + [32, 42], + [23, 79], + [31, 30], + [58, 24], + [71, 53], + [30, -9], + [35, -33], + [13, -67], + [14, -17], + [18, 2], + [103, 129], + [-36, 146], + [154, 37], + [73, -9], + [51, 34], + [40, 45], + [93, -34], + [120, -2], + [40, 21], + [40, 49] + ], + [ + [5176, 6699], + [15, 3], + [9, 35], + [31, 25], + [20, 40], + [43, 25], + [71, -9], + [35, -97], + [132, 51], + [23, -31], + [50, -7], + [1, -55], + [55, -26], + [1, -47], + [16, 5], + [7, -26], + [43, 11], + [26, -9], + [17, -73], + [33, -23], + [21, -10], + [42, 12], + [31, -46], + [42, 9], + [34, 30], + [92, -37], + [101, -17], + [45, -29], + [23, 6], + [23, -24], + [65, 60], + [55, 3], + [61, 145], + [61, -20], + [22, 5], + [43, 48], + [40, 16], + [117, -117], + [75, -27], + [60, -85], + [163, -56], + [65, -39], + [22, -124], + [142, -315], + [-37, -12], + [-13, -19], + [14, -52], + [-81, -106], + [62, -32], + [-2, -79], + [44, -61], + [66, -34], + [9, -66], + [78, -43], + [15, -83], + [72, -18], + [7, -42], + [33, 44], + [27, -8], + [86, -78] + ], + [ + [13386, 3568], + [-45, -9], + [-45, 58], + [-38, 5], + [-25, 48], + [-33, 12], + [-2, 55], + [11, 29], + [-80, 20], + [-6, 41], + [-28, 21], + [1, 36], + [31, 14], + [13, 52], + [-69, 46], + [-2, 47], + [22, 43], + [28, 4], + [-4, 32], + [-58, 18], + [-12, 77], + [-37, 43], + [-1, 17], + [82, 35], + [-13, 73], + [63, 74], + [69, 129], + [62, 48], + [8, 35], + [19, 16], + [67, 22], + [57, 69], + [9, 40], + [37, 13], + [-3, 27], + [17, -17], + [8, 31], + [26, 22], + [-4, 17], + [23, 0], + [-15, 22], + [4, 19], + [41, 10], + [3, 26], + [50, 67], + [-5, 14], + [11, 10], + [-16, 36], + [78, 106] + ], + [ + [13685, 5221], + [49, 46], + [-11, 102], + [18, 207], + [-42, 78], + [67, 93], + [26, 88], + [48, 49], + [3, 35], + [20, 33], + [-8, 52], + [25, 10], + [26, 35], + [15, 103], + [96, -32], + [45, 10], + [22, -9], + [41, -47], + [75, -31], + [6, 21], + [65, 35], + [30, 50], + [49, 40], + [77, 96], + [46, 31], + [116, 1], + [-92, 241], + [53, 38], + [35, 84], + [74, 57], + [19, 88], + [23, 29] + ], + [ + [15094, 7708], + [-31, -34], + [-46, 38], + [-20, -1], + [17, -120], + [-111, 1], + [-49, -15], + [-62, -87], + [-28, -18], + [-4, -15], + [130, -102], + [20, -71], + [-19, -30], + [-79, -37], + [-20, -29], + [-187, -154], + [-33, -43], + [11, -12], + [115, -22], + [33, -66] + ], + [ + [13685, 5221], + [-468, 37], + [-676, -77], + [-56, -63], + [-54, 3], + [-19, -79], + [-66, -37], + [-1, -44], + [-53, -17], + [-32, -64] + ], + [ + [11851, 6603], + [-21, 35], + [5, 57], + [-22, 21], + [-3, 69], + [-94, 37], + [0, 160], + [-56, 79], + [58, 52], + [-13, 52], + [6, 98], + [51, 53], + [40, 8], + [34, 64], + [48, 16], + [0, 67], + [53, 81], + [-27, 72], + [-59, 11], + [-18, 138] + ], + [ + [8561, 4469], + [-22, -114], + [13, -25], + [87, -50], + [21, 15], + [22, -6], + [-2, -37], + [-12, -20], + [-91, -45], + [-62, -73], + [-109, -75], + [-111, -112], + [-64, -117] + ], + [ + [8231, 3810], + [7, -26], + [36, -23], + [-11, -43], + [15, -49], + [44, -20], + [49, -52], + [1, -68], + [17, -52], + [-9, -16], + [-117, -65] + ], + [ + [8263, 3396], + [-29, 33], + [-18, 75], + [-45, 18], + [-124, -21], + [-24, -19], + [-13, -46], + [-59, -67], + [-79, -56], + [-79, -3], + [-72, 67], + [-319, 48], + [-164, -80], + [-112, -105], + [-9, -98], + [-69, -61], + [1, -70], + [23, -59], + [1, -115], + [-26, -21], + [-64, 52], + [-67, -83], + [-54, -17], + [-82, 26], + [-89, -24], + [-82, -44], + [-60, 3], + [-31, 48], + [-77, 47], + [-55, -12], + [-40, 41], + [-13, 132], + [-53, 135], + [-29, -7], + [-37, 20], + [-6, 58], + [38, 77], + [122, 86], + [32, 154], + [-171, 277], + [-147, 192] + ], + [ + [7629, 5190], + [71, 6], + [92, -70], + [-64, -109], + [27, -22], + [12, -147], + [44, -80], + [68, 42], + [79, 8], + [21, -15], + [54, 36], + [43, -93], + [32, 7], + [66, -35], + [5, -100], + [198, -15], + [113, -69], + [71, -65] + ], + [ + [8263, 3396], + [-29, -36], + [-65, -6], + [-51, -48], + [-21, 0], + [-33, -24], + [9, -47], + [-134, -141], + [-32, -51], + [-62, -54], + [-79, -163], + [-188, -114], + [2, -18], + [-137, -141], + [-54, -85], + [-117, -126], + [-104, -170], + [-85, -101], + [-34, -11], + [-63, -75], + [-9, -56], + [24, -23], + [-6, -23], + [10, -14], + [22, -2], + [17, -41], + [-3, -50], + [32, -84], + [-27, -37], + [-29, -16], + [-18, 23], + [-14, -32], + [-33, 5], + [-32, -38], + [-19, 26], + [-6, -30], + [-17, 37], + [-16, -76], + [-153, -96], + [-42, -43], + [0, -19], + [-92, -129], + [-158, -27], + [-125, -46], + [-41, 6], + [-139, -22], + [-112, -40], + [-8, 19], + [-58, -17], + [-62, 61], + [-177, 23] + ], + [ + [2727, 4618], + [51, -44], + [34, 9], + [37, 48] + ], + [ + [2826, 4501], + [-9, -17], + [-112, -44], + [-28, -44], + [13, -59], + [-24, -93], + [13, -33], + [-62, -145], + [-42, -25], + [-114, 24], + [-226, -95], + [-12, 11], + [-65, -1], + [-35, -28], + [-35, -66], + [1, -97], + [-41, -90], + [-20, -11], + [-110, 13], + [-47, -14], + [-59, -58], + [-26, -92], + [-38, -57], + [-58, -28], + [-137, -6], + [-91, -58], + [-22, -82] + ], + [ + [1440, 3306], + [-68, -30], + [-31, -37], + [-42, 7], + [-34, -21], + [-46, -3], + [-52, 42], + [-75, -12], + [-23, 20], + [-58, -2], + [-28, 37], + [-43, 2], + [-64, -54], + [-59, 15], + [-110, -32], + [-33, 7], + [-20, 28], + [-20, 3], + [-93, -15], + [-19, 13], + [-9, 70], + [-63, 46], + [-21, -1], + [-94, -77], + [-17, 6], + [-11, 57], + [-73, 57], + [-34, 113], + [-12, 8], + [-34, -17], + [-39, 91], + [-46, 51], + [-14, 36], + [45, 61], + [-2, 35], + [-40, 47], + [-17, 53], + [29, 75], + [71, 77], + [6, 46], + [21, 13], + [-7, 24], + [19, 10], + [23, -8], + [19, 36], + [24, 16], + [18, 163], + [32, 43], + [-1, 29], + [-26, 26], + [-9, 116], + [-91, 79], + [-45, -8], + [-34, -24], + [-24, 10], + [-60, 126], + [-6, 34], + [27, 13], + [19, -28], + [17, 4], + [17, 32], + [22, 5], + [23, -23], + [30, 23], + [41, -32], + [44, 15], + [62, -14], + [62, 16], + [23, -6], + [77, -138], + [47, -35], + [150, -48], + [40, 0], + [102, 30], + [20, -23], + [14, 1], + [28, 28], + [12, -11], + [16, -110], + [37, -17], + [47, -154], + [30, -10], + [26, -50], + [91, 18], + [32, -45], + [81, 54], + [33, 87], + [32, 3], + [56, 74], + [166, -51], + [54, 8], + [312, 309], + [136, 80], + [142, 25], + [55, -21], + [63, -201], + [70, -113], + [27, -4], + [106, 49], + [91, 18], + [10, 81], + [95, 30], + [42, -44] + ], + [ + [12764, 988], + [-24, 21], + [-16, -8], + [-32, -41], + [-21, -56], + [-44, -18], + [-14, -119], + [-65, -112], + [-113, 18], + [-37, 46], + [-24, 9], + [-68, -33], + [-25, -45], + [-31, -26], + [-79, -205], + [-18, -27], + [-55, -18], + [-35, -71], + [-38, -38], + [-30, -77], + [-28, -27], + [-52, 0], + [-126, -76], + [-59, 2], + [-88, -44], + [-48, -43], + [-29, 21], + [-65, 7], + [-31, 42], + [-6, 51], + [-28, 24], + [-22, 6], + [-19, -30], + [-5, 8], + [-7, 35], + [7, 60], + [-61, 93], + [15, 48], + [-3, 49], + [41, 48], + [-5, 23], + [41, 38], + [-72, 25], + [-20, 20], + [-25, 53], + [-24, 112], + [29, 43], + [-40, -4], + [-34, 60], + [68, 52], + [20, 31], + [52, 0], + [12, 21], + [-7, 29], + [8, 89], + [-26, 55], + [-26, -1], + [-8, 11], + [-16, 79], + [13, 8], + [-21, 15], + [26, 31], + [-30, 47], + [14, 2], + [-45, 30], + [15, 64], + [-14, 146], + [26, 1], + [11, -33], + [19, -5], + [28, 29], + [21, -3], + [4, 22], + [22, -10], + [32, -52], + [90, 78], + [1, 28], + [109, 119], + [109, 71], + [56, 32], + [15, -5], + [-9, -17], + [16, 3], + [-3, -25], + [13, 2], + [27, 11], + [2, 27], + [62, 26], + [43, 50], + [28, 12], + [36, -5], + [30, 24], + [22, -13], + [25, 76], + [-22, 34], + [28, 36], + [-13, 39], + [16, 34], + [-27, 91], + [43, 41], + [42, 89], + [58, 33], + [13, 18], + [2, 29], + [16, 9], + [13, -19], + [44, 27], + [60, -45], + [6, -20], + [57, -13], + [10, -36], + [38, -50], + [53, 7], + [83, 33], + [8, -11] + ], + [ + [9926, 7490], + [10, 52], + [48, 49], + [-54, 3], + [-42, 111], + [-3, 391], + [-49, 59], + [-102, 108], + [-194, 152], + [-2, 70], + [-40, 38], + [-39, 13], + [-48, -21], + [-94, 74], + [-113, 5], + [-30, 37], + [5, 62], + [-115, 87], + [-347, 390], + [-77, 109], + [-479, 217] + ], + [ + [8161, 9496], + [91, 180], + [133, 130], + [93, 125], + [214, 17], + [21, 18], + [12, 37], + [15, 95], + [128, 89], + [54, 57], + [195, -41], + [119, 8], + [77, 40], + [44, 87], + [5, 98], + [13, 22], + [102, 81], + [25, 46], + [14, 131], + [15, 12], + [41, -7], + [110, -76], + [104, -94], + [204, -252], + [42, -59], + [22, -65], + [-16, -160], + [16, -20], + [35, 8], + [115, 64], + [77, 6], + [146, -89], + [150, -10], + [85, -75], + [85, -41], + [-14, 49], + [-97, 122], + [33, -2], + [131, -82], + [181, -35], + [46, -90], + [25, -20], + [75, -3], + [156, -32], + [168, 9], + [-10, -64], + [11, -32], + [-4, -69], + [51, -43], + [3, -32] + ], + [ + [5176, 6699], + [9, 22], + [-10, 82], + [9, 65], + [29, 91], + [-18, 30], + [-138, 97], + [5, 29], + [77, 49], + [86, 121], + [125, 88], + [41, 153], + [50, 91], + [-23, 103], + [7, 30], + [86, 34], + [14, 101], + [14, 26], + [44, -5], + [188, 56], + [55, 37], + [49, 55], + [35, -31], + [31, -64], + [23, 5], + [15, 85], + [37, 36], + [56, -16], + [28, -24], + [18, -50], + [30, -10], + [266, -5], + [202, 86], + [44, 2], + [98, 38], + [135, -83], + [31, 11], + [103, 93], + [78, 50], + [66, -14], + [120, -108], + [47, -25], + [46, 26], + [80, 143] + ], + [ + [7464, 8199], + [130, -150], + [36, -24], + [24, -68], + [-53, -118], + [-15, -174], + [149, -106], + [26, -7], + [41, -41], + [43, -22], + [36, 9], + [37, -58], + [1, -73], + [-11, -21], + [28, -87], + [36, -35], + [39, -90], + [73, -48], + [33, 11], + [35, -23], + [24, 2], + [83, 26], + [38, -32], + [31, 74], + [80, -58], + [78, -14], + [12, -24], + [37, -23], + [-21, -84], + [21, -81], + [42, -27], + [23, -43], + [118, -18], + [15, -36], + [41, -33], + [48, 18], + [5, -50], + [-79, -75], + [-8, -56], + [46, -65], + [13, -60], + [71, -37], + [-40, -5], + [-64, 20], + [-44, -55], + [-4, -130], + [-35, -51], + [13, -32], + [43, -37], + [10, -90], + [42, -66], + [-15, -83], + [34, -65], + [-18, -88], + [23, -11], + [28, -42], + [96, -34], + [86, -47], + [53, -108], + [68, -10], + [20, -15], + [59, -117], + [-21, -35], + [-7, -43], + [61, -163], + [48, -92], + [107, -49], + [6, -76], + [-17, -37], + [-38, -22], + [-55, 1], + [-79, -25], + [-92, -54], + [-64, -1], + [-42, -13], + [-25, -31], + [-41, 1], + [-14, -9], + [-11, -47], + [-68, -19], + [-49, -55], + [-53, 7], + [-119, -120], + [-43, -26], + [-48, 65] + ], + [ + [3376, 1461], + [17, -34], + [2, -90], + [-186, -101], + [-98, -11], + [-149, 30], + [-141, -13], + [-41, -11], + [-63, -68], + [-43, 3], + [-38, -71], + [-143, 37], + [-155, -45], + [2, -58], + [-84, -28], + [-68, 38], + [-184, -84], + [-100, 7], + [-118, -11], + [-50, 16], + [28, 153], + [-15, 68], + [16, 43], + [-12, 62], + [-29, 8], + [-5, 21], + [3, 98], + [-72, 51], + [-10, 77], + [-39, 49], + [-59, -1], + [-9, 34], + [-25, 17], + [7, 22], + [-26, 33], + [0, 74], + [-17, 71], + [45, 93], + [-38, 63], + [-3, 32], + [6, 38], + [96, 70], + [3, 54], + [38, 82], + [-12, 85], + [-79, 67], + [-1, 19], + [94, 43], + [40, -22], + [37, 4], + [20, -16], + [54, 27], + [5, 47], + [-55, 55], + [-76, 36], + [-59, 67], + [4, 72], + [-37, 52], + [-6, 39], + [-1, 44], + [26, 83], + [-38, 50], + [3, 73], + [-73, 66], + [-8, 41], + [7, 86], + [-24, 9] + ], + [ + [10253, 4342], + [-16, -49], + [-22, -7], + [-15, -83], + [-29, -28], + [-56, -29], + [-65, 3], + [-29, -33], + [-74, -34], + [-23, -47], + [-52, -19], + [-68, 26], + [-12, -33], + [-85, 22], + [-16, -15], + [7, -25], + [-12, -30], + [-41, 3], + [-64, -33], + [-43, -53], + [-30, 6], + [-48, -30], + [-71, -10], + [-39, -52], + [-84, -13], + [-30, -26], + [-33, -5], + [-32, -44], + [-48, -29], + [-53, -1], + [-72, -77], + [-19, 52], + [-54, 54], + [-15, 75], + [-32, -8], + [-54, -56], + [-49, 9], + [-62, -50], + [-16, 14], + [-20, -11], + [-21, 8], + [-12, 21], + [-21, -15], + [-28, 29], + [-52, 5], + [-44, 59], + [-29, -39], + [-39, -4], + [-11, 40], + [-56, 41], + [40, 56], + [-1, 19], + [-45, 33], + [-15, -20], + [-38, -13], + [-55, -94], + [-19, 8] + ], + [ + [7464, 8199], + [17, 41], + [-2, 79], + [11, 33], + [102, 96], + [0, 35], + [-50, 56], + [1, 33], + [44, 52], + [-15, 86], + [62, 39], + [47, 9], + [43, 81], + [70, 89], + [273, 233], + [11, 77], + [45, 70], + [7, 115], + [31, 73] + ] + ], + "transform": { + "scale": [0.0003236657286321254, 0.0002515663308029492], + "translate": [91.549499, 26.649359] + }, + "objects": { + "arunachalpradesh_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4]], + "type": "Polygon", + "properties": { + "cartodb_id": 109, + "censuscode": 253, + "st_cen_cd": 12, + "dt_cen_cd": 9, + "district": "Changlang", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[-5, 5, 6, 7]], + "type": "Polygon", + "properties": { + "cartodb_id": 22, + "censuscode": 260, + "st_cen_cd": 12, + "dt_cen_cd": 16, + "district": "Anjaw", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[8, 9, 10]], + "type": "Polygon", + "properties": { + "cartodb_id": 155, + "censuscode": 257, + "st_cen_cd": 12, + "dt_cen_cd": 13, + "district": "Upper Dibang Valley", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[11, 12, 13, 14, 15, 16]], + "type": "Polygon", + "properties": { + "cartodb_id": 170, + "censuscode": 247, + "st_cen_cd": 12, + "dt_cen_cd": 3, + "district": "East Kameng", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[17, 18, 19, 20]], + "type": "Polygon", + "properties": { + "cartodb_id": 173, + "censuscode": 251, + "st_cen_cd": 12, + "dt_cen_cd": 7, + "district": "East Siang", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[21, 22, -17, 23, 24]], + "type": "Polygon", + "properties": { + "cartodb_id": 330, + "censuscode": 256, + "st_cen_cd": 12, + "dt_cen_cd": 12, + "district": "Kurung Kumey", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[-4, 25, 26, -6]], + "type": "Polygon", + "properties": { + "cartodb_id": 341, + "censuscode": 259, + "st_cen_cd": 12, + "dt_cen_cd": 15, + "district": "Lohit", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[27, -7, -27, 28, -18, 29, -9]], + "type": "Polygon", + "properties": { + "cartodb_id": 343, + "censuscode": 258, + "st_cen_cd": 12, + "dt_cen_cd": 14, + "district": "Lower Dibang Valley", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[30, 31, 32, -22, 33]], + "type": "Polygon", + "properties": { + "cartodb_id": 344, + "censuscode": 255, + "st_cen_cd": 12, + "dt_cen_cd": 11, + "district": "Lower Subansiri", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[-33, 34, -12, -23]], + "type": "Polygon", + "properties": { + "cartodb_id": 431, + "censuscode": 248, + "st_cen_cd": 12, + "dt_cen_cd": 4, + "district": "Papum Pare", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[35, -15, 36, 37]], + "type": "Polygon", + "properties": { + "cartodb_id": 560, + "censuscode": 245, + "st_cen_cd": 12, + "dt_cen_cd": 1, + "district": "Tawang", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[-2, 38]], + "type": "Polygon", + "properties": { + "cartodb_id": 575, + "censuscode": 254, + "st_cen_cd": 12, + "dt_cen_cd": 10, + "district": "Tirap", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[-10, -30, -21, 39, 40]], + "type": "Polygon", + "properties": { + "cartodb_id": 593, + "censuscode": 252, + "st_cen_cd": 12, + "dt_cen_cd": 8, + "district": "Upper Siang", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[-34, -25, 41, 42]], + "type": "Polygon", + "properties": { + "cartodb_id": 594, + "censuscode": 249, + "st_cen_cd": 12, + "dt_cen_cd": 5, + "district": "Upper Subansiri", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[43, -37, -14]], + "type": "Polygon", + "properties": { + "cartodb_id": 616, + "censuscode": 246, + "st_cen_cd": 12, + "dt_cen_cd": 2, + "district": "West Kameng", + "st_nm": "Arunanchal Pradesh" + } + }, + { + "arcs": [[-20, 44, -31, -43, 45, -40]], + "type": "Polygon", + "properties": { + "cartodb_id": 619, + "censuscode": 250, + "st_cen_cd": 12, + "dt_cen_cd": 6, + "district": "West Siang", + "st_nm": "Arunanchal Pradesh" + } + } + ] + } + } +} diff --git a/public/maps/assam.json b/public/maps/assam.json index 631750d16e..fa953c3f6a 100644 --- a/public/maps/assam.json +++ b/public/maps/assam.json @@ -1 +1,5430 @@ -{"type":"Topology","arcs":[[[11551,15389],[-18,10],[-54,12],[-72,9],[-84,-7],[-75,-78],[-34,-93],[-60,-67],[-127,9],[-142,51],[-40,66],[-56,43],[-23,171],[-99,13],[-51,87],[-83,31],[-43,213],[-49,42],[-67,0]],[[10374,15901],[-37,18]],[[10337,15919],[-57,14],[-118,-38],[-12,-14],[10,-44],[-49,-65],[2,-63],[-44,7],[-77,-83],[-18,2],[-48,71],[-103,241],[-65,14],[-26,-26],[-46,-111],[-153,-76],[-34,-89],[-46,-36],[-170,-12],[-127,-58],[-8,-101],[-35,-36],[-75,-36],[-136,3],[-39,25],[-30,52]],[[8833,15460],[-1,28]],[[8832,15488],[21,18],[11,68],[-23,65],[4,87],[64,85],[25,99],[-5,36],[-20,20],[-45,-9],[-40,-31],[-142,-2],[-34,51],[7,163],[-22,50],[-31,17],[-66,4],[-23,-38],[-80,-12],[-63,-69],[35,-31],[-11,-18],[-23,-13],[-33,8],[-23,38],[9,46],[-10,29],[-49,-13],[-89,81],[-36,137],[-3,107],[-54,40],[-18,0],[-27,-32],[5,-44],[-36,5],[-14,-20],[1,-20],[38,-15],[0,-54],[-27,-58],[28,-58],[-52,-69],[18,-54],[-14,-55],[38,-65],[6,-52],[-37,-136],[-21,-48],[-42,-16],[-59,1],[-95,-165],[-100,57],[-104,122],[-81,56],[-13,35],[-109,6],[-63,-16],[-118,-88],[-86,30],[-61,1],[-28,-23],[-148,-37],[-4,34],[-38,21],[-18,49],[-46,5],[34,60],[-29,14],[10,27],[-16,43],[11,26],[-41,40],[-39,-6],[-78,-61],[-56,-4],[-34,-41],[-38,-15],[13,-84],[-24,-80],[13,-44],[26,-18],[14,-60],[-67,-36],[-12,0],[-14,6],[-13,8],[-18,8]],[[6400,15581],[6,15]],[[6406,15596],[8,55],[-34,-2],[-105,46],[3,102]],[[6278,15797],[-44,25]],[[6234,15822],[-21,52],[59,47],[107,-22],[29,69],[-10,3],[23,97],[76,13],[30,108],[94,53],[37,45],[15,53],[4,122],[-39,50],[35,107],[-6,45],[54,54],[36,83],[-10,104],[52,89],[34,31],[76,195],[46,13],[28,44]],[[6983,17277],[229,29],[251,-60],[69,2],[120,137],[75,118],[42,8],[51,-36],[132,-38],[280,19],[122,-17],[192,1],[141,-26],[181,-129],[228,-36],[202,107],[38,35],[125,219],[35,3],[386,-286],[81,-13],[543,97],[183,108],[165,-41],[142,-67],[44,2],[55,44],[39,0]],[[11134,17457],[75,-377],[86,-155],[-5,-111],[41,-89],[-9,-41],[27,-60],[-16,-94],[-31,-4],[-12,-68],[6,-33],[61,-41],[-37,-38],[1,-20],[51,-7],[-13,-32],[-39,2],[-12,-13],[4,-25],[48,8],[3,-11],[-35,-63],[-1,-24],[20,-9],[-24,-39],[4,-23],[53,18],[-35,-91],[25,-27],[6,-46],[69,-32],[62,-140],[37,-29],[4,-52],[23,-22],[-37,-54],[40,3],[-5,-21],[-35,-18],[35,-20],[-20,-55],[35,-77]],[[11584,15427],[-23,-23]],[[11561,15404],[-10,-15]],[[22859,17540],[15,-33],[11,-18],[23,-19],[205,9],[286,-200],[75,-25],[63,42],[58,-8],[56,13],[86,126],[-7,-98],[6,-18],[38,-21],[-7,-17],[-57,-28],[2,-85],[130,8],[18,-28],[6,-103],[48,12],[70,-8],[-11,-37],[49,0],[23,-28],[30,36],[10,-43],[33,20],[-4,-35],[-28,-32],[30,-3],[-33,-48],[11,-55],[-31,-27],[39,-83],[-4,-48],[34,-17],[3,-18],[-23,-16],[9,-33],[9,-17],[25,26],[20,-102],[17,27],[18,-17],[22,26],[10,-7],[-6,-39],[23,23],[10,-20],[16,7],[32,-24],[15,-15],[-2,-36],[52,-29],[8,-29],[-3,-81],[-56,-3],[10,-40],[-48,-46],[32,-36],[-73,-82],[5,-42],[33,-2],[12,-19],[-21,-63],[10,-17],[46,7],[22,25],[53,-23],[-5,-32],[39,-14],[48,-85],[-33,-35],[30,-46],[-21,-26],[-4,-84],[-29,-46],[-2,-94],[-40,-89],[26,-76],[2,-58],[17,-29],[109,-83],[22,-58],[-64,-115],[-7,-179],[109,-325],[165,-7]],[[24774,14445],[68,5],[-25,-65],[-61,-32],[-84,-1],[-15,-24],[-24,4],[2,40],[-21,-4],[-18,-21],[-90,-30],[0,-21],[52,-47],[-58,-4],[-57,25],[-20,-29],[-9,-87],[-69,-75],[-17,-44],[-40,-10],[-18,-24],[5,-64],[-40,-100],[-33,12],[-65,-39],[-21,-37],[-61,-134],[13,-39],[-21,-39],[-5,-94],[-127,-110],[-45,-85],[-2,-60],[-27,-38],[37,-72],[-6,-35],[-31,-35],[-35,6],[-14,-23],[42,-19],[-11,-56],[-28,-27],[60,-22],[-15,-42],[-29,-15],[-18,-109],[-26,-7],[-2,-31],[29,-71],[-93,-134],[-10,-47],[-38,-16],[-18,-132],[-43,-97],[32,-67],[-26,-149],[73,-87],[11,-104],[64,-122],[-19,-43],[-41,-14],[-15,-40],[-52,-40],[-109,-28],[-31,-62],[-104,-24],[-11,-38],[-66,-70],[-18,-48],[-29,7],[-27,-80],[-33,-43],[-77,62],[-94,50],[-52,-2],[-100,-102],[-30,-135],[-63,-65],[-65,-13],[-25,12],[-64,197],[23,24],[-13,61],[24,49],[33,18],[-24,61],[61,200],[-12,55],[-22,29],[5,55],[-25,13],[26,25],[-15,49],[-22,21],[16,33],[-24,38],[-67,50]],[[22585,11923],[-19,7],[19,22],[35,5],[26,84],[36,-43],[20,3],[-2,27],[58,-10],[13,40],[-8,12],[-27,-30],[-15,6],[-12,71],[22,9],[10,31],[36,-20],[-30,54],[-20,-4],[-10,-27],[-24,-3],[-16,18],[12,34],[-24,21],[-16,-10],[5,44],[47,0],[-40,61],[25,18],[8,28],[39,-18],[-5,29],[-29,19],[-30,-29],[-23,11],[-6,42],[56,0],[14,13],[-12,77],[27,14],[-15,38],[54,33],[-7,18],[-27,4],[-5,19],[16,21],[38,-34],[-10,93],[20,10],[-23,26],[2,21],[19,8],[29,-43],[9,15],[-32,96],[18,48],[49,-5],[10,20],[-31,44],[52,43],[-33,24],[7,34],[18,5],[10,-45],[13,-4],[-14,94],[30,32],[-38,20],[28,1],[9,26],[27,13],[-54,31],[-13,20],[14,20],[-25,35],[38,27],[27,-26],[1,27],[-35,51],[29,26],[-12,48],[35,-17],[3,24],[25,23],[-20,13],[-24,-20],[-3,14],[18,33],[41,23],[-4,22],[-28,-1],[4,10],[18,14],[57,-18],[53,124],[-29,56],[-41,-40],[-11,18],[40,38],[65,-1],[-29,42],[36,8],[-7,35],[19,1],[25,38],[-41,12],[34,65],[50,-33],[-6,29],[-49,41],[16,45],[-40,43],[18,9],[3,22],[77,10],[-18,47],[-40,-4],[9,28],[37,-6],[18,13],[-12,42],[45,-43],[13,14],[-14,30],[-29,12],[3,17],[30,15],[1,20],[-31,-23],[8,94],[-35,-1],[4,30],[22,0],[-23,60],[17,7],[-1,29],[-16,12],[49,60],[-50,3],[1,26],[24,13],[1,21],[-21,3],[-9,75],[-83,-29],[-10,33],[-28,13],[-17,53],[-33,2],[-83,43],[-33,35],[-25,2],[-41,-94],[-118,-86],[-26,-81],[-30,0],[-72,43],[141,171],[-90,20],[-15,61],[70,47],[-9,34],[-38,-4],[-6,22],[44,21],[-13,61],[-21,24],[2,61],[-50,29],[-34,46],[1,19],[24,-20],[12,31],[-72,177],[-43,3],[-11,30],[11,20],[-17,35],[20,47],[-43,24],[-22,-17],[-25,61],[-27,-22],[-18,21],[3,20],[29,-2],[5,19],[-29,41],[8,67],[8,7],[5,-13],[14,24],[-10,46],[62,48],[-8,33],[-65,22],[-27,53],[-57,13],[-4,52],[-206,16],[-37,-37],[-44,22],[-30,-32],[-23,25],[-18,-2],[-51,-18],[6,-34],[-21,-2],[-32,26],[-82,-49],[16,-26],[-20,-74],[-27,-33],[12,-35],[-27,18],[-22,-9],[20,36],[-12,33],[-155,-54],[-9,86],[16,81],[25,22],[-26,40],[-95,0],[-14,23],[-49,8],[-73,-28],[-72,-59],[-122,-10],[-37,99],[-38,21],[0,-49],[-77,-4],[-65,-66],[4,-21],[29,-14],[90,17],[1,-17],[-52,-35],[-52,-8],[-58,-85],[-29,12],[47,100],[-22,-10],[-35,-66],[-18,6],[10,38],[-58,-28],[-158,-30],[-30,-28],[-57,28],[30,16],[-28,12],[2,28],[-51,-18],[-81,1],[-60,23],[-265,6],[-34,-46],[-36,5],[-39,-22],[-10,13],[23,24]],[[19986,15941],[11,14],[-55,36],[33,123],[-78,195],[24,14],[103,-2],[29,22],[27,59],[6,51],[-52,41],[-8,36],[56,66],[-15,14],[-1,29],[-44,39],[-9,44]],[[20013,16722],[87,51],[70,10],[65,156],[56,39],[254,101],[66,-36],[91,-19],[65,9],[96,72],[57,13],[119,-13],[93,22],[71,-33],[66,-10],[62,-77],[47,-30],[48,-8],[-13,-54],[32,-26],[465,-123],[86,59],[37,-8],[-21,81],[-39,76],[-67,265],[4,75],[116,73],[102,-32],[37,15],[85,129],[87,-17],[101,-92],[46,29],[68,207],[36,45]],[[22588,17671],[95,-89],[63,-35],[108,-10]],[[22854,17537],[5,3]],[[11551,15389],[-10,-15]],[[11541,15374],[-9,-143],[-12,-21],[-59,0],[13,-34],[-6,-34],[37,-80],[-6,-77],[16,-36],[25,-3],[-6,-41],[17,-10],[0,-44],[15,-16],[63,-10],[25,-105],[30,-23],[12,-41],[29,13],[34,-27],[19,-100],[-8,-177],[10,-30],[-13,-46],[-29,5],[-16,-14],[-15,-46],[-49,-13],[-29,26],[-15,-62],[-43,-28],[22,-188],[14,-29],[-37,-116],[2,-62],[-28,-19],[-48,-2],[-38,-65],[-94,-65],[4,-68],[29,-38]],[[11397,13505],[35,-30]],[[11432,13475],[-81,-37],[-138,-87],[-174,-91],[-73,-93],[-37,-91],[-54,-48],[-90,-17],[-32,-34],[-24,-64],[-79,-46],[-110,27],[-36,32],[-23,72],[-137,101],[-45,6],[-66,-32],[-17,-34],[-16,-166],[-27,-62],[-42,-421],[-51,-43],[-67,-2],[-22,17],[-119,144],[-52,4],[-78,-33],[-22,-96],[47,-70],[10,-84],[39,-48],[-2,-23],[29,-50],[-28,-159],[17,-44],[-35,-113],[54,-332],[-23,-213]],[[9828,11245],[-82,-49],[-58,-67],[-111,82],[-31,7],[-76,-31],[-21,8],[-171,-44],[-38,-25],[-37,7],[-20,-25],[-26,17],[-23,-6],[-11,-21],[-49,18],[-6,-45],[-145,-232],[-106,-210],[-43,-49],[-22,-63],[-74,15],[-38,-9],[-175,-159],[-13,17],[-31,-14],[-99,46],[-33,-8],[2,42],[-20,18],[3,160],[-51,84],[22,41],[4,81],[35,102],[-16,32],[10,34],[71,128],[-34,121],[-97,-106],[-97,43],[-48,5],[-83,-52],[-34,-1],[-61,-69],[-218,-13],[-82,-23],[-18,-35],[-74,55],[66,47],[61,15],[31,93],[-70,-40],[-93,15],[-39,-61],[-117,-109],[-82,-12],[-29,9],[66,173],[2,55],[48,27],[27,35],[14,139]],[[7388,11438],[64,220],[56,78],[5,27],[-20,24],[107,152],[37,44],[36,16],[46,174],[48,29],[1,30],[-41,68],[-9,58],[-31,10],[-27,44],[-47,-3],[-20,49],[-60,4],[-31,-28],[-72,29],[-55,-32],[-94,83],[-39,1],[-136,55],[-94,91],[-18,44],[-43,-6],[-25,55],[-29,-7],[-25,36]],[[6872,12783],[106,20],[186,178],[74,34],[126,-65],[99,56],[33,2],[39,72],[100,108],[95,51],[51,-14],[89,-54],[80,32],[85,7],[106,65],[87,28],[294,56]],[[8522,13359],[-23,-34],[138,-90],[234,-37],[63,21],[123,8],[29,22],[41,-17],[71,11],[195,-165],[33,-16],[89,-3],[35,235],[-40,199],[22,9],[14,35],[23,153],[12,20],[33,7],[-14,36],[-86,16],[-13,46],[12,55],[28,28],[111,-34],[72,84],[-8,199],[34,52],[-44,12],[49,33],[194,7],[30,26],[47,-8],[13,28],[54,7],[91,42],[-12,18],[-59,14],[-10,65],[38,84],[54,60],[-54,22],[-5,26],[105,186],[-23,48],[10,17],[56,-14],[39,13],[29,110],[-55,145],[-18,116],[12,49],[34,10],[2,13],[-16,38],[3,77],[-19,37],[2,152],[14,26],[-20,3],[12,60],[-20,14],[43,44],[-4,28],[27,3],[-15,23],[24,15],[4,12],[5,31],[3,13]],[[10370,15904],[4,-3]],[[19986,15941],[-38,-1],[-52,-46],[-63,9],[-68,-33],[-59,4],[-79,-107],[8,-17],[108,10],[9,-11],[-57,-25],[77,-50],[7,-27],[-36,-3],[2,-15],[44,3],[41,81],[16,-9],[-8,-72],[-29,-24],[47,-47],[62,3],[17,-21],[27,-60],[-3,-29],[-25,-9],[-19,40],[-19,5],[7,42],[-12,5],[-62,-28],[9,-36],[-46,-5],[36,85],[-134,12],[-22,64],[-57,30],[-21,-9],[-53,19],[-12,-57],[-37,6],[-3,-14],[36,-27],[-2,-18],[-26,9],[-11,-12],[29,-79],[-45,16],[-24,104],[-28,54],[-25,10],[-30,-30],[-140,-59],[-16,17],[77,40],[50,52],[88,28],[62,87],[-75,63],[-62,11],[-94,-91],[-78,-39],[-43,51],[-24,-11],[-35,-41],[-9,-44],[-93,-30],[15,-24],[-17,-22],[-73,12],[-15,20],[9,25],[-74,37],[-164,-11],[-93,-41],[6,-36],[24,-23],[-27,-3],[-62,-85],[-116,-57],[-6,-45],[-31,-23],[20,-75],[27,-29],[30,-2],[153,68],[121,9],[-12,46],[10,26],[24,-52],[94,50],[15,-21],[-46,-21],[-25,-38],[-77,-31],[-6,-36],[62,-7],[6,-45],[16,10],[58,-18],[9,-22],[-12,-37],[50,22],[21,-17],[3,25],[23,20],[-45,36],[33,12],[48,63],[18,5],[9,-31],[14,13],[-17,79],[40,21],[6,-14],[-18,-17],[33,-30],[16,9],[-24,-32],[9,-25],[43,42],[1,-20],[-30,-44],[-109,-34],[-4,-15],[60,-9],[34,-25],[-18,-27],[-14,5],[-90,-77],[8,-16],[25,-4],[-8,-26],[26,-10],[-92,-55],[-3,18],[43,51],[-33,24],[-150,-82],[-18,-19],[44,-13],[92,36],[-108,-91],[-30,-2],[-9,24],[-19,-48],[-85,-13],[-2,41],[23,-9],[3,31],[-13,64],[-28,3],[-11,19],[-82,-87],[-43,-17],[-34,-4],[-69,32],[-104,-49],[-34,20],[-42,-38],[-46,-12],[-66,-65],[-8,-47],[-54,36],[-154,-63],[-1,24],[-30,-16],[-9,37],[-12,0],[-32,-72],[-8,-9],[-25,16],[-9,-31],[-36,-33],[58,23],[57,-1],[19,-29],[56,6],[20,19],[31,-12],[-41,-45],[-41,-105],[12,-18],[52,6],[98,-30],[24,-97],[-20,-61],[-116,-88],[-34,16],[-84,-51],[-32,-41],[11,-35],[-12,-35],[-64,-34],[-116,55],[-37,34],[-1,21],[-35,12],[-29,-51],[-20,-104],[-53,-63],[-40,1],[-2,-41],[-13,4],[-4,-16],[-16,-159],[5,-29],[48,-24],[7,-44],[-46,-55],[-48,6],[-70,36],[-12,-99],[33,-27],[117,26],[108,-3],[42,-28],[182,46],[147,-45],[101,11],[24,-16],[60,0],[62,-86],[16,-93],[-45,-95],[-35,-44],[-41,-11],[-21,-34],[27,-45],[47,-14],[78,18],[57,-67],[72,-8],[92,-43],[22,-36],[43,-26],[65,3],[4,-26],[35,-22],[47,14],[-10,-24],[21,-42],[-5,-41],[33,-27],[26,8],[13,-13],[33,20],[27,-45],[38,-9],[21,29],[53,-39],[-6,17],[22,19],[10,-42],[25,11],[-4,-30],[30,15],[58,-12],[-66,-280],[128,16],[32,-20],[35,-57],[63,-35],[14,-24],[10,-44],[71,-107],[-9,-66],[19,-36],[0,-58],[29,-64],[34,-15],[10,-25],[71,-311],[110,-124],[87,-131],[74,-66],[47,-106],[14,-116],[-9,-28],[29,-46],[-5,-171],[-49,-74],[-2,-25],[-34,-14],[-3,-108],[-36,-105],[-28,-40],[-211,28],[-83,-82],[-138,-26]],[[19103,10300],[33,161],[-18,-2],[-97,83],[7,73],[-37,8],[-80,54],[-9,22],[-115,-17],[-37,-54],[-57,24],[-7,23],[15,27]],[[18701,10702],[31,14],[-1,32],[-81,14],[-159,160],[-100,154],[-26,91],[-67,53],[-71,137],[-117,-4],[-341,-56],[-53,-3],[-33,27],[-94,-20],[-26,81],[-54,65],[-45,103],[54,112],[-43,7],[-77,-63],[-94,65],[-57,-34],[-29,4],[-60,115],[20,35],[3,81],[64,1],[-20,40],[-35,18],[-111,-88],[-50,20],[-30,59],[25,95],[-7,53],[20,24],[-43,-1],[-5,13],[93,43],[-15,19],[-82,-4],[0,34],[120,35],[-26,33],[-102,1],[-8,11],[29,90],[-29,42],[-60,24],[40,79],[-22,56],[-185,-28],[-36,-89],[34,-78],[-17,-24],[8,-40],[-19,-21],[-33,15],[-64,-10],[-66,52],[-2,-15],[-39,0],[-35,23],[-68,-58],[17,-85],[-18,-49],[-91,-13],[-26,-49],[-73,-31],[-48,-45],[-40,-17],[-41,5],[-40,-72],[-67,1],[-46,-26],[-72,22],[-44,39],[114,201],[-18,37],[18,34],[122,65],[4,26],[-61,28],[-8,31],[24,125],[58,94],[7,50],[-33,50],[-79,68],[1,103],[-18,25],[-42,8],[-66,-12],[-113,-115],[-12,32],[-58,8],[2,148],[37,120],[-13,34],[-29,14],[-64,-59],[-25,34],[-38,17],[-35,1],[-85,-49],[-10,26],[-30,5],[-61,-77],[-33,-3],[-57,-80],[-40,-2],[-27,-73],[-56,53],[-87,-4],[8,48],[41,53],[-7,14],[-62,18]],[[14985,13072],[167,630],[32,53],[318,54],[61,30],[90,138],[73,155],[24,151],[81,95],[18,58],[0,32],[-38,53],[-116,75],[-490,216],[-44,85],[47,433],[-14,94],[-85,115]],[[15109,15539],[109,23],[50,-11],[36,-104],[39,-33],[47,-14],[108,47],[189,43],[288,-60],[303,106],[169,26],[120,-76],[136,144],[82,29],[17,-94],[67,-40],[74,-18],[100,290],[158,15],[132,107],[93,53],[53,14],[105,-20],[141,87],[81,-11],[45,13],[27,15],[91,113],[72,19],[67,0],[138,-34],[52,-65],[50,-32],[181,-27],[182,2],[183,-122],[44,-8],[50,19],[209,139],[64,71],[122,37],[125,66],[72,125],[21,137],[66,117],[35,11],[74,-24],[51,6],[81,30],[10,52],[35,21],[60,-1]],[[8832,15488],[0,-3]],[[8832,15485],[-25,-54],[-31,-27],[-1,-46],[-40,17],[-33,-13],[-83,-149],[-71,-76],[-2,-41],[-30,-59],[-1,-103],[24,-48],[12,-87],[-25,-72],[33,-39],[-5,-29],[47,-58],[1,-37],[77,4],[92,30],[6,-17],[-48,-54],[36,-46],[-8,-89],[-39,-6],[-14,-24],[19,-56],[-39,-80],[-23,5],[-19,-34],[31,-56],[-56,-20],[10,-25],[45,-31],[-54,-52],[-74,-35],[-58,23],[-64,-84],[18,-48],[81,11],[34,-36],[-8,-33],[-65,-67],[-64,-134],[23,-32],[89,-26],[74,-83],[-43,-47],[-9,-73],[-30,10]],[[6872,12783],[-17,25],[-108,-56],[-75,30],[-122,8],[-52,17],[-52,101],[-66,24],[-49,-37],[-339,151],[-215,19],[-91,-16],[-17,-19],[-36,23],[3,23],[-19,1],[-16,53],[-82,38],[-91,211],[-48,175],[-80,159],[2,31]],[[5302,13744],[14,31],[52,38],[71,30],[138,-5],[77,51],[39,-40],[39,1],[14,10],[-7,59],[-66,-1],[-8,56],[9,46],[62,77],[63,29],[45,57],[49,28],[43,-41],[51,-21],[78,-5],[52,21],[24,48],[-14,48],[-67,31],[1,17],[82,98],[3,50],[74,97],[29,6],[88,-56],[104,25],[12,89],[-72,92],[-19,83],[83,190],[-11,33],[-70,59],[-65,-78],[-68,1],[-117,-37],[-29,3],[-41,67],[6,18],[46,20],[29,-25],[76,-11],[60,69],[0,23],[-39,53],[-9,98],[-72,15],[-5,102],[14,-12],[4,48],[15,3],[71,-51],[19,43],[56,33],[16,1],[43,-47],[25,12],[-3,148]],[[6396,15571],[4,10]],[[19697,5468],[1,-16],[31,0],[26,-41],[-15,-49],[10,-49],[-73,24],[27,-81],[-56,8],[-22,-41],[47,17],[-30,-58],[39,-8],[17,-73],[-15,-25],[-64,0],[24,-73],[-8,-17],[-32,8],[-15,-49],[-16,0],[24,-33],[-8,-33],[-24,0],[-16,-24],[16,-24],[-56,-50],[-57,-86],[-64,0],[24,-41],[0,-41],[-32,17],[-8,-17],[16,-25],[24,0],[-16,-24],[-32,0],[0,-16],[25,0],[-32,-74],[40,-49],[-8,-25],[-24,-32],[-64,-9],[-15,-57],[-16,8],[-8,41],[-72,-41],[-47,-49],[-8,41],[-48,33],[-32,65],[-32,-33],[-55,16],[-9,17],[16,57],[-63,-49],[-8,-17],[16,-49],[-40,-90],[8,-32],[-31,-33],[24,-58],[-32,-98],[8,-33],[-15,-32],[16,-17],[7,33]],[[18865,3982],[24,-33],[-79,-114],[0,-58],[-23,-41],[-56,33],[-16,-25],[96,-147],[-8,-65],[8,-9],[48,25],[16,-8],[0,-25],[-32,-57],[-15,-90],[-56,-8],[-7,-25],[25,-130],[-56,-9],[0,-32],[41,-66],[-55,-49],[-8,-49],[24,-24],[49,-16],[56,8],[46,-51],[-54,-7],[-56,-73],[-88,32],[-56,-8],[64,-90],[-40,-90],[-24,49],[-47,-65],[-23,-90],[24,-41],[0,-33],[-64,-33],[-7,-24],[23,-33],[-47,-58],[71,-139],[-2,-76],[-58,-18],[-6,-112],[-25,-98],[39,-74],[-1,-42],[-128,-56],[-39,19],[-14,42],[-47,-67],[-98,54],[-25,-13],[-27,-43],[-58,-34],[-32,52],[-19,6],[-59,-24],[-26,-36],[-45,20],[-24,46],[-66,47],[-35,-120],[-60,6],[-19,45],[-37,5],[-57,-38],[-61,15],[-62,-46],[-41,-81],[-26,6],[-38,-29],[-16,7],[-27,85],[35,65],[-56,42],[-16,38],[-39,6],[-10,37],[-48,-1],[-4,15],[24,10],[-8,28],[-50,110],[-158,501]],[[16994,2513],[-31,2],[2,18],[87,162],[-12,36],[42,51],[-2,64],[-90,-18],[-19,66],[-31,39],[-75,5],[-16,21],[-23,-6],[4,-21],[-53,-87],[-36,-27],[-8,22],[-16,-1],[-55,-28],[-84,97],[-72,16],[-38,64],[20,48],[-20,72],[47,-1],[100,46],[-16,31],[-69,50],[-62,-17],[-19,82],[13,130],[-14,70],[-36,-1],[-6,17],[-17,129],[19,130],[-15,108],[5,88],[57,168],[-6,62],[18,83],[79,82],[4,27],[-38,53],[-96,-9],[-115,38],[-22,81],[17,26],[-40,82],[-2,33],[-117,51],[-67,111],[-89,-32],[0,-13],[58,-46],[-19,-14]],[[16020,4753],[-61,42],[-99,25],[-106,-60],[-85,-28],[-53,106],[-70,-18],[-26,12]],[[15520,4832],[-24,71],[5,138],[-62,163],[30,41],[-6,33],[-187,-1],[-19,32],[1,35],[52,17],[27,48],[-66,43],[-128,3],[-44,32],[-17,37],[2,76],[37,168],[-9,78],[72,13],[22,40],[26,14],[25,-7],[32,-39],[36,14],[8,66],[-10,19],[-15,-4],[-2,33],[34,17],[48,89],[31,97],[0,95],[23,50],[233,-15],[64,-42],[27,2]],[[15766,6288],[33,41],[142,-14],[119,30],[50,28],[47,-39],[52,-16],[20,30],[45,8],[22,39],[52,26],[135,-63],[82,41],[81,-37],[82,57],[51,-35],[13,32],[55,56],[-35,79],[9,34],[73,-50],[55,21],[18,-69],[42,-71],[2,-88],[88,-111],[106,-7],[136,-84],[20,-27],[2,-53],[26,-35],[29,-12],[96,66],[135,24],[38,45],[67,37],[122,1],[66,-16],[57,-44],[33,0],[22,19],[7,84],[29,13],[89,-21],[56,56],[28,10],[142,1],[15,29],[63,24],[59,-3],[31,-26],[-9,-35],[-98,-120],[-37,-10],[-33,-81],[126,-162],[52,-24],[62,-65],[16,-48],[-25,-23],[-3,-25],[19,-11],[5,-28],[31,4],[18,-35],[548,-4],[83,-12],[21,11],[0,-41],[47,0],[0,-32],[48,-33],[38,16],[16,24],[46,-17],[23,8],[23,-16],[-24,-41],[31,-16],[23,16],[31,-57],[46,27]],[[4044,14517],[36,-39]],[[4080,14478],[-8,-42],[24,-30],[20,18],[-18,84],[32,22],[8,-102],[13,-3],[44,79],[25,-12],[-22,-43],[19,-42],[-12,-28],[40,-56],[46,18],[19,-12],[-36,-32],[67,-137],[6,-98],[-29,-13],[-60,6],[3,-45],[27,-28],[-64,0],[-7,43],[-4,-78],[93,-7],[-18,-35],[-52,-6],[-54,47],[-31,-23],[-12,-46],[50,-62],[-16,-22],[-48,34],[-31,53],[-22,-10],[-3,-24],[53,-67],[-4,-17],[-70,2],[-153,-155],[-21,-1],[-40,29],[-52,-7],[-11,-16],[-3,-260]],[[3768,13354],[-12,-16],[-219,-40],[-33,5],[-37,43],[-61,-6],[-124,42],[-80,-9],[-20,11],[-122,-56],[-11,-15],[12,-42],[-19,-135],[-30,-55],[-109,-13],[-13,-33],[-38,-10],[-31,-48],[-36,-2],[-29,20],[-36,-41],[-30,-86],[-53,-79],[-53,-58],[-46,-24],[28,-54],[71,-53],[32,-3],[-49,-143],[32,-33],[59,-10],[29,-55],[-25,-38],[-78,-39],[21,-20],[-4,-26],[28,20],[-32,-76],[15,-65],[-106,-26],[-146,-123],[-43,11],[-26,-24],[2,-32]],[[2346,11918],[-60,-69],[-14,-57],[-27,1],[-7,-18],[-62,-20],[21,-48],[-61,-28],[-16,-44],[-31,10],[-50,-24],[-46,-49],[-16,-61],[-56,-52],[-78,24],[-37,-8],[-92,-94],[54,-45],[24,-3],[17,-38],[-75,-122],[-44,12],[-16,-29],[23,-13],[-60,-44],[-83,-9],[-13,-39],[-31,-12],[-129,-11],[5,-55],[36,-34],[-7,-123],[25,-114],[-120,-143],[-1,-52],[-65,-35],[-146,32],[-16,-59],[10,-51],[110,-151],[24,-9],[14,-54],[88,-50],[54,-182],[186,-138],[16,-71],[89,-32],[11,17],[18,-4],[76,-101],[-6,-40],[-34,-25],[-50,-92],[-127,42],[-36,-105],[-35,-19],[-137,-26],[-32,-32],[-55,6],[-219,-37],[-49,-59],[-21,3],[-39,-63],[10,-52],[-15,-49],[54,-169],[-1,-45],[-88,-103],[-41,6],[-3,92],[43,210],[-39,95],[12,25],[65,42],[25,61],[25,124],[-28,77],[27,64],[22,154],[-61,212],[-133,238],[47,98],[0,61],[-90,-1],[-23,19],[-35,76],[-7,83],[69,86],[14,38],[-69,284],[-21,47],[-32,6],[-14,28],[90,135],[6,195],[23,66],[186,230],[75,162],[-3,26],[-41,16],[-194,-25],[-74,42],[55,51],[40,8],[-5,38],[-34,38],[19,29],[81,-20],[49,8],[18,37],[-118,122],[-37,66],[-46,15],[0,-136],[-39,-12],[-53,30],[16,225],[-23,70],[-23,26],[-78,-131],[-38,-7],[7,31],[62,92],[-8,23],[-28,-12],[-11,-29],[-22,31],[-26,5],[-50,-22],[43,59],[36,7],[-26,50],[49,36],[23,-1],[1,95],[-29,46],[8,53],[-43,-36],[-20,21],[8,131],[-90,3],[-35,39],[27,126],[-70,82],[-23,54],[-27,25],[-51,10],[-36,-14],[-47,10],[-8,52],[41,27],[10,28],[33,-6],[7,13],[-80,19],[-73,-31],[-35,76],[-30,28],[15,12],[59,-27],[32,17],[23,48],[-14,38],[-22,4],[14,18],[64,1],[35,40],[-4,17],[-39,16],[-117,-27],[-33,26],[72,13],[15,64],[58,25],[30,35],[-29,35],[-43,18],[-2,66],[-65,3],[-15,15],[22,69],[37,-2],[0,-41],[32,-26],[44,-6],[39,13],[28,70],[-45,77],[-67,66],[-8,59],[12,24],[27,12],[-16,-59],[20,-25],[46,-12],[59,15],[36,-38],[54,0],[3,21],[-46,89],[-2,99],[64,-28],[105,90],[-11,108],[17,38],[213,113],[-49,-83],[22,-42],[25,-7],[18,31],[-13,26],[33,49],[-7,83],[30,17],[55,-28],[25,41],[53,-12]],[[889,14662],[46,-44],[80,-18],[56,-91],[-14,-22],[19,-37],[-33,-23],[0,-17],[59,-21],[16,-65],[-53,-85],[-100,-265],[-24,-106],[-82,-10],[-8,-22],[23,-81],[71,-68],[-50,-73],[0,-27],[29,-46],[23,-10],[1,-56],[-59,-54],[2,-21],[21,-12],[51,29],[-22,-74],[15,-73],[-18,-103],[23,-46],[33,-11],[29,-47],[164,-18],[168,33],[14,-8],[168,49],[51,-2],[79,-16],[118,-70],[65,-20],[60,14],[66,52],[9,112],[77,108],[227,143],[123,11],[32,43],[-21,49],[1,102],[-60,35],[-27,45],[4,127],[8,21],[32,8],[116,82],[13,35],[-24,76],[-85,8],[-48,71],[-90,53],[18,31],[56,29],[-13,18],[-77,16],[96,82],[178,90],[110,-69],[39,19],[55,0],[33,50],[75,62],[-10,94],[110,55],[-1,-79],[33,-22],[8,-52],[-23,-48],[-71,-27],[68,-6],[-55,-131],[49,20],[58,-57],[28,27],[38,-11],[27,56],[16,-3],[82,-35],[13,-38],[28,-21],[44,39],[12,33],[-16,36],[28,14],[40,-4],[60,81],[4,-15],[87,86],[27,0],[54,59],[17,1],[16,-69],[48,-68],[-27,-53],[-57,-47],[-134,-226],[-8,-70],[17,-47],[41,-22],[105,38],[53,56],[64,-6],[47,16],[9,73],[-17,50],[10,41],[101,73],[41,54],[49,12],[98,126]],[[651,14426],[-68,23],[-65,-47],[45,-42],[12,-30],[51,-22],[55,-51],[27,54],[-57,115]],[[241,14150],[-34,0],[-17,25],[26,24],[25,-49]],[[27145,16896],[-10,-24],[54,-15],[8,-43],[-35,17],[-12,-11],[-21,-101],[-53,19],[-63,-61],[18,-34],[-65,-3],[10,101],[-20,14],[-89,18],[-96,-63],[-27,21],[-41,-112],[-46,-27],[-50,-61],[-68,0],[-118,-40],[-34,-79],[33,-98],[-11,-32],[-44,23],[-111,-89],[-136,-58],[-22,-94],[49,-122],[-40,-143],[23,-19],[-39,-21],[17,-36],[-29,-18],[-18,-95],[-16,-17],[-28,20],[-73,-49],[-4,-79],[-47,-21],[-100,-9],[24,-33],[-20,-28],[1,-22],[-84,-72],[-42,-6],[-30,-29],[2,-57],[-43,-50],[-73,28],[-52,89],[-37,180],[11,109],[-23,99],[2,117],[20,11],[5,27],[-42,-3],[-31,-31],[-129,-171],[-75,-138],[-157,-140],[-58,-130],[-81,-61],[-60,-187],[-10,-71],[28,-211],[-28,-70],[9,-40],[-11,-27],[-51,-49],[18,-44]],[[22859,17540],[22,10]],[[22881,17550],[66,99],[27,76],[38,1],[45,35],[124,-15],[75,61],[25,46],[-26,123],[143,115],[-3,89],[28,31],[68,18],[222,-39],[63,27],[66,80],[47,-34],[31,-46],[72,16],[20,30],[-9,141],[73,74],[16,40],[51,35],[39,8],[42,-17],[57,-114],[47,2],[139,62],[126,-5],[34,45],[-16,86],[95,28],[24,34],[62,-11],[46,13],[16,-14],[60,89],[-28,113],[17,49],[26,10],[44,-53],[122,19],[7,24],[-14,16],[83,229],[155,124],[83,19],[86,-61],[60,-88],[30,-15],[61,113],[73,-40],[46,9],[121,98],[89,-15],[49,15],[142,-44],[55,59],[-2,80],[25,30],[36,16],[105,-29],[25,-22],[46,19],[22,50],[0,61],[53,41],[37,-29],[16,-70],[85,-13],[20,127],[9,11],[82,-1],[25,32],[-14,46],[-33,34],[122,80],[86,17],[0,51],[40,-18]],[[27006,19853],[140,-218]],[[27146,19635],[-72,-71],[-1,-61],[-23,-52],[-43,-43],[-31,-63],[-70,-49],[-33,-125],[-37,-33],[-48,-17],[-112,-164],[-63,-40],[-104,-36],[-30,-45],[-27,-142],[-31,-45],[-130,-75],[-220,-160],[11,-67],[48,-35],[58,2],[118,-32],[132,9],[78,-32],[-2,-59],[17,-47],[-17,-20],[25,-53],[-27,-28],[4,-31],[38,-72],[36,-20],[-5,-45],[20,-46],[-18,-41],[-1,-88],[-25,-118],[74,-57],[49,-63],[65,-37],[5,-45],[-34,-30],[36,-59],[-52,-79],[12,-18],[40,-3],[-20,-28],[16,-23],[36,6],[-8,-21],[35,-51],[16,16],[-12,26],[23,9],[57,-91],[51,58],[38,-53],[49,23],[-13,-56],[59,-49],[-9,-23],[19,-42],[52,-5]],[[4022,18028],[21,-125],[-31,-370],[9,-98],[-20,-120],[33,-87],[4,-102],[28,-88],[-42,-78],[-27,-153],[-53,-29],[-30,-37],[6,-64],[-39,-70],[18,-18],[-41,-14],[-44,-130],[-71,-101],[-36,-3],[5,-28],[-25,-27],[12,-28],[-60,-55],[6,-37],[-13,-32],[72,-121],[-14,-75],[-35,0],[-29,-41],[31,-38],[-31,-18],[8,-51],[35,-13],[-25,-26],[32,-5],[42,-41],[41,13],[26,-18],[3,-68],[29,4],[23,-24],[-39,-64],[18,-20],[52,37],[25,-26],[-30,-35],[1,-22],[28,-22],[-35,-62],[44,-39],[-43,-20],[1,-53]],[[3862,15286],[18,-16]],[[3880,15270],[14,-44],[-2,-144],[42,-74]],[[3934,15008],[5,-13]],[[3939,14995],[-59,-208],[-5,-103],[-29,-35],[-22,-63],[-18,24],[-23,-28],[22,-24],[77,-22],[96,-3],[51,16],[14,-31]],[[4043,14518],[1,-1]],[[889,14662],[12,15],[-23,75],[-35,44],[-13,-55],[-22,-23],[-54,-4],[-19,41],[33,103],[64,-13],[28,26],[-11,49],[28,18],[27,88],[65,68],[4,101],[-43,14],[-7,56],[-47,85],[17,113],[-12,79],[46,86],[-2,83],[18,33],[5,115],[-19,78],[86,42],[-30,68],[28,120],[-85,13],[-26,54],[1,56],[91,75],[14,39],[-45,46],[19,176],[-80,132],[16,31],[-8,148],[22,37],[150,-82],[378,-8],[149,24],[97,49],[98,-25],[141,-10],[124,20],[259,85],[412,166],[-31,181],[6,74],[59,152],[111,134],[63,30],[101,-2],[255,-62],[61,-1],[57,17],[189,166],[51,129],[303,37],[57,-20]],[[19103,10300],[-32,-44],[-2,-80],[-31,-66],[31,-97],[41,-51],[138,-15],[15,-60],[96,-135],[3,-23],[-61,-73],[-1,-78],[-44,-27],[2,-17],[48,-44],[17,-35],[25,-7],[22,-82],[51,-41],[-10,-41],[45,-22],[22,-63],[12,-6],[18,36],[76,-28],[185,6],[32,-96],[37,-11],[112,104],[30,-86],[20,-20],[28,0],[59,8],[51,88]],[[20138,9194],[22,-9],[26,-53],[66,2],[-12,-25],[41,-40],[13,-48],[38,-49],[-10,-17],[34,-33],[4,-26],[62,-23],[18,-28],[27,-78],[-5,-80],[31,-33],[117,-74],[99,13],[121,-84],[28,-47],[18,-74],[-11,-81],[59,-117],[24,-86],[-146,-232],[55,-50],[-29,-74],[96,-104],[-78,-95],[-84,-16],[-34,-37],[-68,-36],[-17,-20],[-15,-76],[-94,-21],[-83,-111],[-22,-132],[-84,-115],[-6,-52],[-35,-29],[-51,-90],[-31,-117],[20,-126],[-23,-44],[11,-19],[-16,-33],[18,-29],[-27,-26],[0,-34],[-22,-11],[-26,-121],[-67,-27],[-61,-89],[-36,-89],[15,-38],[-26,-16],[2,-53],[-25,30],[-17,-32],[-28,-4],[-28,-1],[-13,31],[-91,-12],[1,-37],[-30,-14],[5,-39],[-45,-47],[12,-45],[-50,-19],[16,-19],[-26,-80],[20,-3],[16,21],[16,-22],[19,22],[19,-14],[-10,-22],[-32,8],[7,-40],[-28,-47],[-2,-48],[15,-17],[-8,-24]],[[15766,6288],[-54,81],[-16,64],[-27,24],[-3,94],[60,-37],[24,19],[99,-47],[132,11],[71,-23],[22,-23],[64,-5],[64,-41],[46,47],[14,82],[31,50],[34,39],[64,19],[21,32],[19,91],[23,26],[69,39],[80,-11],[59,60],[160,82],[47,-1],[29,31],[65,-25],[115,-6],[45,41],[59,26],[33,38],[-100,79],[-78,13],[-42,104],[67,73],[-38,55],[107,63],[17,43],[-46,149],[23,62],[-20,98],[-66,46],[-66,-28],[-52,86],[-16,63],[-45,42],[-22,60],[5,49],[-64,-6],[-41,-35],[-28,62],[-70,22],[-38,79],[-74,56],[-35,56],[-37,-20],[-19,-30],[-20,6],[-35,89],[3,74],[-70,-103],[-20,20],[0,41],[-48,38],[-4,-63],[-44,-8],[-33,-42],[-31,-5],[-11,13],[-9,194],[-29,36],[7,67],[-18,49],[-71,-26],[-17,35],[-60,-58],[-23,22],[3,87],[43,63],[188,144],[67,21],[89,83],[39,58],[1,60],[28,87],[41,22],[18,45],[1,75]],[[16422,9430],[18,-51],[7,14],[98,19],[9,16],[-20,14],[4,21],[53,61],[61,38],[70,-4],[24,-59],[122,34],[48,32],[14,83],[84,40],[-26,62],[138,176],[2,36],[-61,110],[87,65],[29,4],[43,78],[34,10],[63,151],[-10,96],[65,30],[25,32],[106,11],[165,44],[193,84],[42,66],[9,174],[75,-18],[115,82],[8,-15],[-39,-42],[-7,-53],[74,-68],[-13,-36],[77,41],[-5,-30],[18,-19],[19,22],[9,56],[-32,90],[41,92],[40,-23],[41,-87],[20,-98],[37,-10],[15,39],[36,0],[21,-31],[130,-73],[103,-34]],[[14985,13072],[-60,16],[-68,-58],[-31,-7],[-18,-66],[-71,-68],[-67,-22],[8,-25],[-149,-75],[-33,-64],[0,-47],[-28,23],[-31,-21]],[[14437,12658],[-31,16],[-44,-58],[-41,-5],[-39,-27],[-28,19],[-16,-17],[-136,-18],[-161,55],[-21,-16],[-36,10],[-69,-20],[-39,22],[-10,-12],[2,50],[-14,22]],[[13754,12679],[-56,90],[22,61],[-51,307],[29,99],[-29,0],[-36,24],[-25,-38],[-26,9],[-82,71],[-15,32],[-81,-16],[-36,-32],[-149,43],[56,33],[2,33],[-58,-14],[-23,62],[-91,14],[-82,105],[-14,-91],[-17,0],[-47,54],[-21,-7],[-24,-40],[-52,31],[-57,-20],[-38,15],[-210,152],[-21,49],[10,82],[-22,38]],[[12510,13825],[157,138],[42,-39],[141,72],[40,-47],[46,-19],[71,36],[72,113],[37,100],[59,41],[56,148],[98,40],[28,87],[101,94],[94,180],[69,79],[48,41],[91,39],[127,-14],[51,-39],[49,13],[94,90],[23,72],[35,39],[42,24],[92,1],[45,16],[51,36],[146,181],[160,97]],[[14675,15444],[7,24],[99,-3],[112,76],[32,-17],[72,-2],[112,17]],[[6401,15582],[-5,-11]],[[5302,13744],[-738,-217],[-78,-54],[-238,34],[-232,-40],[-248,-113]],[[4080,14478],[-37,40]],[[3939,14995],[-2,5]],[[3937,15000],[4,-4],[16,-17],[64,3],[13,-163],[62,13],[16,-17],[22,47],[9,-33],[38,4],[21,-29],[18,-2],[12,56],[-23,53],[22,22],[-11,28],[20,69],[31,20],[12,61],[41,31],[215,2],[42,-34],[-1,-198],[34,-6],[61,49],[32,4],[18,42],[1,137],[27,75],[27,18],[9,43],[-13,125],[-24,59],[77,64],[113,-19],[32,-39],[45,-124],[23,-32],[28,-3],[76,45],[30,68],[-50,51],[-13,81],[115,58],[76,-6],[43,-17],[64,-82],[63,-5],[43,-61],[-2,-67],[42,-33],[51,13],[6,-17],[34,4],[28,-30],[26,20],[89,-5],[61,-75],[71,96],[28,-8],[37,-81],[39,-4],[35,52],[-105,125],[-66,47],[-12,31],[9,41],[21,21],[136,6],[29,15],[10,44],[36,23],[193,-64],[54,3],[16,-3],[18,-9]],[[6234,15822],[44,-25]],[[6406,15596],[-5,-14]],[[3937,15000],[-3,8]],[[3880,15270],[-18,16]],[[4022,18028],[188,-172],[470,-366],[55,-29],[61,-70],[116,-23],[115,-1],[159,-38],[104,-113],[115,42],[53,-3],[113,-80],[129,-3],[60,11],[39,37],[339,-6],[380,36],[145,-6],[320,33]],[[14721,15984],[50,4]],[[14771,15988],[17,-33],[-44,-25],[-5,-32],[65,-36],[-5,-55],[94,-152],[-21,-24],[-146,-4],[-151,-125],[-2,-11],[91,-8],[11,-39]],[[12510,13825],[-116,-81],[-47,29],[-54,-34],[-10,-46],[-57,-53],[-65,-25],[-4,-17],[-80,-22],[-48,21],[-138,-29],[-144,-56],[-27,8],[-189,-60],[-99,14]],[[11432,13474],[-35,31]],[[11541,15374],[20,30]],[[11584,15427],[215,63],[98,126],[99,79],[59,30],[118,-1],[35,87],[87,23],[19,53],[20,23],[34,7],[97,-29],[35,-33],[-3,-40],[63,-35],[107,55],[10,31],[36,17],[125,-13],[71,-52],[129,-217],[68,-46],[12,-81],[36,-28],[-13,-99],[40,-34],[72,19],[24,67],[-76,112],[39,132],[64,75],[-1,45],[-39,53],[-32,8],[-83,-83],[-58,-14],[-78,142],[-7,85],[16,79],[67,129],[43,6],[45,101],[31,12],[39,-9],[51,62],[57,7],[63,43],[153,22],[93,65],[71,4],[69,55],[99,-39],[35,-43],[23,-103],[112,-99],[6,-173],[19,-23],[16,-85],[21,-20],[49,23],[68,64],[30,204],[18,22],[79,22],[27,90],[14,135],[28,66],[44,16],[123,-57],[16,-22],[-18,-24],[-10,-73],[43,-12],[-12,-36],[34,-40],[-49,29],[-19,-4],[-16,-26],[29,-58],[-57,-91],[39,-21],[-22,-31],[76,-37],[5,-20],[-75,-9],[-6,-27],[87,-66],[61,22]],[[27062,20082],[-8,-1],[-44,5],[-86,51],[-52,98],[-105,94],[-36,73],[24,200],[-88,180],[-36,36],[-102,-17],[-47,-32],[-75,-93],[-52,6],[-49,33],[-146,-12],[-100,57],[-26,49],[-42,18],[-83,9],[-15,-26],[-44,-5],[-55,25],[-84,-5],[-56,52],[-22,90],[16,297],[-22,182],[-166,167],[-41,60],[-26,67],[13,214],[-32,62],[-80,64]],[[25295,22080],[16,25],[-32,86],[-1,111],[-88,84],[-78,34],[-28,81],[20,69],[-64,38],[-13,43],[35,-13],[98,154],[67,21],[28,33],[21,-28],[37,-3],[22,-23],[2,-31],[-72,-92],[102,-67],[19,-66],[69,7],[53,64],[80,-96],[40,3],[22,-19],[30,8],[50,-48],[39,23],[20,-34],[38,-13],[36,18],[29,-22],[112,81],[86,-14],[99,92],[55,12],[-2,-43],[30,-79],[97,-88],[34,-87],[130,127],[44,-11],[50,12],[51,44],[35,4],[59,72],[57,8],[55,42],[53,-2],[44,25],[53,-1],[71,86],[128,17],[86,48],[53,-9],[30,15],[47,72],[115,53],[74,-4],[22,49],[-14,40],[31,25],[47,0],[103,-36],[23,54],[122,-43],[93,33],[41,76],[133,57],[52,54],[116,-7],[101,48],[52,46],[26,137],[40,11],[29,80],[100,-23],[255,96],[316,91],[60,37],[118,-27],[67,15],[42,19],[72,81],[1024,378],[443,147],[376,-190],[729,258]],[[32257,24405],[-4,-127],[-66,-2],[-67,-32],[-52,-128],[-23,-19],[6,-43],[-58,-93],[-57,-224],[-213,-236],[-106,-84],[-322,-152],[-125,-44],[-173,-9],[-34,-20],[-37,-55]],[[30926,23137],[-23,-68],[-72,-87],[-115,-30],[-29,12],[-46,-24],[-63,25],[-110,70],[4,40],[53,97],[13,132],[-167,-83],[-303,-99],[-84,-116],[-128,-19],[-114,4],[-65,14],[-55,36],[-45,-19],[-25,-41],[-246,-51],[-13,-29],[-137,-121],[-50,-124],[-101,-25],[-47,-28],[-83,-100],[-60,-6],[-79,-70],[-55,-110],[-102,-76],[-63,-85],[-135,-111],[17,-62],[-122,-97],[-22,-58],[-89,20],[-27,-12],[-64,-78],[-91,-234],[-77,41],[-22,-10],[-32,-84],[-125,-27],[-41,-25],[-23,-59],[18,-132],[-24,-42],[-125,-45],[-4,-32],[20,-53],[-10,-92],[-136,-76],[-12,-40],[14,-38],[-25,-36],[-17,2],[-69,79],[-83,-48],[48,-67],[-13,-42],[10,-17],[-152,-255],[11,-105],[-9,-66],[-47,-163]],[[27058,20092],[4,-10]],[[30926,23137],[81,-82],[96,-342],[74,-195],[-29,-19],[-81,-8],[-22,-54],[-28,12],[-13,-55],[-42,2],[-29,27],[-12,-36],[13,-48],[34,-32],[-18,-55],[-39,21],[-20,-21],[-26,-68],[32,-71],[-28,-12],[-17,-87],[-140,-49],[-38,-42],[-7,-157],[-50,-93],[97,-151],[72,-13],[-1,-42],[47,-55],[-9,-48],[65,-32],[41,39],[38,-24],[63,25],[31,-19],[74,-114],[56,-14],[143,16],[141,-72],[21,32],[-10,41],[104,-2],[126,-63],[27,-44],[90,-78],[53,39],[130,-30],[14,-143],[-86,-26],[-45,-55],[62,-57],[34,-98],[-104,-74],[79,-153],[-4,-31],[-100,-93],[60,-132],[26,51],[-17,49],[79,101],[47,-66],[28,-15],[22,-51]],[[32111,20271],[-94,-164],[-18,-2],[-7,-33],[-54,-31],[-4,-25],[53,-125],[-27,-55],[23,-64],[-51,-59],[39,-55],[-45,-125],[-24,1],[-15,20],[-54,-39],[-65,8],[-49,-21],[-78,-81],[-112,-43],[-4,-44],[-46,-19],[-24,-3],[5,42],[-30,-5],[-2,16],[19,11]],[[31447,19376],[9,44],[-37,23],[-15,53],[30,78],[-12,69],[-39,74],[-4,64],[-74,30],[-1,57],[-56,32],[-87,5],[-16,-19],[-16,3],[-78,67],[-60,16],[-31,-5],[15,-9],[-4,-17],[-26,3],[-1,-27],[-39,2],[-30,25],[-6,-48],[-26,28],[-18,-38],[-18,51],[-76,-25],[-10,-9],[18,-29],[-50,-19],[31,-62],[-57,19],[-19,-39],[-31,-12],[-4,25],[-35,30],[-18,-24],[25,-13],[-6,-22],[-71,-10],[-1,-28],[-40,-15],[1,17],[-52,21],[-4,-28],[22,-40],[-45,-22],[-2,-45],[-19,-24],[-5,55],[-26,-24],[11,-36],[-55,-35],[13,-28],[-20,6],[-20,45],[-16,-1],[-10,-17],[12,-37],[-15,-7],[-13,54],[-47,22],[-35,-14],[-5,19],[-23,1],[-14,-44],[-18,-5],[-31,26],[-16,-40],[-16,44],[-282,6],[-43,102],[-23,16],[-52,-12],[-48,-45],[-28,-7],[-108,25],[-101,-9],[-47,26],[22,58],[6,68],[-56,161],[-6,114],[-27,110],[-65,-52],[-174,-203],[-220,-215],[-213,-316],[-33,-88],[-67,5],[-22,30],[-71,-8],[3,46],[22,18],[11,36],[-305,87],[-29,97],[10,45],[-24,11],[39,13],[90,122],[-30,18],[-5,63],[12,31],[25,12],[-21,142],[-34,25],[43,145],[-86,68],[-33,-27],[-86,3],[27,104],[34,51],[-6,19],[-37,17],[-68,-5],[-64,-59],[-18,-54],[36,-35],[5,-34],[-60,-2],[-25,33],[-12,105],[-21,27],[-51,-18],[-50,-139],[-24,-16],[-107,18],[-90,-4],[-122,-292],[-38,-169],[-54,-108],[-68,-92]],[[27006,19853],[56,89],[10,115]],[[27072,20057],[-14,35]],[[7388,11438],[-85,-24],[-160,37],[-96,-18],[-3,118],[-35,146],[-15,40],[-68,34],[-16,55],[-59,-51],[-90,23],[18,-195],[-99,106],[-32,13],[5,39],[-22,10],[-52,83],[-15,-36],[-28,19],[-16,-16],[3,-25],[-164,13],[-19,-42],[-17,-1],[-3,59],[-22,-13],[-23,14],[-24,-15],[-77,46],[-6,-33],[-65,-37],[-30,-37],[-55,-94],[-20,-85],[-113,18],[7,69],[-49,-16],[-26,-45],[-17,4],[-10,15],[67,122],[-47,-7],[-21,53],[24,36],[15,71],[-122,-56],[-26,3],[-16,36],[-26,-17],[-150,-9],[-57,-93],[-210,-85],[-58,-42],[8,-68],[-22,-50],[-59,4],[-42,84],[5,47],[120,117],[-132,62],[-19,31],[-81,14],[-27,38],[-20,-11],[-33,-65],[-8,-59],[-100,-64],[-36,-61],[-43,-28],[-75,-94],[-42,-30],[-30,-2],[-8,26],[41,60],[42,123],[43,52],[4,142],[-116,159],[-43,89],[-90,89],[-67,36],[-101,-78],[-9,-24],[-160,-68],[-62,21],[-35,88],[-61,23],[-20,31],[-50,-18],[-124,-7],[-102,-47],[-41,-40],[-13,-44],[-39,-10],[-31,-92],[-209,-69],[-328,-57],[-81,-8],[-24,50],[-80,-29],[-63,-82],[-36,82],[-98,8],[-22,13],[-6,29],[-33,-2],[-41,-41],[-93,-6],[-18,3],[-7,23]],[[16994,2513],[-64,-90],[5,-39],[-61,-172],[-72,-143],[-91,-276],[0,-33],[-38,-83],[0,-36],[-22,-21],[4,-49],[-41,-15],[-34,-124],[-38,-48],[-50,15],[-43,-27],[-16,7],[-10,-21],[-9,11],[-17,-11],[-32,-86],[-14,3],[-2,-13],[-20,20],[-2,-27],[-22,7],[-24,26],[6,18],[-64,-7],[-16,-23],[-1,-69],[-28,-103],[-7,-86],[12,-65],[-41,-182],[-31,-27],[-56,1],[-44,-29],[-130,35],[-77,-28],[-20,-53],[2,-87],[-28,-66],[-5,-52],[-28,-41],[8,-23],[-45,-141],[-44,-12],[-23,22],[-14,-5],[-2,-35],[-34,-6],[23,-43],[-44,31],[-26,-44],[-79,11],[-26,-34],[13,-20],[-27,-34],[12,-48],[-33,10],[-49,-53],[-49,57],[-36,2],[-37,61],[-36,-12],[-13,74],[17,43],[-21,32],[-1,47],[-67,47],[-18,38],[-2,178],[22,205]],[[15094,772],[17,-7],[41,24],[38,94],[34,33],[137,236],[36,87],[37,180],[50,111],[21,162],[23,51],[56,520],[-23,57],[14,46],[-8,82],[17,93],[-11,65],[43,129],[16,96],[-13,60],[-61,99],[-3,79],[22,-3],[9,140],[-24,15],[-13,230],[-38,77],[-1,36],[74,192],[64,81],[6,124],[121,128],[-10,79],[26,47],[-21,89],[6,37],[53,101],[48,34],[99,128],[30,66],[14,83]],[[13754,12679],[-51,-13],[-80,-62],[-120,-144],[-54,-6],[-80,31],[-86,-8],[-167,-89],[-57,-12],[-101,44],[-173,-10],[-68,20],[-72,-99],[-177,-74],[-68,1],[-45,-97],[-21,-2],[-14,4],[-4,47],[-17,20],[7,73],[-52,36],[-37,-5],[-98,24],[-72,145],[32,297],[-122,46],[-151,87],[-40,4],[-47,-88],[-50,-2],[-64,-116],[-31,-3],[-34,30],[-106,-130],[-156,-78],[18,-17],[-9,-37],[-36,-26],[-18,-108],[-17,-498],[-35,-44],[-72,-35],[6,-26],[-86,-108],[-44,-26],[-51,-78],[-41,30],[-58,-15],[-20,40],[-203,171],[-1,30],[106,1],[22,103],[21,28],[-55,79],[-18,58],[22,61],[-10,16],[35,47],[-5,114],[-66,31],[-130,-41],[1,-24],[-49,85],[-68,20],[-32,-37],[-26,-167],[-59,-99],[-20,-77],[-77,-42],[-1,-41],[-63,-5],[-40,-21],[7,-112],[-101,-132],[10,-41],[12,-8],[29,15],[139,121],[-25,-67],[-127,-91],[-41,-73],[12,-42],[-58,23],[-52,-30],[-26,-41],[-22,-88],[15,-17],[90,-20],[78,12],[52,47],[48,101],[34,-13],[3,-27],[-40,-72],[-35,1],[-35,-43],[-93,-27],[-71,4],[-26,-35],[-48,8]],[[11432,13475],[0,-1]],[[22585,11923],[-16,-82],[-41,10],[-22,-41],[-52,-43],[14,-37],[-10,6],[-186,-101],[-64,-3],[-96,-77],[-10,-29],[113,-337],[-5,-31],[-17,-10],[6,42],[-54,-41],[-18,3],[8,-23],[-52,-22],[2,-32],[-27,-45],[-47,-1],[-6,-27],[-65,11],[-25,-23],[-21,8],[-41,-39],[-4,-30],[-23,2],[-16,-55],[-24,-5],[-11,-84],[-33,-41],[14,-9],[-7,-27],[-79,-19],[-14,-61],[-16,22],[-50,-42],[-30,25],[-6,-57],[-19,-11],[-58,20],[-43,-127],[-51,4],[3,-27],[-39,-35],[-18,14],[-10,-50],[8,-35],[19,-16],[-34,-113],[-31,10],[-41,-69],[-26,46],[-50,-76],[19,-29],[-113,-176],[-54,-3],[3,-17],[-19,-19],[-21,8],[-1,-39],[-41,15],[-6,-24],[-51,-1],[-47,-24],[27,-46],[-56,26],[-11,-17],[-18,26],[-70,-58],[-36,10],[-28,-60],[-42,-36],[10,-12],[-51,-35],[12,-35],[-16,-50],[-93,-11],[3,-37],[-45,-28],[13,-45],[-12,-11],[-34,8],[-3,-41],[-14,-12],[-46,3],[-6,-59],[-19,-1],[-35,31],[-33,-13],[-92,-107]],[[16422,9430],[-17,47],[-23,21],[-29,1],[-42,-33],[-56,-109],[-25,-17],[-96,-15],[-34,-54],[-84,-28],[-33,44],[-50,4],[-64,90],[0,56],[-25,66],[7,125],[-72,15],[-23,23],[-40,-12],[-88,27],[-37,-19],[-49,38],[-47,85],[-66,182],[-88,121],[-141,44],[-31,-11],[-12,23],[-3,86],[-25,40],[83,69],[-49,69],[-90,-12],[-23,22],[-2,29],[22,20],[-32,17],[-88,-11],[-43,11],[-19,28],[19,33],[-10,7],[-76,-46],[-47,-65],[-62,-10],[-101,-63],[-88,-9],[-52,15],[-81,-57],[-128,-42],[-125,1],[-62,-17],[-16,11],[-7,33],[-20,7],[-102,-132],[-58,-56],[-45,-7],[-40,-33],[-77,-93],[-57,32],[27,43],[-28,82],[6,33],[-31,86],[-35,35],[23,53],[58,39],[7,38],[-3,66],[-49,130],[-5,91],[-23,33],[15,77],[-3,113],[56,59],[13,73],[86,119],[-10,109],[10,24],[124,120],[68,24],[14,42],[38,9],[3,35],[-16,28],[-122,-20],[-16,20],[-3,44],[-58,-14],[-32,-47],[-95,21],[-21,22],[8,113],[-28,80],[50,60],[12,89],[75,49],[59,65],[87,20],[20,41],[248,223],[255,310]],[[15094,772],[-254,-12],[-404,10],[-503,-21],[307,768],[-3,39],[26,29],[-13,30],[18,41],[-18,41],[-31,18],[-9,80],[-37,59],[3,113],[-96,72],[-44,86],[-12,75],[8,53],[50,64],[-34,88],[-1,517],[-23,87],[-28,28],[-14,43],[70,110],[32,97],[-2,73],[-59,94],[-20,66],[5,48],[42,109],[31,31],[28,12],[72,-14],[48,73],[25,230],[-34,107],[7,65],[25,43],[71,42],[0,27],[-47,66],[-16,178],[-42,17],[-60,-13],[-32,24],[8,106],[-66,76],[-4,31],[55,44],[40,59],[-8,66],[-48,55],[2,25],[83,32],[149,-8],[72,53],[51,3],[27,-39],[14,-62],[93,-48],[62,-68],[32,0],[11,31],[26,16],[55,-82],[77,-33],[34,-69],[59,-44],[37,1],[44,54],[33,3],[41,-39],[77,10],[30,59],[77,47],[166,-59],[58,7],[7,40]],[[27062,20082],[10,-25]],[[22881,17550],[-27,-13]],[[22588,17671],[4,36],[88,53],[-52,176],[-27,25],[-142,38],[-22,42],[-8,47],[42,73],[-32,118],[6,70],[-17,68],[-86,73],[-11,34],[-124,68],[-27,44]],[[22180,18636],[41,57],[-1,30],[75,71],[274,157],[29,124],[30,-58],[12,48],[34,-43],[37,23],[20,40],[60,-9],[25,53],[32,-37],[52,26],[48,60],[-56,138],[3,83],[-29,65],[-39,4],[-20,24],[13,38],[-44,38],[16,91],[113,122],[61,19],[153,165],[186,278],[183,175],[125,172],[136,124],[51,71],[58,35],[-4,31],[231,120],[74,63],[33,4],[141,267],[112,88],[59,85],[239,231],[-16,75],[59,40],[38,-1],[68,45],[23,35],[117,11],[17,34],[35,25],[211,107]],[[8832,15485],[1,-25]],[[10337,15919],[33,-15]],[[31447,19376],[-26,9],[-240,-151],[-56,-18],[-19,-37],[-177,-159],[9,-18],[-10,-27],[-61,-61],[-23,4],[-10,-25],[-69,-45],[-57,85],[-39,16],[7,-19],[-15,-17],[-20,13],[-18,-8],[-49,-49],[-34,9],[-21,54],[-46,0],[-256,-282],[-37,-9],[-91,-74],[-52,-21],[-38,-110],[-129,-92],[-119,-29],[-60,-48],[-92,-15],[-92,-86],[-121,-6],[-35,12],[-6,-51],[-35,-1],[-34,42],[-50,24],[-36,81],[-38,19],[-104,-36],[-27,4],[-30,88],[-79,-62],[-107,-34],[-46,-31],[-92,-114],[-101,-220],[-71,-48],[-36,-73],[-62,-53],[0,-63],[-24,-22],[-21,-109],[-91,-41],[49,-41],[-18,-40],[-161,-72],[-23,-26],[-4,-50],[-33,-23],[-16,-37],[-17,-12],[-59,64],[-51,-96],[-139,-95],[-111,-111],[-182,-71],[-101,-5],[-67,-35],[-31,6],[-29,72],[-30,14],[-11,49],[-56,-15],[-26,-52]],[[14769,15988],[57,118],[63,34],[11,69],[20,22],[63,19],[37,106],[-7,35],[-95,93],[0,60],[-20,31],[1,129],[-48,49],[-59,20],[-47,168],[-5,104],[-105,196],[-6,31],[14,31],[-25,28],[9,21],[-25,44],[-4,26],[28,36],[-21,23],[4,44],[35,19],[-34,41],[1,31],[76,170],[-12,19],[7,57],[-17,79],[30,32],[14,101],[83,167]],[[14792,18241],[196,-42],[67,117],[77,-5],[91,75],[22,37],[74,17],[252,22],[269,-50],[175,18],[334,166],[-4,148],[-31,55],[63,41],[47,89],[303,-81],[307,45],[90,-15],[284,-113],[198,-38],[152,-75],[93,-76],[-10,-97],[16,-36],[348,-187],[93,-35],[121,-88],[104,7],[170,41],[128,-57],[95,76],[417,74],[211,68],[246,44],[449,47],[554,-61],[112,-99],[103,27],[15,-30],[202,66],[248,35],[75,-9],[223,75],[170,14],[114,30],[125,155]],[[14771,15988],[-2,0]],[[32257,24405],[57,105],[96,28],[2,73],[117,59],[35,130],[52,8],[44,-13],[101,105],[1214,125],[839,-60],[-68,-103],[-71,-71],[0,-30],[29,-28],[-21,-18],[8,-22],[-16,-26],[-73,-85],[-5,-43],[-74,-15],[-6,-32],[26,-36],[-16,-13],[-25,13],[7,-28],[-47,-35],[-15,-51],[-29,28],[5,-44],[-36,-25],[-30,4],[-17,-67],[-102,-112],[-120,-37],[-34,-26],[-14,-57],[-113,-79],[-86,-126],[-7,-42],[-30,-43],[-113,-122],[23,-120],[-147,-57],[3,-29],[65,-69],[22,-127],[103,-29],[7,-53],[-49,-6],[-28,-26],[-15,-85],[8,-37],[122,-76],[-22,-85],[-56,-24],[-13,-32],[12,-26],[50,-34],[10,-67],[145,-32],[-22,-49],[5,-91],[36,0],[24,-18],[44,-80],[34,9],[33,-16],[57,-85],[62,-10],[43,13],[-4,-200],[-12,-17],[61,-90],[-58,-46],[12,-76],[-28,-107],[-84,-31],[-9,-24],[24,-69],[-61,-48],[-19,-94],[35,-17],[12,-46],[52,-23],[-23,50],[9,28],[61,41],[38,57],[33,0],[8,-116],[23,-53],[-7,-80],[39,34],[62,187],[31,21],[91,23],[92,-11],[18,-10],[-14,-41],[13,-26],[24,-3],[21,-27],[14,44],[19,8],[6,-82],[29,82],[25,-8],[17,-61],[-16,-5],[8,-23],[55,-1],[8,-47],[56,-72],[6,-66],[71,-117],[33,-28],[-43,-47],[-90,-3],[-18,-79],[-131,-94],[12,-16],[66,-2],[-85,-16],[-6,-47],[-28,-2],[16,-17],[-13,-30],[-126,-49],[-121,-67],[-35,-40],[-33,-8],[-22,-26],[11,-11],[-1,-41],[-35,-102],[-22,-8],[-35,2],[-29,24],[-56,0],[-64,84],[-2,94],[-56,-7],[-68,-39],[-154,-40],[-21,71],[-87,-41],[-34,-41],[-247,-60],[-20,-20],[-25,-1],[-60,-59],[-31,10],[-75,-22],[-36,16],[-61,-5],[-263,-133],[-15,19],[-194,-66],[-51,0],[-67,82],[2,33],[-21,26],[-102,22],[-11,32],[-106,74],[-80,-45],[-24,33],[-29,-16],[-2,-48],[-24,-28],[-85,-38]],[[14769,15988],[-48,-4]],[[11134,17457],[126,4],[416,257],[165,159],[121,234],[23,11],[219,14],[314,-185],[33,-67],[142,-126],[174,-47],[158,-23],[85,16],[120,79],[35,-8],[47,50],[7,87],[52,77],[90,-27],[212,19],[179,-11],[331,138],[121,-63],[152,45],[-5,96],[278,74],[63,-19]]],"transform":{"scale":[0.00018036178954576582,0.00015342109890109887],"translate":[89.699725,24.132668999999996]},"objects":{"assam_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12]],"type":"Polygon","properties":{"cartodb_id":37,"censuscode":324,"st_cen_cd":18,"dt_cen_cd":25,"district":"Baksa","st_nm":"Assam"}},{"arcs":[[13,14,15,16,17,18,19]],"type":"Polygon","properties":{"cartodb_id":203,"censuscode":313,"st_cen_cd":18,"dt_cen_cd":14,"district":"Golaghat","st_nm":"Assam"}},{"arcs":[[20,21,22,23,24,25,26,27,28,-1]],"type":"Polygon","properties":{"cartodb_id":270,"censuscode":321,"st_cen_cd":18,"dt_cen_cd":22,"district":"Kamrup","st_nm":"Assam"}},{"arcs":[[29,30,31,32,33,-17]],"type":"Polygon","properties":{"cartodb_id":391,"censuscode":305,"st_cen_cd":18,"dt_cen_cd":6,"district":"Nagaon","st_nm":"Assam"}},{"arcs":[[34,35,-27,36,37,38,-5]],"type":"Polygon","properties":{"cartodb_id":59,"censuscode":303,"st_cen_cd":18,"dt_cen_cd":4,"district":"Barpeta","st_nm":"Assam"}},{"arcs":[[39,40,41,42,43,44]],"type":"Polygon","properties":{"cartodb_id":98,"censuscode":316,"st_cen_cd":18,"dt_cen_cd":17,"district":"Cachar","st_nm":"Assam"}},{"arcs":[[[45,46,47,48,49],[50]],[[51]]],"type":"MultiPolygon","properties":{"cartodb_id":153,"censuscode":301,"st_cen_cd":18,"dt_cen_cd":2,"district":"Dhubri","st_nm":"Assam"}},{"arcs":[[52,-14,53,54,55,56]],"type":"Polygon","properties":{"cartodb_id":263,"censuscode":312,"st_cen_cd":18,"dt_cen_cd":13,"district":"Jorhat","st_nm":"Assam"}},{"arcs":[[57,58,59,60,61,62,-50,63]],"type":"Polygon","properties":{"cartodb_id":310,"censuscode":300,"st_cen_cd":18,"dt_cen_cd":1,"district":"Kokrajhar","st_nm":"Assam"}},{"arcs":[[-31,64,65,-45,66,67]],"type":"Polygon","properties":{"cartodb_id":415,"censuscode":315,"st_cen_cd":18,"dt_cen_cd":16,"district":"Dima Hasao","st_nm":"Assam"}},{"arcs":[[68,69,70,71,72,-33]],"type":"Polygon","properties":{"cartodb_id":368,"censuscode":304,"st_cen_cd":18,"dt_cen_cd":5,"district":"Marigaon","st_nm":"Assam"}},{"arcs":[[73,-38,74,-47,75,-62,76,77]],"type":"Polygon","properties":{"cartodb_id":91,"censuscode":319,"st_cen_cd":18,"dt_cen_cd":20,"district":"Bongaigaon","st_nm":"Assam"}},{"arcs":[[-9,78,-7,79,-78,80,-60,81,-58,82]],"type":"Polygon","properties":{"cartodb_id":116,"censuscode":320,"st_cen_cd":18,"dt_cen_cd":21,"district":"Chirang","st_nm":"Assam"}},{"arcs":[[83,84,-72,85,86,-22,87,-12,88]],"type":"Polygon","properties":{"cartodb_id":135,"censuscode":325,"st_cen_cd":18,"dt_cen_cd":26,"district":"Darrang","st_nm":"Assam"}},{"arcs":[[89,90,91,92,93]],"type":"Polygon","properties":{"cartodb_id":151,"censuscode":308,"st_cen_cd":18,"dt_cen_cd":9,"district":"Dhemaji","st_nm":"Assam"}},{"arcs":[[94,95,96,-56,97,98,-93]],"type":"Polygon","properties":{"cartodb_id":156,"censuscode":310,"st_cen_cd":18,"dt_cen_cd":11,"district":"Dibrugarh","st_nm":"Assam"}},{"arcs":[[-26,99,-48,-75,-37]],"type":"Polygon","properties":{"cartodb_id":201,"censuscode":302,"st_cen_cd":18,"dt_cen_cd":3,"district":"Goalpara","st_nm":"Assam"}},{"arcs":[[100,101,-42]],"type":"Polygon","properties":{"cartodb_id":215,"censuscode":318,"st_cen_cd":18,"dt_cen_cd":19,"district":"Hailakandi","st_nm":"Assam"}},{"arcs":[[102,-24,103,-86,-71]],"type":"Polygon","properties":{"cartodb_id":271,"censuscode":322,"st_cen_cd":18,"dt_cen_cd":23,"district":"Kamrup Metropolitan","st_nm":"Assam"}},{"arcs":[[[104,-65,-30,-16]],[[-68,105,-69,-32]]],"type":"MultiPolygon","properties":{"cartodb_id":283,"censuscode":314,"st_cen_cd":18,"dt_cen_cd":15,"district":"Karbi Anglong","st_nm":"Assam"}},{"arcs":[[-43,-102,106]],"type":"Polygon","properties":{"cartodb_id":285,"censuscode":317,"st_cen_cd":18,"dt_cen_cd":18,"district":"Karimganj","st_nm":"Assam"}},{"arcs":[[107,-98,-55,108,-19,109,110,-90]],"type":"Polygon","properties":{"cartodb_id":333,"censuscode":307,"st_cen_cd":18,"dt_cen_cd":8,"district":"Lakhimpur","st_nm":"Assam"}},{"arcs":[[-36,111,-3,112,-28]],"type":"Polygon","properties":{"cartodb_id":396,"censuscode":323,"st_cen_cd":18,"dt_cen_cd":24,"district":"Nalbari","st_nm":"Assam"}},{"arcs":[[113,-57,-97]],"type":"Polygon","properties":{"cartodb_id":523,"censuscode":311,"st_cen_cd":18,"dt_cen_cd":12,"district":"Sivasagar","st_nm":"Assam"}},{"arcs":[[114,115,-110,-18,-34,-73,-85,116]],"type":"Polygon","properties":{"cartodb_id":542,"censuscode":306,"st_cen_cd":18,"dt_cen_cd":7,"district":"Sonitpur","st_nm":"Assam"}},{"arcs":[[-95,-92,117]],"type":"Polygon","properties":{"cartodb_id":574,"censuscode":309,"st_cen_cd":18,"dt_cen_cd":10,"district":"Tinsukia","st_nm":"Assam"}},{"arcs":[[118,-89,-11,119,-115]],"type":"Polygon","properties":{"cartodb_id":584,"censuscode":326,"st_cen_cd":18,"dt_cen_cd":27,"district":"Udalguri","st_nm":"Assam"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [11551, 15389], + [-18, 10], + [-54, 12], + [-72, 9], + [-84, -7], + [-75, -78], + [-34, -93], + [-60, -67], + [-127, 9], + [-142, 51], + [-40, 66], + [-56, 43], + [-23, 171], + [-99, 13], + [-51, 87], + [-83, 31], + [-43, 213], + [-49, 42], + [-67, 0] + ], + [ + [10374, 15901], + [-37, 18] + ], + [ + [10337, 15919], + [-57, 14], + [-118, -38], + [-12, -14], + [10, -44], + [-49, -65], + [2, -63], + [-44, 7], + [-77, -83], + [-18, 2], + [-48, 71], + [-103, 241], + [-65, 14], + [-26, -26], + [-46, -111], + [-153, -76], + [-34, -89], + [-46, -36], + [-170, -12], + [-127, -58], + [-8, -101], + [-35, -36], + [-75, -36], + [-136, 3], + [-39, 25], + [-30, 52] + ], + [ + [8833, 15460], + [-1, 28] + ], + [ + [8832, 15488], + [21, 18], + [11, 68], + [-23, 65], + [4, 87], + [64, 85], + [25, 99], + [-5, 36], + [-20, 20], + [-45, -9], + [-40, -31], + [-142, -2], + [-34, 51], + [7, 163], + [-22, 50], + [-31, 17], + [-66, 4], + [-23, -38], + [-80, -12], + [-63, -69], + [35, -31], + [-11, -18], + [-23, -13], + [-33, 8], + [-23, 38], + [9, 46], + [-10, 29], + [-49, -13], + [-89, 81], + [-36, 137], + [-3, 107], + [-54, 40], + [-18, 0], + [-27, -32], + [5, -44], + [-36, 5], + [-14, -20], + [1, -20], + [38, -15], + [0, -54], + [-27, -58], + [28, -58], + [-52, -69], + [18, -54], + [-14, -55], + [38, -65], + [6, -52], + [-37, -136], + [-21, -48], + [-42, -16], + [-59, 1], + [-95, -165], + [-100, 57], + [-104, 122], + [-81, 56], + [-13, 35], + [-109, 6], + [-63, -16], + [-118, -88], + [-86, 30], + [-61, 1], + [-28, -23], + [-148, -37], + [-4, 34], + [-38, 21], + [-18, 49], + [-46, 5], + [34, 60], + [-29, 14], + [10, 27], + [-16, 43], + [11, 26], + [-41, 40], + [-39, -6], + [-78, -61], + [-56, -4], + [-34, -41], + [-38, -15], + [13, -84], + [-24, -80], + [13, -44], + [26, -18], + [14, -60], + [-67, -36], + [-12, 0], + [-14, 6], + [-13, 8], + [-18, 8] + ], + [ + [6400, 15581], + [6, 15] + ], + [ + [6406, 15596], + [8, 55], + [-34, -2], + [-105, 46], + [3, 102] + ], + [ + [6278, 15797], + [-44, 25] + ], + [ + [6234, 15822], + [-21, 52], + [59, 47], + [107, -22], + [29, 69], + [-10, 3], + [23, 97], + [76, 13], + [30, 108], + [94, 53], + [37, 45], + [15, 53], + [4, 122], + [-39, 50], + [35, 107], + [-6, 45], + [54, 54], + [36, 83], + [-10, 104], + [52, 89], + [34, 31], + [76, 195], + [46, 13], + [28, 44] + ], + [ + [6983, 17277], + [229, 29], + [251, -60], + [69, 2], + [120, 137], + [75, 118], + [42, 8], + [51, -36], + [132, -38], + [280, 19], + [122, -17], + [192, 1], + [141, -26], + [181, -129], + [228, -36], + [202, 107], + [38, 35], + [125, 219], + [35, 3], + [386, -286], + [81, -13], + [543, 97], + [183, 108], + [165, -41], + [142, -67], + [44, 2], + [55, 44], + [39, 0] + ], + [ + [11134, 17457], + [75, -377], + [86, -155], + [-5, -111], + [41, -89], + [-9, -41], + [27, -60], + [-16, -94], + [-31, -4], + [-12, -68], + [6, -33], + [61, -41], + [-37, -38], + [1, -20], + [51, -7], + [-13, -32], + [-39, 2], + [-12, -13], + [4, -25], + [48, 8], + [3, -11], + [-35, -63], + [-1, -24], + [20, -9], + [-24, -39], + [4, -23], + [53, 18], + [-35, -91], + [25, -27], + [6, -46], + [69, -32], + [62, -140], + [37, -29], + [4, -52], + [23, -22], + [-37, -54], + [40, 3], + [-5, -21], + [-35, -18], + [35, -20], + [-20, -55], + [35, -77] + ], + [ + [11584, 15427], + [-23, -23] + ], + [ + [11561, 15404], + [-10, -15] + ], + [ + [22859, 17540], + [15, -33], + [11, -18], + [23, -19], + [205, 9], + [286, -200], + [75, -25], + [63, 42], + [58, -8], + [56, 13], + [86, 126], + [-7, -98], + [6, -18], + [38, -21], + [-7, -17], + [-57, -28], + [2, -85], + [130, 8], + [18, -28], + [6, -103], + [48, 12], + [70, -8], + [-11, -37], + [49, 0], + [23, -28], + [30, 36], + [10, -43], + [33, 20], + [-4, -35], + [-28, -32], + [30, -3], + [-33, -48], + [11, -55], + [-31, -27], + [39, -83], + [-4, -48], + [34, -17], + [3, -18], + [-23, -16], + [9, -33], + [9, -17], + [25, 26], + [20, -102], + [17, 27], + [18, -17], + [22, 26], + [10, -7], + [-6, -39], + [23, 23], + [10, -20], + [16, 7], + [32, -24], + [15, -15], + [-2, -36], + [52, -29], + [8, -29], + [-3, -81], + [-56, -3], + [10, -40], + [-48, -46], + [32, -36], + [-73, -82], + [5, -42], + [33, -2], + [12, -19], + [-21, -63], + [10, -17], + [46, 7], + [22, 25], + [53, -23], + [-5, -32], + [39, -14], + [48, -85], + [-33, -35], + [30, -46], + [-21, -26], + [-4, -84], + [-29, -46], + [-2, -94], + [-40, -89], + [26, -76], + [2, -58], + [17, -29], + [109, -83], + [22, -58], + [-64, -115], + [-7, -179], + [109, -325], + [165, -7] + ], + [ + [24774, 14445], + [68, 5], + [-25, -65], + [-61, -32], + [-84, -1], + [-15, -24], + [-24, 4], + [2, 40], + [-21, -4], + [-18, -21], + [-90, -30], + [0, -21], + [52, -47], + [-58, -4], + [-57, 25], + [-20, -29], + [-9, -87], + [-69, -75], + [-17, -44], + [-40, -10], + [-18, -24], + [5, -64], + [-40, -100], + [-33, 12], + [-65, -39], + [-21, -37], + [-61, -134], + [13, -39], + [-21, -39], + [-5, -94], + [-127, -110], + [-45, -85], + [-2, -60], + [-27, -38], + [37, -72], + [-6, -35], + [-31, -35], + [-35, 6], + [-14, -23], + [42, -19], + [-11, -56], + [-28, -27], + [60, -22], + [-15, -42], + [-29, -15], + [-18, -109], + [-26, -7], + [-2, -31], + [29, -71], + [-93, -134], + [-10, -47], + [-38, -16], + [-18, -132], + [-43, -97], + [32, -67], + [-26, -149], + [73, -87], + [11, -104], + [64, -122], + [-19, -43], + [-41, -14], + [-15, -40], + [-52, -40], + [-109, -28], + [-31, -62], + [-104, -24], + [-11, -38], + [-66, -70], + [-18, -48], + [-29, 7], + [-27, -80], + [-33, -43], + [-77, 62], + [-94, 50], + [-52, -2], + [-100, -102], + [-30, -135], + [-63, -65], + [-65, -13], + [-25, 12], + [-64, 197], + [23, 24], + [-13, 61], + [24, 49], + [33, 18], + [-24, 61], + [61, 200], + [-12, 55], + [-22, 29], + [5, 55], + [-25, 13], + [26, 25], + [-15, 49], + [-22, 21], + [16, 33], + [-24, 38], + [-67, 50] + ], + [ + [22585, 11923], + [-19, 7], + [19, 22], + [35, 5], + [26, 84], + [36, -43], + [20, 3], + [-2, 27], + [58, -10], + [13, 40], + [-8, 12], + [-27, -30], + [-15, 6], + [-12, 71], + [22, 9], + [10, 31], + [36, -20], + [-30, 54], + [-20, -4], + [-10, -27], + [-24, -3], + [-16, 18], + [12, 34], + [-24, 21], + [-16, -10], + [5, 44], + [47, 0], + [-40, 61], + [25, 18], + [8, 28], + [39, -18], + [-5, 29], + [-29, 19], + [-30, -29], + [-23, 11], + [-6, 42], + [56, 0], + [14, 13], + [-12, 77], + [27, 14], + [-15, 38], + [54, 33], + [-7, 18], + [-27, 4], + [-5, 19], + [16, 21], + [38, -34], + [-10, 93], + [20, 10], + [-23, 26], + [2, 21], + [19, 8], + [29, -43], + [9, 15], + [-32, 96], + [18, 48], + [49, -5], + [10, 20], + [-31, 44], + [52, 43], + [-33, 24], + [7, 34], + [18, 5], + [10, -45], + [13, -4], + [-14, 94], + [30, 32], + [-38, 20], + [28, 1], + [9, 26], + [27, 13], + [-54, 31], + [-13, 20], + [14, 20], + [-25, 35], + [38, 27], + [27, -26], + [1, 27], + [-35, 51], + [29, 26], + [-12, 48], + [35, -17], + [3, 24], + [25, 23], + [-20, 13], + [-24, -20], + [-3, 14], + [18, 33], + [41, 23], + [-4, 22], + [-28, -1], + [4, 10], + [18, 14], + [57, -18], + [53, 124], + [-29, 56], + [-41, -40], + [-11, 18], + [40, 38], + [65, -1], + [-29, 42], + [36, 8], + [-7, 35], + [19, 1], + [25, 38], + [-41, 12], + [34, 65], + [50, -33], + [-6, 29], + [-49, 41], + [16, 45], + [-40, 43], + [18, 9], + [3, 22], + [77, 10], + [-18, 47], + [-40, -4], + [9, 28], + [37, -6], + [18, 13], + [-12, 42], + [45, -43], + [13, 14], + [-14, 30], + [-29, 12], + [3, 17], + [30, 15], + [1, 20], + [-31, -23], + [8, 94], + [-35, -1], + [4, 30], + [22, 0], + [-23, 60], + [17, 7], + [-1, 29], + [-16, 12], + [49, 60], + [-50, 3], + [1, 26], + [24, 13], + [1, 21], + [-21, 3], + [-9, 75], + [-83, -29], + [-10, 33], + [-28, 13], + [-17, 53], + [-33, 2], + [-83, 43], + [-33, 35], + [-25, 2], + [-41, -94], + [-118, -86], + [-26, -81], + [-30, 0], + [-72, 43], + [141, 171], + [-90, 20], + [-15, 61], + [70, 47], + [-9, 34], + [-38, -4], + [-6, 22], + [44, 21], + [-13, 61], + [-21, 24], + [2, 61], + [-50, 29], + [-34, 46], + [1, 19], + [24, -20], + [12, 31], + [-72, 177], + [-43, 3], + [-11, 30], + [11, 20], + [-17, 35], + [20, 47], + [-43, 24], + [-22, -17], + [-25, 61], + [-27, -22], + [-18, 21], + [3, 20], + [29, -2], + [5, 19], + [-29, 41], + [8, 67], + [8, 7], + [5, -13], + [14, 24], + [-10, 46], + [62, 48], + [-8, 33], + [-65, 22], + [-27, 53], + [-57, 13], + [-4, 52], + [-206, 16], + [-37, -37], + [-44, 22], + [-30, -32], + [-23, 25], + [-18, -2], + [-51, -18], + [6, -34], + [-21, -2], + [-32, 26], + [-82, -49], + [16, -26], + [-20, -74], + [-27, -33], + [12, -35], + [-27, 18], + [-22, -9], + [20, 36], + [-12, 33], + [-155, -54], + [-9, 86], + [16, 81], + [25, 22], + [-26, 40], + [-95, 0], + [-14, 23], + [-49, 8], + [-73, -28], + [-72, -59], + [-122, -10], + [-37, 99], + [-38, 21], + [0, -49], + [-77, -4], + [-65, -66], + [4, -21], + [29, -14], + [90, 17], + [1, -17], + [-52, -35], + [-52, -8], + [-58, -85], + [-29, 12], + [47, 100], + [-22, -10], + [-35, -66], + [-18, 6], + [10, 38], + [-58, -28], + [-158, -30], + [-30, -28], + [-57, 28], + [30, 16], + [-28, 12], + [2, 28], + [-51, -18], + [-81, 1], + [-60, 23], + [-265, 6], + [-34, -46], + [-36, 5], + [-39, -22], + [-10, 13], + [23, 24] + ], + [ + [19986, 15941], + [11, 14], + [-55, 36], + [33, 123], + [-78, 195], + [24, 14], + [103, -2], + [29, 22], + [27, 59], + [6, 51], + [-52, 41], + [-8, 36], + [56, 66], + [-15, 14], + [-1, 29], + [-44, 39], + [-9, 44] + ], + [ + [20013, 16722], + [87, 51], + [70, 10], + [65, 156], + [56, 39], + [254, 101], + [66, -36], + [91, -19], + [65, 9], + [96, 72], + [57, 13], + [119, -13], + [93, 22], + [71, -33], + [66, -10], + [62, -77], + [47, -30], + [48, -8], + [-13, -54], + [32, -26], + [465, -123], + [86, 59], + [37, -8], + [-21, 81], + [-39, 76], + [-67, 265], + [4, 75], + [116, 73], + [102, -32], + [37, 15], + [85, 129], + [87, -17], + [101, -92], + [46, 29], + [68, 207], + [36, 45] + ], + [ + [22588, 17671], + [95, -89], + [63, -35], + [108, -10] + ], + [ + [22854, 17537], + [5, 3] + ], + [ + [11551, 15389], + [-10, -15] + ], + [ + [11541, 15374], + [-9, -143], + [-12, -21], + [-59, 0], + [13, -34], + [-6, -34], + [37, -80], + [-6, -77], + [16, -36], + [25, -3], + [-6, -41], + [17, -10], + [0, -44], + [15, -16], + [63, -10], + [25, -105], + [30, -23], + [12, -41], + [29, 13], + [34, -27], + [19, -100], + [-8, -177], + [10, -30], + [-13, -46], + [-29, 5], + [-16, -14], + [-15, -46], + [-49, -13], + [-29, 26], + [-15, -62], + [-43, -28], + [22, -188], + [14, -29], + [-37, -116], + [2, -62], + [-28, -19], + [-48, -2], + [-38, -65], + [-94, -65], + [4, -68], + [29, -38] + ], + [ + [11397, 13505], + [35, -30] + ], + [ + [11432, 13475], + [-81, -37], + [-138, -87], + [-174, -91], + [-73, -93], + [-37, -91], + [-54, -48], + [-90, -17], + [-32, -34], + [-24, -64], + [-79, -46], + [-110, 27], + [-36, 32], + [-23, 72], + [-137, 101], + [-45, 6], + [-66, -32], + [-17, -34], + [-16, -166], + [-27, -62], + [-42, -421], + [-51, -43], + [-67, -2], + [-22, 17], + [-119, 144], + [-52, 4], + [-78, -33], + [-22, -96], + [47, -70], + [10, -84], + [39, -48], + [-2, -23], + [29, -50], + [-28, -159], + [17, -44], + [-35, -113], + [54, -332], + [-23, -213] + ], + [ + [9828, 11245], + [-82, -49], + [-58, -67], + [-111, 82], + [-31, 7], + [-76, -31], + [-21, 8], + [-171, -44], + [-38, -25], + [-37, 7], + [-20, -25], + [-26, 17], + [-23, -6], + [-11, -21], + [-49, 18], + [-6, -45], + [-145, -232], + [-106, -210], + [-43, -49], + [-22, -63], + [-74, 15], + [-38, -9], + [-175, -159], + [-13, 17], + [-31, -14], + [-99, 46], + [-33, -8], + [2, 42], + [-20, 18], + [3, 160], + [-51, 84], + [22, 41], + [4, 81], + [35, 102], + [-16, 32], + [10, 34], + [71, 128], + [-34, 121], + [-97, -106], + [-97, 43], + [-48, 5], + [-83, -52], + [-34, -1], + [-61, -69], + [-218, -13], + [-82, -23], + [-18, -35], + [-74, 55], + [66, 47], + [61, 15], + [31, 93], + [-70, -40], + [-93, 15], + [-39, -61], + [-117, -109], + [-82, -12], + [-29, 9], + [66, 173], + [2, 55], + [48, 27], + [27, 35], + [14, 139] + ], + [ + [7388, 11438], + [64, 220], + [56, 78], + [5, 27], + [-20, 24], + [107, 152], + [37, 44], + [36, 16], + [46, 174], + [48, 29], + [1, 30], + [-41, 68], + [-9, 58], + [-31, 10], + [-27, 44], + [-47, -3], + [-20, 49], + [-60, 4], + [-31, -28], + [-72, 29], + [-55, -32], + [-94, 83], + [-39, 1], + [-136, 55], + [-94, 91], + [-18, 44], + [-43, -6], + [-25, 55], + [-29, -7], + [-25, 36] + ], + [ + [6872, 12783], + [106, 20], + [186, 178], + [74, 34], + [126, -65], + [99, 56], + [33, 2], + [39, 72], + [100, 108], + [95, 51], + [51, -14], + [89, -54], + [80, 32], + [85, 7], + [106, 65], + [87, 28], + [294, 56] + ], + [ + [8522, 13359], + [-23, -34], + [138, -90], + [234, -37], + [63, 21], + [123, 8], + [29, 22], + [41, -17], + [71, 11], + [195, -165], + [33, -16], + [89, -3], + [35, 235], + [-40, 199], + [22, 9], + [14, 35], + [23, 153], + [12, 20], + [33, 7], + [-14, 36], + [-86, 16], + [-13, 46], + [12, 55], + [28, 28], + [111, -34], + [72, 84], + [-8, 199], + [34, 52], + [-44, 12], + [49, 33], + [194, 7], + [30, 26], + [47, -8], + [13, 28], + [54, 7], + [91, 42], + [-12, 18], + [-59, 14], + [-10, 65], + [38, 84], + [54, 60], + [-54, 22], + [-5, 26], + [105, 186], + [-23, 48], + [10, 17], + [56, -14], + [39, 13], + [29, 110], + [-55, 145], + [-18, 116], + [12, 49], + [34, 10], + [2, 13], + [-16, 38], + [3, 77], + [-19, 37], + [2, 152], + [14, 26], + [-20, 3], + [12, 60], + [-20, 14], + [43, 44], + [-4, 28], + [27, 3], + [-15, 23], + [24, 15], + [4, 12], + [5, 31], + [3, 13] + ], + [ + [10370, 15904], + [4, -3] + ], + [ + [19986, 15941], + [-38, -1], + [-52, -46], + [-63, 9], + [-68, -33], + [-59, 4], + [-79, -107], + [8, -17], + [108, 10], + [9, -11], + [-57, -25], + [77, -50], + [7, -27], + [-36, -3], + [2, -15], + [44, 3], + [41, 81], + [16, -9], + [-8, -72], + [-29, -24], + [47, -47], + [62, 3], + [17, -21], + [27, -60], + [-3, -29], + [-25, -9], + [-19, 40], + [-19, 5], + [7, 42], + [-12, 5], + [-62, -28], + [9, -36], + [-46, -5], + [36, 85], + [-134, 12], + [-22, 64], + [-57, 30], + [-21, -9], + [-53, 19], + [-12, -57], + [-37, 6], + [-3, -14], + [36, -27], + [-2, -18], + [-26, 9], + [-11, -12], + [29, -79], + [-45, 16], + [-24, 104], + [-28, 54], + [-25, 10], + [-30, -30], + [-140, -59], + [-16, 17], + [77, 40], + [50, 52], + [88, 28], + [62, 87], + [-75, 63], + [-62, 11], + [-94, -91], + [-78, -39], + [-43, 51], + [-24, -11], + [-35, -41], + [-9, -44], + [-93, -30], + [15, -24], + [-17, -22], + [-73, 12], + [-15, 20], + [9, 25], + [-74, 37], + [-164, -11], + [-93, -41], + [6, -36], + [24, -23], + [-27, -3], + [-62, -85], + [-116, -57], + [-6, -45], + [-31, -23], + [20, -75], + [27, -29], + [30, -2], + [153, 68], + [121, 9], + [-12, 46], + [10, 26], + [24, -52], + [94, 50], + [15, -21], + [-46, -21], + [-25, -38], + [-77, -31], + [-6, -36], + [62, -7], + [6, -45], + [16, 10], + [58, -18], + [9, -22], + [-12, -37], + [50, 22], + [21, -17], + [3, 25], + [23, 20], + [-45, 36], + [33, 12], + [48, 63], + [18, 5], + [9, -31], + [14, 13], + [-17, 79], + [40, 21], + [6, -14], + [-18, -17], + [33, -30], + [16, 9], + [-24, -32], + [9, -25], + [43, 42], + [1, -20], + [-30, -44], + [-109, -34], + [-4, -15], + [60, -9], + [34, -25], + [-18, -27], + [-14, 5], + [-90, -77], + [8, -16], + [25, -4], + [-8, -26], + [26, -10], + [-92, -55], + [-3, 18], + [43, 51], + [-33, 24], + [-150, -82], + [-18, -19], + [44, -13], + [92, 36], + [-108, -91], + [-30, -2], + [-9, 24], + [-19, -48], + [-85, -13], + [-2, 41], + [23, -9], + [3, 31], + [-13, 64], + [-28, 3], + [-11, 19], + [-82, -87], + [-43, -17], + [-34, -4], + [-69, 32], + [-104, -49], + [-34, 20], + [-42, -38], + [-46, -12], + [-66, -65], + [-8, -47], + [-54, 36], + [-154, -63], + [-1, 24], + [-30, -16], + [-9, 37], + [-12, 0], + [-32, -72], + [-8, -9], + [-25, 16], + [-9, -31], + [-36, -33], + [58, 23], + [57, -1], + [19, -29], + [56, 6], + [20, 19], + [31, -12], + [-41, -45], + [-41, -105], + [12, -18], + [52, 6], + [98, -30], + [24, -97], + [-20, -61], + [-116, -88], + [-34, 16], + [-84, -51], + [-32, -41], + [11, -35], + [-12, -35], + [-64, -34], + [-116, 55], + [-37, 34], + [-1, 21], + [-35, 12], + [-29, -51], + [-20, -104], + [-53, -63], + [-40, 1], + [-2, -41], + [-13, 4], + [-4, -16], + [-16, -159], + [5, -29], + [48, -24], + [7, -44], + [-46, -55], + [-48, 6], + [-70, 36], + [-12, -99], + [33, -27], + [117, 26], + [108, -3], + [42, -28], + [182, 46], + [147, -45], + [101, 11], + [24, -16], + [60, 0], + [62, -86], + [16, -93], + [-45, -95], + [-35, -44], + [-41, -11], + [-21, -34], + [27, -45], + [47, -14], + [78, 18], + [57, -67], + [72, -8], + [92, -43], + [22, -36], + [43, -26], + [65, 3], + [4, -26], + [35, -22], + [47, 14], + [-10, -24], + [21, -42], + [-5, -41], + [33, -27], + [26, 8], + [13, -13], + [33, 20], + [27, -45], + [38, -9], + [21, 29], + [53, -39], + [-6, 17], + [22, 19], + [10, -42], + [25, 11], + [-4, -30], + [30, 15], + [58, -12], + [-66, -280], + [128, 16], + [32, -20], + [35, -57], + [63, -35], + [14, -24], + [10, -44], + [71, -107], + [-9, -66], + [19, -36], + [0, -58], + [29, -64], + [34, -15], + [10, -25], + [71, -311], + [110, -124], + [87, -131], + [74, -66], + [47, -106], + [14, -116], + [-9, -28], + [29, -46], + [-5, -171], + [-49, -74], + [-2, -25], + [-34, -14], + [-3, -108], + [-36, -105], + [-28, -40], + [-211, 28], + [-83, -82], + [-138, -26] + ], + [ + [19103, 10300], + [33, 161], + [-18, -2], + [-97, 83], + [7, 73], + [-37, 8], + [-80, 54], + [-9, 22], + [-115, -17], + [-37, -54], + [-57, 24], + [-7, 23], + [15, 27] + ], + [ + [18701, 10702], + [31, 14], + [-1, 32], + [-81, 14], + [-159, 160], + [-100, 154], + [-26, 91], + [-67, 53], + [-71, 137], + [-117, -4], + [-341, -56], + [-53, -3], + [-33, 27], + [-94, -20], + [-26, 81], + [-54, 65], + [-45, 103], + [54, 112], + [-43, 7], + [-77, -63], + [-94, 65], + [-57, -34], + [-29, 4], + [-60, 115], + [20, 35], + [3, 81], + [64, 1], + [-20, 40], + [-35, 18], + [-111, -88], + [-50, 20], + [-30, 59], + [25, 95], + [-7, 53], + [20, 24], + [-43, -1], + [-5, 13], + [93, 43], + [-15, 19], + [-82, -4], + [0, 34], + [120, 35], + [-26, 33], + [-102, 1], + [-8, 11], + [29, 90], + [-29, 42], + [-60, 24], + [40, 79], + [-22, 56], + [-185, -28], + [-36, -89], + [34, -78], + [-17, -24], + [8, -40], + [-19, -21], + [-33, 15], + [-64, -10], + [-66, 52], + [-2, -15], + [-39, 0], + [-35, 23], + [-68, -58], + [17, -85], + [-18, -49], + [-91, -13], + [-26, -49], + [-73, -31], + [-48, -45], + [-40, -17], + [-41, 5], + [-40, -72], + [-67, 1], + [-46, -26], + [-72, 22], + [-44, 39], + [114, 201], + [-18, 37], + [18, 34], + [122, 65], + [4, 26], + [-61, 28], + [-8, 31], + [24, 125], + [58, 94], + [7, 50], + [-33, 50], + [-79, 68], + [1, 103], + [-18, 25], + [-42, 8], + [-66, -12], + [-113, -115], + [-12, 32], + [-58, 8], + [2, 148], + [37, 120], + [-13, 34], + [-29, 14], + [-64, -59], + [-25, 34], + [-38, 17], + [-35, 1], + [-85, -49], + [-10, 26], + [-30, 5], + [-61, -77], + [-33, -3], + [-57, -80], + [-40, -2], + [-27, -73], + [-56, 53], + [-87, -4], + [8, 48], + [41, 53], + [-7, 14], + [-62, 18] + ], + [ + [14985, 13072], + [167, 630], + [32, 53], + [318, 54], + [61, 30], + [90, 138], + [73, 155], + [24, 151], + [81, 95], + [18, 58], + [0, 32], + [-38, 53], + [-116, 75], + [-490, 216], + [-44, 85], + [47, 433], + [-14, 94], + [-85, 115] + ], + [ + [15109, 15539], + [109, 23], + [50, -11], + [36, -104], + [39, -33], + [47, -14], + [108, 47], + [189, 43], + [288, -60], + [303, 106], + [169, 26], + [120, -76], + [136, 144], + [82, 29], + [17, -94], + [67, -40], + [74, -18], + [100, 290], + [158, 15], + [132, 107], + [93, 53], + [53, 14], + [105, -20], + [141, 87], + [81, -11], + [45, 13], + [27, 15], + [91, 113], + [72, 19], + [67, 0], + [138, -34], + [52, -65], + [50, -32], + [181, -27], + [182, 2], + [183, -122], + [44, -8], + [50, 19], + [209, 139], + [64, 71], + [122, 37], + [125, 66], + [72, 125], + [21, 137], + [66, 117], + [35, 11], + [74, -24], + [51, 6], + [81, 30], + [10, 52], + [35, 21], + [60, -1] + ], + [ + [8832, 15488], + [0, -3] + ], + [ + [8832, 15485], + [-25, -54], + [-31, -27], + [-1, -46], + [-40, 17], + [-33, -13], + [-83, -149], + [-71, -76], + [-2, -41], + [-30, -59], + [-1, -103], + [24, -48], + [12, -87], + [-25, -72], + [33, -39], + [-5, -29], + [47, -58], + [1, -37], + [77, 4], + [92, 30], + [6, -17], + [-48, -54], + [36, -46], + [-8, -89], + [-39, -6], + [-14, -24], + [19, -56], + [-39, -80], + [-23, 5], + [-19, -34], + [31, -56], + [-56, -20], + [10, -25], + [45, -31], + [-54, -52], + [-74, -35], + [-58, 23], + [-64, -84], + [18, -48], + [81, 11], + [34, -36], + [-8, -33], + [-65, -67], + [-64, -134], + [23, -32], + [89, -26], + [74, -83], + [-43, -47], + [-9, -73], + [-30, 10] + ], + [ + [6872, 12783], + [-17, 25], + [-108, -56], + [-75, 30], + [-122, 8], + [-52, 17], + [-52, 101], + [-66, 24], + [-49, -37], + [-339, 151], + [-215, 19], + [-91, -16], + [-17, -19], + [-36, 23], + [3, 23], + [-19, 1], + [-16, 53], + [-82, 38], + [-91, 211], + [-48, 175], + [-80, 159], + [2, 31] + ], + [ + [5302, 13744], + [14, 31], + [52, 38], + [71, 30], + [138, -5], + [77, 51], + [39, -40], + [39, 1], + [14, 10], + [-7, 59], + [-66, -1], + [-8, 56], + [9, 46], + [62, 77], + [63, 29], + [45, 57], + [49, 28], + [43, -41], + [51, -21], + [78, -5], + [52, 21], + [24, 48], + [-14, 48], + [-67, 31], + [1, 17], + [82, 98], + [3, 50], + [74, 97], + [29, 6], + [88, -56], + [104, 25], + [12, 89], + [-72, 92], + [-19, 83], + [83, 190], + [-11, 33], + [-70, 59], + [-65, -78], + [-68, 1], + [-117, -37], + [-29, 3], + [-41, 67], + [6, 18], + [46, 20], + [29, -25], + [76, -11], + [60, 69], + [0, 23], + [-39, 53], + [-9, 98], + [-72, 15], + [-5, 102], + [14, -12], + [4, 48], + [15, 3], + [71, -51], + [19, 43], + [56, 33], + [16, 1], + [43, -47], + [25, 12], + [-3, 148] + ], + [ + [6396, 15571], + [4, 10] + ], + [ + [19697, 5468], + [1, -16], + [31, 0], + [26, -41], + [-15, -49], + [10, -49], + [-73, 24], + [27, -81], + [-56, 8], + [-22, -41], + [47, 17], + [-30, -58], + [39, -8], + [17, -73], + [-15, -25], + [-64, 0], + [24, -73], + [-8, -17], + [-32, 8], + [-15, -49], + [-16, 0], + [24, -33], + [-8, -33], + [-24, 0], + [-16, -24], + [16, -24], + [-56, -50], + [-57, -86], + [-64, 0], + [24, -41], + [0, -41], + [-32, 17], + [-8, -17], + [16, -25], + [24, 0], + [-16, -24], + [-32, 0], + [0, -16], + [25, 0], + [-32, -74], + [40, -49], + [-8, -25], + [-24, -32], + [-64, -9], + [-15, -57], + [-16, 8], + [-8, 41], + [-72, -41], + [-47, -49], + [-8, 41], + [-48, 33], + [-32, 65], + [-32, -33], + [-55, 16], + [-9, 17], + [16, 57], + [-63, -49], + [-8, -17], + [16, -49], + [-40, -90], + [8, -32], + [-31, -33], + [24, -58], + [-32, -98], + [8, -33], + [-15, -32], + [16, -17], + [7, 33] + ], + [ + [18865, 3982], + [24, -33], + [-79, -114], + [0, -58], + [-23, -41], + [-56, 33], + [-16, -25], + [96, -147], + [-8, -65], + [8, -9], + [48, 25], + [16, -8], + [0, -25], + [-32, -57], + [-15, -90], + [-56, -8], + [-7, -25], + [25, -130], + [-56, -9], + [0, -32], + [41, -66], + [-55, -49], + [-8, -49], + [24, -24], + [49, -16], + [56, 8], + [46, -51], + [-54, -7], + [-56, -73], + [-88, 32], + [-56, -8], + [64, -90], + [-40, -90], + [-24, 49], + [-47, -65], + [-23, -90], + [24, -41], + [0, -33], + [-64, -33], + [-7, -24], + [23, -33], + [-47, -58], + [71, -139], + [-2, -76], + [-58, -18], + [-6, -112], + [-25, -98], + [39, -74], + [-1, -42], + [-128, -56], + [-39, 19], + [-14, 42], + [-47, -67], + [-98, 54], + [-25, -13], + [-27, -43], + [-58, -34], + [-32, 52], + [-19, 6], + [-59, -24], + [-26, -36], + [-45, 20], + [-24, 46], + [-66, 47], + [-35, -120], + [-60, 6], + [-19, 45], + [-37, 5], + [-57, -38], + [-61, 15], + [-62, -46], + [-41, -81], + [-26, 6], + [-38, -29], + [-16, 7], + [-27, 85], + [35, 65], + [-56, 42], + [-16, 38], + [-39, 6], + [-10, 37], + [-48, -1], + [-4, 15], + [24, 10], + [-8, 28], + [-50, 110], + [-158, 501] + ], + [ + [16994, 2513], + [-31, 2], + [2, 18], + [87, 162], + [-12, 36], + [42, 51], + [-2, 64], + [-90, -18], + [-19, 66], + [-31, 39], + [-75, 5], + [-16, 21], + [-23, -6], + [4, -21], + [-53, -87], + [-36, -27], + [-8, 22], + [-16, -1], + [-55, -28], + [-84, 97], + [-72, 16], + [-38, 64], + [20, 48], + [-20, 72], + [47, -1], + [100, 46], + [-16, 31], + [-69, 50], + [-62, -17], + [-19, 82], + [13, 130], + [-14, 70], + [-36, -1], + [-6, 17], + [-17, 129], + [19, 130], + [-15, 108], + [5, 88], + [57, 168], + [-6, 62], + [18, 83], + [79, 82], + [4, 27], + [-38, 53], + [-96, -9], + [-115, 38], + [-22, 81], + [17, 26], + [-40, 82], + [-2, 33], + [-117, 51], + [-67, 111], + [-89, -32], + [0, -13], + [58, -46], + [-19, -14] + ], + [ + [16020, 4753], + [-61, 42], + [-99, 25], + [-106, -60], + [-85, -28], + [-53, 106], + [-70, -18], + [-26, 12] + ], + [ + [15520, 4832], + [-24, 71], + [5, 138], + [-62, 163], + [30, 41], + [-6, 33], + [-187, -1], + [-19, 32], + [1, 35], + [52, 17], + [27, 48], + [-66, 43], + [-128, 3], + [-44, 32], + [-17, 37], + [2, 76], + [37, 168], + [-9, 78], + [72, 13], + [22, 40], + [26, 14], + [25, -7], + [32, -39], + [36, 14], + [8, 66], + [-10, 19], + [-15, -4], + [-2, 33], + [34, 17], + [48, 89], + [31, 97], + [0, 95], + [23, 50], + [233, -15], + [64, -42], + [27, 2] + ], + [ + [15766, 6288], + [33, 41], + [142, -14], + [119, 30], + [50, 28], + [47, -39], + [52, -16], + [20, 30], + [45, 8], + [22, 39], + [52, 26], + [135, -63], + [82, 41], + [81, -37], + [82, 57], + [51, -35], + [13, 32], + [55, 56], + [-35, 79], + [9, 34], + [73, -50], + [55, 21], + [18, -69], + [42, -71], + [2, -88], + [88, -111], + [106, -7], + [136, -84], + [20, -27], + [2, -53], + [26, -35], + [29, -12], + [96, 66], + [135, 24], + [38, 45], + [67, 37], + [122, 1], + [66, -16], + [57, -44], + [33, 0], + [22, 19], + [7, 84], + [29, 13], + [89, -21], + [56, 56], + [28, 10], + [142, 1], + [15, 29], + [63, 24], + [59, -3], + [31, -26], + [-9, -35], + [-98, -120], + [-37, -10], + [-33, -81], + [126, -162], + [52, -24], + [62, -65], + [16, -48], + [-25, -23], + [-3, -25], + [19, -11], + [5, -28], + [31, 4], + [18, -35], + [548, -4], + [83, -12], + [21, 11], + [0, -41], + [47, 0], + [0, -32], + [48, -33], + [38, 16], + [16, 24], + [46, -17], + [23, 8], + [23, -16], + [-24, -41], + [31, -16], + [23, 16], + [31, -57], + [46, 27] + ], + [ + [4044, 14517], + [36, -39] + ], + [ + [4080, 14478], + [-8, -42], + [24, -30], + [20, 18], + [-18, 84], + [32, 22], + [8, -102], + [13, -3], + [44, 79], + [25, -12], + [-22, -43], + [19, -42], + [-12, -28], + [40, -56], + [46, 18], + [19, -12], + [-36, -32], + [67, -137], + [6, -98], + [-29, -13], + [-60, 6], + [3, -45], + [27, -28], + [-64, 0], + [-7, 43], + [-4, -78], + [93, -7], + [-18, -35], + [-52, -6], + [-54, 47], + [-31, -23], + [-12, -46], + [50, -62], + [-16, -22], + [-48, 34], + [-31, 53], + [-22, -10], + [-3, -24], + [53, -67], + [-4, -17], + [-70, 2], + [-153, -155], + [-21, -1], + [-40, 29], + [-52, -7], + [-11, -16], + [-3, -260] + ], + [ + [3768, 13354], + [-12, -16], + [-219, -40], + [-33, 5], + [-37, 43], + [-61, -6], + [-124, 42], + [-80, -9], + [-20, 11], + [-122, -56], + [-11, -15], + [12, -42], + [-19, -135], + [-30, -55], + [-109, -13], + [-13, -33], + [-38, -10], + [-31, -48], + [-36, -2], + [-29, 20], + [-36, -41], + [-30, -86], + [-53, -79], + [-53, -58], + [-46, -24], + [28, -54], + [71, -53], + [32, -3], + [-49, -143], + [32, -33], + [59, -10], + [29, -55], + [-25, -38], + [-78, -39], + [21, -20], + [-4, -26], + [28, 20], + [-32, -76], + [15, -65], + [-106, -26], + [-146, -123], + [-43, 11], + [-26, -24], + [2, -32] + ], + [ + [2346, 11918], + [-60, -69], + [-14, -57], + [-27, 1], + [-7, -18], + [-62, -20], + [21, -48], + [-61, -28], + [-16, -44], + [-31, 10], + [-50, -24], + [-46, -49], + [-16, -61], + [-56, -52], + [-78, 24], + [-37, -8], + [-92, -94], + [54, -45], + [24, -3], + [17, -38], + [-75, -122], + [-44, 12], + [-16, -29], + [23, -13], + [-60, -44], + [-83, -9], + [-13, -39], + [-31, -12], + [-129, -11], + [5, -55], + [36, -34], + [-7, -123], + [25, -114], + [-120, -143], + [-1, -52], + [-65, -35], + [-146, 32], + [-16, -59], + [10, -51], + [110, -151], + [24, -9], + [14, -54], + [88, -50], + [54, -182], + [186, -138], + [16, -71], + [89, -32], + [11, 17], + [18, -4], + [76, -101], + [-6, -40], + [-34, -25], + [-50, -92], + [-127, 42], + [-36, -105], + [-35, -19], + [-137, -26], + [-32, -32], + [-55, 6], + [-219, -37], + [-49, -59], + [-21, 3], + [-39, -63], + [10, -52], + [-15, -49], + [54, -169], + [-1, -45], + [-88, -103], + [-41, 6], + [-3, 92], + [43, 210], + [-39, 95], + [12, 25], + [65, 42], + [25, 61], + [25, 124], + [-28, 77], + [27, 64], + [22, 154], + [-61, 212], + [-133, 238], + [47, 98], + [0, 61], + [-90, -1], + [-23, 19], + [-35, 76], + [-7, 83], + [69, 86], + [14, 38], + [-69, 284], + [-21, 47], + [-32, 6], + [-14, 28], + [90, 135], + [6, 195], + [23, 66], + [186, 230], + [75, 162], + [-3, 26], + [-41, 16], + [-194, -25], + [-74, 42], + [55, 51], + [40, 8], + [-5, 38], + [-34, 38], + [19, 29], + [81, -20], + [49, 8], + [18, 37], + [-118, 122], + [-37, 66], + [-46, 15], + [0, -136], + [-39, -12], + [-53, 30], + [16, 225], + [-23, 70], + [-23, 26], + [-78, -131], + [-38, -7], + [7, 31], + [62, 92], + [-8, 23], + [-28, -12], + [-11, -29], + [-22, 31], + [-26, 5], + [-50, -22], + [43, 59], + [36, 7], + [-26, 50], + [49, 36], + [23, -1], + [1, 95], + [-29, 46], + [8, 53], + [-43, -36], + [-20, 21], + [8, 131], + [-90, 3], + [-35, 39], + [27, 126], + [-70, 82], + [-23, 54], + [-27, 25], + [-51, 10], + [-36, -14], + [-47, 10], + [-8, 52], + [41, 27], + [10, 28], + [33, -6], + [7, 13], + [-80, 19], + [-73, -31], + [-35, 76], + [-30, 28], + [15, 12], + [59, -27], + [32, 17], + [23, 48], + [-14, 38], + [-22, 4], + [14, 18], + [64, 1], + [35, 40], + [-4, 17], + [-39, 16], + [-117, -27], + [-33, 26], + [72, 13], + [15, 64], + [58, 25], + [30, 35], + [-29, 35], + [-43, 18], + [-2, 66], + [-65, 3], + [-15, 15], + [22, 69], + [37, -2], + [0, -41], + [32, -26], + [44, -6], + [39, 13], + [28, 70], + [-45, 77], + [-67, 66], + [-8, 59], + [12, 24], + [27, 12], + [-16, -59], + [20, -25], + [46, -12], + [59, 15], + [36, -38], + [54, 0], + [3, 21], + [-46, 89], + [-2, 99], + [64, -28], + [105, 90], + [-11, 108], + [17, 38], + [213, 113], + [-49, -83], + [22, -42], + [25, -7], + [18, 31], + [-13, 26], + [33, 49], + [-7, 83], + [30, 17], + [55, -28], + [25, 41], + [53, -12] + ], + [ + [889, 14662], + [46, -44], + [80, -18], + [56, -91], + [-14, -22], + [19, -37], + [-33, -23], + [0, -17], + [59, -21], + [16, -65], + [-53, -85], + [-100, -265], + [-24, -106], + [-82, -10], + [-8, -22], + [23, -81], + [71, -68], + [-50, -73], + [0, -27], + [29, -46], + [23, -10], + [1, -56], + [-59, -54], + [2, -21], + [21, -12], + [51, 29], + [-22, -74], + [15, -73], + [-18, -103], + [23, -46], + [33, -11], + [29, -47], + [164, -18], + [168, 33], + [14, -8], + [168, 49], + [51, -2], + [79, -16], + [118, -70], + [65, -20], + [60, 14], + [66, 52], + [9, 112], + [77, 108], + [227, 143], + [123, 11], + [32, 43], + [-21, 49], + [1, 102], + [-60, 35], + [-27, 45], + [4, 127], + [8, 21], + [32, 8], + [116, 82], + [13, 35], + [-24, 76], + [-85, 8], + [-48, 71], + [-90, 53], + [18, 31], + [56, 29], + [-13, 18], + [-77, 16], + [96, 82], + [178, 90], + [110, -69], + [39, 19], + [55, 0], + [33, 50], + [75, 62], + [-10, 94], + [110, 55], + [-1, -79], + [33, -22], + [8, -52], + [-23, -48], + [-71, -27], + [68, -6], + [-55, -131], + [49, 20], + [58, -57], + [28, 27], + [38, -11], + [27, 56], + [16, -3], + [82, -35], + [13, -38], + [28, -21], + [44, 39], + [12, 33], + [-16, 36], + [28, 14], + [40, -4], + [60, 81], + [4, -15], + [87, 86], + [27, 0], + [54, 59], + [17, 1], + [16, -69], + [48, -68], + [-27, -53], + [-57, -47], + [-134, -226], + [-8, -70], + [17, -47], + [41, -22], + [105, 38], + [53, 56], + [64, -6], + [47, 16], + [9, 73], + [-17, 50], + [10, 41], + [101, 73], + [41, 54], + [49, 12], + [98, 126] + ], + [ + [651, 14426], + [-68, 23], + [-65, -47], + [45, -42], + [12, -30], + [51, -22], + [55, -51], + [27, 54], + [-57, 115] + ], + [ + [241, 14150], + [-34, 0], + [-17, 25], + [26, 24], + [25, -49] + ], + [ + [27145, 16896], + [-10, -24], + [54, -15], + [8, -43], + [-35, 17], + [-12, -11], + [-21, -101], + [-53, 19], + [-63, -61], + [18, -34], + [-65, -3], + [10, 101], + [-20, 14], + [-89, 18], + [-96, -63], + [-27, 21], + [-41, -112], + [-46, -27], + [-50, -61], + [-68, 0], + [-118, -40], + [-34, -79], + [33, -98], + [-11, -32], + [-44, 23], + [-111, -89], + [-136, -58], + [-22, -94], + [49, -122], + [-40, -143], + [23, -19], + [-39, -21], + [17, -36], + [-29, -18], + [-18, -95], + [-16, -17], + [-28, 20], + [-73, -49], + [-4, -79], + [-47, -21], + [-100, -9], + [24, -33], + [-20, -28], + [1, -22], + [-84, -72], + [-42, -6], + [-30, -29], + [2, -57], + [-43, -50], + [-73, 28], + [-52, 89], + [-37, 180], + [11, 109], + [-23, 99], + [2, 117], + [20, 11], + [5, 27], + [-42, -3], + [-31, -31], + [-129, -171], + [-75, -138], + [-157, -140], + [-58, -130], + [-81, -61], + [-60, -187], + [-10, -71], + [28, -211], + [-28, -70], + [9, -40], + [-11, -27], + [-51, -49], + [18, -44] + ], + [ + [22859, 17540], + [22, 10] + ], + [ + [22881, 17550], + [66, 99], + [27, 76], + [38, 1], + [45, 35], + [124, -15], + [75, 61], + [25, 46], + [-26, 123], + [143, 115], + [-3, 89], + [28, 31], + [68, 18], + [222, -39], + [63, 27], + [66, 80], + [47, -34], + [31, -46], + [72, 16], + [20, 30], + [-9, 141], + [73, 74], + [16, 40], + [51, 35], + [39, 8], + [42, -17], + [57, -114], + [47, 2], + [139, 62], + [126, -5], + [34, 45], + [-16, 86], + [95, 28], + [24, 34], + [62, -11], + [46, 13], + [16, -14], + [60, 89], + [-28, 113], + [17, 49], + [26, 10], + [44, -53], + [122, 19], + [7, 24], + [-14, 16], + [83, 229], + [155, 124], + [83, 19], + [86, -61], + [60, -88], + [30, -15], + [61, 113], + [73, -40], + [46, 9], + [121, 98], + [89, -15], + [49, 15], + [142, -44], + [55, 59], + [-2, 80], + [25, 30], + [36, 16], + [105, -29], + [25, -22], + [46, 19], + [22, 50], + [0, 61], + [53, 41], + [37, -29], + [16, -70], + [85, -13], + [20, 127], + [9, 11], + [82, -1], + [25, 32], + [-14, 46], + [-33, 34], + [122, 80], + [86, 17], + [0, 51], + [40, -18] + ], + [ + [27006, 19853], + [140, -218] + ], + [ + [27146, 19635], + [-72, -71], + [-1, -61], + [-23, -52], + [-43, -43], + [-31, -63], + [-70, -49], + [-33, -125], + [-37, -33], + [-48, -17], + [-112, -164], + [-63, -40], + [-104, -36], + [-30, -45], + [-27, -142], + [-31, -45], + [-130, -75], + [-220, -160], + [11, -67], + [48, -35], + [58, 2], + [118, -32], + [132, 9], + [78, -32], + [-2, -59], + [17, -47], + [-17, -20], + [25, -53], + [-27, -28], + [4, -31], + [38, -72], + [36, -20], + [-5, -45], + [20, -46], + [-18, -41], + [-1, -88], + [-25, -118], + [74, -57], + [49, -63], + [65, -37], + [5, -45], + [-34, -30], + [36, -59], + [-52, -79], + [12, -18], + [40, -3], + [-20, -28], + [16, -23], + [36, 6], + [-8, -21], + [35, -51], + [16, 16], + [-12, 26], + [23, 9], + [57, -91], + [51, 58], + [38, -53], + [49, 23], + [-13, -56], + [59, -49], + [-9, -23], + [19, -42], + [52, -5] + ], + [ + [4022, 18028], + [21, -125], + [-31, -370], + [9, -98], + [-20, -120], + [33, -87], + [4, -102], + [28, -88], + [-42, -78], + [-27, -153], + [-53, -29], + [-30, -37], + [6, -64], + [-39, -70], + [18, -18], + [-41, -14], + [-44, -130], + [-71, -101], + [-36, -3], + [5, -28], + [-25, -27], + [12, -28], + [-60, -55], + [6, -37], + [-13, -32], + [72, -121], + [-14, -75], + [-35, 0], + [-29, -41], + [31, -38], + [-31, -18], + [8, -51], + [35, -13], + [-25, -26], + [32, -5], + [42, -41], + [41, 13], + [26, -18], + [3, -68], + [29, 4], + [23, -24], + [-39, -64], + [18, -20], + [52, 37], + [25, -26], + [-30, -35], + [1, -22], + [28, -22], + [-35, -62], + [44, -39], + [-43, -20], + [1, -53] + ], + [ + [3862, 15286], + [18, -16] + ], + [ + [3880, 15270], + [14, -44], + [-2, -144], + [42, -74] + ], + [ + [3934, 15008], + [5, -13] + ], + [ + [3939, 14995], + [-59, -208], + [-5, -103], + [-29, -35], + [-22, -63], + [-18, 24], + [-23, -28], + [22, -24], + [77, -22], + [96, -3], + [51, 16], + [14, -31] + ], + [ + [4043, 14518], + [1, -1] + ], + [ + [889, 14662], + [12, 15], + [-23, 75], + [-35, 44], + [-13, -55], + [-22, -23], + [-54, -4], + [-19, 41], + [33, 103], + [64, -13], + [28, 26], + [-11, 49], + [28, 18], + [27, 88], + [65, 68], + [4, 101], + [-43, 14], + [-7, 56], + [-47, 85], + [17, 113], + [-12, 79], + [46, 86], + [-2, 83], + [18, 33], + [5, 115], + [-19, 78], + [86, 42], + [-30, 68], + [28, 120], + [-85, 13], + [-26, 54], + [1, 56], + [91, 75], + [14, 39], + [-45, 46], + [19, 176], + [-80, 132], + [16, 31], + [-8, 148], + [22, 37], + [150, -82], + [378, -8], + [149, 24], + [97, 49], + [98, -25], + [141, -10], + [124, 20], + [259, 85], + [412, 166], + [-31, 181], + [6, 74], + [59, 152], + [111, 134], + [63, 30], + [101, -2], + [255, -62], + [61, -1], + [57, 17], + [189, 166], + [51, 129], + [303, 37], + [57, -20] + ], + [ + [19103, 10300], + [-32, -44], + [-2, -80], + [-31, -66], + [31, -97], + [41, -51], + [138, -15], + [15, -60], + [96, -135], + [3, -23], + [-61, -73], + [-1, -78], + [-44, -27], + [2, -17], + [48, -44], + [17, -35], + [25, -7], + [22, -82], + [51, -41], + [-10, -41], + [45, -22], + [22, -63], + [12, -6], + [18, 36], + [76, -28], + [185, 6], + [32, -96], + [37, -11], + [112, 104], + [30, -86], + [20, -20], + [28, 0], + [59, 8], + [51, 88] + ], + [ + [20138, 9194], + [22, -9], + [26, -53], + [66, 2], + [-12, -25], + [41, -40], + [13, -48], + [38, -49], + [-10, -17], + [34, -33], + [4, -26], + [62, -23], + [18, -28], + [27, -78], + [-5, -80], + [31, -33], + [117, -74], + [99, 13], + [121, -84], + [28, -47], + [18, -74], + [-11, -81], + [59, -117], + [24, -86], + [-146, -232], + [55, -50], + [-29, -74], + [96, -104], + [-78, -95], + [-84, -16], + [-34, -37], + [-68, -36], + [-17, -20], + [-15, -76], + [-94, -21], + [-83, -111], + [-22, -132], + [-84, -115], + [-6, -52], + [-35, -29], + [-51, -90], + [-31, -117], + [20, -126], + [-23, -44], + [11, -19], + [-16, -33], + [18, -29], + [-27, -26], + [0, -34], + [-22, -11], + [-26, -121], + [-67, -27], + [-61, -89], + [-36, -89], + [15, -38], + [-26, -16], + [2, -53], + [-25, 30], + [-17, -32], + [-28, -4], + [-28, -1], + [-13, 31], + [-91, -12], + [1, -37], + [-30, -14], + [5, -39], + [-45, -47], + [12, -45], + [-50, -19], + [16, -19], + [-26, -80], + [20, -3], + [16, 21], + [16, -22], + [19, 22], + [19, -14], + [-10, -22], + [-32, 8], + [7, -40], + [-28, -47], + [-2, -48], + [15, -17], + [-8, -24] + ], + [ + [15766, 6288], + [-54, 81], + [-16, 64], + [-27, 24], + [-3, 94], + [60, -37], + [24, 19], + [99, -47], + [132, 11], + [71, -23], + [22, -23], + [64, -5], + [64, -41], + [46, 47], + [14, 82], + [31, 50], + [34, 39], + [64, 19], + [21, 32], + [19, 91], + [23, 26], + [69, 39], + [80, -11], + [59, 60], + [160, 82], + [47, -1], + [29, 31], + [65, -25], + [115, -6], + [45, 41], + [59, 26], + [33, 38], + [-100, 79], + [-78, 13], + [-42, 104], + [67, 73], + [-38, 55], + [107, 63], + [17, 43], + [-46, 149], + [23, 62], + [-20, 98], + [-66, 46], + [-66, -28], + [-52, 86], + [-16, 63], + [-45, 42], + [-22, 60], + [5, 49], + [-64, -6], + [-41, -35], + [-28, 62], + [-70, 22], + [-38, 79], + [-74, 56], + [-35, 56], + [-37, -20], + [-19, -30], + [-20, 6], + [-35, 89], + [3, 74], + [-70, -103], + [-20, 20], + [0, 41], + [-48, 38], + [-4, -63], + [-44, -8], + [-33, -42], + [-31, -5], + [-11, 13], + [-9, 194], + [-29, 36], + [7, 67], + [-18, 49], + [-71, -26], + [-17, 35], + [-60, -58], + [-23, 22], + [3, 87], + [43, 63], + [188, 144], + [67, 21], + [89, 83], + [39, 58], + [1, 60], + [28, 87], + [41, 22], + [18, 45], + [1, 75] + ], + [ + [16422, 9430], + [18, -51], + [7, 14], + [98, 19], + [9, 16], + [-20, 14], + [4, 21], + [53, 61], + [61, 38], + [70, -4], + [24, -59], + [122, 34], + [48, 32], + [14, 83], + [84, 40], + [-26, 62], + [138, 176], + [2, 36], + [-61, 110], + [87, 65], + [29, 4], + [43, 78], + [34, 10], + [63, 151], + [-10, 96], + [65, 30], + [25, 32], + [106, 11], + [165, 44], + [193, 84], + [42, 66], + [9, 174], + [75, -18], + [115, 82], + [8, -15], + [-39, -42], + [-7, -53], + [74, -68], + [-13, -36], + [77, 41], + [-5, -30], + [18, -19], + [19, 22], + [9, 56], + [-32, 90], + [41, 92], + [40, -23], + [41, -87], + [20, -98], + [37, -10], + [15, 39], + [36, 0], + [21, -31], + [130, -73], + [103, -34] + ], + [ + [14985, 13072], + [-60, 16], + [-68, -58], + [-31, -7], + [-18, -66], + [-71, -68], + [-67, -22], + [8, -25], + [-149, -75], + [-33, -64], + [0, -47], + [-28, 23], + [-31, -21] + ], + [ + [14437, 12658], + [-31, 16], + [-44, -58], + [-41, -5], + [-39, -27], + [-28, 19], + [-16, -17], + [-136, -18], + [-161, 55], + [-21, -16], + [-36, 10], + [-69, -20], + [-39, 22], + [-10, -12], + [2, 50], + [-14, 22] + ], + [ + [13754, 12679], + [-56, 90], + [22, 61], + [-51, 307], + [29, 99], + [-29, 0], + [-36, 24], + [-25, -38], + [-26, 9], + [-82, 71], + [-15, 32], + [-81, -16], + [-36, -32], + [-149, 43], + [56, 33], + [2, 33], + [-58, -14], + [-23, 62], + [-91, 14], + [-82, 105], + [-14, -91], + [-17, 0], + [-47, 54], + [-21, -7], + [-24, -40], + [-52, 31], + [-57, -20], + [-38, 15], + [-210, 152], + [-21, 49], + [10, 82], + [-22, 38] + ], + [ + [12510, 13825], + [157, 138], + [42, -39], + [141, 72], + [40, -47], + [46, -19], + [71, 36], + [72, 113], + [37, 100], + [59, 41], + [56, 148], + [98, 40], + [28, 87], + [101, 94], + [94, 180], + [69, 79], + [48, 41], + [91, 39], + [127, -14], + [51, -39], + [49, 13], + [94, 90], + [23, 72], + [35, 39], + [42, 24], + [92, 1], + [45, 16], + [51, 36], + [146, 181], + [160, 97] + ], + [ + [14675, 15444], + [7, 24], + [99, -3], + [112, 76], + [32, -17], + [72, -2], + [112, 17] + ], + [ + [6401, 15582], + [-5, -11] + ], + [ + [5302, 13744], + [-738, -217], + [-78, -54], + [-238, 34], + [-232, -40], + [-248, -113] + ], + [ + [4080, 14478], + [-37, 40] + ], + [ + [3939, 14995], + [-2, 5] + ], + [ + [3937, 15000], + [4, -4], + [16, -17], + [64, 3], + [13, -163], + [62, 13], + [16, -17], + [22, 47], + [9, -33], + [38, 4], + [21, -29], + [18, -2], + [12, 56], + [-23, 53], + [22, 22], + [-11, 28], + [20, 69], + [31, 20], + [12, 61], + [41, 31], + [215, 2], + [42, -34], + [-1, -198], + [34, -6], + [61, 49], + [32, 4], + [18, 42], + [1, 137], + [27, 75], + [27, 18], + [9, 43], + [-13, 125], + [-24, 59], + [77, 64], + [113, -19], + [32, -39], + [45, -124], + [23, -32], + [28, -3], + [76, 45], + [30, 68], + [-50, 51], + [-13, 81], + [115, 58], + [76, -6], + [43, -17], + [64, -82], + [63, -5], + [43, -61], + [-2, -67], + [42, -33], + [51, 13], + [6, -17], + [34, 4], + [28, -30], + [26, 20], + [89, -5], + [61, -75], + [71, 96], + [28, -8], + [37, -81], + [39, -4], + [35, 52], + [-105, 125], + [-66, 47], + [-12, 31], + [9, 41], + [21, 21], + [136, 6], + [29, 15], + [10, 44], + [36, 23], + [193, -64], + [54, 3], + [16, -3], + [18, -9] + ], + [ + [6234, 15822], + [44, -25] + ], + [ + [6406, 15596], + [-5, -14] + ], + [ + [3937, 15000], + [-3, 8] + ], + [ + [3880, 15270], + [-18, 16] + ], + [ + [4022, 18028], + [188, -172], + [470, -366], + [55, -29], + [61, -70], + [116, -23], + [115, -1], + [159, -38], + [104, -113], + [115, 42], + [53, -3], + [113, -80], + [129, -3], + [60, 11], + [39, 37], + [339, -6], + [380, 36], + [145, -6], + [320, 33] + ], + [ + [14721, 15984], + [50, 4] + ], + [ + [14771, 15988], + [17, -33], + [-44, -25], + [-5, -32], + [65, -36], + [-5, -55], + [94, -152], + [-21, -24], + [-146, -4], + [-151, -125], + [-2, -11], + [91, -8], + [11, -39] + ], + [ + [12510, 13825], + [-116, -81], + [-47, 29], + [-54, -34], + [-10, -46], + [-57, -53], + [-65, -25], + [-4, -17], + [-80, -22], + [-48, 21], + [-138, -29], + [-144, -56], + [-27, 8], + [-189, -60], + [-99, 14] + ], + [ + [11432, 13474], + [-35, 31] + ], + [ + [11541, 15374], + [20, 30] + ], + [ + [11584, 15427], + [215, 63], + [98, 126], + [99, 79], + [59, 30], + [118, -1], + [35, 87], + [87, 23], + [19, 53], + [20, 23], + [34, 7], + [97, -29], + [35, -33], + [-3, -40], + [63, -35], + [107, 55], + [10, 31], + [36, 17], + [125, -13], + [71, -52], + [129, -217], + [68, -46], + [12, -81], + [36, -28], + [-13, -99], + [40, -34], + [72, 19], + [24, 67], + [-76, 112], + [39, 132], + [64, 75], + [-1, 45], + [-39, 53], + [-32, 8], + [-83, -83], + [-58, -14], + [-78, 142], + [-7, 85], + [16, 79], + [67, 129], + [43, 6], + [45, 101], + [31, 12], + [39, -9], + [51, 62], + [57, 7], + [63, 43], + [153, 22], + [93, 65], + [71, 4], + [69, 55], + [99, -39], + [35, -43], + [23, -103], + [112, -99], + [6, -173], + [19, -23], + [16, -85], + [21, -20], + [49, 23], + [68, 64], + [30, 204], + [18, 22], + [79, 22], + [27, 90], + [14, 135], + [28, 66], + [44, 16], + [123, -57], + [16, -22], + [-18, -24], + [-10, -73], + [43, -12], + [-12, -36], + [34, -40], + [-49, 29], + [-19, -4], + [-16, -26], + [29, -58], + [-57, -91], + [39, -21], + [-22, -31], + [76, -37], + [5, -20], + [-75, -9], + [-6, -27], + [87, -66], + [61, 22] + ], + [ + [27062, 20082], + [-8, -1], + [-44, 5], + [-86, 51], + [-52, 98], + [-105, 94], + [-36, 73], + [24, 200], + [-88, 180], + [-36, 36], + [-102, -17], + [-47, -32], + [-75, -93], + [-52, 6], + [-49, 33], + [-146, -12], + [-100, 57], + [-26, 49], + [-42, 18], + [-83, 9], + [-15, -26], + [-44, -5], + [-55, 25], + [-84, -5], + [-56, 52], + [-22, 90], + [16, 297], + [-22, 182], + [-166, 167], + [-41, 60], + [-26, 67], + [13, 214], + [-32, 62], + [-80, 64] + ], + [ + [25295, 22080], + [16, 25], + [-32, 86], + [-1, 111], + [-88, 84], + [-78, 34], + [-28, 81], + [20, 69], + [-64, 38], + [-13, 43], + [35, -13], + [98, 154], + [67, 21], + [28, 33], + [21, -28], + [37, -3], + [22, -23], + [2, -31], + [-72, -92], + [102, -67], + [19, -66], + [69, 7], + [53, 64], + [80, -96], + [40, 3], + [22, -19], + [30, 8], + [50, -48], + [39, 23], + [20, -34], + [38, -13], + [36, 18], + [29, -22], + [112, 81], + [86, -14], + [99, 92], + [55, 12], + [-2, -43], + [30, -79], + [97, -88], + [34, -87], + [130, 127], + [44, -11], + [50, 12], + [51, 44], + [35, 4], + [59, 72], + [57, 8], + [55, 42], + [53, -2], + [44, 25], + [53, -1], + [71, 86], + [128, 17], + [86, 48], + [53, -9], + [30, 15], + [47, 72], + [115, 53], + [74, -4], + [22, 49], + [-14, 40], + [31, 25], + [47, 0], + [103, -36], + [23, 54], + [122, -43], + [93, 33], + [41, 76], + [133, 57], + [52, 54], + [116, -7], + [101, 48], + [52, 46], + [26, 137], + [40, 11], + [29, 80], + [100, -23], + [255, 96], + [316, 91], + [60, 37], + [118, -27], + [67, 15], + [42, 19], + [72, 81], + [1024, 378], + [443, 147], + [376, -190], + [729, 258] + ], + [ + [32257, 24405], + [-4, -127], + [-66, -2], + [-67, -32], + [-52, -128], + [-23, -19], + [6, -43], + [-58, -93], + [-57, -224], + [-213, -236], + [-106, -84], + [-322, -152], + [-125, -44], + [-173, -9], + [-34, -20], + [-37, -55] + ], + [ + [30926, 23137], + [-23, -68], + [-72, -87], + [-115, -30], + [-29, 12], + [-46, -24], + [-63, 25], + [-110, 70], + [4, 40], + [53, 97], + [13, 132], + [-167, -83], + [-303, -99], + [-84, -116], + [-128, -19], + [-114, 4], + [-65, 14], + [-55, 36], + [-45, -19], + [-25, -41], + [-246, -51], + [-13, -29], + [-137, -121], + [-50, -124], + [-101, -25], + [-47, -28], + [-83, -100], + [-60, -6], + [-79, -70], + [-55, -110], + [-102, -76], + [-63, -85], + [-135, -111], + [17, -62], + [-122, -97], + [-22, -58], + [-89, 20], + [-27, -12], + [-64, -78], + [-91, -234], + [-77, 41], + [-22, -10], + [-32, -84], + [-125, -27], + [-41, -25], + [-23, -59], + [18, -132], + [-24, -42], + [-125, -45], + [-4, -32], + [20, -53], + [-10, -92], + [-136, -76], + [-12, -40], + [14, -38], + [-25, -36], + [-17, 2], + [-69, 79], + [-83, -48], + [48, -67], + [-13, -42], + [10, -17], + [-152, -255], + [11, -105], + [-9, -66], + [-47, -163] + ], + [ + [27058, 20092], + [4, -10] + ], + [ + [30926, 23137], + [81, -82], + [96, -342], + [74, -195], + [-29, -19], + [-81, -8], + [-22, -54], + [-28, 12], + [-13, -55], + [-42, 2], + [-29, 27], + [-12, -36], + [13, -48], + [34, -32], + [-18, -55], + [-39, 21], + [-20, -21], + [-26, -68], + [32, -71], + [-28, -12], + [-17, -87], + [-140, -49], + [-38, -42], + [-7, -157], + [-50, -93], + [97, -151], + [72, -13], + [-1, -42], + [47, -55], + [-9, -48], + [65, -32], + [41, 39], + [38, -24], + [63, 25], + [31, -19], + [74, -114], + [56, -14], + [143, 16], + [141, -72], + [21, 32], + [-10, 41], + [104, -2], + [126, -63], + [27, -44], + [90, -78], + [53, 39], + [130, -30], + [14, -143], + [-86, -26], + [-45, -55], + [62, -57], + [34, -98], + [-104, -74], + [79, -153], + [-4, -31], + [-100, -93], + [60, -132], + [26, 51], + [-17, 49], + [79, 101], + [47, -66], + [28, -15], + [22, -51] + ], + [ + [32111, 20271], + [-94, -164], + [-18, -2], + [-7, -33], + [-54, -31], + [-4, -25], + [53, -125], + [-27, -55], + [23, -64], + [-51, -59], + [39, -55], + [-45, -125], + [-24, 1], + [-15, 20], + [-54, -39], + [-65, 8], + [-49, -21], + [-78, -81], + [-112, -43], + [-4, -44], + [-46, -19], + [-24, -3], + [5, 42], + [-30, -5], + [-2, 16], + [19, 11] + ], + [ + [31447, 19376], + [9, 44], + [-37, 23], + [-15, 53], + [30, 78], + [-12, 69], + [-39, 74], + [-4, 64], + [-74, 30], + [-1, 57], + [-56, 32], + [-87, 5], + [-16, -19], + [-16, 3], + [-78, 67], + [-60, 16], + [-31, -5], + [15, -9], + [-4, -17], + [-26, 3], + [-1, -27], + [-39, 2], + [-30, 25], + [-6, -48], + [-26, 28], + [-18, -38], + [-18, 51], + [-76, -25], + [-10, -9], + [18, -29], + [-50, -19], + [31, -62], + [-57, 19], + [-19, -39], + [-31, -12], + [-4, 25], + [-35, 30], + [-18, -24], + [25, -13], + [-6, -22], + [-71, -10], + [-1, -28], + [-40, -15], + [1, 17], + [-52, 21], + [-4, -28], + [22, -40], + [-45, -22], + [-2, -45], + [-19, -24], + [-5, 55], + [-26, -24], + [11, -36], + [-55, -35], + [13, -28], + [-20, 6], + [-20, 45], + [-16, -1], + [-10, -17], + [12, -37], + [-15, -7], + [-13, 54], + [-47, 22], + [-35, -14], + [-5, 19], + [-23, 1], + [-14, -44], + [-18, -5], + [-31, 26], + [-16, -40], + [-16, 44], + [-282, 6], + [-43, 102], + [-23, 16], + [-52, -12], + [-48, -45], + [-28, -7], + [-108, 25], + [-101, -9], + [-47, 26], + [22, 58], + [6, 68], + [-56, 161], + [-6, 114], + [-27, 110], + [-65, -52], + [-174, -203], + [-220, -215], + [-213, -316], + [-33, -88], + [-67, 5], + [-22, 30], + [-71, -8], + [3, 46], + [22, 18], + [11, 36], + [-305, 87], + [-29, 97], + [10, 45], + [-24, 11], + [39, 13], + [90, 122], + [-30, 18], + [-5, 63], + [12, 31], + [25, 12], + [-21, 142], + [-34, 25], + [43, 145], + [-86, 68], + [-33, -27], + [-86, 3], + [27, 104], + [34, 51], + [-6, 19], + [-37, 17], + [-68, -5], + [-64, -59], + [-18, -54], + [36, -35], + [5, -34], + [-60, -2], + [-25, 33], + [-12, 105], + [-21, 27], + [-51, -18], + [-50, -139], + [-24, -16], + [-107, 18], + [-90, -4], + [-122, -292], + [-38, -169], + [-54, -108], + [-68, -92] + ], + [ + [27006, 19853], + [56, 89], + [10, 115] + ], + [ + [27072, 20057], + [-14, 35] + ], + [ + [7388, 11438], + [-85, -24], + [-160, 37], + [-96, -18], + [-3, 118], + [-35, 146], + [-15, 40], + [-68, 34], + [-16, 55], + [-59, -51], + [-90, 23], + [18, -195], + [-99, 106], + [-32, 13], + [5, 39], + [-22, 10], + [-52, 83], + [-15, -36], + [-28, 19], + [-16, -16], + [3, -25], + [-164, 13], + [-19, -42], + [-17, -1], + [-3, 59], + [-22, -13], + [-23, 14], + [-24, -15], + [-77, 46], + [-6, -33], + [-65, -37], + [-30, -37], + [-55, -94], + [-20, -85], + [-113, 18], + [7, 69], + [-49, -16], + [-26, -45], + [-17, 4], + [-10, 15], + [67, 122], + [-47, -7], + [-21, 53], + [24, 36], + [15, 71], + [-122, -56], + [-26, 3], + [-16, 36], + [-26, -17], + [-150, -9], + [-57, -93], + [-210, -85], + [-58, -42], + [8, -68], + [-22, -50], + [-59, 4], + [-42, 84], + [5, 47], + [120, 117], + [-132, 62], + [-19, 31], + [-81, 14], + [-27, 38], + [-20, -11], + [-33, -65], + [-8, -59], + [-100, -64], + [-36, -61], + [-43, -28], + [-75, -94], + [-42, -30], + [-30, -2], + [-8, 26], + [41, 60], + [42, 123], + [43, 52], + [4, 142], + [-116, 159], + [-43, 89], + [-90, 89], + [-67, 36], + [-101, -78], + [-9, -24], + [-160, -68], + [-62, 21], + [-35, 88], + [-61, 23], + [-20, 31], + [-50, -18], + [-124, -7], + [-102, -47], + [-41, -40], + [-13, -44], + [-39, -10], + [-31, -92], + [-209, -69], + [-328, -57], + [-81, -8], + [-24, 50], + [-80, -29], + [-63, -82], + [-36, 82], + [-98, 8], + [-22, 13], + [-6, 29], + [-33, -2], + [-41, -41], + [-93, -6], + [-18, 3], + [-7, 23] + ], + [ + [16994, 2513], + [-64, -90], + [5, -39], + [-61, -172], + [-72, -143], + [-91, -276], + [0, -33], + [-38, -83], + [0, -36], + [-22, -21], + [4, -49], + [-41, -15], + [-34, -124], + [-38, -48], + [-50, 15], + [-43, -27], + [-16, 7], + [-10, -21], + [-9, 11], + [-17, -11], + [-32, -86], + [-14, 3], + [-2, -13], + [-20, 20], + [-2, -27], + [-22, 7], + [-24, 26], + [6, 18], + [-64, -7], + [-16, -23], + [-1, -69], + [-28, -103], + [-7, -86], + [12, -65], + [-41, -182], + [-31, -27], + [-56, 1], + [-44, -29], + [-130, 35], + [-77, -28], + [-20, -53], + [2, -87], + [-28, -66], + [-5, -52], + [-28, -41], + [8, -23], + [-45, -141], + [-44, -12], + [-23, 22], + [-14, -5], + [-2, -35], + [-34, -6], + [23, -43], + [-44, 31], + [-26, -44], + [-79, 11], + [-26, -34], + [13, -20], + [-27, -34], + [12, -48], + [-33, 10], + [-49, -53], + [-49, 57], + [-36, 2], + [-37, 61], + [-36, -12], + [-13, 74], + [17, 43], + [-21, 32], + [-1, 47], + [-67, 47], + [-18, 38], + [-2, 178], + [22, 205] + ], + [ + [15094, 772], + [17, -7], + [41, 24], + [38, 94], + [34, 33], + [137, 236], + [36, 87], + [37, 180], + [50, 111], + [21, 162], + [23, 51], + [56, 520], + [-23, 57], + [14, 46], + [-8, 82], + [17, 93], + [-11, 65], + [43, 129], + [16, 96], + [-13, 60], + [-61, 99], + [-3, 79], + [22, -3], + [9, 140], + [-24, 15], + [-13, 230], + [-38, 77], + [-1, 36], + [74, 192], + [64, 81], + [6, 124], + [121, 128], + [-10, 79], + [26, 47], + [-21, 89], + [6, 37], + [53, 101], + [48, 34], + [99, 128], + [30, 66], + [14, 83] + ], + [ + [13754, 12679], + [-51, -13], + [-80, -62], + [-120, -144], + [-54, -6], + [-80, 31], + [-86, -8], + [-167, -89], + [-57, -12], + [-101, 44], + [-173, -10], + [-68, 20], + [-72, -99], + [-177, -74], + [-68, 1], + [-45, -97], + [-21, -2], + [-14, 4], + [-4, 47], + [-17, 20], + [7, 73], + [-52, 36], + [-37, -5], + [-98, 24], + [-72, 145], + [32, 297], + [-122, 46], + [-151, 87], + [-40, 4], + [-47, -88], + [-50, -2], + [-64, -116], + [-31, -3], + [-34, 30], + [-106, -130], + [-156, -78], + [18, -17], + [-9, -37], + [-36, -26], + [-18, -108], + [-17, -498], + [-35, -44], + [-72, -35], + [6, -26], + [-86, -108], + [-44, -26], + [-51, -78], + [-41, 30], + [-58, -15], + [-20, 40], + [-203, 171], + [-1, 30], + [106, 1], + [22, 103], + [21, 28], + [-55, 79], + [-18, 58], + [22, 61], + [-10, 16], + [35, 47], + [-5, 114], + [-66, 31], + [-130, -41], + [1, -24], + [-49, 85], + [-68, 20], + [-32, -37], + [-26, -167], + [-59, -99], + [-20, -77], + [-77, -42], + [-1, -41], + [-63, -5], + [-40, -21], + [7, -112], + [-101, -132], + [10, -41], + [12, -8], + [29, 15], + [139, 121], + [-25, -67], + [-127, -91], + [-41, -73], + [12, -42], + [-58, 23], + [-52, -30], + [-26, -41], + [-22, -88], + [15, -17], + [90, -20], + [78, 12], + [52, 47], + [48, 101], + [34, -13], + [3, -27], + [-40, -72], + [-35, 1], + [-35, -43], + [-93, -27], + [-71, 4], + [-26, -35], + [-48, 8] + ], + [ + [11432, 13475], + [0, -1] + ], + [ + [22585, 11923], + [-16, -82], + [-41, 10], + [-22, -41], + [-52, -43], + [14, -37], + [-10, 6], + [-186, -101], + [-64, -3], + [-96, -77], + [-10, -29], + [113, -337], + [-5, -31], + [-17, -10], + [6, 42], + [-54, -41], + [-18, 3], + [8, -23], + [-52, -22], + [2, -32], + [-27, -45], + [-47, -1], + [-6, -27], + [-65, 11], + [-25, -23], + [-21, 8], + [-41, -39], + [-4, -30], + [-23, 2], + [-16, -55], + [-24, -5], + [-11, -84], + [-33, -41], + [14, -9], + [-7, -27], + [-79, -19], + [-14, -61], + [-16, 22], + [-50, -42], + [-30, 25], + [-6, -57], + [-19, -11], + [-58, 20], + [-43, -127], + [-51, 4], + [3, -27], + [-39, -35], + [-18, 14], + [-10, -50], + [8, -35], + [19, -16], + [-34, -113], + [-31, 10], + [-41, -69], + [-26, 46], + [-50, -76], + [19, -29], + [-113, -176], + [-54, -3], + [3, -17], + [-19, -19], + [-21, 8], + [-1, -39], + [-41, 15], + [-6, -24], + [-51, -1], + [-47, -24], + [27, -46], + [-56, 26], + [-11, -17], + [-18, 26], + [-70, -58], + [-36, 10], + [-28, -60], + [-42, -36], + [10, -12], + [-51, -35], + [12, -35], + [-16, -50], + [-93, -11], + [3, -37], + [-45, -28], + [13, -45], + [-12, -11], + [-34, 8], + [-3, -41], + [-14, -12], + [-46, 3], + [-6, -59], + [-19, -1], + [-35, 31], + [-33, -13], + [-92, -107] + ], + [ + [16422, 9430], + [-17, 47], + [-23, 21], + [-29, 1], + [-42, -33], + [-56, -109], + [-25, -17], + [-96, -15], + [-34, -54], + [-84, -28], + [-33, 44], + [-50, 4], + [-64, 90], + [0, 56], + [-25, 66], + [7, 125], + [-72, 15], + [-23, 23], + [-40, -12], + [-88, 27], + [-37, -19], + [-49, 38], + [-47, 85], + [-66, 182], + [-88, 121], + [-141, 44], + [-31, -11], + [-12, 23], + [-3, 86], + [-25, 40], + [83, 69], + [-49, 69], + [-90, -12], + [-23, 22], + [-2, 29], + [22, 20], + [-32, 17], + [-88, -11], + [-43, 11], + [-19, 28], + [19, 33], + [-10, 7], + [-76, -46], + [-47, -65], + [-62, -10], + [-101, -63], + [-88, -9], + [-52, 15], + [-81, -57], + [-128, -42], + [-125, 1], + [-62, -17], + [-16, 11], + [-7, 33], + [-20, 7], + [-102, -132], + [-58, -56], + [-45, -7], + [-40, -33], + [-77, -93], + [-57, 32], + [27, 43], + [-28, 82], + [6, 33], + [-31, 86], + [-35, 35], + [23, 53], + [58, 39], + [7, 38], + [-3, 66], + [-49, 130], + [-5, 91], + [-23, 33], + [15, 77], + [-3, 113], + [56, 59], + [13, 73], + [86, 119], + [-10, 109], + [10, 24], + [124, 120], + [68, 24], + [14, 42], + [38, 9], + [3, 35], + [-16, 28], + [-122, -20], + [-16, 20], + [-3, 44], + [-58, -14], + [-32, -47], + [-95, 21], + [-21, 22], + [8, 113], + [-28, 80], + [50, 60], + [12, 89], + [75, 49], + [59, 65], + [87, 20], + [20, 41], + [248, 223], + [255, 310] + ], + [ + [15094, 772], + [-254, -12], + [-404, 10], + [-503, -21], + [307, 768], + [-3, 39], + [26, 29], + [-13, 30], + [18, 41], + [-18, 41], + [-31, 18], + [-9, 80], + [-37, 59], + [3, 113], + [-96, 72], + [-44, 86], + [-12, 75], + [8, 53], + [50, 64], + [-34, 88], + [-1, 517], + [-23, 87], + [-28, 28], + [-14, 43], + [70, 110], + [32, 97], + [-2, 73], + [-59, 94], + [-20, 66], + [5, 48], + [42, 109], + [31, 31], + [28, 12], + [72, -14], + [48, 73], + [25, 230], + [-34, 107], + [7, 65], + [25, 43], + [71, 42], + [0, 27], + [-47, 66], + [-16, 178], + [-42, 17], + [-60, -13], + [-32, 24], + [8, 106], + [-66, 76], + [-4, 31], + [55, 44], + [40, 59], + [-8, 66], + [-48, 55], + [2, 25], + [83, 32], + [149, -8], + [72, 53], + [51, 3], + [27, -39], + [14, -62], + [93, -48], + [62, -68], + [32, 0], + [11, 31], + [26, 16], + [55, -82], + [77, -33], + [34, -69], + [59, -44], + [37, 1], + [44, 54], + [33, 3], + [41, -39], + [77, 10], + [30, 59], + [77, 47], + [166, -59], + [58, 7], + [7, 40] + ], + [ + [27062, 20082], + [10, -25] + ], + [ + [22881, 17550], + [-27, -13] + ], + [ + [22588, 17671], + [4, 36], + [88, 53], + [-52, 176], + [-27, 25], + [-142, 38], + [-22, 42], + [-8, 47], + [42, 73], + [-32, 118], + [6, 70], + [-17, 68], + [-86, 73], + [-11, 34], + [-124, 68], + [-27, 44] + ], + [ + [22180, 18636], + [41, 57], + [-1, 30], + [75, 71], + [274, 157], + [29, 124], + [30, -58], + [12, 48], + [34, -43], + [37, 23], + [20, 40], + [60, -9], + [25, 53], + [32, -37], + [52, 26], + [48, 60], + [-56, 138], + [3, 83], + [-29, 65], + [-39, 4], + [-20, 24], + [13, 38], + [-44, 38], + [16, 91], + [113, 122], + [61, 19], + [153, 165], + [186, 278], + [183, 175], + [125, 172], + [136, 124], + [51, 71], + [58, 35], + [-4, 31], + [231, 120], + [74, 63], + [33, 4], + [141, 267], + [112, 88], + [59, 85], + [239, 231], + [-16, 75], + [59, 40], + [38, -1], + [68, 45], + [23, 35], + [117, 11], + [17, 34], + [35, 25], + [211, 107] + ], + [ + [8832, 15485], + [1, -25] + ], + [ + [10337, 15919], + [33, -15] + ], + [ + [31447, 19376], + [-26, 9], + [-240, -151], + [-56, -18], + [-19, -37], + [-177, -159], + [9, -18], + [-10, -27], + [-61, -61], + [-23, 4], + [-10, -25], + [-69, -45], + [-57, 85], + [-39, 16], + [7, -19], + [-15, -17], + [-20, 13], + [-18, -8], + [-49, -49], + [-34, 9], + [-21, 54], + [-46, 0], + [-256, -282], + [-37, -9], + [-91, -74], + [-52, -21], + [-38, -110], + [-129, -92], + [-119, -29], + [-60, -48], + [-92, -15], + [-92, -86], + [-121, -6], + [-35, 12], + [-6, -51], + [-35, -1], + [-34, 42], + [-50, 24], + [-36, 81], + [-38, 19], + [-104, -36], + [-27, 4], + [-30, 88], + [-79, -62], + [-107, -34], + [-46, -31], + [-92, -114], + [-101, -220], + [-71, -48], + [-36, -73], + [-62, -53], + [0, -63], + [-24, -22], + [-21, -109], + [-91, -41], + [49, -41], + [-18, -40], + [-161, -72], + [-23, -26], + [-4, -50], + [-33, -23], + [-16, -37], + [-17, -12], + [-59, 64], + [-51, -96], + [-139, -95], + [-111, -111], + [-182, -71], + [-101, -5], + [-67, -35], + [-31, 6], + [-29, 72], + [-30, 14], + [-11, 49], + [-56, -15], + [-26, -52] + ], + [ + [14769, 15988], + [57, 118], + [63, 34], + [11, 69], + [20, 22], + [63, 19], + [37, 106], + [-7, 35], + [-95, 93], + [0, 60], + [-20, 31], + [1, 129], + [-48, 49], + [-59, 20], + [-47, 168], + [-5, 104], + [-105, 196], + [-6, 31], + [14, 31], + [-25, 28], + [9, 21], + [-25, 44], + [-4, 26], + [28, 36], + [-21, 23], + [4, 44], + [35, 19], + [-34, 41], + [1, 31], + [76, 170], + [-12, 19], + [7, 57], + [-17, 79], + [30, 32], + [14, 101], + [83, 167] + ], + [ + [14792, 18241], + [196, -42], + [67, 117], + [77, -5], + [91, 75], + [22, 37], + [74, 17], + [252, 22], + [269, -50], + [175, 18], + [334, 166], + [-4, 148], + [-31, 55], + [63, 41], + [47, 89], + [303, -81], + [307, 45], + [90, -15], + [284, -113], + [198, -38], + [152, -75], + [93, -76], + [-10, -97], + [16, -36], + [348, -187], + [93, -35], + [121, -88], + [104, 7], + [170, 41], + [128, -57], + [95, 76], + [417, 74], + [211, 68], + [246, 44], + [449, 47], + [554, -61], + [112, -99], + [103, 27], + [15, -30], + [202, 66], + [248, 35], + [75, -9], + [223, 75], + [170, 14], + [114, 30], + [125, 155] + ], + [ + [14771, 15988], + [-2, 0] + ], + [ + [32257, 24405], + [57, 105], + [96, 28], + [2, 73], + [117, 59], + [35, 130], + [52, 8], + [44, -13], + [101, 105], + [1214, 125], + [839, -60], + [-68, -103], + [-71, -71], + [0, -30], + [29, -28], + [-21, -18], + [8, -22], + [-16, -26], + [-73, -85], + [-5, -43], + [-74, -15], + [-6, -32], + [26, -36], + [-16, -13], + [-25, 13], + [7, -28], + [-47, -35], + [-15, -51], + [-29, 28], + [5, -44], + [-36, -25], + [-30, 4], + [-17, -67], + [-102, -112], + [-120, -37], + [-34, -26], + [-14, -57], + [-113, -79], + [-86, -126], + [-7, -42], + [-30, -43], + [-113, -122], + [23, -120], + [-147, -57], + [3, -29], + [65, -69], + [22, -127], + [103, -29], + [7, -53], + [-49, -6], + [-28, -26], + [-15, -85], + [8, -37], + [122, -76], + [-22, -85], + [-56, -24], + [-13, -32], + [12, -26], + [50, -34], + [10, -67], + [145, -32], + [-22, -49], + [5, -91], + [36, 0], + [24, -18], + [44, -80], + [34, 9], + [33, -16], + [57, -85], + [62, -10], + [43, 13], + [-4, -200], + [-12, -17], + [61, -90], + [-58, -46], + [12, -76], + [-28, -107], + [-84, -31], + [-9, -24], + [24, -69], + [-61, -48], + [-19, -94], + [35, -17], + [12, -46], + [52, -23], + [-23, 50], + [9, 28], + [61, 41], + [38, 57], + [33, 0], + [8, -116], + [23, -53], + [-7, -80], + [39, 34], + [62, 187], + [31, 21], + [91, 23], + [92, -11], + [18, -10], + [-14, -41], + [13, -26], + [24, -3], + [21, -27], + [14, 44], + [19, 8], + [6, -82], + [29, 82], + [25, -8], + [17, -61], + [-16, -5], + [8, -23], + [55, -1], + [8, -47], + [56, -72], + [6, -66], + [71, -117], + [33, -28], + [-43, -47], + [-90, -3], + [-18, -79], + [-131, -94], + [12, -16], + [66, -2], + [-85, -16], + [-6, -47], + [-28, -2], + [16, -17], + [-13, -30], + [-126, -49], + [-121, -67], + [-35, -40], + [-33, -8], + [-22, -26], + [11, -11], + [-1, -41], + [-35, -102], + [-22, -8], + [-35, 2], + [-29, 24], + [-56, 0], + [-64, 84], + [-2, 94], + [-56, -7], + [-68, -39], + [-154, -40], + [-21, 71], + [-87, -41], + [-34, -41], + [-247, -60], + [-20, -20], + [-25, -1], + [-60, -59], + [-31, 10], + [-75, -22], + [-36, 16], + [-61, -5], + [-263, -133], + [-15, 19], + [-194, -66], + [-51, 0], + [-67, 82], + [2, 33], + [-21, 26], + [-102, 22], + [-11, 32], + [-106, 74], + [-80, -45], + [-24, 33], + [-29, -16], + [-2, -48], + [-24, -28], + [-85, -38] + ], + [ + [14769, 15988], + [-48, -4] + ], + [ + [11134, 17457], + [126, 4], + [416, 257], + [165, 159], + [121, 234], + [23, 11], + [219, 14], + [314, -185], + [33, -67], + [142, -126], + [174, -47], + [158, -23], + [85, 16], + [120, 79], + [35, -8], + [47, 50], + [7, 87], + [52, 77], + [90, -27], + [212, 19], + [179, -11], + [331, 138], + [121, -63], + [152, 45], + [-5, 96], + [278, 74], + [63, -19] + ] + ], + "transform": { + "scale": [0.00018036178954576582, 0.00015342109890109887], + "translate": [89.699725, 24.132668999999996] + }, + "objects": { + "assam_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]], + "type": "Polygon", + "properties": { + "cartodb_id": 37, + "censuscode": 324, + "st_cen_cd": 18, + "dt_cen_cd": 25, + "district": "Baksa", + "st_nm": "Assam" + } + }, + { + "arcs": [[13, 14, 15, 16, 17, 18, 19]], + "type": "Polygon", + "properties": { + "cartodb_id": 203, + "censuscode": 313, + "st_cen_cd": 18, + "dt_cen_cd": 14, + "district": "Golaghat", + "st_nm": "Assam" + } + }, + { + "arcs": [[20, 21, 22, 23, 24, 25, 26, 27, 28, -1]], + "type": "Polygon", + "properties": { + "cartodb_id": 270, + "censuscode": 321, + "st_cen_cd": 18, + "dt_cen_cd": 22, + "district": "Kamrup", + "st_nm": "Assam" + } + }, + { + "arcs": [[29, 30, 31, 32, 33, -17]], + "type": "Polygon", + "properties": { + "cartodb_id": 391, + "censuscode": 305, + "st_cen_cd": 18, + "dt_cen_cd": 6, + "district": "Nagaon", + "st_nm": "Assam" + } + }, + { + "arcs": [[34, 35, -27, 36, 37, 38, -5]], + "type": "Polygon", + "properties": { + "cartodb_id": 59, + "censuscode": 303, + "st_cen_cd": 18, + "dt_cen_cd": 4, + "district": "Barpeta", + "st_nm": "Assam" + } + }, + { + "arcs": [[39, 40, 41, 42, 43, 44]], + "type": "Polygon", + "properties": { + "cartodb_id": 98, + "censuscode": 316, + "st_cen_cd": 18, + "dt_cen_cd": 17, + "district": "Cachar", + "st_nm": "Assam" + } + }, + { + "arcs": [[[45, 46, 47, 48, 49], [50]], [[51]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 153, + "censuscode": 301, + "st_cen_cd": 18, + "dt_cen_cd": 2, + "district": "Dhubri", + "st_nm": "Assam" + } + }, + { + "arcs": [[52, -14, 53, 54, 55, 56]], + "type": "Polygon", + "properties": { + "cartodb_id": 263, + "censuscode": 312, + "st_cen_cd": 18, + "dt_cen_cd": 13, + "district": "Jorhat", + "st_nm": "Assam" + } + }, + { + "arcs": [[57, 58, 59, 60, 61, 62, -50, 63]], + "type": "Polygon", + "properties": { + "cartodb_id": 310, + "censuscode": 300, + "st_cen_cd": 18, + "dt_cen_cd": 1, + "district": "Kokrajhar", + "st_nm": "Assam" + } + }, + { + "arcs": [[-31, 64, 65, -45, 66, 67]], + "type": "Polygon", + "properties": { + "cartodb_id": 415, + "censuscode": 315, + "st_cen_cd": 18, + "dt_cen_cd": 16, + "district": "Dima Hasao", + "st_nm": "Assam" + } + }, + { + "arcs": [[68, 69, 70, 71, 72, -33]], + "type": "Polygon", + "properties": { + "cartodb_id": 368, + "censuscode": 304, + "st_cen_cd": 18, + "dt_cen_cd": 5, + "district": "Marigaon", + "st_nm": "Assam" + } + }, + { + "arcs": [[73, -38, 74, -47, 75, -62, 76, 77]], + "type": "Polygon", + "properties": { + "cartodb_id": 91, + "censuscode": 319, + "st_cen_cd": 18, + "dt_cen_cd": 20, + "district": "Bongaigaon", + "st_nm": "Assam" + } + }, + { + "arcs": [[-9, 78, -7, 79, -78, 80, -60, 81, -58, 82]], + "type": "Polygon", + "properties": { + "cartodb_id": 116, + "censuscode": 320, + "st_cen_cd": 18, + "dt_cen_cd": 21, + "district": "Chirang", + "st_nm": "Assam" + } + }, + { + "arcs": [[83, 84, -72, 85, 86, -22, 87, -12, 88]], + "type": "Polygon", + "properties": { + "cartodb_id": 135, + "censuscode": 325, + "st_cen_cd": 18, + "dt_cen_cd": 26, + "district": "Darrang", + "st_nm": "Assam" + } + }, + { + "arcs": [[89, 90, 91, 92, 93]], + "type": "Polygon", + "properties": { + "cartodb_id": 151, + "censuscode": 308, + "st_cen_cd": 18, + "dt_cen_cd": 9, + "district": "Dhemaji", + "st_nm": "Assam" + } + }, + { + "arcs": [[94, 95, 96, -56, 97, 98, -93]], + "type": "Polygon", + "properties": { + "cartodb_id": 156, + "censuscode": 310, + "st_cen_cd": 18, + "dt_cen_cd": 11, + "district": "Dibrugarh", + "st_nm": "Assam" + } + }, + { + "arcs": [[-26, 99, -48, -75, -37]], + "type": "Polygon", + "properties": { + "cartodb_id": 201, + "censuscode": 302, + "st_cen_cd": 18, + "dt_cen_cd": 3, + "district": "Goalpara", + "st_nm": "Assam" + } + }, + { + "arcs": [[100, 101, -42]], + "type": "Polygon", + "properties": { + "cartodb_id": 215, + "censuscode": 318, + "st_cen_cd": 18, + "dt_cen_cd": 19, + "district": "Hailakandi", + "st_nm": "Assam" + } + }, + { + "arcs": [[102, -24, 103, -86, -71]], + "type": "Polygon", + "properties": { + "cartodb_id": 271, + "censuscode": 322, + "st_cen_cd": 18, + "dt_cen_cd": 23, + "district": "Kamrup Metropolitan", + "st_nm": "Assam" + } + }, + { + "arcs": [[[104, -65, -30, -16]], [[-68, 105, -69, -32]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 283, + "censuscode": 314, + "st_cen_cd": 18, + "dt_cen_cd": 15, + "district": "Karbi Anglong", + "st_nm": "Assam" + } + }, + { + "arcs": [[-43, -102, 106]], + "type": "Polygon", + "properties": { + "cartodb_id": 285, + "censuscode": 317, + "st_cen_cd": 18, + "dt_cen_cd": 18, + "district": "Karimganj", + "st_nm": "Assam" + } + }, + { + "arcs": [[107, -98, -55, 108, -19, 109, 110, -90]], + "type": "Polygon", + "properties": { + "cartodb_id": 333, + "censuscode": 307, + "st_cen_cd": 18, + "dt_cen_cd": 8, + "district": "Lakhimpur", + "st_nm": "Assam" + } + }, + { + "arcs": [[-36, 111, -3, 112, -28]], + "type": "Polygon", + "properties": { + "cartodb_id": 396, + "censuscode": 323, + "st_cen_cd": 18, + "dt_cen_cd": 24, + "district": "Nalbari", + "st_nm": "Assam" + } + }, + { + "arcs": [[113, -57, -97]], + "type": "Polygon", + "properties": { + "cartodb_id": 523, + "censuscode": 311, + "st_cen_cd": 18, + "dt_cen_cd": 12, + "district": "Sivasagar", + "st_nm": "Assam" + } + }, + { + "arcs": [[114, 115, -110, -18, -34, -73, -85, 116]], + "type": "Polygon", + "properties": { + "cartodb_id": 542, + "censuscode": 306, + "st_cen_cd": 18, + "dt_cen_cd": 7, + "district": "Sonitpur", + "st_nm": "Assam" + } + }, + { + "arcs": [[-95, -92, 117]], + "type": "Polygon", + "properties": { + "cartodb_id": 574, + "censuscode": 309, + "st_cen_cd": 18, + "dt_cen_cd": 10, + "district": "Tinsukia", + "st_nm": "Assam" + } + }, + { + "arcs": [[118, -89, -11, 119, -115]], + "type": "Polygon", + "properties": { + "cartodb_id": 584, + "censuscode": 326, + "st_cen_cd": 18, + "dt_cen_cd": 27, + "district": "Udalguri", + "st_nm": "Assam" + } + } + ] + } + } +} diff --git a/public/maps/bihar.json b/public/maps/bihar.json index c832405ec5..751a6ab27f 100644 --- a/public/maps/bihar.json +++ b/public/maps/bihar.json @@ -1 +1,2614 @@ -{"type":"Topology","arcs":[[[5491,5741],[-25,-65],[31,-24],[50,34],[51,-9],[1,-95],[47,-76],[-45,-46],[1,-76],[39,-48],[63,6],[38,-20],[56,35],[20,45],[40,12],[68,-9],[31,42],[79,-59],[-16,-33],[25,-100],[36,-6],[15,-55],[-27,-78],[53,-10],[15,47],[76,-18],[69,10],[52,74],[34,-21],[103,-9],[82,13],[-1,-81],[91,-49],[20,-31],[62,-14],[-4,-95],[14,-83],[62,-31],[62,-112]],[[6859,4706],[-11,-63],[29,-33],[-13,-109],[22,-73],[-54,-4],[-122,-186]],[[6710,4238],[-1,54],[-26,38],[-71,15],[-124,-51],[-38,20],[-75,-17],[-17,17],[-139,2],[-68,59],[-62,76],[-56,-27],[-64,-2],[-15,49],[-54,14],[-35,-20],[-40,55],[-73,17],[-32,31],[-18,64],[-112,43],[-213,44],[-8,109]],[[5369,4828],[31,95],[58,48],[-30,47],[-39,7],[8,96],[-35,30],[-35,119],[49,41],[-30,89]],[[5346,5400],[55,14],[6,79],[-68,30],[13,29],[-38,131],[38,24],[1,50],[39,16],[45,-36],[54,4]],[[4222,2087],[69,5],[34,-122],[72,58],[93,-14],[40,-49],[48,31],[5,-76],[70,-63]],[[4653,1857],[-33,-49],[3,-130],[-33,-41],[-50,12],[-4,-54],[-84,-118],[4,-37],[-39,-65],[-25,4],[-10,-102],[48,8],[21,-55],[40,7],[19,-50],[-18,-52],[4,-64],[-69,10],[30,-59],[38,-4],[-29,-75],[5,-83],[32,-20],[-26,-50],[72,-26],[37,11],[53,-56]],[[4639,719],[-29,-14],[-116,-14],[-69,10],[-14,-82],[-62,2],[-68,-71],[-47,5],[-113,-24],[37,-91],[-109,-56],[-71,-77],[-53,20],[20,57],[-95,45],[-94,-35],[-49,-96],[-47,-11],[-51,16],[-49,-15],[-12,57],[-45,76],[5,106],[-39,-13],[-80,33],[12,109],[-29,35],[-81,-19],[-9,-34],[-85,-22],[-38,-62],[-42,-2],[-61,-42],[-29,-66],[3,-49],[-21,-50],[-79,26],[-50,-7],[-64,30],[-30,-41],[15,-34],[-85,-51],[-6,-67],[-72,-138],[-70,80],[-17,56],[-84,-19],[12,73],[-62,23],[-29,57],[-47,-8],[-57,25],[-22,39],[10,54],[-35,43],[-49,9],[-18,39],[20,40],[62,23]],[[2252,597],[94,55],[39,55],[16,96],[64,-39],[50,12],[9,-66],[42,15],[47,-62],[69,32],[59,3],[49,46],[-7,66],[72,73],[-6,48],[21,108],[73,-9],[22,66],[38,13],[80,-5],[10,46],[45,6],[23,250],[-67,16],[-12,68],[-52,18],[-6,43],[-68,44],[9,41],[82,54],[51,3],[31,81],[-16,59],[76,79],[18,73],[-60,-2],[-49,86],[67,-2],[9,24]],[[3174,2091],[49,-2],[51,29],[71,18],[37,-19],[97,-3]],[[3479,2114],[72,4],[43,-20],[-6,-48],[-30,-42],[42,-23],[8,-60],[59,-12],[16,45],[39,-8],[29,44],[106,42],[11,-80],[50,-2],[48,-33],[65,105],[24,65],[51,33],[67,13],[-9,-57],[58,7]],[[4199,3596],[128,-74],[55,-78],[79,-135],[200,-23],[68,-27],[17,48],[49,-34],[83,-19],[95,29]],[[4973,3283],[17,-48],[122,14],[-18,-37],[105,-41],[23,7],[16,73],[49,9],[9,-47],[67,71],[16,52],[37,3]],[[5416,3339],[46,45],[51,15],[59,-7],[64,-46],[11,-29],[107,-43],[-30,-161],[34,-48],[63,-3],[95,-36],[173,-127],[10,74],[28,7],[35,-96],[-7,-54]],[[6155,2830],[-49,-10],[-30,-99],[-87,53],[-131,27],[-5,-55],[-55,-23]],[[5798,2723],[-55,-36],[-40,45],[-118,-14],[-9,45],[-67,25],[-40,-4],[-99,103],[-53,-3],[-70,-48],[0,-52],[-68,21],[46,40],[-50,109],[-85,10],[-27,105],[-62,-10],[-53,25],[-66,-4],[-16,50],[-43,-18],[-75,15],[-73,38],[-8,-72],[-62,-16],[-25,-72],[-44,16],[-65,-8],[-44,-23],[-58,18],[-42,34],[-51,0],[-91,-32],[14,-140],[-30,-107]],[[4169,2763],[-30,-9],[-80,28],[-29,-52],[-81,-40],[-74,0],[-77,34],[-3,62],[-48,8],[-70,-88],[-53,-24],[-32,37],[-41,-7],[-69,-102],[-24,-92]],[[3458,2518],[-63,47],[-58,-40],[-85,9],[-110,-47],[16,47],[39,35],[46,-15],[37,19],[4,43],[-102,39],[-16,-42],[-68,54],[13,72],[-13,41]],[[3098,2780],[46,51],[18,68],[100,229],[-50,116],[34,123],[63,69],[45,31],[-7,41],[17,111],[60,120],[8,46]],[[3432,3785],[43,57],[24,-15],[157,-26],[72,62],[102,17],[102,-54],[27,1],[51,-142],[51,-72],[42,-14],[96,-3]],[[5603,6183],[-24,-124],[43,-51],[-43,-56],[-63,10],[-41,-76],[117,-36],[-41,-55],[-76,45],[-12,-49],[28,-50]],[[5346,5400],[-29,31],[-44,-9],[-51,20],[-80,72],[-87,38],[22,53],[-57,4],[-25,-43],[-94,31],[-10,-47],[-46,-39],[-42,-79],[-16,-69],[-99,-58],[-24,89],[-48,21],[-17,78],[-98,21],[-65,-16],[-38,14]],[[4398,5512],[28,32],[-28,92],[-36,8]],[[4362,5644],[49,96],[-14,37],[142,104],[77,1],[18,72],[-47,46],[21,54],[-34,18],[-5,91],[-22,96],[-31,32],[-55,5],[-95,-21]],[[4366,6275],[1,43],[-62,64],[48,42],[-19,105],[6,59]],[[4340,6588],[113,-11],[66,-28],[56,57],[23,-14],[84,88],[102,-27],[93,42],[11,42],[48,1],[51,65],[50,8],[95,43],[33,45],[43,-55],[78,-22],[109,-74],[22,-73],[-14,-94],[-13,-192],[41,-95],[60,-35],[75,-17],[37,-59]],[[9718,5628],[-3,-27],[-58,-80],[2,-78],[79,-46],[-3,-75],[26,-12],[3,-87],[24,-19],[37,-92],[-29,-26],[30,-59],[-19,-26],[-23,-118]],[[9784,4883],[-14,-74],[-95,3],[-31,-71],[28,-39],[-6,-43],[-144,-67],[-1,-40],[-162,-32],[-48,33],[-46,-11],[-79,21],[-28,-75],[-43,2],[-64,48],[-96,-3],[-54,-52],[-39,64],[-34,-44],[-199,-66],[-91,33],[-46,37],[-48,-22]],[[8444,4485],[-49,68],[30,33],[51,107],[-7,42]],[[8469,4735],[-17,33],[48,31],[-12,41],[-81,24],[78,93],[22,133],[-33,36],[-69,131],[-7,50],[17,65],[-47,14],[-5,91],[54,6],[-7,54],[20,129],[-16,85],[-40,105],[12,86],[1,111],[-42,20]],[[8345,6073],[17,69],[61,-2],[5,-120],[17,-53],[23,-183],[84,-78],[76,-48],[54,26],[156,-5],[23,-26],[-1,-76],[53,2],[114,-69],[38,32],[-5,66],[32,58],[42,30],[90,6],[77,49],[70,-7],[125,-48],[13,-36],[70,-30],[139,-2]],[[10113,4413],[-28,66],[28,53],[-1,61],[39,67],[18,107],[36,29],[-19,65],[-54,-3],[-19,24],[-59,-4],[-169,13],[-8,24],[-93,-32]],[[9718,5628],[7,34],[61,28],[1,51],[82,-22],[115,-49],[30,68],[-7,45],[43,44],[123,-86],[22,72],[93,38],[56,-83],[-20,-34],[112,-93],[58,-13],[-2,-54],[40,-46],[47,1],[5,58],[121,119],[36,63],[10,114],[-18,51],[28,71],[60,-61],[75,24],[6,41],[65,17],[82,-30],[-89,-64],[-33,-38],[33,-58],[47,-5],[32,-60],[32,6],[27,-89],[-59,-68],[19,-39],[82,5],[17,-99],[-46,-5],[-77,-89],[-5,-39],[-108,-73],[-73,-24],[-12,-58],[-52,-20],[-92,-110],[-109,-49],[-69,-56],[-31,46],[-30,-30],[16,-69],[-40,-34],[4,-65],[-105,18],[-56,-51],[-104,-72],[-3,-65],[-33,-83],[12,-64],[-31,-82]],[[5369,4828],[-38,-122],[-37,-45],[-35,-1],[-42,-60],[-45,3],[-11,-45],[26,-47],[-19,-42],[27,-43],[-9,-41]],[[5186,4385],[-55,6],[-38,-18],[-66,8],[-11,-40],[-73,26],[-32,-39],[-47,42],[-110,15],[-66,48],[-58,-36],[-37,5],[-81,51],[-40,-19],[-69,24],[31,101],[-65,66],[-75,5],[-19,-29],[-80,-7],[-23,21],[-76,-10],[0,-54],[-92,16],[1,-38],[-87,-15]],[[3918,4514],[-35,47],[-71,-8],[-51,71],[-49,-47],[-86,57],[-11,65],[40,58],[-2,109],[-77,100],[-6,109],[-37,82]],[[3533,5157],[-49,107]],[[3484,5264],[64,175],[39,8],[136,-4],[62,18],[31,-33],[50,61],[33,5],[49,-52],[72,-24],[66,21],[32,-11],[38,59],[51,-39],[5,-81],[51,0],[76,39],[7,91],[52,15]],[[5798,2723],[-6,-86],[36,-57]],[[5828,2580],[-59,-28],[-58,36],[-55,-9],[-30,-56],[-131,71],[2,49],[-78,1],[-18,36],[-61,-20],[-4,-98],[55,-36],[-9,-79],[-54,7],[0,-73],[-20,-76],[-55,-30],[-70,21],[-57,-8],[77,-79]],[[5203,2209],[46,-87],[-55,-20],[-66,-67],[-82,-10],[-39,-25],[40,-42],[-12,-46],[-85,52],[-79,-6],[-70,-44],[-148,-57]],[[4222,2087],[25,54],[-40,89],[-67,-13],[17,107],[39,12],[-63,124],[34,42],[-32,51],[17,44],[52,49],[-44,20],[26,58],[-17,39]],[[3228,7233],[-32,-49],[-24,-76],[-45,-7],[-59,-100],[-16,-58],[77,-89],[60,-105],[-56,-96],[8,-101],[-44,-28],[-50,-84],[-58,-55],[-35,32],[-94,-12],[-16,-49],[-93,-33],[-63,-80],[10,-65],[-78,4]],[[2620,6182],[-77,60],[-75,-71],[9,97],[-28,1]],[[2449,6269],[-12,88],[-172,34],[-16,85],[-46,97],[-43,-5],[-82,-54],[-40,69],[37,49],[25,88],[-21,34],[21,61],[-25,46],[-44,27],[-101,-50],[-43,-46],[-58,51],[-3,79],[-18,19],[-103,-37],[-55,34],[-9,106],[-29,45],[33,111],[-31,75],[12,67],[-38,0],[-66,44],[50,59],[-12,56],[-128,-49],[-34,18],[0,62],[25,64],[77,108],[-18,57],[-34,28],[-16,56],[-105,34],[-26,77],[58,51],[3,53],[-67,33],[-87,-47],[-57,43],[57,34],[44,81],[-12,48],[-95,95],[19,52],[54,-12],[104,8],[46,23],[32,-20],[114,10],[65,-23],[75,46],[16,72],[70,46],[1,41],[61,-8],[49,22],[10,-86],[78,-43],[48,-8],[3,-47],[96,0],[43,-64],[6,-75],[60,-15],[83,-42],[87,-1],[43,-17],[58,7],[231,-51],[95,-8],[119,-26],[46,-67],[75,-151],[35,-88],[-12,-111],[6,-57],[-23,-151],[-63,-78],[-10,-69],[125,-47],[138,-76]],[[995,2967],[23,-50],[64,8],[83,-91],[89,-59],[33,-53]],[[1287,2722],[1,-79],[-81,-49],[-66,-4],[-41,-115],[-3,-46],[22,-80],[-36,-101],[33,-95],[-1,-109],[-53,-77],[22,-39],[5,-86],[-105,-126],[-32,-117],[-71,-95],[29,-68],[57,-9],[39,-41],[24,-75],[-7,-55],[-38,-29],[-74,-214],[47,-50],[-30,-103],[19,-31],[-65,-47],[-25,-45],[-60,-3],[-48,40],[-71,-39],[-163,5],[-72,12]],[[443,752],[18,82],[-17,61],[38,33],[-41,72],[-42,23],[34,84],[-72,59],[-1,84],[-60,-11],[-76,96],[-74,37],[20,71],[-11,59],[-50,79],[-38,105],[15,29],[-2,109],[-42,22],[12,124],[-54,13],[9,86],[37,170],[31,-5],[-3,109],[-21,18],[15,106],[86,22],[48,111],[69,26],[45,-19],[24,54],[46,38],[38,-1],[82,71],[77,11],[115,69],[65,52],[68,22],[59,74],[80,15],[25,-45]],[[9505,2823],[-22,-2],[-123,95],[-73,-19],[-105,81],[-157,67],[-101,-45],[-40,-76],[-89,15],[-74,105],[60,96]],[[8781,3140],[0,49],[-39,30],[1,49],[33,64],[87,89],[-31,106],[17,188],[-41,78],[40,49],[42,-42],[134,-51],[50,13],[120,-32],[46,16],[160,-6],[124,-50],[81,74],[44,-18],[48,29],[25,-30],[43,22],[29,74],[12,75],[56,46],[60,2],[35,-33],[112,39],[54,56],[-28,112],[19,139]],[[10114,4277],[11,-27],[110,-31],[29,13],[58,-34],[-44,-66],[43,-31],[-28,-41],[1,-78],[88,-5],[3,-51],[50,-63],[177,-70],[14,-142],[-23,-9],[9,-115],[-29,-117],[94,-106],[3,-86],[-149,36],[-109,116],[-66,-5],[-61,-84],[-65,-4],[-21,-45],[6,-54],[-67,-2],[-18,-51],[-38,-29],[-62,27],[-42,-147],[59,-44],[-16,-89],[22,-43],[44,-8],[45,-45],[43,-12],[14,-53],[-16,-64],[-60,-50],[31,-93],[-110,56],[-10,68],[-169,27],[0,39],[-42,36],[-11,67],[-73,-8],[-101,11],[-89,60],[-44,-8]],[[4366,6275],[16,-25],[-27,-102],[-98,-139],[10,-89],[-87,-13],[-11,-27],[45,-55],[58,-112],[90,-69]],[[3484,5264],[-86,69],[-64,16],[-1,94],[-93,49],[-85,110],[-35,110],[-120,100],[-55,1],[-97,-68],[-30,127],[-83,57],[-70,70],[10,59],[-42,39],[-13,85]],[[3228,7233],[33,47],[44,-57],[71,64],[65,-32],[0,-44],[97,-49],[70,-4],[67,-24],[44,-58],[-22,-55],[68,-11],[20,-57],[83,-11],[-46,-91],[86,-17],[49,42],[52,17],[192,-7],[-4,-91],[-33,-52],[34,-92],[43,-57],[58,12],[41,-18]],[[10113,4413],[-32,-51],[33,-85]],[[8781,3140],[-50,-11],[-83,7],[-37,-36],[-101,-8],[-58,58],[2,50],[40,42],[-4,65]],[[8490,3307],[-103,34],[12,138],[-38,50],[6,65],[-40,72],[50,99],[-24,68],[-30,7],[-40,74],[10,94],[55,123],[3,48],[-33,62],[21,24],[-80,118],[22,54],[117,63],[46,-15]],[[7439,4665],[-51,-56],[-8,-47],[21,-113],[72,-64],[57,35],[60,-81],[19,-93],[58,-26],[117,5],[49,34],[70,-8],[29,-92],[15,-124],[-3,-59],[-33,-78],[57,-23],[14,-35],[-40,-54],[12,-52],[-62,0],[-46,-50],[-18,-51]],[[7828,3633],[-63,-39],[-82,55],[-21,45],[-106,-57],[-56,1],[-144,-51],[-66,-51],[-22,29],[-44,-16],[-62,13],[-70,70],[-37,146],[-55,28],[-51,65]],[[6949,3871],[-26,17],[21,80],[-30,125],[-49,5],[-33,108],[-45,19],[-39,-18],[-38,31]],[[6859,4706],[51,2],[45,37],[20,44]],[[6975,4789],[65,5],[11,-49],[96,-22],[-37,-42],[63,-96],[55,51],[25,46],[115,-34],[71,17]],[[6949,3871],[-110,-56],[-32,-29],[-59,-100],[-76,-7],[-3,-42]],[[6669,3637],[-71,-12],[-33,46],[-118,27],[-27,130],[-50,47],[-18,94],[-98,27],[2,-46],[78,-19],[-15,-39],[-71,23],[-55,-2],[12,-44],[-118,-25],[-6,-84],[-43,-34],[40,-31],[-17,-76],[8,-78],[-26,-33],[-100,77],[-54,87],[-102,-20],[-45,52],[-24,-45],[-62,-8],[-33,-72],[45,-34],[-10,-75],[-77,7],[-76,24],[-16,-38],[-51,-40],[-22,-84]],[[4973,3283],[-13,101],[47,72],[-45,36],[14,87],[30,8],[10,78],[32,89],[31,34],[60,27],[-1,57],[39,108],[-38,7],[-16,66],[28,60],[-21,19],[6,119],[34,37],[16,97]],[[2252,597],[-5,86],[-59,115],[-53,-4],[-25,-70],[-85,33],[-107,-8],[14,-98],[-57,20],[-99,-96],[-47,60],[2,78],[-26,30],[-13,65],[-28,19],[-30,93],[-50,44],[-72,24]],[[1512,988],[201,352],[35,47],[150,163],[161,218],[33,32],[117,152],[10,38],[68,57],[91,45],[91,63],[50,131]],[[2519,2286],[63,-35],[46,-46],[38,27],[71,-5],[67,28],[20,-34],[55,-18],[47,21],[7,-58],[57,60],[66,-6],[104,-69],[14,-60]],[[8652,2077],[-55,-81],[22,-71],[-16,-207],[26,-61],[-23,-57],[-75,-33],[-76,-121],[36,-22],[-32,-58],[8,-56],[-10,-89],[-28,-87],[-33,-55],[-23,-123],[13,-46],[-90,-1],[-88,63],[-79,0],[-38,-29],[-47,-86],[20,-114],[-69,63],[-49,-45],[-39,48],[-64,-13],[-7,82],[-42,13],[-26,42],[-48,-2],[-19,-66],[-174,-77],[-138,89],[6,35]],[[7395,912],[-4,146],[-63,28],[-49,47],[-28,56],[13,75],[-25,81],[-113,-13],[15,42],[55,13],[-7,53],[19,36],[8,97],[-26,70],[-82,60],[27,36],[-18,45],[3,88],[23,21]],[[7143,1893],[62,12],[39,-60],[70,-39],[49,6],[10,63],[44,-27],[80,142],[-18,59],[6,46],[47,98],[37,52]],[[7569,2245],[66,6],[40,23],[35,-42],[122,14],[30,-22],[74,20],[88,-21],[123,7],[99,-12],[74,11],[96,-8],[66,-25],[58,-2],[112,-117]],[[6669,3637],[7,-21],[-34,-91],[17,-35],[-10,-101],[27,-50],[56,-7],[70,-108],[45,-14],[67,72],[54,-14],[6,-54],[51,-72],[95,-67],[36,4]],[[7156,3079],[-9,-41],[-52,2],[-11,-39],[-88,7],[-49,-18],[-28,-57],[-33,20],[-43,-63],[-124,-59],[16,-31],[-53,-67]],[[6682,2733],[-73,-33],[-74,-72],[-75,-21],[-66,58],[-14,-21],[-68,28],[-71,99],[-53,-5],[-33,64]],[[9505,2823],[-41,-136],[-37,33],[-71,8],[14,-87],[-34,-56],[-1,-122],[-38,7],[-143,79],[-49,-59],[-104,48],[-35,-193],[-23,-41],[-15,-120],[-73,41],[-56,-50],[-50,10],[-97,-108]],[[7569,2245],[-29,46],[59,84],[66,59],[-126,21],[-22,56],[-46,13],[0,68],[64,-11],[100,13],[20,24]],[[7655,2618],[64,47],[67,97],[-9,43],[68,13],[23,37],[77,63],[-43,46],[-44,84],[7,72]],[[7865,3120],[12,39],[60,-12],[102,64],[32,-12],[23,53],[58,-50],[110,-12],[48,-22],[67,27],[48,-8],[21,65],[44,55]],[[2131,2897],[108,191],[59,2],[30,105],[-70,119],[9,171],[36,69],[-14,84],[-37,41],[74,76],[5,40],[57,88]],[[2388,3883],[28,-14],[18,-78],[51,32],[69,-3],[26,-66],[51,15],[61,-35],[34,40],[47,-23],[14,44],[-7,94],[90,7]],[[2870,3896],[62,-85],[87,13],[42,-24],[132,17],[88,-60],[58,36],[93,-8]],[[3098,2780],[-66,-43],[-50,-109],[-58,-60],[-144,-58],[-73,-10],[-89,-57],[-59,-70]],[[2559,2373],[-86,69],[-44,16],[-112,-4],[-83,62],[21,22],[3,77],[-16,51],[28,58],[-22,53],[-41,33],[-60,6],[-16,81]],[[2131,2897],[-15,-18],[-74,6],[-50,26],[-165,17],[-53,-36],[-159,43],[14,-73],[-35,-13],[53,-90],[-43,-59],[-12,-47],[-103,-8],[-73,56],[-67,21],[-62,0]],[[995,2967],[84,61],[13,36],[64,68],[-9,30],[49,32],[45,78],[4,45],[52,21],[56,88],[53,15],[157,129],[140,57],[7,40],[-23,113],[56,66],[121,28],[104,-73],[11,-82],[40,-22],[154,-6],[74,27],[13,162],[16,30],[112,-27]],[[3533,5157],[-194,-11],[-110,1]],[[3229,5147],[-41,42],[-64,36],[-68,-4],[-4,73],[-71,29],[8,69],[-95,0],[-52,52],[-87,-3],[-48,40],[-41,-17],[-64,15],[-64,35],[5,51],[-50,13],[-68,-20],[-40,16],[-51,-13],[11,-81],[-10,-99],[-51,14],[-4,39],[-42,27],[-98,-63],[-78,26],[-60,47],[-36,72],[-49,29]],[[1917,5572],[-126,35],[-120,7],[-58,47],[-45,90],[-57,14],[-19,-34],[-80,9],[-99,32],[11,133],[-11,46],[73,17],[62,-42],[26,62],[60,-18],[106,49],[3,48],[75,100],[-2,114],[55,-15],[104,4],[-8,-28],[120,-9],[65,-39],[93,-27],[55,43],[65,-1],[199,32],[-15,28]],[[7395,912],[-57,-59],[-13,-46],[-53,-22],[-18,-64],[-52,2],[-40,-49],[-35,-87],[-4,-157],[-51,-8],[-9,-119],[-35,-23],[-69,29],[-38,56],[-57,41],[-57,65],[-99,11],[-23,84],[42,84],[-24,62],[5,70],[35,42],[-60,31],[-99,-3],[-70,71],[-4,-55],[-113,-20],[-29,43],[-60,32],[-17,79],[35,89],[-21,78],[-34,72],[-51,36],[-52,15],[-29,73]],[[6139,1365],[-2,39],[-56,71],[-119,113],[-48,13],[-37,-32],[-96,30],[-20,79],[-51,53],[-86,-1],[6,78],[69,13],[-53,81]],[[5646,1902],[71,45],[95,35]],[[5812,1982],[164,-70],[61,26],[24,-50],[53,-29],[128,28],[62,-13],[27,75],[3,82],[32,50],[40,-3],[119,-132],[35,-1],[22,72],[-8,64],[68,65],[85,21],[31,95],[83,65]],[[6841,2327],[102,-37],[17,-38],[-15,-72],[-47,-51],[-12,-49],[115,-68],[27,-81],[115,-38]],[[7828,3633],[75,-52],[1,-83],[28,-24],[-24,-62],[-2,-98],[-32,-42],[11,-51],[-31,-34],[11,-67]],[[7655,2618],[-53,45],[-125,4],[-39,90],[39,70],[-56,72],[26,29],[9,70],[-94,74],[-22,94],[-40,86],[-68,-2],[-76,-171]],[[6682,2733],[61,-56],[40,21],[44,-23],[49,-149],[-36,-132],[1,-67]],[[5812,1982],[6,72],[42,13],[-2,41],[61,33],[10,174],[56,43],[-11,48],[-67,104],[-27,64],[-52,6]],[[7439,4665],[57,-17],[43,10],[30,97],[65,90],[25,60],[111,-68],[38,33],[63,13],[79,-47],[164,-17],[139,-54],[35,28],[117,-54],[64,-4]],[[7641,5729],[-30,-11],[-38,-94],[-1,-50],[-108,-8],[-36,-29],[-19,-54],[-46,15],[-65,-25],[-53,-65],[-53,-8],[-25,-61],[-13,-154],[-83,-9],[-147,-52],[-16,-70],[32,-27],[97,-10],[26,-23],[89,35],[47,-32],[-51,-77],[-46,16],[-54,-14],[-46,-61],[-27,-72]],[[5603,6183],[26,26],[49,-12],[7,-105],[104,89],[61,37],[36,-2],[24,82],[46,34],[87,-9],[43,28],[86,-20],[11,-23],[113,-58],[32,-63],[79,35],[41,-8],[15,-53],[46,-13],[78,62],[90,-1],[33,18],[78,-8],[30,-32],[84,-26],[4,-24],[140,-49],[91,-66],[84,-2],[78,-115],[93,-26],[40,-51],[147,-51],[62,-48]],[[6139,1365],[-92,-30],[-22,-44],[-50,-10],[-16,-37],[-45,-4],[-89,57],[-74,123],[-114,24],[-37,-39],[-93,21],[-9,26],[-64,26],[-35,-94],[-26,-16],[-14,-62],[3,-75],[-56,-93],[-68,-17],[31,-59],[-5,-48],[24,-72],[3,-70],[-65,-39],[-81,18],[-23,33],[-48,15],[-35,-51],[16,-49],[-63,-39],[-14,-48],[-71,-3],[-18,51],[-138,-38],[-59,25],[-53,-28]],[[5203,2209],[101,37],[87,-53],[79,24],[39,-23],[-21,-172],[-44,-27],[14,-63],[40,-4],[78,-52],[32,45],[38,-19]],[[2559,2373],[-40,-87]],[[1512,988],[-45,-109],[-99,-129],[-135,-40],[-24,13],[-142,-22],[-103,-50],[-72,-15],[-77,28],[-185,-6],[-130,34],[-99,2],[-11,40],[53,18]],[[3918,4514],[30,-123],[75,-88],[20,-101],[94,-54],[33,-120],[-13,-90],[32,-84],[22,-123],[-12,-135]],[[2870,3896],[11,57],[45,88],[-75,68],[-91,57],[-44,-19],[4,115],[-50,-14],[-47,44],[-79,3]],[[2544,4295],[20,78],[-21,46],[8,43],[-49,24],[34,85],[-54,5],[-34,99],[127,-13],[112,23],[114,-8],[39,46],[11,56],[42,43],[47,-27],[71,-8],[93,21],[26,100],[89,55],[11,71],[38,21],[-5,58],[-34,34]],[[2544,4295],[-59,21],[-36,87],[-49,18],[-79,56],[-123,-33],[-213,142],[-21,-29],[-45,24],[-11,70],[-69,57],[-46,74],[-57,57],[-94,8],[-15,84],[-54,36],[-37,119],[51,78],[110,13],[42,41],[41,4],[6,54],[94,-12],[30,43],[8,79],[23,35],[-33,56],[9,95]],[[7641,5729],[37,-9],[71,81],[101,-44],[56,-5],[52,41],[69,16],[-1,67],[81,5],[2,61],[187,58],[49,73]],[[3458,2518],[-19,-49],[16,-51],[0,-81],[37,-65],[-17,-56],[17,-38],[-13,-64]]],"transform":{"scale":[0.000444579158359465,0.0003784137053069907],"translate":[83.32793088667316,24.263228317244714]},"objects":{"bihar_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"censuscode":215,"st_cen_cd":10,"dt_cen_cd":13,"district":"Darbhanga","st_nm":"Bihar"}},{"arcs":[[5,6,7,8,9,10]],"type":"Polygon","properties":{"censuscode":236,"st_cen_cd":10,"dt_cen_cd":34,"district":"Gaya","st_nm":"Bihar"}},{"arcs":[[11,12,13,14,15,16,17,18,19]],"type":"Polygon","properties":{"censuscode":230,"st_cen_cd":10,"dt_cen_cd":28,"district":"Patna","st_nm":"Bihar"}},{"arcs":[[20,-5,21,22,23,24,25]],"type":"Polygon","properties":{"censuscode":206,"st_cen_cd":10,"dt_cen_cd":4,"district":"Sitamarhi","st_nm":"Bihar"}},{"arcs":[[26,27,28,29,30]],"type":"Polygon","properties":{"censuscode":209,"st_cen_cd":10,"dt_cen_cd":7,"district":"Araria","st_nm":"Bihar"}},{"arcs":[[31,-27,32]],"type":"Polygon","properties":{"censuscode":210,"st_cen_cd":10,"dt_cen_cd":8,"district":"Kishanganj","st_nm":"Bihar"}},{"arcs":[[-4,33,34,35,36,37,-22]],"type":"Polygon","properties":{"censuscode":216,"st_cen_cd":10,"dt_cen_cd":14,"district":"Muzaffarpur","st_nm":"Bihar"}},{"arcs":[[38,39,40,-6,41,-16]],"type":"Polygon","properties":{"censuscode":229,"st_cen_cd":10,"dt_cen_cd":27,"district":"Nalanda","st_nm":"Bihar"}},{"arcs":[[42,43,44]],"type":"Polygon","properties":{"censuscode":203,"st_cen_cd":10,"dt_cen_cd":1,"district":"Pashchim Champaran","st_nm":"Bihar"}},{"arcs":[[45,46,47]],"type":"Polygon","properties":{"censuscode":233,"st_cen_cd":10,"dt_cen_cd":31,"district":"Kaimur","st_nm":"Bihar"}},{"arcs":[[48,49,50]],"type":"Polygon","properties":{"censuscode":212,"st_cen_cd":10,"dt_cen_cd":10,"district":"Katihar","st_nm":"Bihar"}},{"arcs":[[-25,51,-23,-38,52,-43,53]],"type":"Polygon","properties":{"censuscode":204,"st_cen_cd":10,"dt_cen_cd":2,"district":"Purba Champaran","st_nm":"Bihar"}},{"arcs":[[54,-50,55,56,-28,-32]],"type":"Polygon","properties":{"censuscode":211,"st_cen_cd":10,"dt_cen_cd":9,"district":"Purnia","st_nm":"Bihar"}},{"arcs":[[57,58,59,-2,60,61]],"type":"Polygon","properties":{"censuscode":214,"st_cen_cd":10,"dt_cen_cd":12,"district":"Saharsa","st_nm":"Bihar"}},{"arcs":[[-60,62,63,-13,64,-34,-3]],"type":"Polygon","properties":{"censuscode":221,"st_cen_cd":10,"dt_cen_cd":19,"district":"Samastipur","st_nm":"Bihar"}},{"arcs":[[65,66,67,-9]],"type":"Polygon","properties":{"censuscode":235,"st_cen_cd":10,"dt_cen_cd":33,"district":"Aurangabad","st_nm":"Bihar"}},{"arcs":[[68,69,70,71]],"type":"Polygon","properties":{"censuscode":225,"st_cen_cd":10,"dt_cen_cd":23,"district":"Banka","st_nm":"Bihar"}},{"arcs":[[72,73,74,-14,-64]],"type":"Polygon","properties":{"censuscode":222,"st_cen_cd":10,"dt_cen_cd":20,"district":"Begusarai","st_nm":"Bihar"}},{"arcs":[[-49,75,-72,76,77,78,-56]],"type":"Polygon","properties":{"censuscode":224,"st_cen_cd":10,"dt_cen_cd":22,"district":"Bhagalpur","st_nm":"Bihar"}},{"arcs":[[79,80,81,-19,82,83]],"type":"Polygon","properties":{"censuscode":231,"st_cen_cd":10,"dt_cen_cd":29,"district":"Bhojpur","st_nm":"Bihar"}},{"arcs":[[-80,84,-46,85]],"type":"Polygon","properties":{"censuscode":232,"st_cen_cd":10,"dt_cen_cd":30,"district":"Buxar","st_nm":"Bihar"}},{"arcs":[[-53,-37,86,87,88,-44]],"type":"Polygon","properties":{"censuscode":217,"st_cen_cd":10,"dt_cen_cd":15,"district":"Gopalganj","st_nm":"Bihar"}},{"arcs":[[-70,89,90,91,92,93]],"type":"Polygon","properties":{"censuscode":238,"st_cen_cd":10,"dt_cen_cd":36,"district":"Jamui","st_nm":"Bihar"}},{"arcs":[[94,-78,95,-73,-63,-59]],"type":"Polygon","properties":{"censuscode":223,"st_cen_cd":10,"dt_cen_cd":21,"district":"Khagaria","st_nm":"Bihar"}},{"arcs":[[-75,96,-93,97,-39,-15]],"type":"Polygon","properties":{"censuscode":227,"st_cen_cd":10,"dt_cen_cd":25,"district":"Lakhisarai","st_nm":"Bihar"}},{"arcs":[[-29,-57,-79,-95,-58,98]],"type":"Polygon","properties":{"censuscode":213,"st_cen_cd":10,"dt_cen_cd":11,"district":"Madhepura","st_nm":"Bihar"}},{"arcs":[[99,-61,-1,-21,100]],"type":"Polygon","properties":{"censuscode":207,"st_cen_cd":10,"dt_cen_cd":5,"district":"Madhubani","st_nm":"Bihar"}},{"arcs":[[-52,-24]],"type":"Polygon","properties":{"censuscode":205,"st_cen_cd":10,"dt_cen_cd":3,"district":"Sheohar","st_nm":"Bihar"}},{"arcs":[[-77,-71,-94,-97,-74,-96]],"type":"Polygon","properties":{"censuscode":226,"st_cen_cd":10,"dt_cen_cd":24,"district":"Munger","st_nm":"Bihar"}},{"arcs":[[-91,101,-7,-41,102]],"type":"Polygon","properties":{"censuscode":237,"st_cen_cd":10,"dt_cen_cd":35,"district":"Nawada","st_nm":"Bihar"}},{"arcs":[[-47,-85,-84,103,-67,104]],"type":"Polygon","properties":{"censuscode":234,"st_cen_cd":10,"dt_cen_cd":32,"district":"Rohtas","st_nm":"Bihar"}},{"arcs":[[-36,105,-20,-82,106,107,-87]],"type":"Polygon","properties":{"censuscode":219,"st_cen_cd":10,"dt_cen_cd":17,"district":"Saran","st_nm":"Bihar"}},{"arcs":[[-98,-92,-103,-40]],"type":"Polygon","properties":{"censuscode":228,"st_cen_cd":10,"dt_cen_cd":26,"district":"Sheikhpura","st_nm":"Bihar"}},{"arcs":[[-108,108,-88]],"type":"Polygon","properties":{"censuscode":218,"st_cen_cd":10,"dt_cen_cd":16,"district":"Siwan","st_nm":"Bihar"}},{"arcs":[[-99,-62,-100,109,-30]],"type":"Polygon","properties":{"censuscode":208,"st_cen_cd":10,"dt_cen_cd":6,"district":"Supaul","st_nm":"Bihar"}},{"arcs":[[-65,-12,-106,-35]],"type":"Polygon","properties":{"censuscode":220,"st_cen_cd":10,"dt_cen_cd":18,"district":"Vaishali","st_nm":"Bihar"}},{"arcs":[[-10,-68,-104,-83,-18,110]],"type":"Polygon","properties":{"censuscode":240,"st_cen_cd":10,"dt_cen_cd":38,"district":"Arwal","st_nm":"Bihar"}},{"arcs":[[-42,-11,-111,-17]],"type":"Polygon","properties":{"censuscode":239,"st_cen_cd":10,"dt_cen_cd":37,"district":"Jehanabad","st_nm":"Bihar"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [5491, 5741], + [-25, -65], + [31, -24], + [50, 34], + [51, -9], + [1, -95], + [47, -76], + [-45, -46], + [1, -76], + [39, -48], + [63, 6], + [38, -20], + [56, 35], + [20, 45], + [40, 12], + [68, -9], + [31, 42], + [79, -59], + [-16, -33], + [25, -100], + [36, -6], + [15, -55], + [-27, -78], + [53, -10], + [15, 47], + [76, -18], + [69, 10], + [52, 74], + [34, -21], + [103, -9], + [82, 13], + [-1, -81], + [91, -49], + [20, -31], + [62, -14], + [-4, -95], + [14, -83], + [62, -31], + [62, -112] + ], + [ + [6859, 4706], + [-11, -63], + [29, -33], + [-13, -109], + [22, -73], + [-54, -4], + [-122, -186] + ], + [ + [6710, 4238], + [-1, 54], + [-26, 38], + [-71, 15], + [-124, -51], + [-38, 20], + [-75, -17], + [-17, 17], + [-139, 2], + [-68, 59], + [-62, 76], + [-56, -27], + [-64, -2], + [-15, 49], + [-54, 14], + [-35, -20], + [-40, 55], + [-73, 17], + [-32, 31], + [-18, 64], + [-112, 43], + [-213, 44], + [-8, 109] + ], + [ + [5369, 4828], + [31, 95], + [58, 48], + [-30, 47], + [-39, 7], + [8, 96], + [-35, 30], + [-35, 119], + [49, 41], + [-30, 89] + ], + [ + [5346, 5400], + [55, 14], + [6, 79], + [-68, 30], + [13, 29], + [-38, 131], + [38, 24], + [1, 50], + [39, 16], + [45, -36], + [54, 4] + ], + [ + [4222, 2087], + [69, 5], + [34, -122], + [72, 58], + [93, -14], + [40, -49], + [48, 31], + [5, -76], + [70, -63] + ], + [ + [4653, 1857], + [-33, -49], + [3, -130], + [-33, -41], + [-50, 12], + [-4, -54], + [-84, -118], + [4, -37], + [-39, -65], + [-25, 4], + [-10, -102], + [48, 8], + [21, -55], + [40, 7], + [19, -50], + [-18, -52], + [4, -64], + [-69, 10], + [30, -59], + [38, -4], + [-29, -75], + [5, -83], + [32, -20], + [-26, -50], + [72, -26], + [37, 11], + [53, -56] + ], + [ + [4639, 719], + [-29, -14], + [-116, -14], + [-69, 10], + [-14, -82], + [-62, 2], + [-68, -71], + [-47, 5], + [-113, -24], + [37, -91], + [-109, -56], + [-71, -77], + [-53, 20], + [20, 57], + [-95, 45], + [-94, -35], + [-49, -96], + [-47, -11], + [-51, 16], + [-49, -15], + [-12, 57], + [-45, 76], + [5, 106], + [-39, -13], + [-80, 33], + [12, 109], + [-29, 35], + [-81, -19], + [-9, -34], + [-85, -22], + [-38, -62], + [-42, -2], + [-61, -42], + [-29, -66], + [3, -49], + [-21, -50], + [-79, 26], + [-50, -7], + [-64, 30], + [-30, -41], + [15, -34], + [-85, -51], + [-6, -67], + [-72, -138], + [-70, 80], + [-17, 56], + [-84, -19], + [12, 73], + [-62, 23], + [-29, 57], + [-47, -8], + [-57, 25], + [-22, 39], + [10, 54], + [-35, 43], + [-49, 9], + [-18, 39], + [20, 40], + [62, 23] + ], + [ + [2252, 597], + [94, 55], + [39, 55], + [16, 96], + [64, -39], + [50, 12], + [9, -66], + [42, 15], + [47, -62], + [69, 32], + [59, 3], + [49, 46], + [-7, 66], + [72, 73], + [-6, 48], + [21, 108], + [73, -9], + [22, 66], + [38, 13], + [80, -5], + [10, 46], + [45, 6], + [23, 250], + [-67, 16], + [-12, 68], + [-52, 18], + [-6, 43], + [-68, 44], + [9, 41], + [82, 54], + [51, 3], + [31, 81], + [-16, 59], + [76, 79], + [18, 73], + [-60, -2], + [-49, 86], + [67, -2], + [9, 24] + ], + [ + [3174, 2091], + [49, -2], + [51, 29], + [71, 18], + [37, -19], + [97, -3] + ], + [ + [3479, 2114], + [72, 4], + [43, -20], + [-6, -48], + [-30, -42], + [42, -23], + [8, -60], + [59, -12], + [16, 45], + [39, -8], + [29, 44], + [106, 42], + [11, -80], + [50, -2], + [48, -33], + [65, 105], + [24, 65], + [51, 33], + [67, 13], + [-9, -57], + [58, 7] + ], + [ + [4199, 3596], + [128, -74], + [55, -78], + [79, -135], + [200, -23], + [68, -27], + [17, 48], + [49, -34], + [83, -19], + [95, 29] + ], + [ + [4973, 3283], + [17, -48], + [122, 14], + [-18, -37], + [105, -41], + [23, 7], + [16, 73], + [49, 9], + [9, -47], + [67, 71], + [16, 52], + [37, 3] + ], + [ + [5416, 3339], + [46, 45], + [51, 15], + [59, -7], + [64, -46], + [11, -29], + [107, -43], + [-30, -161], + [34, -48], + [63, -3], + [95, -36], + [173, -127], + [10, 74], + [28, 7], + [35, -96], + [-7, -54] + ], + [ + [6155, 2830], + [-49, -10], + [-30, -99], + [-87, 53], + [-131, 27], + [-5, -55], + [-55, -23] + ], + [ + [5798, 2723], + [-55, -36], + [-40, 45], + [-118, -14], + [-9, 45], + [-67, 25], + [-40, -4], + [-99, 103], + [-53, -3], + [-70, -48], + [0, -52], + [-68, 21], + [46, 40], + [-50, 109], + [-85, 10], + [-27, 105], + [-62, -10], + [-53, 25], + [-66, -4], + [-16, 50], + [-43, -18], + [-75, 15], + [-73, 38], + [-8, -72], + [-62, -16], + [-25, -72], + [-44, 16], + [-65, -8], + [-44, -23], + [-58, 18], + [-42, 34], + [-51, 0], + [-91, -32], + [14, -140], + [-30, -107] + ], + [ + [4169, 2763], + [-30, -9], + [-80, 28], + [-29, -52], + [-81, -40], + [-74, 0], + [-77, 34], + [-3, 62], + [-48, 8], + [-70, -88], + [-53, -24], + [-32, 37], + [-41, -7], + [-69, -102], + [-24, -92] + ], + [ + [3458, 2518], + [-63, 47], + [-58, -40], + [-85, 9], + [-110, -47], + [16, 47], + [39, 35], + [46, -15], + [37, 19], + [4, 43], + [-102, 39], + [-16, -42], + [-68, 54], + [13, 72], + [-13, 41] + ], + [ + [3098, 2780], + [46, 51], + [18, 68], + [100, 229], + [-50, 116], + [34, 123], + [63, 69], + [45, 31], + [-7, 41], + [17, 111], + [60, 120], + [8, 46] + ], + [ + [3432, 3785], + [43, 57], + [24, -15], + [157, -26], + [72, 62], + [102, 17], + [102, -54], + [27, 1], + [51, -142], + [51, -72], + [42, -14], + [96, -3] + ], + [ + [5603, 6183], + [-24, -124], + [43, -51], + [-43, -56], + [-63, 10], + [-41, -76], + [117, -36], + [-41, -55], + [-76, 45], + [-12, -49], + [28, -50] + ], + [ + [5346, 5400], + [-29, 31], + [-44, -9], + [-51, 20], + [-80, 72], + [-87, 38], + [22, 53], + [-57, 4], + [-25, -43], + [-94, 31], + [-10, -47], + [-46, -39], + [-42, -79], + [-16, -69], + [-99, -58], + [-24, 89], + [-48, 21], + [-17, 78], + [-98, 21], + [-65, -16], + [-38, 14] + ], + [ + [4398, 5512], + [28, 32], + [-28, 92], + [-36, 8] + ], + [ + [4362, 5644], + [49, 96], + [-14, 37], + [142, 104], + [77, 1], + [18, 72], + [-47, 46], + [21, 54], + [-34, 18], + [-5, 91], + [-22, 96], + [-31, 32], + [-55, 5], + [-95, -21] + ], + [ + [4366, 6275], + [1, 43], + [-62, 64], + [48, 42], + [-19, 105], + [6, 59] + ], + [ + [4340, 6588], + [113, -11], + [66, -28], + [56, 57], + [23, -14], + [84, 88], + [102, -27], + [93, 42], + [11, 42], + [48, 1], + [51, 65], + [50, 8], + [95, 43], + [33, 45], + [43, -55], + [78, -22], + [109, -74], + [22, -73], + [-14, -94], + [-13, -192], + [41, -95], + [60, -35], + [75, -17], + [37, -59] + ], + [ + [9718, 5628], + [-3, -27], + [-58, -80], + [2, -78], + [79, -46], + [-3, -75], + [26, -12], + [3, -87], + [24, -19], + [37, -92], + [-29, -26], + [30, -59], + [-19, -26], + [-23, -118] + ], + [ + [9784, 4883], + [-14, -74], + [-95, 3], + [-31, -71], + [28, -39], + [-6, -43], + [-144, -67], + [-1, -40], + [-162, -32], + [-48, 33], + [-46, -11], + [-79, 21], + [-28, -75], + [-43, 2], + [-64, 48], + [-96, -3], + [-54, -52], + [-39, 64], + [-34, -44], + [-199, -66], + [-91, 33], + [-46, 37], + [-48, -22] + ], + [ + [8444, 4485], + [-49, 68], + [30, 33], + [51, 107], + [-7, 42] + ], + [ + [8469, 4735], + [-17, 33], + [48, 31], + [-12, 41], + [-81, 24], + [78, 93], + [22, 133], + [-33, 36], + [-69, 131], + [-7, 50], + [17, 65], + [-47, 14], + [-5, 91], + [54, 6], + [-7, 54], + [20, 129], + [-16, 85], + [-40, 105], + [12, 86], + [1, 111], + [-42, 20] + ], + [ + [8345, 6073], + [17, 69], + [61, -2], + [5, -120], + [17, -53], + [23, -183], + [84, -78], + [76, -48], + [54, 26], + [156, -5], + [23, -26], + [-1, -76], + [53, 2], + [114, -69], + [38, 32], + [-5, 66], + [32, 58], + [42, 30], + [90, 6], + [77, 49], + [70, -7], + [125, -48], + [13, -36], + [70, -30], + [139, -2] + ], + [ + [10113, 4413], + [-28, 66], + [28, 53], + [-1, 61], + [39, 67], + [18, 107], + [36, 29], + [-19, 65], + [-54, -3], + [-19, 24], + [-59, -4], + [-169, 13], + [-8, 24], + [-93, -32] + ], + [ + [9718, 5628], + [7, 34], + [61, 28], + [1, 51], + [82, -22], + [115, -49], + [30, 68], + [-7, 45], + [43, 44], + [123, -86], + [22, 72], + [93, 38], + [56, -83], + [-20, -34], + [112, -93], + [58, -13], + [-2, -54], + [40, -46], + [47, 1], + [5, 58], + [121, 119], + [36, 63], + [10, 114], + [-18, 51], + [28, 71], + [60, -61], + [75, 24], + [6, 41], + [65, 17], + [82, -30], + [-89, -64], + [-33, -38], + [33, -58], + [47, -5], + [32, -60], + [32, 6], + [27, -89], + [-59, -68], + [19, -39], + [82, 5], + [17, -99], + [-46, -5], + [-77, -89], + [-5, -39], + [-108, -73], + [-73, -24], + [-12, -58], + [-52, -20], + [-92, -110], + [-109, -49], + [-69, -56], + [-31, 46], + [-30, -30], + [16, -69], + [-40, -34], + [4, -65], + [-105, 18], + [-56, -51], + [-104, -72], + [-3, -65], + [-33, -83], + [12, -64], + [-31, -82] + ], + [ + [5369, 4828], + [-38, -122], + [-37, -45], + [-35, -1], + [-42, -60], + [-45, 3], + [-11, -45], + [26, -47], + [-19, -42], + [27, -43], + [-9, -41] + ], + [ + [5186, 4385], + [-55, 6], + [-38, -18], + [-66, 8], + [-11, -40], + [-73, 26], + [-32, -39], + [-47, 42], + [-110, 15], + [-66, 48], + [-58, -36], + [-37, 5], + [-81, 51], + [-40, -19], + [-69, 24], + [31, 101], + [-65, 66], + [-75, 5], + [-19, -29], + [-80, -7], + [-23, 21], + [-76, -10], + [0, -54], + [-92, 16], + [1, -38], + [-87, -15] + ], + [ + [3918, 4514], + [-35, 47], + [-71, -8], + [-51, 71], + [-49, -47], + [-86, 57], + [-11, 65], + [40, 58], + [-2, 109], + [-77, 100], + [-6, 109], + [-37, 82] + ], + [ + [3533, 5157], + [-49, 107] + ], + [ + [3484, 5264], + [64, 175], + [39, 8], + [136, -4], + [62, 18], + [31, -33], + [50, 61], + [33, 5], + [49, -52], + [72, -24], + [66, 21], + [32, -11], + [38, 59], + [51, -39], + [5, -81], + [51, 0], + [76, 39], + [7, 91], + [52, 15] + ], + [ + [5798, 2723], + [-6, -86], + [36, -57] + ], + [ + [5828, 2580], + [-59, -28], + [-58, 36], + [-55, -9], + [-30, -56], + [-131, 71], + [2, 49], + [-78, 1], + [-18, 36], + [-61, -20], + [-4, -98], + [55, -36], + [-9, -79], + [-54, 7], + [0, -73], + [-20, -76], + [-55, -30], + [-70, 21], + [-57, -8], + [77, -79] + ], + [ + [5203, 2209], + [46, -87], + [-55, -20], + [-66, -67], + [-82, -10], + [-39, -25], + [40, -42], + [-12, -46], + [-85, 52], + [-79, -6], + [-70, -44], + [-148, -57] + ], + [ + [4222, 2087], + [25, 54], + [-40, 89], + [-67, -13], + [17, 107], + [39, 12], + [-63, 124], + [34, 42], + [-32, 51], + [17, 44], + [52, 49], + [-44, 20], + [26, 58], + [-17, 39] + ], + [ + [3228, 7233], + [-32, -49], + [-24, -76], + [-45, -7], + [-59, -100], + [-16, -58], + [77, -89], + [60, -105], + [-56, -96], + [8, -101], + [-44, -28], + [-50, -84], + [-58, -55], + [-35, 32], + [-94, -12], + [-16, -49], + [-93, -33], + [-63, -80], + [10, -65], + [-78, 4] + ], + [ + [2620, 6182], + [-77, 60], + [-75, -71], + [9, 97], + [-28, 1] + ], + [ + [2449, 6269], + [-12, 88], + [-172, 34], + [-16, 85], + [-46, 97], + [-43, -5], + [-82, -54], + [-40, 69], + [37, 49], + [25, 88], + [-21, 34], + [21, 61], + [-25, 46], + [-44, 27], + [-101, -50], + [-43, -46], + [-58, 51], + [-3, 79], + [-18, 19], + [-103, -37], + [-55, 34], + [-9, 106], + [-29, 45], + [33, 111], + [-31, 75], + [12, 67], + [-38, 0], + [-66, 44], + [50, 59], + [-12, 56], + [-128, -49], + [-34, 18], + [0, 62], + [25, 64], + [77, 108], + [-18, 57], + [-34, 28], + [-16, 56], + [-105, 34], + [-26, 77], + [58, 51], + [3, 53], + [-67, 33], + [-87, -47], + [-57, 43], + [57, 34], + [44, 81], + [-12, 48], + [-95, 95], + [19, 52], + [54, -12], + [104, 8], + [46, 23], + [32, -20], + [114, 10], + [65, -23], + [75, 46], + [16, 72], + [70, 46], + [1, 41], + [61, -8], + [49, 22], + [10, -86], + [78, -43], + [48, -8], + [3, -47], + [96, 0], + [43, -64], + [6, -75], + [60, -15], + [83, -42], + [87, -1], + [43, -17], + [58, 7], + [231, -51], + [95, -8], + [119, -26], + [46, -67], + [75, -151], + [35, -88], + [-12, -111], + [6, -57], + [-23, -151], + [-63, -78], + [-10, -69], + [125, -47], + [138, -76] + ], + [ + [995, 2967], + [23, -50], + [64, 8], + [83, -91], + [89, -59], + [33, -53] + ], + [ + [1287, 2722], + [1, -79], + [-81, -49], + [-66, -4], + [-41, -115], + [-3, -46], + [22, -80], + [-36, -101], + [33, -95], + [-1, -109], + [-53, -77], + [22, -39], + [5, -86], + [-105, -126], + [-32, -117], + [-71, -95], + [29, -68], + [57, -9], + [39, -41], + [24, -75], + [-7, -55], + [-38, -29], + [-74, -214], + [47, -50], + [-30, -103], + [19, -31], + [-65, -47], + [-25, -45], + [-60, -3], + [-48, 40], + [-71, -39], + [-163, 5], + [-72, 12] + ], + [ + [443, 752], + [18, 82], + [-17, 61], + [38, 33], + [-41, 72], + [-42, 23], + [34, 84], + [-72, 59], + [-1, 84], + [-60, -11], + [-76, 96], + [-74, 37], + [20, 71], + [-11, 59], + [-50, 79], + [-38, 105], + [15, 29], + [-2, 109], + [-42, 22], + [12, 124], + [-54, 13], + [9, 86], + [37, 170], + [31, -5], + [-3, 109], + [-21, 18], + [15, 106], + [86, 22], + [48, 111], + [69, 26], + [45, -19], + [24, 54], + [46, 38], + [38, -1], + [82, 71], + [77, 11], + [115, 69], + [65, 52], + [68, 22], + [59, 74], + [80, 15], + [25, -45] + ], + [ + [9505, 2823], + [-22, -2], + [-123, 95], + [-73, -19], + [-105, 81], + [-157, 67], + [-101, -45], + [-40, -76], + [-89, 15], + [-74, 105], + [60, 96] + ], + [ + [8781, 3140], + [0, 49], + [-39, 30], + [1, 49], + [33, 64], + [87, 89], + [-31, 106], + [17, 188], + [-41, 78], + [40, 49], + [42, -42], + [134, -51], + [50, 13], + [120, -32], + [46, 16], + [160, -6], + [124, -50], + [81, 74], + [44, -18], + [48, 29], + [25, -30], + [43, 22], + [29, 74], + [12, 75], + [56, 46], + [60, 2], + [35, -33], + [112, 39], + [54, 56], + [-28, 112], + [19, 139] + ], + [ + [10114, 4277], + [11, -27], + [110, -31], + [29, 13], + [58, -34], + [-44, -66], + [43, -31], + [-28, -41], + [1, -78], + [88, -5], + [3, -51], + [50, -63], + [177, -70], + [14, -142], + [-23, -9], + [9, -115], + [-29, -117], + [94, -106], + [3, -86], + [-149, 36], + [-109, 116], + [-66, -5], + [-61, -84], + [-65, -4], + [-21, -45], + [6, -54], + [-67, -2], + [-18, -51], + [-38, -29], + [-62, 27], + [-42, -147], + [59, -44], + [-16, -89], + [22, -43], + [44, -8], + [45, -45], + [43, -12], + [14, -53], + [-16, -64], + [-60, -50], + [31, -93], + [-110, 56], + [-10, 68], + [-169, 27], + [0, 39], + [-42, 36], + [-11, 67], + [-73, -8], + [-101, 11], + [-89, 60], + [-44, -8] + ], + [ + [4366, 6275], + [16, -25], + [-27, -102], + [-98, -139], + [10, -89], + [-87, -13], + [-11, -27], + [45, -55], + [58, -112], + [90, -69] + ], + [ + [3484, 5264], + [-86, 69], + [-64, 16], + [-1, 94], + [-93, 49], + [-85, 110], + [-35, 110], + [-120, 100], + [-55, 1], + [-97, -68], + [-30, 127], + [-83, 57], + [-70, 70], + [10, 59], + [-42, 39], + [-13, 85] + ], + [ + [3228, 7233], + [33, 47], + [44, -57], + [71, 64], + [65, -32], + [0, -44], + [97, -49], + [70, -4], + [67, -24], + [44, -58], + [-22, -55], + [68, -11], + [20, -57], + [83, -11], + [-46, -91], + [86, -17], + [49, 42], + [52, 17], + [192, -7], + [-4, -91], + [-33, -52], + [34, -92], + [43, -57], + [58, 12], + [41, -18] + ], + [ + [10113, 4413], + [-32, -51], + [33, -85] + ], + [ + [8781, 3140], + [-50, -11], + [-83, 7], + [-37, -36], + [-101, -8], + [-58, 58], + [2, 50], + [40, 42], + [-4, 65] + ], + [ + [8490, 3307], + [-103, 34], + [12, 138], + [-38, 50], + [6, 65], + [-40, 72], + [50, 99], + [-24, 68], + [-30, 7], + [-40, 74], + [10, 94], + [55, 123], + [3, 48], + [-33, 62], + [21, 24], + [-80, 118], + [22, 54], + [117, 63], + [46, -15] + ], + [ + [7439, 4665], + [-51, -56], + [-8, -47], + [21, -113], + [72, -64], + [57, 35], + [60, -81], + [19, -93], + [58, -26], + [117, 5], + [49, 34], + [70, -8], + [29, -92], + [15, -124], + [-3, -59], + [-33, -78], + [57, -23], + [14, -35], + [-40, -54], + [12, -52], + [-62, 0], + [-46, -50], + [-18, -51] + ], + [ + [7828, 3633], + [-63, -39], + [-82, 55], + [-21, 45], + [-106, -57], + [-56, 1], + [-144, -51], + [-66, -51], + [-22, 29], + [-44, -16], + [-62, 13], + [-70, 70], + [-37, 146], + [-55, 28], + [-51, 65] + ], + [ + [6949, 3871], + [-26, 17], + [21, 80], + [-30, 125], + [-49, 5], + [-33, 108], + [-45, 19], + [-39, -18], + [-38, 31] + ], + [ + [6859, 4706], + [51, 2], + [45, 37], + [20, 44] + ], + [ + [6975, 4789], + [65, 5], + [11, -49], + [96, -22], + [-37, -42], + [63, -96], + [55, 51], + [25, 46], + [115, -34], + [71, 17] + ], + [ + [6949, 3871], + [-110, -56], + [-32, -29], + [-59, -100], + [-76, -7], + [-3, -42] + ], + [ + [6669, 3637], + [-71, -12], + [-33, 46], + [-118, 27], + [-27, 130], + [-50, 47], + [-18, 94], + [-98, 27], + [2, -46], + [78, -19], + [-15, -39], + [-71, 23], + [-55, -2], + [12, -44], + [-118, -25], + [-6, -84], + [-43, -34], + [40, -31], + [-17, -76], + [8, -78], + [-26, -33], + [-100, 77], + [-54, 87], + [-102, -20], + [-45, 52], + [-24, -45], + [-62, -8], + [-33, -72], + [45, -34], + [-10, -75], + [-77, 7], + [-76, 24], + [-16, -38], + [-51, -40], + [-22, -84] + ], + [ + [4973, 3283], + [-13, 101], + [47, 72], + [-45, 36], + [14, 87], + [30, 8], + [10, 78], + [32, 89], + [31, 34], + [60, 27], + [-1, 57], + [39, 108], + [-38, 7], + [-16, 66], + [28, 60], + [-21, 19], + [6, 119], + [34, 37], + [16, 97] + ], + [ + [2252, 597], + [-5, 86], + [-59, 115], + [-53, -4], + [-25, -70], + [-85, 33], + [-107, -8], + [14, -98], + [-57, 20], + [-99, -96], + [-47, 60], + [2, 78], + [-26, 30], + [-13, 65], + [-28, 19], + [-30, 93], + [-50, 44], + [-72, 24] + ], + [ + [1512, 988], + [201, 352], + [35, 47], + [150, 163], + [161, 218], + [33, 32], + [117, 152], + [10, 38], + [68, 57], + [91, 45], + [91, 63], + [50, 131] + ], + [ + [2519, 2286], + [63, -35], + [46, -46], + [38, 27], + [71, -5], + [67, 28], + [20, -34], + [55, -18], + [47, 21], + [7, -58], + [57, 60], + [66, -6], + [104, -69], + [14, -60] + ], + [ + [8652, 2077], + [-55, -81], + [22, -71], + [-16, -207], + [26, -61], + [-23, -57], + [-75, -33], + [-76, -121], + [36, -22], + [-32, -58], + [8, -56], + [-10, -89], + [-28, -87], + [-33, -55], + [-23, -123], + [13, -46], + [-90, -1], + [-88, 63], + [-79, 0], + [-38, -29], + [-47, -86], + [20, -114], + [-69, 63], + [-49, -45], + [-39, 48], + [-64, -13], + [-7, 82], + [-42, 13], + [-26, 42], + [-48, -2], + [-19, -66], + [-174, -77], + [-138, 89], + [6, 35] + ], + [ + [7395, 912], + [-4, 146], + [-63, 28], + [-49, 47], + [-28, 56], + [13, 75], + [-25, 81], + [-113, -13], + [15, 42], + [55, 13], + [-7, 53], + [19, 36], + [8, 97], + [-26, 70], + [-82, 60], + [27, 36], + [-18, 45], + [3, 88], + [23, 21] + ], + [ + [7143, 1893], + [62, 12], + [39, -60], + [70, -39], + [49, 6], + [10, 63], + [44, -27], + [80, 142], + [-18, 59], + [6, 46], + [47, 98], + [37, 52] + ], + [ + [7569, 2245], + [66, 6], + [40, 23], + [35, -42], + [122, 14], + [30, -22], + [74, 20], + [88, -21], + [123, 7], + [99, -12], + [74, 11], + [96, -8], + [66, -25], + [58, -2], + [112, -117] + ], + [ + [6669, 3637], + [7, -21], + [-34, -91], + [17, -35], + [-10, -101], + [27, -50], + [56, -7], + [70, -108], + [45, -14], + [67, 72], + [54, -14], + [6, -54], + [51, -72], + [95, -67], + [36, 4] + ], + [ + [7156, 3079], + [-9, -41], + [-52, 2], + [-11, -39], + [-88, 7], + [-49, -18], + [-28, -57], + [-33, 20], + [-43, -63], + [-124, -59], + [16, -31], + [-53, -67] + ], + [ + [6682, 2733], + [-73, -33], + [-74, -72], + [-75, -21], + [-66, 58], + [-14, -21], + [-68, 28], + [-71, 99], + [-53, -5], + [-33, 64] + ], + [ + [9505, 2823], + [-41, -136], + [-37, 33], + [-71, 8], + [14, -87], + [-34, -56], + [-1, -122], + [-38, 7], + [-143, 79], + [-49, -59], + [-104, 48], + [-35, -193], + [-23, -41], + [-15, -120], + [-73, 41], + [-56, -50], + [-50, 10], + [-97, -108] + ], + [ + [7569, 2245], + [-29, 46], + [59, 84], + [66, 59], + [-126, 21], + [-22, 56], + [-46, 13], + [0, 68], + [64, -11], + [100, 13], + [20, 24] + ], + [ + [7655, 2618], + [64, 47], + [67, 97], + [-9, 43], + [68, 13], + [23, 37], + [77, 63], + [-43, 46], + [-44, 84], + [7, 72] + ], + [ + [7865, 3120], + [12, 39], + [60, -12], + [102, 64], + [32, -12], + [23, 53], + [58, -50], + [110, -12], + [48, -22], + [67, 27], + [48, -8], + [21, 65], + [44, 55] + ], + [ + [2131, 2897], + [108, 191], + [59, 2], + [30, 105], + [-70, 119], + [9, 171], + [36, 69], + [-14, 84], + [-37, 41], + [74, 76], + [5, 40], + [57, 88] + ], + [ + [2388, 3883], + [28, -14], + [18, -78], + [51, 32], + [69, -3], + [26, -66], + [51, 15], + [61, -35], + [34, 40], + [47, -23], + [14, 44], + [-7, 94], + [90, 7] + ], + [ + [2870, 3896], + [62, -85], + [87, 13], + [42, -24], + [132, 17], + [88, -60], + [58, 36], + [93, -8] + ], + [ + [3098, 2780], + [-66, -43], + [-50, -109], + [-58, -60], + [-144, -58], + [-73, -10], + [-89, -57], + [-59, -70] + ], + [ + [2559, 2373], + [-86, 69], + [-44, 16], + [-112, -4], + [-83, 62], + [21, 22], + [3, 77], + [-16, 51], + [28, 58], + [-22, 53], + [-41, 33], + [-60, 6], + [-16, 81] + ], + [ + [2131, 2897], + [-15, -18], + [-74, 6], + [-50, 26], + [-165, 17], + [-53, -36], + [-159, 43], + [14, -73], + [-35, -13], + [53, -90], + [-43, -59], + [-12, -47], + [-103, -8], + [-73, 56], + [-67, 21], + [-62, 0] + ], + [ + [995, 2967], + [84, 61], + [13, 36], + [64, 68], + [-9, 30], + [49, 32], + [45, 78], + [4, 45], + [52, 21], + [56, 88], + [53, 15], + [157, 129], + [140, 57], + [7, 40], + [-23, 113], + [56, 66], + [121, 28], + [104, -73], + [11, -82], + [40, -22], + [154, -6], + [74, 27], + [13, 162], + [16, 30], + [112, -27] + ], + [ + [3533, 5157], + [-194, -11], + [-110, 1] + ], + [ + [3229, 5147], + [-41, 42], + [-64, 36], + [-68, -4], + [-4, 73], + [-71, 29], + [8, 69], + [-95, 0], + [-52, 52], + [-87, -3], + [-48, 40], + [-41, -17], + [-64, 15], + [-64, 35], + [5, 51], + [-50, 13], + [-68, -20], + [-40, 16], + [-51, -13], + [11, -81], + [-10, -99], + [-51, 14], + [-4, 39], + [-42, 27], + [-98, -63], + [-78, 26], + [-60, 47], + [-36, 72], + [-49, 29] + ], + [ + [1917, 5572], + [-126, 35], + [-120, 7], + [-58, 47], + [-45, 90], + [-57, 14], + [-19, -34], + [-80, 9], + [-99, 32], + [11, 133], + [-11, 46], + [73, 17], + [62, -42], + [26, 62], + [60, -18], + [106, 49], + [3, 48], + [75, 100], + [-2, 114], + [55, -15], + [104, 4], + [-8, -28], + [120, -9], + [65, -39], + [93, -27], + [55, 43], + [65, -1], + [199, 32], + [-15, 28] + ], + [ + [7395, 912], + [-57, -59], + [-13, -46], + [-53, -22], + [-18, -64], + [-52, 2], + [-40, -49], + [-35, -87], + [-4, -157], + [-51, -8], + [-9, -119], + [-35, -23], + [-69, 29], + [-38, 56], + [-57, 41], + [-57, 65], + [-99, 11], + [-23, 84], + [42, 84], + [-24, 62], + [5, 70], + [35, 42], + [-60, 31], + [-99, -3], + [-70, 71], + [-4, -55], + [-113, -20], + [-29, 43], + [-60, 32], + [-17, 79], + [35, 89], + [-21, 78], + [-34, 72], + [-51, 36], + [-52, 15], + [-29, 73] + ], + [ + [6139, 1365], + [-2, 39], + [-56, 71], + [-119, 113], + [-48, 13], + [-37, -32], + [-96, 30], + [-20, 79], + [-51, 53], + [-86, -1], + [6, 78], + [69, 13], + [-53, 81] + ], + [ + [5646, 1902], + [71, 45], + [95, 35] + ], + [ + [5812, 1982], + [164, -70], + [61, 26], + [24, -50], + [53, -29], + [128, 28], + [62, -13], + [27, 75], + [3, 82], + [32, 50], + [40, -3], + [119, -132], + [35, -1], + [22, 72], + [-8, 64], + [68, 65], + [85, 21], + [31, 95], + [83, 65] + ], + [ + [6841, 2327], + [102, -37], + [17, -38], + [-15, -72], + [-47, -51], + [-12, -49], + [115, -68], + [27, -81], + [115, -38] + ], + [ + [7828, 3633], + [75, -52], + [1, -83], + [28, -24], + [-24, -62], + [-2, -98], + [-32, -42], + [11, -51], + [-31, -34], + [11, -67] + ], + [ + [7655, 2618], + [-53, 45], + [-125, 4], + [-39, 90], + [39, 70], + [-56, 72], + [26, 29], + [9, 70], + [-94, 74], + [-22, 94], + [-40, 86], + [-68, -2], + [-76, -171] + ], + [ + [6682, 2733], + [61, -56], + [40, 21], + [44, -23], + [49, -149], + [-36, -132], + [1, -67] + ], + [ + [5812, 1982], + [6, 72], + [42, 13], + [-2, 41], + [61, 33], + [10, 174], + [56, 43], + [-11, 48], + [-67, 104], + [-27, 64], + [-52, 6] + ], + [ + [7439, 4665], + [57, -17], + [43, 10], + [30, 97], + [65, 90], + [25, 60], + [111, -68], + [38, 33], + [63, 13], + [79, -47], + [164, -17], + [139, -54], + [35, 28], + [117, -54], + [64, -4] + ], + [ + [7641, 5729], + [-30, -11], + [-38, -94], + [-1, -50], + [-108, -8], + [-36, -29], + [-19, -54], + [-46, 15], + [-65, -25], + [-53, -65], + [-53, -8], + [-25, -61], + [-13, -154], + [-83, -9], + [-147, -52], + [-16, -70], + [32, -27], + [97, -10], + [26, -23], + [89, 35], + [47, -32], + [-51, -77], + [-46, 16], + [-54, -14], + [-46, -61], + [-27, -72] + ], + [ + [5603, 6183], + [26, 26], + [49, -12], + [7, -105], + [104, 89], + [61, 37], + [36, -2], + [24, 82], + [46, 34], + [87, -9], + [43, 28], + [86, -20], + [11, -23], + [113, -58], + [32, -63], + [79, 35], + [41, -8], + [15, -53], + [46, -13], + [78, 62], + [90, -1], + [33, 18], + [78, -8], + [30, -32], + [84, -26], + [4, -24], + [140, -49], + [91, -66], + [84, -2], + [78, -115], + [93, -26], + [40, -51], + [147, -51], + [62, -48] + ], + [ + [6139, 1365], + [-92, -30], + [-22, -44], + [-50, -10], + [-16, -37], + [-45, -4], + [-89, 57], + [-74, 123], + [-114, 24], + [-37, -39], + [-93, 21], + [-9, 26], + [-64, 26], + [-35, -94], + [-26, -16], + [-14, -62], + [3, -75], + [-56, -93], + [-68, -17], + [31, -59], + [-5, -48], + [24, -72], + [3, -70], + [-65, -39], + [-81, 18], + [-23, 33], + [-48, 15], + [-35, -51], + [16, -49], + [-63, -39], + [-14, -48], + [-71, -3], + [-18, 51], + [-138, -38], + [-59, 25], + [-53, -28] + ], + [ + [5203, 2209], + [101, 37], + [87, -53], + [79, 24], + [39, -23], + [-21, -172], + [-44, -27], + [14, -63], + [40, -4], + [78, -52], + [32, 45], + [38, -19] + ], + [ + [2559, 2373], + [-40, -87] + ], + [ + [1512, 988], + [-45, -109], + [-99, -129], + [-135, -40], + [-24, 13], + [-142, -22], + [-103, -50], + [-72, -15], + [-77, 28], + [-185, -6], + [-130, 34], + [-99, 2], + [-11, 40], + [53, 18] + ], + [ + [3918, 4514], + [30, -123], + [75, -88], + [20, -101], + [94, -54], + [33, -120], + [-13, -90], + [32, -84], + [22, -123], + [-12, -135] + ], + [ + [2870, 3896], + [11, 57], + [45, 88], + [-75, 68], + [-91, 57], + [-44, -19], + [4, 115], + [-50, -14], + [-47, 44], + [-79, 3] + ], + [ + [2544, 4295], + [20, 78], + [-21, 46], + [8, 43], + [-49, 24], + [34, 85], + [-54, 5], + [-34, 99], + [127, -13], + [112, 23], + [114, -8], + [39, 46], + [11, 56], + [42, 43], + [47, -27], + [71, -8], + [93, 21], + [26, 100], + [89, 55], + [11, 71], + [38, 21], + [-5, 58], + [-34, 34] + ], + [ + [2544, 4295], + [-59, 21], + [-36, 87], + [-49, 18], + [-79, 56], + [-123, -33], + [-213, 142], + [-21, -29], + [-45, 24], + [-11, 70], + [-69, 57], + [-46, 74], + [-57, 57], + [-94, 8], + [-15, 84], + [-54, 36], + [-37, 119], + [51, 78], + [110, 13], + [42, 41], + [41, 4], + [6, 54], + [94, -12], + [30, 43], + [8, 79], + [23, 35], + [-33, 56], + [9, 95] + ], + [ + [7641, 5729], + [37, -9], + [71, 81], + [101, -44], + [56, -5], + [52, 41], + [69, 16], + [-1, 67], + [81, 5], + [2, 61], + [187, 58], + [49, 73] + ], + [ + [3458, 2518], + [-19, -49], + [16, -51], + [0, -81], + [37, -65], + [-17, -56], + [17, -38], + [-13, -64] + ] + ], + "transform": { + "scale": [0.000444579158359465, 0.0003784137053069907], + "translate": [83.32793088667316, 24.263228317244714] + }, + "objects": { + "bihar_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4]], + "type": "Polygon", + "properties": { + "censuscode": 215, + "st_cen_cd": 10, + "dt_cen_cd": 13, + "district": "Darbhanga", + "st_nm": "Bihar" + } + }, + { + "arcs": [[5, 6, 7, 8, 9, 10]], + "type": "Polygon", + "properties": { + "censuscode": 236, + "st_cen_cd": 10, + "dt_cen_cd": 34, + "district": "Gaya", + "st_nm": "Bihar" + } + }, + { + "arcs": [[11, 12, 13, 14, 15, 16, 17, 18, 19]], + "type": "Polygon", + "properties": { + "censuscode": 230, + "st_cen_cd": 10, + "dt_cen_cd": 28, + "district": "Patna", + "st_nm": "Bihar" + } + }, + { + "arcs": [[20, -5, 21, 22, 23, 24, 25]], + "type": "Polygon", + "properties": { + "censuscode": 206, + "st_cen_cd": 10, + "dt_cen_cd": 4, + "district": "Sitamarhi", + "st_nm": "Bihar" + } + }, + { + "arcs": [[26, 27, 28, 29, 30]], + "type": "Polygon", + "properties": { + "censuscode": 209, + "st_cen_cd": 10, + "dt_cen_cd": 7, + "district": "Araria", + "st_nm": "Bihar" + } + }, + { + "arcs": [[31, -27, 32]], + "type": "Polygon", + "properties": { + "censuscode": 210, + "st_cen_cd": 10, + "dt_cen_cd": 8, + "district": "Kishanganj", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-4, 33, 34, 35, 36, 37, -22]], + "type": "Polygon", + "properties": { + "censuscode": 216, + "st_cen_cd": 10, + "dt_cen_cd": 14, + "district": "Muzaffarpur", + "st_nm": "Bihar" + } + }, + { + "arcs": [[38, 39, 40, -6, 41, -16]], + "type": "Polygon", + "properties": { + "censuscode": 229, + "st_cen_cd": 10, + "dt_cen_cd": 27, + "district": "Nalanda", + "st_nm": "Bihar" + } + }, + { + "arcs": [[42, 43, 44]], + "type": "Polygon", + "properties": { + "censuscode": 203, + "st_cen_cd": 10, + "dt_cen_cd": 1, + "district": "Pashchim Champaran", + "st_nm": "Bihar" + } + }, + { + "arcs": [[45, 46, 47]], + "type": "Polygon", + "properties": { + "censuscode": 233, + "st_cen_cd": 10, + "dt_cen_cd": 31, + "district": "Kaimur", + "st_nm": "Bihar" + } + }, + { + "arcs": [[48, 49, 50]], + "type": "Polygon", + "properties": { + "censuscode": 212, + "st_cen_cd": 10, + "dt_cen_cd": 10, + "district": "Katihar", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-25, 51, -23, -38, 52, -43, 53]], + "type": "Polygon", + "properties": { + "censuscode": 204, + "st_cen_cd": 10, + "dt_cen_cd": 2, + "district": "Purba Champaran", + "st_nm": "Bihar" + } + }, + { + "arcs": [[54, -50, 55, 56, -28, -32]], + "type": "Polygon", + "properties": { + "censuscode": 211, + "st_cen_cd": 10, + "dt_cen_cd": 9, + "district": "Purnia", + "st_nm": "Bihar" + } + }, + { + "arcs": [[57, 58, 59, -2, 60, 61]], + "type": "Polygon", + "properties": { + "censuscode": 214, + "st_cen_cd": 10, + "dt_cen_cd": 12, + "district": "Saharsa", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-60, 62, 63, -13, 64, -34, -3]], + "type": "Polygon", + "properties": { + "censuscode": 221, + "st_cen_cd": 10, + "dt_cen_cd": 19, + "district": "Samastipur", + "st_nm": "Bihar" + } + }, + { + "arcs": [[65, 66, 67, -9]], + "type": "Polygon", + "properties": { + "censuscode": 235, + "st_cen_cd": 10, + "dt_cen_cd": 33, + "district": "Aurangabad", + "st_nm": "Bihar" + } + }, + { + "arcs": [[68, 69, 70, 71]], + "type": "Polygon", + "properties": { + "censuscode": 225, + "st_cen_cd": 10, + "dt_cen_cd": 23, + "district": "Banka", + "st_nm": "Bihar" + } + }, + { + "arcs": [[72, 73, 74, -14, -64]], + "type": "Polygon", + "properties": { + "censuscode": 222, + "st_cen_cd": 10, + "dt_cen_cd": 20, + "district": "Begusarai", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-49, 75, -72, 76, 77, 78, -56]], + "type": "Polygon", + "properties": { + "censuscode": 224, + "st_cen_cd": 10, + "dt_cen_cd": 22, + "district": "Bhagalpur", + "st_nm": "Bihar" + } + }, + { + "arcs": [[79, 80, 81, -19, 82, 83]], + "type": "Polygon", + "properties": { + "censuscode": 231, + "st_cen_cd": 10, + "dt_cen_cd": 29, + "district": "Bhojpur", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-80, 84, -46, 85]], + "type": "Polygon", + "properties": { + "censuscode": 232, + "st_cen_cd": 10, + "dt_cen_cd": 30, + "district": "Buxar", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-53, -37, 86, 87, 88, -44]], + "type": "Polygon", + "properties": { + "censuscode": 217, + "st_cen_cd": 10, + "dt_cen_cd": 15, + "district": "Gopalganj", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-70, 89, 90, 91, 92, 93]], + "type": "Polygon", + "properties": { + "censuscode": 238, + "st_cen_cd": 10, + "dt_cen_cd": 36, + "district": "Jamui", + "st_nm": "Bihar" + } + }, + { + "arcs": [[94, -78, 95, -73, -63, -59]], + "type": "Polygon", + "properties": { + "censuscode": 223, + "st_cen_cd": 10, + "dt_cen_cd": 21, + "district": "Khagaria", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-75, 96, -93, 97, -39, -15]], + "type": "Polygon", + "properties": { + "censuscode": 227, + "st_cen_cd": 10, + "dt_cen_cd": 25, + "district": "Lakhisarai", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-29, -57, -79, -95, -58, 98]], + "type": "Polygon", + "properties": { + "censuscode": 213, + "st_cen_cd": 10, + "dt_cen_cd": 11, + "district": "Madhepura", + "st_nm": "Bihar" + } + }, + { + "arcs": [[99, -61, -1, -21, 100]], + "type": "Polygon", + "properties": { + "censuscode": 207, + "st_cen_cd": 10, + "dt_cen_cd": 5, + "district": "Madhubani", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-52, -24]], + "type": "Polygon", + "properties": { + "censuscode": 205, + "st_cen_cd": 10, + "dt_cen_cd": 3, + "district": "Sheohar", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-77, -71, -94, -97, -74, -96]], + "type": "Polygon", + "properties": { + "censuscode": 226, + "st_cen_cd": 10, + "dt_cen_cd": 24, + "district": "Munger", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-91, 101, -7, -41, 102]], + "type": "Polygon", + "properties": { + "censuscode": 237, + "st_cen_cd": 10, + "dt_cen_cd": 35, + "district": "Nawada", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-47, -85, -84, 103, -67, 104]], + "type": "Polygon", + "properties": { + "censuscode": 234, + "st_cen_cd": 10, + "dt_cen_cd": 32, + "district": "Rohtas", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-36, 105, -20, -82, 106, 107, -87]], + "type": "Polygon", + "properties": { + "censuscode": 219, + "st_cen_cd": 10, + "dt_cen_cd": 17, + "district": "Saran", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-98, -92, -103, -40]], + "type": "Polygon", + "properties": { + "censuscode": 228, + "st_cen_cd": 10, + "dt_cen_cd": 26, + "district": "Sheikhpura", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-108, 108, -88]], + "type": "Polygon", + "properties": { + "censuscode": 218, + "st_cen_cd": 10, + "dt_cen_cd": 16, + "district": "Siwan", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-99, -62, -100, 109, -30]], + "type": "Polygon", + "properties": { + "censuscode": 208, + "st_cen_cd": 10, + "dt_cen_cd": 6, + "district": "Supaul", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-65, -12, -106, -35]], + "type": "Polygon", + "properties": { + "censuscode": 220, + "st_cen_cd": 10, + "dt_cen_cd": 18, + "district": "Vaishali", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-10, -68, -104, -83, -18, 110]], + "type": "Polygon", + "properties": { + "censuscode": 240, + "st_cen_cd": 10, + "dt_cen_cd": 38, + "district": "Arwal", + "st_nm": "Bihar" + } + }, + { + "arcs": [[-42, -11, -111, -17]], + "type": "Polygon", + "properties": { + "censuscode": 239, + "st_cen_cd": 10, + "dt_cen_cd": 37, + "district": "Jehanabad", + "st_nm": "Bihar" + } + } + ] + } + } +} diff --git a/public/maps/chhattisgarh.json b/public/maps/chhattisgarh.json index f7af5606cb..16da3d0229 100644 --- a/public/maps/chhattisgarh.json +++ b/public/maps/chhattisgarh.json @@ -1 +1,4573 @@ -{"type":"Topology","arcs":[[[5569,7907],[9,-9]],[[5578,7898],[43,-42],[37,-11],[14,-52],[-89,-53],[-11,-38],[15,-116],[33,-52],[-57,-44],[-4,-97],[188,-87],[44,-39],[9,-42],[24,-5],[31,16],[154,-36],[34,8],[74,100],[42,20],[143,-46],[-27,-224],[-18,-48],[26,-63],[-16,-14],[2,-65],[-68,-22],[57,-79],[1,-102],[62,-67],[40,-15],[3,-15],[-53,-13],[-28,-41],[7,-26],[21,-27],[131,-33],[-32,-43],[0,-71],[-44,-27],[-180,6],[3,-25],[-44,-14],[-8,-18],[17,-80],[57,-94],[-71,-54],[-12,-63],[59,-10],[155,-78],[23,-87],[71,60],[134,-56],[-32,-84],[0,-39],[14,-34],[22,-7],[-1,-24],[38,-3],[16,-39],[24,7],[17,-12],[48,-113],[105,40],[30,-40],[42,-19],[1,-32],[-38,-28],[5,-20],[34,-26],[68,8],[24,-53],[59,-41],[60,-22],[106,120],[110,2],[36,72],[76,-61],[147,-67],[58,-155],[-24,-46],[16,-14],[43,8],[8,-41],[-16,-34],[111,-41],[33,-28],[4,-30],[20,-5],[59,35],[151,-31],[38,7],[54,39],[20,43],[-6,22],[18,14],[53,-34],[46,1],[105,33],[26,44],[49,5],[113,-34],[34,-31],[-74,-145],[13,-67],[9,-17],[59,-37],[47,-71]],[[8648,4649],[-29,-29],[28,-64],[-67,-62],[0,-139],[-160,36],[-112,93],[-39,-18],[23,-36],[-8,-115],[58,-7],[66,-35],[66,-49],[18,-35],[124,-50],[-44,-61],[-11,-45],[17,-36],[-17,-19],[-36,12],[-81,-2],[-58,35],[-39,-36],[-16,-75],[13,-52],[-17,-21],[-72,4],[-59,-60],[-39,-2],[-26,-21],[-45,-64],[3,-60],[-26,-39],[-413,-361],[-86,-339],[-436,-32],[-26,-14],[-19,-29],[57,-78],[-9,-24],[-60,2],[-204,-62],[-64,9],[-14,-41],[-21,-6],[-94,-97],[-98,-57],[-101,-16],[-22,-54],[11,-62],[-105,-271],[2,-31],[48,-29],[39,-77],[-4,-46],[-50,-98],[-16,-189],[-59,-101],[-11,-76],[-66,-42],[-38,-110],[18,-44],[7,-84],[-29,-104],[21,-69],[-52,-77],[-61,-43],[-48,-105],[15,-119],[-55,-140],[-35,-6],[-133,71],[-39,-5],[-11,-13],[-21,-118],[43,-79],[-24,-56],[-45,-52],[-1,-115],[-199,42],[-148,4],[-85,-14],[-222,12],[-203,108],[-109,71],[-162,29],[-354,-215],[-10,-39],[-68,-88],[-89,-18],[-92,17],[-26,18],[-100,139],[-41,111],[-51,390],[-12,26],[-36,19],[-34,137],[-27,224],[-52,197],[18,61],[-68,146],[-43,47],[30,89],[-12,96],[10,32],[116,105],[7,76]],[[3692,1930],[88,14],[47,-7],[-4,-23],[19,-13],[22,7],[81,-26],[54,48],[89,28],[114,149],[67,-2],[-60,138],[-26,-12],[-34,40],[-35,18],[-3,31],[-38,51],[-39,0],[-55,50],[64,22],[33,137],[22,6],[12,24],[-34,39],[0,45],[-38,36],[-7,41],[-38,62],[-20,6],[-44,-20],[-54,-2],[-59,33],[-115,22],[-63,47],[-38,46],[-23,3],[-88,-29],[-23,11],[-18,43],[-42,29],[-44,-6],[57,76],[49,25],[10,35],[13,7],[23,-15],[60,34],[31,87],[73,64],[102,191],[158,129],[-13,132],[35,43],[72,0],[122,68],[43,2],[112,-16],[248,-64],[84,56],[-17,40],[76,-48],[58,28],[11,24],[10,220],[-38,12],[-100,-25],[-100,-124],[2,159],[57,60],[1,127],[37,14],[43,79],[-77,76],[-4,127],[85,105],[61,130],[21,5],[17,36],[-21,236],[-21,33],[-11,98],[78,96],[6,85],[44,95],[3,143],[10,28],[35,32],[-7,68],[-74,-19],[-60,4],[-21,-19],[-44,19],[-29,-13],[-24,12],[-8,26],[11,24],[41,17],[12,44],[55,28],[123,8],[32,60],[42,43],[-46,24],[-32,46],[-30,8],[-43,53],[41,68],[69,49],[-4,20],[-57,-7],[-22,23],[84,147],[-27,44],[-51,176],[-5,170],[13,71],[-31,82],[34,77],[-32,88],[-48,3],[-165,-43],[-88,11],[-90,154],[0,76],[-20,21],[-53,20],[30,36],[60,26],[-17,49]],[[4426,7555],[67,-7],[18,20],[-19,84],[8,109],[76,-6],[13,-88],[49,-46],[113,39],[15,49],[15,11],[118,-4],[37,80],[6,82],[36,20],[174,13],[77,53],[84,0],[72,-19],[89,-30],[30,-36],[65,28]],[[13496,19080],[116,-16],[52,-105],[44,24],[23,-10],[94,-83],[29,6],[57,55],[10,89],[147,-37],[33,-73],[-4,-124],[58,-45],[118,-11],[49,-22],[60,4],[82,-45],[-7,-18],[-42,-9],[4,-28],[21,-37],[56,-15],[11,-27],[-11,-66],[75,-82],[28,13],[31,51],[65,47],[52,76],[52,-36],[-5,-60],[30,22],[35,60],[66,-17],[49,-69],[52,-3],[44,15],[125,-29],[22,7]],[[15217,18482],[4,-82],[-24,-71],[-55,-69],[29,-27],[-33,-37],[-1,-37],[24,-52],[70,-31],[9,-54],[-34,-88],[-53,36],[-74,4],[-53,-57],[-35,9],[-33,-36],[-21,-47],[25,-140],[-20,0],[1,-42],[-39,-72],[18,-53],[-58,-88],[-1,-62],[-29,-23],[-5,-93],[-13,-20],[-68,-25],[-76,3],[-138,-135],[-71,-21],[-58,34],[-66,-17],[-32,16],[-86,3],[-59,40],[-65,22],[-32,-6],[-57,36],[2,27],[-96,73],[-57,13],[-30,32],[-48,-31],[-18,47],[-74,-8],[-28,93],[-18,8],[-94,-74],[-47,-1],[-30,-14],[-99,24],[-116,-71],[-32,10],[-20,44],[-26,-22],[-84,14],[1,24],[-36,3],[-138,-25],[-85,-41],[-33,-58],[-35,9],[-123,90],[-26,6],[-156,-4],[-137,-32],[-10,21],[-37,6],[-113,-38],[-81,5],[-50,-12],[-16,-35],[6,-32],[69,-58],[-53,-69],[6,-26],[33,-24],[-48,-51],[-47,-78],[-54,-9],[-30,-20],[-1,-38],[67,-140],[-69,-94],[-21,-64],[-112,-98],[-20,-40],[-59,-62],[-68,-131],[-36,-34],[-133,-53],[-29,-38],[-99,-41],[-41,-30],[-12,-20],[8,-103],[-14,-125],[-22,-44],[-89,-57],[13,-42],[-17,-19],[-28,-13],[-62,13],[-23,30],[-106,-17],[-49,56],[8,55],[-25,27],[-5,48],[-93,38],[-74,-30],[-45,12],[-16,18],[16,65],[-63,6],[-23,-71]],[[10558,15880],[-12,36],[-29,15],[-84,3],[-112,118],[-68,33],[-15,17],[-7,98],[-182,34],[-103,42],[-18,-5],[13,-39],[-9,-34],[-127,30],[-36,34],[-26,91],[-29,4],[-27,27],[-21,108],[-54,132],[-129,6],[-161,47],[-138,108],[-341,194],[-61,104],[5,78],[29,103],[43,46],[41,112],[2,240],[40,69],[205,198],[299,128],[69,55],[64,79],[59,30],[71,107],[6,47],[38,44],[26,60],[-14,-4],[69,33],[183,256],[59,-3],[-17,-35],[13,-44],[57,-28],[65,-58],[10,-38],[-2,-48],[-82,-6],[-77,-93],[52,-61],[15,-137],[-70,-69],[73,-19],[34,-51],[60,-12],[-4,-77],[14,-49],[97,-24],[3,57],[71,3],[14,54],[37,5],[64,-49],[77,2],[2,-28],[-22,-19],[-9,-29],[21,-12],[41,7],[32,43],[41,-4],[59,-61],[39,20],[16,118],[18,26],[126,73],[80,-12],[29,-19],[5,-24],[-37,-40],[1,-38],[46,-33],[32,4],[20,91],[89,5],[-61,67],[-7,77],[37,-8],[15,20],[54,-40],[95,-21],[79,22],[59,54],[44,-30],[89,-15],[36,8],[101,63],[240,38],[73,38],[70,-67],[82,-32],[99,6],[27,217],[-25,111],[14,49],[-19,240],[-42,163],[215,44],[198,153],[66,-55],[32,-12],[74,1],[108,-27],[-25,95],[7,44],[34,-11],[32,51],[192,73],[24,-11],[82,-98],[116,-213],[72,34]],[[5570,7906],[13,25],[35,8],[56,-17],[48,38],[54,-12],[2,30],[-37,115],[-66,6],[-61,47],[57,100],[-11,83],[15,30],[66,-5],[-23,-108],[10,-29],[56,-58],[7,-25],[45,-30],[57,6],[75,58],[169,-4],[1,144],[-22,116],[8,87],[40,147],[-211,22],[-35,36],[-19,53],[26,35],[103,75],[12,50],[-48,29],[-2,58],[29,72],[72,75],[-15,58],[25,72],[-12,71],[14,61],[-7,19],[-26,12],[-7,59],[162,35],[103,40],[45,48],[-89,-10],[-78,8],[-54,39],[-125,45],[-9,27],[16,99],[-101,84],[-85,24],[-164,13],[-33,40],[-7,45],[51,53],[-19,84],[-24,43],[18,23],[-25,60],[6,51],[108,155]],[[5759,10521],[-8,8]],[[5751,10529],[-81,84],[49,50],[85,43],[-9,74],[-95,67],[-55,63],[-40,21],[-68,-13],[-13,84],[-81,47],[-12,27],[8,93],[-12,41],[-116,45],[-17,51],[4,79],[-43,84],[77,4],[28,28],[132,65],[86,-15],[13,62],[147,6],[16,69],[67,94],[-21,186],[90,172],[8,42],[159,-52],[116,66],[188,31],[61,22],[166,110],[134,26],[20,-5],[76,-106],[41,-30],[21,-46],[142,-84],[174,-65],[226,48],[39,88],[109,36],[120,-36],[91,9],[53,13],[37,22],[13,25]],[[7884,12254],[52,-1],[104,-29],[12,-270],[14,-30],[109,-112],[-4,-132],[36,-38]],[[8207,11642],[-68,-118],[-66,-272],[-48,-105],[8,-23],[49,-36],[-15,-122],[19,-35],[99,-78],[145,-73],[208,-70],[105,-52],[-15,-96],[20,-60],[94,-147],[37,-21],[78,35],[106,-28],[85,-4],[36,-20],[20,15],[38,-42],[-22,-114],[9,-39],[-66,-81],[-1,-122],[-31,-51],[4,-57],[42,-121],[-4,-81],[12,-22],[-10,-27],[25,-101],[-33,-70],[1,-47],[-38,-19],[-17,-37],[5,-38],[46,-95],[-19,-65],[29,-70],[-26,-66],[-42,-23],[-51,-100],[188,9],[55,63],[107,-31],[-6,-81],[41,-23],[14,-81],[-25,-65],[52,-44],[-2,-49],[63,-98],[240,31],[17,-2],[63,-61],[2,-27],[-29,-35],[-19,-147],[-38,-57],[-78,23],[-32,-2],[-16,-22],[6,-90],[190,-82],[15,-65],[-48,-17],[-26,-132],[-51,-47],[-33,-83],[0,-215],[10,-40],[38,-38],[-28,-61],[46,-47],[43,-15],[-20,-40],[26,-16],[3,-20],[-20,-7],[38,-48],[-20,-32],[-36,22],[-18,-12],[5,-22],[49,-26],[-14,-15],[-31,4],[-5,-19],[16,-29],[-41,-38],[25,-61],[25,-9],[32,63],[75,-45],[43,6],[9,-9],[-23,-75],[13,-6],[-5,-30],[68,-18],[-17,-62],[-59,-55],[-14,-40],[156,-234],[73,-535],[-42,-27],[-87,36],[-143,-79],[-64,-8],[-11,-91],[-62,-42],[23,-21],[-24,-69],[23,-35],[-4,-37],[16,-40],[-33,-96],[18,-34],[-38,-44],[23,-6],[11,-22],[-47,-36],[-31,-55],[-33,-19],[-41,3],[-13,-30],[4,-34],[-76,15],[-113,-23],[-34,11],[-16,-12],[27,-47],[-41,-179],[-87,31],[-11,-1],[-5,-28],[-31,-3],[-13,29],[-78,6],[-91,-27],[-90,-67],[-109,-27],[-76,-48]],[[5578,7898],[-8,8]],[[11311,30876],[-2,-106],[94,-40],[103,16],[56,-32],[14,-68],[67,-42],[18,-47],[52,-38],[93,-151],[28,-102],[-10,-38],[-41,-76],[-51,-28],[-40,-92],[17,-44],[0,-143],[30,-141],[-14,-78],[156,-146],[77,-18],[69,-61],[26,-51],[35,-139],[13,-243],[-30,-83],[0,-53],[11,-18],[60,-18],[52,-47],[29,-10],[70,-8],[95,-41],[72,18],[85,-29],[59,-104],[8,-46],[-3,-380],[-76,-71],[-79,-50],[-69,-23],[-111,3],[-50,-64],[-47,-29],[-34,-54],[-56,-179],[-49,-99],[-23,-20],[-161,4],[-44,-43],[-66,-19],[-22,-21],[40,-133],[-3,-49],[-14,-33],[-66,-20],[-5,-56],[44,-86],[8,-82],[31,-24],[20,-43],[86,-81],[4,-18],[-13,-23],[-67,-19],[-67,-53],[-7,-92],[45,-104],[-10,-23],[-55,-6]],[[11693,26539],[-7,28],[-49,38],[16,28],[43,22],[-15,24],[-29,14],[-126,10],[-143,-36],[-101,3],[-44,-17],[-62,14],[-109,-5],[-152,38],[-27,19],[-19,63],[-105,38],[-91,-1],[-110,-43],[-56,-50],[-39,-63],[-47,1],[-135,-35],[-176,-112],[-90,-5],[-91,16]],[[9929,26528],[-108,48],[-115,106],[-3,98],[28,54],[8,79],[-41,130],[-75,49],[-67,125],[-133,149]],[[9423,27366],[62,43],[23,101],[92,52],[13,84],[-82,35],[22,51],[-21,28],[1,40],[45,110],[-21,94],[56,94],[29,16],[52,108],[84,39],[15,35],[-13,54],[16,85],[-29,79],[-132,33],[-101,147],[-27,1],[-91,-42],[-33,23],[-17,25],[4,100],[-34,77],[-18,4],[-49,-27],[-7,18],[-19,2],[-84,-24],[-33,5],[-37,-76],[-18,-4],[-43,8],[-39,41],[-31,-19],[-43,21],[-2,29],[29,38],[-13,37],[30,11],[-37,68],[-83,-55],[-38,34],[-23,1],[-42,-42],[-14,8],[-28,56],[23,41],[-19,81],[-51,63],[-55,32],[-13,29],[6,128],[-72,46],[-91,136],[-35,15],[-48,-4],[-103,-81],[-49,-20],[-95,10],[-118,-27],[-73,32],[-13,26],[5,58],[-32,61],[-35,16],[-208,19],[-42,66],[-60,10],[-34,-12],[-50,-46],[-65,-116],[-67,-53],[-130,44],[-63,-1],[-5,-91],[-30,-60],[-62,-20],[-35,-42],[-55,24],[-51,61],[-8,225],[-16,16],[-127,6],[-37,174],[53,41],[73,-6],[40,23],[-9,72],[43,98],[19,144],[150,-3],[24,39],[8,80],[119,51],[71,144],[-76,96],[31,46],[-22,26],[-172,88],[-7,34],[26,73],[-5,65],[-72,153],[-40,13],[-54,-6],[-18,13],[-37,79],[-5,43],[4,12],[40,-2],[26,16],[17,30],[-73,54],[-17,29],[33,18],[35,74],[94,4],[41,31],[72,21],[29,35],[21,6],[31,-51],[59,-42],[15,-92],[22,-25],[53,6],[5,-41],[23,-27],[-2,-48],[50,-3],[52,-20],[5,-42],[-28,-38],[4,-15],[57,-6],[212,-129],[50,-12],[54,13],[92,-25],[85,39],[15,22],[107,15],[46,54],[82,16],[79,32],[112,149],[76,-26],[3,-27],[93,-50],[167,47],[84,6],[55,-56],[85,-23],[33,-27],[-15,-68],[42,-15],[24,-30],[134,-4],[30,-14],[111,16],[44,-8],[43,23],[84,-25],[109,20],[33,-10],[37,24],[19,74],[80,24],[31,34],[42,14],[13,-62],[-37,-47],[11,-19],[74,-37],[25,-56],[25,-17],[27,5],[86,62],[33,11],[113,-25],[87,-44],[81,14],[49,-13],[37,-26],[51,12],[43,-11],[107,38],[100,-50],[176,24],[66,-7],[47,32],[72,3],[49,-19],[64,-53],[12,-47],[33,-13]],[[19052,27705],[-101,96],[-101,-31],[-48,8],[-100,-12],[-28,-36],[26,-46],[-54,5],[-56,-15],[-13,-53],[-26,-29],[-49,2],[-18,44],[9,53],[-106,80],[-66,4],[-67,105],[-141,98],[-45,13],[-66,46],[-156,31],[-48,30],[-43,-118],[-27,-6],[-135,84],[-124,-70],[-17,-47],[3,-39],[-23,-12],[-53,-6],[-25,24],[-12,52],[-145,41],[-63,-9],[-123,-47],[-42,5],[-23,-18],[-88,-164],[-135,39],[-46,-81],[-64,4],[-3,-38],[36,-119],[-7,-54],[-37,-37],[-79,-42],[-68,-100],[-64,-50],[-1,-39],[-43,-70],[28,-42],[90,-7],[35,-26],[66,-61],[27,-54],[-91,-160],[-87,-80],[-31,-143],[27,-67],[66,-61],[55,-77],[118,-109],[52,-31],[33,-84],[33,-23],[69,-15],[-19,-45],[23,-29],[96,-44],[58,-78],[87,-24],[35,-193],[22,-35],[-37,-74],[22,-35],[-4,-29],[-32,-21],[15,-43],[-92,-53],[-3,-110],[25,-24],[240,-125],[21,-78],[-12,-83],[-12,-38],[-59,-71],[-56,39],[-43,91],[-42,38],[-212,88],[-145,85],[-35,-4],[-37,42],[-128,-96],[-111,-29],[-29,-84],[-129,51],[-175,32],[-38,-3],[-8,-14]],[[16023,25145],[-40,-52],[-63,-12],[-12,-22],[12,-60],[-29,-21],[-27,45],[-91,49],[-23,126],[-9,62],[46,-11],[17,11],[40,162],[-20,57],[-66,32],[-35,-9],[-57,-46],[-71,4],[-51,104],[-69,68],[-48,-31],[-144,32],[-184,13],[-21,8],[-9,23],[-42,0],[-11,54],[-60,-1],[-14,27],[-108,-42],[-23,2],[-10,19],[-17,-3],[-128,-70],[-15,-23],[-13,-110],[-25,-43],[-85,-19],[-81,-37],[-4,-65],[24,-62],[-7,-28],[-62,-62],[12,-44]],[[14400,25170],[-116,-12],[-156,-41],[-208,-138],[-25,3],[-14,32],[-78,72],[-20,10],[-98,-5],[-130,66],[-101,129],[-123,90],[-76,84],[-91,72],[-168,-20],[-190,77],[-96,59],[-33,43],[-11,55],[-107,82],[-124,131],[-83,15],[-49,-8],[-107,-76],[-87,-38],[-63,9],[-51,35],[-145,59],[-89,8],[-54,-10],[-25,10],[-64,68],[-12,53],[8,37],[58,24],[41,80],[4,64],[58,-3],[25,23],[-9,33],[-90,48],[5,117],[-13,32]],[[11311,30876],[123,-8],[64,37],[57,-1],[22,15],[-19,83],[-34,24],[-33,47],[104,15],[65,-21],[27,10],[98,-10],[100,69],[118,14],[9,38],[33,18],[15,43],[14,8],[42,-17],[42,72],[-15,40],[-56,54],[6,32],[46,67],[104,10],[64,55],[60,23],[81,-18],[151,4],[29,71],[105,13],[78,62],[42,60],[111,14],[141,-93],[71,-109],[91,-79],[125,-63],[57,-13],[39,-24],[40,-58],[82,-33],[173,34],[263,18],[124,-40],[129,15],[204,61],[35,23],[22,51],[33,29],[52,7],[62,33],[109,17],[17,30],[-9,30],[53,41],[20,68],[27,33],[-14,64],[37,41],[1,45],[105,62],[-7,29],[32,34],[26,8],[60,-19],[95,67],[20,59],[-12,77],[33,76],[42,65],[93,80],[18,66],[56,-37],[91,-13],[58,24],[130,-9],[46,-26],[54,-72],[112,15],[24,-50],[-5,-62],[10,-21],[82,-79],[158,-20],[154,-68],[34,-76],[-45,-47],[1,-113],[24,-64],[132,-173],[-8,-97],[28,-84],[33,-28],[104,-12],[30,-31],[-16,-38],[-77,-38],[18,-34],[101,-6],[46,-28],[106,-15],[93,-31],[98,4],[33,-23],[7,-34],[-12,-26],[15,-22],[42,-9],[28,-30],[49,29],[68,-26],[16,-22],[-15,-45],[76,-93],[8,-89],[74,-64],[11,-26],[0,-118],[27,-94],[-13,-46],[-48,-54],[-38,-20],[-1,-40],[71,-78],[110,-72],[6,-22],[-38,-17],[-7,-27],[23,-71],[86,-27],[15,-63],[35,-50],[57,-6],[58,-42],[13,-35],[30,-5],[23,34],[52,-20],[309,-63],[37,17],[42,-25],[184,-41],[-28,157],[9,91],[32,57],[125,20],[64,24],[158,7],[4,-19],[-20,-12],[-10,-30],[55,-77],[49,-41],[8,-49],[-6,-68],[11,-46],[-19,-82],[7,-29],[-50,-120],[-2,-65],[-18,-45],[-58,-33],[-63,-90],[-28,-77],[-48,-27],[1,-40],[49,-108],[-17,-98],[-42,-75],[-10,-60],[6,-36],[40,-49],[41,-27],[117,-34],[72,116],[29,8],[85,-15],[19,-15],[-19,-7],[32,-92],[53,-45],[49,-67],[-51,-113],[19,-82],[-19,-30],[-48,-233],[18,-35],[-8,-92],[30,-66],[-12,-36],[-61,-61],[-51,-86]],[[2947,8045],[50,-82],[20,24],[23,5],[122,-25],[62,1],[17,-3],[17,-26],[12,-55],[32,-14],[47,9],[22,-18],[49,25],[135,-22],[26,-15],[35,-48],[-19,-127],[61,-148],[-27,-134],[99,16]],[[3730,7408],[20,-5]],[[3750,7403],[11,20],[22,3],[69,-9]],[[3852,7417],[80,10]],[[3932,7427],[33,-24],[26,5],[35,29],[24,-10],[11,-28],[27,0],[65,28],[-16,192],[11,14],[27,9],[38,-16],[32,29],[95,-13],[41,-54]],[[4381,7588],[45,-33]],[[3692,1930],[-1,50],[-98,-6],[-51,-51],[-37,-12],[-24,-28],[-100,-56],[-57,-19],[-194,-11],[-2,20],[-30,33],[-20,131],[3,78],[-21,72],[5,14],[61,-9],[30,24],[1,21],[-42,96],[-98,11],[-27,26],[-24,5],[-53,-17],[-9,-29],[4,-196],[-37,-20],[1,-25],[-64,-63],[-179,-17],[-87,10],[-53,35],[-7,242],[257,126],[14,17],[5,39],[-16,20],[-38,9],[-55,95],[-47,33],[-29,66],[-34,24],[-8,102],[-83,145],[-19,56],[8,55],[-40,57],[-3,22],[65,85],[-11,27],[-42,4],[-26,-21],[-110,70],[21,78],[18,8],[-19,24],[-60,19],[-13,47],[-150,95],[-81,136],[-6,23],[15,21],[-19,60],[-28,-3],[-66,40],[-16,38],[-77,80],[-71,43],[-67,20],[-51,58],[-130,69],[-17,39],[-67,70],[-7,30],[-79,23],[-49,47],[-42,4],[-86,-26],[-64,19],[-172,-90],[-70,-8],[-103,-71],[-56,49],[-39,4],[-49,-66],[-56,-23],[-15,8],[-37,44],[-61,129],[-116,328],[-92,130],[-35,13],[-81,117],[-77,82],[13,39],[34,28],[115,-15],[24,13],[68,111],[47,37],[97,13],[138,77],[12,67],[-65,165],[-189,228],[-153,145],[-18,61],[24,121],[-6,119],[23,52],[106,125],[9,36],[-32,91],[135,94],[32,53],[-11,68],[58,66],[-53,121],[20,88],[53,31],[26,58],[24,21],[138,63],[41,28],[28,43],[-48,146],[11,78],[46,55],[199,57],[88,80],[126,304],[25,32],[125,32],[67,35],[89,135],[140,119],[42,18],[26,-13],[55,-109],[-8,-45],[16,-79],[93,-213],[69,-35],[234,112],[75,-12],[25,-21],[5,-38],[-17,-87],[9,-46],[51,-23],[279,23],[85,110],[60,54],[49,28],[58,6],[17,36],[118,81]],[[9929,26528],[-74,-156],[-187,-197],[-64,-114],[-51,-39],[0,-11],[44,-11],[-7,-97],[27,-44],[-1,-92],[-31,-214],[-17,-36],[10,-26],[62,-58],[15,-148],[31,-29],[3,-134],[9,-11],[72,23],[51,-21],[21,-32],[74,6],[112,-26],[-22,-122],[13,-67],[-33,-137],[-131,15],[-47,-82],[-109,-119],[-69,-57],[-40,-17],[51,-60],[-29,-155],[-48,-38],[-21,-35],[-17,-149],[11,-29],[34,-21],[77,-22],[80,-161],[-6,-24],[-66,-48],[-8,-68],[-85,-5],[26,-46],[-6,-130],[-23,-51],[-51,-45],[122,-12],[25,-25],[27,-3],[31,13],[34,-38],[49,-7],[22,-20],[32,14],[46,112],[78,-41],[38,21],[137,5],[19,-18],[9,-50],[-8,-44],[-37,-60],[-2,-40],[40,5],[106,-44],[17,0],[57,51],[104,139],[137,9],[85,-48],[34,-71],[101,13],[39,-26],[36,-65],[26,-19],[-115,-105],[141,-76],[73,-113],[57,-14],[46,-32]],[[11115,22799],[13,-14]],[[11128,22785],[-13,-93],[74,-41],[-40,-36]],[[11149,22615],[-58,-25]],[[11091,22590],[-53,-31],[-34,-44],[-53,-122],[-109,-20],[-43,-27],[-93,34],[-96,-7],[-49,-47],[-66,-113],[19,-68],[-2,-64],[-36,-158],[14,-162],[-13,-37],[-38,-22],[-2,-14],[9,-31],[-7,-50],[16,-50],[-7,-37],[27,-38],[-96,-147],[-14,-44],[9,-57],[-19,-45],[49,-13],[-24,-36],[21,-36],[2,-38],[34,-40]],[[10437,21026],[17,-20]],[[10454,21006],[134,-85],[25,-68]],[[10613,20853],[20,-78]],[[10633,20775],[12,-29]],[[10645,20746],[18,-40]],[[10663,20706],[59,-220]],[[10722,20486],[7,-23]],[[10729,20463],[18,-27],[42,24],[31,-19],[65,-1],[52,-67],[80,-32]],[[11017,20341],[-70,-75],[-125,-63],[-349,-1],[-82,31],[-53,37],[-40,103],[-33,27],[-368,30],[-82,33],[-42,53],[-27,84],[-9,97],[18,143],[-23,36],[-109,15],[-188,-65],[-119,118],[-65,19],[-105,54],[-76,56],[-46,11],[-28,1],[-19,-23],[-31,-89],[-23,-16],[-63,-22],[-166,-7],[-102,-38],[-22,-45],[-4,-54],[-50,-60]],[[8516,20731],[-81,89],[-88,30],[-44,29],[3,112],[-12,46],[18,63],[-31,23],[-47,-3],[-45,-44],[-23,2],[-43,71],[-32,-2],[-48,-22],[4,-46],[-28,-21],[-63,3],[-43,18],[-8,20],[35,96],[0,57],[-105,58],[-13,19],[10,70],[-27,12],[-42,-5],[-35,28],[-27,-1],[-44,-25],[-59,28],[-67,-31],[-83,-14],[-39,34],[-66,18],[1,20],[-59,21],[-68,-11],[-78,15],[-20,21],[0,85],[-17,20],[-44,18],[-87,-11],[-17,-24],[-33,9],[-19,18],[-14,66],[-46,75],[-21,17],[-73,7],[-29,20],[-21,0],[-19,-29],[62,-15],[13,-20],[-9,-54],[17,-49],[-41,-37],[-19,-2],[-27,22],[-7,38],[-60,-3],[-12,29],[-37,28],[-55,9],[-77,-22],[-38,-63],[-75,111]],[[6314,21752],[23,17],[11,35],[-3,38],[-48,-6],[15,99],[9,28],[41,5],[53,142],[-32,39],[-34,109],[7,124],[53,40],[4,38],[21,29],[-1,97],[63,95],[-19,47],[16,26],[-25,48],[28,35],[1,33],[17,27],[42,23],[6,84],[-12,71],[-91,33],[18,69],[-35,89],[-37,34],[121,52],[28,48],[59,58],[-3,15],[-76,8],[-105,120],[-50,110],[-21,4],[-104,84],[-17,39],[41,56],[4,47],[-2,30],[-56,76],[-12,55],[3,52],[23,40],[-10,29]],[[6228,24223],[52,78],[15,58],[49,37],[18,-26],[27,9],[18,68],[18,16],[45,-1],[71,-50],[74,11],[30,11],[-28,17],[1,48],[28,21],[125,-35],[24,-33],[35,-10],[81,17],[31,25],[-13,76],[21,29],[72,-11],[54,35],[4,37],[-47,54],[7,107],[35,65],[32,8],[9,54],[33,3],[77,83],[102,-15],[41,19],[36,31],[44,106],[71,-36],[18,-108],[42,-11],[69,91],[16,64],[-97,259],[13,34],[67,11],[8,59],[71,59],[31,43],[-50,98],[7,75],[-14,46],[-61,129],[43,87],[0,115],[133,35],[178,14],[21,18],[105,23],[24,16],[-6,108],[52,-16],[21,8],[60,61],[75,40],[62,78],[133,46],[11,94],[-26,175],[-52,67],[-5,31],[-38,64],[39,109],[59,39],[1,42],[73,-7],[44,19],[40,-4],[65,36],[52,-8],[48,-33],[110,9],[78,59],[41,61],[68,64],[30,5],[93,-39],[80,-3],[71,-25]],[[8516,20731],[-147,-115],[-63,-68],[-81,-38],[-110,-24],[-69,-50],[-142,14],[-67,52],[-28,0],[-74,-28],[-71,19],[-56,-63],[-67,-38],[-35,15],[-24,70],[-71,-18],[-72,6],[-31,-20],[-11,-24],[-2,-23],[80,-99],[21,-65],[30,-41],[-11,-83],[-66,-60],[-129,-35],[-31,-23],[-21,-50],[-44,3],[-26,-35],[19,-50],[129,-89],[35,-38],[17,-53],[-8,-38],[-62,-99],[-13,-44],[-74,-53],[0,-102],[-117,-1],[0,-132],[-54,-43],[-14,-27],[0,-162],[-33,-52],[8,-52],[31,-43],[-5,-154],[36,-63],[-64,-85],[-51,-1],[-27,-19],[11,-53],[-7,-32],[-79,-36],[2,-67],[-16,-22],[-39,-37],[-29,-8],[-57,18],[-70,-14],[-18,-128],[-25,-25],[-57,-15],[49,-118],[-6,-109],[17,-71],[25,-17],[78,-5],[55,-93],[47,-19],[78,-64],[110,-228],[-91,-12],[0,-52],[-49,-34],[-65,-97],[-4,-83],[-25,-68],[13,-107],[132,-42],[13,-23],[-3,-22],[-52,-27],[-51,-7],[-4,-22],[67,-30],[59,-82]],[[6860,16659],[-18,-28],[30,-34],[45,-118],[-53,-48],[12,-69],[-13,-23],[-84,-57],[-47,-62],[-203,-46],[-28,-16],[-39,-48],[-35,-93],[-29,-27],[-86,0],[-87,-120],[-52,-2],[-3,-35],[23,-44],[26,-23],[30,3],[43,-23],[8,-15],[-22,-54],[29,-22],[82,-3],[6,-22],[-25,-128],[-37,-13],[-48,-43],[-8,-32],[-54,-26],[-14,-24],[4,-41],[26,-32],[4,-70],[-31,-97],[49,-67],[59,17],[61,-23],[-20,-239],[-85,-38],[-3,-36],[33,-29],[-3,-46],[-46,-70],[18,-46],[21,-17],[13,26],[65,39],[-9,-56],[-92,-53],[-92,-16],[-10,-23],[93,-13],[6,16],[83,-18],[10,17],[18,-28],[-109,-18],[-23,-17],[-85,33],[-42,-21],[-97,22],[44,-81],[4,-36],[-92,-9],[-40,-25],[-26,-43],[-64,1]],[[5851,14227],[-38,-11],[-98,-92],[-103,24],[-55,65],[-66,3],[-49,29],[-46,-4],[-46,-56],[-23,-78],[-48,-54],[-30,-27],[-100,-28],[-78,-51],[25,-23],[22,-68],[-15,-57],[-48,-74],[20,-35],[-15,-22],[-31,-20],[-48,7],[-12,-65],[-37,0],[-18,-56],[-185,-42],[-58,-28],[-118,-136],[-385,213],[-170,24],[-35,30],[-58,89],[-121,61],[-30,-25],[-63,-19],[-15,-35],[-54,-30],[-45,-12],[-66,28]],[[3511,13652],[15,45],[-15,62],[50,25],[46,6],[35,24],[-19,124],[-81,25],[-39,37],[20,68],[30,37],[-4,93],[70,49],[55,0],[76,105],[-24,173],[-100,44],[-35,-6],[-35,43],[-85,31],[36,130],[-11,52],[-66,-17],[-64,-79],[-16,8],[-24,79],[-67,-16],[-44,-36],[-66,52],[-53,1],[-37,32],[-5,13],[32,74],[-164,-18],[-60,27],[-57,153],[20,27],[1,28],[27,23],[28,55],[8,82],[183,88],[59,43],[17,46],[51,40],[35,-22],[48,38],[35,-33],[2,-34],[-33,-7],[3,-25],[30,-35],[13,-2],[4,17],[51,-8],[53,-29],[7,19],[21,0],[34,122],[91,78],[-20,4],[-5,21],[13,4],[34,-20],[37,-48],[29,6],[10,27],[-30,55],[-22,-13],[-32,57],[-51,17],[-13,18],[30,63],[57,7],[80,51],[48,63],[1,30],[-53,25],[-14,40],[-52,15],[-31,59],[5,27],[28,28],[-38,26],[-4,114],[-13,6],[-80,-27],[-9,18],[31,90],[-1,18],[-38,37],[56,30],[14,-7],[10,19],[2,20],[-37,59],[52,14],[56,-4],[2,16],[17,3],[56,-6],[64,-32],[87,-12],[46,-24],[55,12],[168,-13],[56,24],[58,-8],[48,37],[85,22],[69,73],[8,45],[-15,25],[25,29],[5,42],[42,48],[-21,65],[19,31],[42,14],[2,73],[29,39],[39,18],[130,-42],[59,31],[-8,50],[-30,4],[-3,57],[56,19],[4,79],[32,76],[5,54],[-46,41],[-6,69],[-46,47],[7,106],[-14,10],[-88,-22],[-88,-3],[-46,-31],[-4,14],[6,45],[48,43],[7,33],[-58,23],[2,17],[67,67],[-11,154],[24,36],[37,12],[21,94],[38,23],[9,64],[41,0],[7,13],[-45,61],[-6,57],[24,45],[4,101],[-18,36],[-51,28],[31,9],[4,15],[-48,62],[-24,116],[36,57],[-5,76],[16,89],[-94,13],[-27,71],[10,20],[83,-26],[59,-1],[35,98],[-55,35],[-105,29],[-36,91],[-39,19],[-33,-10],[-8,20],[71,153],[113,88],[16,83],[-9,46],[69,43],[-61,66],[12,84],[-37,107],[9,6],[-4,112]],[[4668,20155],[34,-6],[29,31],[41,-16],[57,26],[38,-28],[20,0],[62,29],[22,44],[-54,28],[1,153],[136,-34],[37,8],[36,34],[103,34],[46,30],[86,-48],[141,47],[10,22],[-32,8],[-9,40],[-32,24],[7,131],[-29,36],[0,40],[72,71],[115,-29],[71,27],[49,-34],[44,-10],[24,0],[19,17],[-14,83],[-33,40],[-4,117],[80,62],[44,125],[13,-7],[9,-44],[18,-21],[93,-18],[22,6],[-31,44],[78,35],[6,133],[85,91],[-24,51],[3,28],[52,75],[-14,60],[-46,75],[70,14],[95,-27]],[[6043,14435],[13,63],[56,49],[-7,57],[-58,-62],[-17,-43],[-8,-66],[21,2]],[[19052,27705],[-23,-72],[23,-80],[96,-72],[43,-75],[27,-14],[48,14],[58,-2],[85,-52],[38,-62],[70,-10],[15,-19],[12,-72],[-35,-72],[-1,-117],[98,-219],[-3,-67],[22,-58],[33,2],[67,34],[17,32],[-14,92],[27,28],[-6,35],[20,68],[67,17],[41,-24],[9,-20],[-16,-57],[76,-91],[26,-51],[49,19],[53,1],[20,-38],[48,-8],[102,90],[-12,-51],[49,-91],[54,2],[87,30],[92,61],[34,-1],[59,-28],[23,11],[112,-4],[30,-45],[6,-74],[57,-68],[3,-76],[-17,-36],[-77,-78],[9,-17],[20,-3],[8,-24],[-7,-89],[-27,-19],[-9,-39],[-59,-21],[-51,14],[-28,-21],[-64,2],[-56,-81],[1,-44],[9,4],[-13,-97],[-26,-35],[-13,-59],[-33,-2],[-66,-58],[-25,-123],[-19,-17],[-37,28],[-100,-13],[-63,-75],[-82,-68],[21,-154],[-9,-37],[22,-49],[-22,-59],[-36,-42],[-55,-30],[-12,10],[-51,-6],[-84,-72],[-77,-23],[-75,-56],[-215,11],[-67,-21],[-68,20],[-161,-218],[-135,-36],[-18,-42],[-64,-49],[-4,-75],[-24,-79],[29,-76],[-13,-20],[-42,41],[-71,-35],[-28,-42],[8,-60],[105,-59],[80,-28],[43,-68],[86,-16],[14,-25],[-7,-160],[-37,-36],[-44,-19],[10,-16],[-19,-46],[-39,-32],[-64,-122],[13,-65],[-56,8],[-74,-21],[-57,-37],[-74,17],[-114,-26],[-70,17],[-51,-36],[-42,-66],[-126,-4],[-55,25],[-39,-26],[-51,-64],[-69,-12],[-21,-23],[-23,-48],[-6,-92],[-109,-14]],[[17866,23187],[2,22],[-31,35],[-10,43],[-57,10],[-22,31],[-35,5],[-31,23],[-16,54],[-38,41],[-13,49],[-39,40],[-30,93],[-118,23],[-74,-26],[-44,1],[-180,65],[-37,22],[-45,107],[-47,39],[-32,10],[-42,68],[-162,88],[-30,35],[-10,49],[56,122],[21,82],[17,110],[-33,40],[-73,19],[-69,-50],[-89,-94],[-145,-23],[-40,-20],[-51,-77],[-132,69],[-125,105],[-11,33],[-39,37],[-162,86],[-4,22],[43,44],[15,60],[-3,111],[-15,40],[-31,25],[29,42],[67,37],[42,86],[46,54],[-16,71]],[[14400,25170],[33,-36],[17,-95],[-20,-29],[-72,-34],[-35,-36],[3,-194],[-28,-97],[74,-193],[0,-140],[-74,-86],[-26,-106],[8,-37],[34,-43],[-23,-51],[14,-91],[14,-20],[32,6],[57,-40],[-22,-17],[-2,-148],[-36,-30],[34,-91],[-106,-89],[-31,-66],[7,-86],[-11,-21],[-56,-45],[-83,-108],[-4,-48],[37,-66],[-17,-19],[-103,-46],[-9,-22],[12,-30],[49,-33],[13,-27],[18,-118],[-7,-30],[-52,-41],[-61,-113],[-77,2],[-105,-28],[-66,11],[-61,-19],[-35,-94],[-76,7],[-35,-87],[5,-34]],[[13528,22312],[-62,5],[-110,72],[-23,22],[-50,110],[-103,46],[-62,-12],[-45,-65],[-135,-4],[-67,-54],[-63,-16],[16,-48],[-194,-70],[-31,-50],[9,-50],[-51,-29],[-20,15],[-8,-30],[-22,-20],[-34,-6],[57,-220],[-8,-24],[-16,-6],[-50,4],[-74,58],[-39,155],[-25,43],[-69,6],[-38,-45],[-27,3],[-43,53],[-77,40],[-64,126],[-1,55],[16,5],[62,138],[41,135],[-74,121],[6,64],[-23,86],[-85,61],[-52,19],[-103,11],[-17,-82],[-61,-105],[-73,-23],[-47,-36],[-46,-16],[-34,19],[-9,75],[-37,71]],[[11463,22919],[-5,11]],[[11458,22930],[-40,54],[-120,-30],[-96,-118],[-74,-51]],[[11128,22785],[-13,14]],[[13858,23004],[-42,-40],[-25,-2],[-33,-41],[14,-30],[158,2],[4,24],[-27,42],[-49,45]],[[17866,23187],[-45,-48],[-51,-30],[-36,-88],[-73,-36],[-20,-39],[-36,-8],[-265,22],[-101,-42],[-77,-65],[-58,-1],[-134,-145],[-84,-229],[-184,-201],[-43,-67],[9,-22],[74,-35],[133,-120],[-84,-54],[-164,3],[-39,20],[-24,-21],[-29,-109],[7,-61],[25,-41],[49,-39],[-19,-38],[9,-6],[-29,-26],[-4,-40],[-23,-29],[-2,-83],[114,-101],[-22,-60],[172,-31],[64,-79],[-6,-24],[-33,-28],[-56,-17],[9,-33],[-33,-25],[7,-32],[-33,-41],[63,-98],[2,-48],[-55,-71],[-126,28],[-87,-17],[-17,-46],[43,-24],[-8,-59],[20,-32],[-15,-9],[4,-25],[-72,0],[-81,33],[-76,72],[2,-30],[-29,-28],[-7,-46],[-85,-59],[44,-46],[16,-78],[-26,-47],[51,-41],[-140,-243],[-33,-17],[-44,12],[-65,-5],[-34,-30],[-7,-59],[78,-61],[27,-41],[128,-57],[84,-23],[18,-33],[-10,-39],[-73,6],[-35,-109],[-52,-2],[1,11],[-21,4],[6,46],[-43,5],[0,74],[31,63],[-31,23],[-74,-29],[-13,-26],[-77,-22],[-34,-39],[-106,-72],[-17,-41],[-46,-39],[-29,-126],[22,-69],[-5,-49],[-58,-74],[-42,-139],[-41,-29],[-16,-36],[38,-53],[6,-105],[35,-108],[54,-9],[46,-31],[19,-71],[37,-65],[62,-53],[-3,-83],[18,-56],[-18,-37],[5,-20],[52,-31],[-9,-35],[-74,-48],[-57,22],[-9,-17],[-202,81],[-76,12],[-49,33],[-142,54],[-57,0]],[[13496,19080],[-37,293],[85,87],[7,52],[141,198],[9,54],[43,44],[3,31],[-33,134],[-45,97],[-74,-1],[-20,129],[6,53]],[[13581,20251],[107,-7],[79,23],[79,43],[120,21],[66,-17],[120,-64],[121,-39],[166,27],[237,-20],[341,-74],[344,-114],[40,-3],[29,12],[6,50],[-41,56],[-149,21],[-65,36],[-17,47],[-29,25],[40,24],[4,22],[-40,68],[-55,14],[-49,122],[-5,78],[-70,16],[-14,30],[-66,66],[19,71],[54,40],[-78,38],[-125,23],[13,61],[97,40],[13,73],[54,22],[-8,101],[-43,17],[7,8],[-30,20],[-13,31],[-50,24],[-43,1],[-20,-32],[-24,-8],[-61,13],[-54,-29],[-50,36],[-11,39],[-41,12],[-12,-11],[-34,7],[-27,20],[-118,212],[-142,2],[-19,-34],[-119,-17],[-77,21],[-73,-19],[-13,10],[-16,30],[10,79],[46,-1],[21,35],[20,6],[4,27],[140,19],[-130,23],[-26,72],[-56,33],[127,135],[-15,21],[-50,-25],[-23,7],[-12,49],[8,48],[-201,105],[-171,143]],[[11017,20341],[24,19],[43,-10],[90,-58],[93,-20],[108,37],[148,23],[50,-8],[110,-72],[134,-47],[51,24],[43,42],[52,19],[69,-34],[75,-64],[37,-6],[134,77],[60,15],[112,-13],[101,-27],[141,-1],[106,18],[198,-106],[159,-69],[60,2],[141,46],[172,112],[53,11]],[[10558,15880],[-40,-151],[8,-66],[-13,-42],[29,-151],[-19,-163],[54,-153],[-32,-15],[38,-60],[-18,-79],[40,-107],[47,-32],[23,-41],[-15,-68],[30,-136],[-9,-20],[-41,-26],[-13,-60],[-39,-10],[-46,-38],[-5,-48],[24,-50],[-10,-28],[-41,-38],[-23,-2],[-19,-42],[92,-83],[32,-75],[49,-35],[111,-33],[23,-202],[22,-26],[-7,-66],[46,-3],[64,110],[31,-37],[16,-46],[-8,-97],[40,-10],[17,-55],[-31,-38],[7,-42],[-72,-38],[14,-75],[-12,-57],[-63,-109],[0,-47],[-21,-58],[34,-32],[0,-23],[80,-40],[30,-38],[8,-67],[22,-34],[4,-36],[-5,-22],[-36,-31],[-43,-14],[-36,-33],[1,-39],[43,-74],[-49,-10],[20,-98],[23,-16],[4,-78],[-30,-42],[-9,-77],[-113,-96],[20,-60],[-42,-21],[39,-58],[30,-129],[10,-98],[-19,-153],[25,-54],[146,-28],[83,-42],[148,-17],[97,-69],[60,-26],[111,-16],[97,10],[163,-68],[32,-46],[80,-22],[81,6],[46,55],[41,13],[247,-23],[133,-27],[18,-36],[-8,-188],[11,-11],[-26,-56],[-11,-79],[8,-36],[-27,-24],[0,-69],[45,-119],[41,4],[-33,-115],[-31,-20],[5,-34],[-37,-57],[-76,-16],[-188,8],[-20,-60],[-65,-51],[-30,-74],[-20,-17],[-79,-13],[-21,-12],[-4,-32],[-66,-21],[-33,25],[4,110],[-39,24],[11,112],[-13,-7],[3,28],[36,45],[23,9],[-10,11],[41,40],[39,63],[-34,30],[-66,-15],[-54,43],[-60,-12],[-20,26],[-33,-28],[-72,67],[-34,-48],[-54,58],[-51,-9],[-19,15],[-5,51],[-16,11],[-37,-4],[-56,21],[-88,-31],[-80,43],[-143,-34],[-85,-61],[-41,-15],[-54,-67],[-4,-29],[-46,-44],[-48,12],[-12,-9],[1,-43],[-85,-86],[-63,42],[-45,108],[-98,125],[-15,79],[-130,238],[-4,65],[-35,70],[-46,25],[-110,111],[-82,-24],[-50,-67],[-102,4],[-28,-16],[-13,39],[-51,64],[-88,25],[-83,50],[-78,-12],[-93,67],[-22,47],[-19,10],[-32,-9],[-35,58],[-32,20],[-60,9],[-45,-75],[-90,-63],[-1,-41],[-32,-25],[-48,48],[-2,87],[-22,43]],[[8892,11635],[32,28],[0,47],[36,71],[21,107],[37,-12],[120,52],[61,-18],[77,-3],[44,12],[40,60],[18,88],[109,71],[-13,46],[10,158],[63,169],[74,47],[8,24],[-9,20],[61,115],[-44,0],[-45,45],[-28,69],[-44,27],[-137,3],[-36,12],[-61,156],[-59,51],[21,83],[-41,110],[24,52],[-24,52],[17,50],[-3,80],[-38,45],[0,41],[-53,37],[-6,55],[-40,60],[-8,24],[12,75],[-35,62],[-2,62],[-33,7],[-28,74],[-78,58],[-18,248],[-88,247],[-17,13],[2,62],[87,170],[-151,149],[3,87],[-24,40],[-214,63],[-55,53],[-5,111],[-65,74],[-10,30],[69,84],[8,36],[-12,26],[-81,74],[-20,84],[-59,113],[17,105],[-7,45],[-69,79],[-12,240],[-67,-26],[-21,-56],[-22,-21],[-91,-14],[-64,40],[-36,-9],[-5,31],[-167,95],[-40,55],[-47,20],[-31,80],[-43,51],[-81,12],[-77,-19],[-46,42],[-36,-27],[-23,-40],[-33,-1],[-29,-29],[-137,2],[-62,54],[-58,5],[-115,74]],[[3511,13652],[-77,-34],[-128,-166],[-46,-22],[-48,-64],[-78,-3],[-41,19],[-56,-178],[-32,-36],[-51,12],[-64,43],[-21,2],[-27,-23],[71,-71],[2,-65],[23,-14],[5,-29],[-7,-52],[-45,-59],[-42,-12],[-95,-64],[-34,-5],[-23,11],[-4,27],[-24,15],[-52,-8],[-21,-16],[-39,18],[-29,-32],[-8,-56],[-91,-33],[3,-51],[38,-116],[-8,-58],[-31,-56],[-9,-51],[-44,-53],[-27,-22],[-120,16],[-119,159],[-52,14],[-45,-35],[-19,-79],[-98,-77],[-57,-28],[-16,15],[-126,-50],[-43,47],[-34,9],[-10,-32],[20,-110],[-30,-126],[-29,-65],[-64,-47]],[[1509,11961],[-58,39],[-27,36],[-100,22],[-28,52],[-34,13],[-42,-18],[-158,35],[-37,-74],[-86,-1],[-166,71],[-47,74],[30,40],[21,79],[94,31],[3,13],[-10,62],[-70,54],[-50,92],[-26,57],[16,15],[185,41],[214,98],[145,17],[83,-27],[125,129],[31,63],[48,24],[164,40],[107,5],[6,27],[50,2],[6,40],[-59,117],[-5,50],[-21,16],[6,37],[-60,41],[-21,39],[19,107],[69,105],[-44,68],[43,82],[18,258],[33,149],[-16,18],[-2,58],[49,57],[-27,49],[16,21],[-23,49],[48,69],[-100,17],[-85,36],[-92,-10],[-41,-12],[-39,-56],[-160,-75],[-38,2],[-59,10],[-37,88],[-57,67],[0,65],[16,28],[115,100],[57,37],[93,12],[76,46],[101,6],[29,23],[8,26],[-26,76],[-74,68],[-22,56],[-6,126],[-45,94],[-12,136],[38,122],[25,21],[-27,134],[-3,222],[-59,191],[19,40],[-157,-26],[-185,-8],[-74,4],[-18,21],[6,26],[-40,41],[-2,30],[-39,74],[-12,137],[-73,90],[55,49],[20,42],[33,19],[11,29],[6,67],[-38,107],[5,53],[-44,85],[31,75],[49,1],[-15,31],[-38,17],[65,146],[29,119],[88,-7],[35,26],[39,5],[30,30],[61,-5],[66,109],[71,-20],[79,8],[53,24],[53,57],[49,25],[110,29],[62,65],[98,52],[48,133],[50,70],[43,7],[48,38],[5,56],[-29,24],[-23,57],[-35,30],[32,34],[43,109],[64,72],[37,80],[7,69],[32,65],[-9,67],[119,114],[45,117],[-41,121],[13,34],[1,83],[30,105],[-87,87],[30,81],[-51,79],[0,89],[53,54],[13,42],[-10,92],[-7,16],[-34,12],[-24,93],[13,18],[-14,20],[40,36],[50,102],[-2,31],[-32,38],[21,14],[19,85],[69,131],[14,7],[96,0],[59,-41],[17,-46],[28,-7],[143,41],[2,85],[101,210],[30,129]],[[3002,20808],[276,-47],[60,-2],[77,16],[25,-67],[55,-32],[48,-103],[6,-100],[82,-36],[36,-81],[98,-85],[18,-2],[131,74],[91,-14],[-5,-50],[69,-18],[79,30],[145,9],[33,-15],[60,-72],[51,-40],[17,44],[98,-22],[37,16],[79,-56]],[[8892,11635],[-45,23],[-42,-7],[-31,22],[-66,120],[-161,137],[-38,-15],[-60,-64],[-32,-67],[-131,-157],[-43,-5],[-36,20]],[[7884,12254],[-18,77],[8,29],[-47,110],[-17,11],[-69,-14],[-17,78],[-30,16],[-7,20],[60,145],[54,-19],[15,6],[-63,159],[-58,-47],[-48,8],[-31,34],[-2,54],[25,61],[48,4],[11,42],[83,13],[6,38],[-52,82],[-11,55],[-59,-14],[-36,15],[10,97],[18,42],[-11,21],[-73,47],[-78,124],[-14,94],[32,136],[-32,30],[3,58],[-209,1],[-178,79],[-78,-9],[-1,28],[-22,29],[-96,40],[-41,-7],[-42,18],[-90,7],[-83,-4],[-59,-19],[-64,3],[-43,-83],[-70,-28],[-59,35],[-44,99],[-15,4],[-53,-31],[-150,5],[-85,21],[-56,-12],[-28,11],[-61,46],[-6,128]],[[10729,20463],[-7,23]],[[10663,20706],[-18,40]],[[10633,20775],[-20,78]],[[10454,21006],[-17,20]],[[11091,22590],[58,25]],[[11458,22930],[5,-11]],[[5751,10529],[8,-8]],[[5759,10521],[-240,-5],[-39,-24],[-108,-128],[-75,-21],[-181,35],[-108,2],[-81,-40],[-74,-62],[-63,-33],[-43,1],[-38,47],[0,44],[-29,28],[-64,1],[-143,-89],[-19,-88],[82,-185],[23,-84],[-45,-99],[-27,-33],[-106,-21],[-92,14]],[[4289,9781],[-35,6]],[[4254,9787],[-41,5],[-94,75],[-42,66],[-102,234],[-155,197],[-35,80],[-10,80],[9,55],[34,53],[12,175],[23,95],[63,54],[188,73],[-12,41],[-65,60],[-58,108],[53,185],[95,135],[27,71],[-33,90],[-96,102],[-98,37],[-96,12],[-60,-2],[-35,-16],[-65,-74],[-136,-27],[-124,-149],[-131,-77],[-35,-85],[-7,-56],[29,-3],[21,-26],[-44,-85],[-6,-39],[15,-49],[52,-43],[174,-2],[8,-20],[-74,-116],[-174,25],[-134,56],[-49,36],[0,-91],[-95,-134],[-110,-31],[-39,-31],[-38,-55],[-102,-54],[-84,-24],[-144,-139],[-19,-34],[-14,-103],[-30,-36],[-39,-20],[2,-16],[54,-19],[50,24],[15,68],[74,24],[45,42],[100,55],[69,-18],[48,1],[70,-26],[20,-24],[10,-50],[-134,-48],[-25,-25],[5,-25],[-30,-55],[-19,6],[-36,56],[6,36],[-77,-9],[-161,-69],[-65,-73],[-21,-86],[6,-110],[66,-199],[-83,12],[-183,-46]],[[2138,9792],[2,22],[-22,27],[-80,46],[-60,62],[-103,53],[-156,47],[-58,86],[-102,50],[-53,52],[23,188],[-9,42],[-35,-6],[-89,55],[-52,6],[-46,-3],[-38,-21],[-74,13],[-34,-17],[-49,-69],[17,-28],[60,-12],[28,-41],[11,-76],[-22,-43],[-57,64],[-72,42],[-49,-13],[-126,34],[-115,-13],[18,44],[-4,67],[37,-4],[62,-32],[37,-6],[35,12],[144,91],[17,41],[25,8],[32,100],[113,61],[-29,112],[-46,43],[-107,23],[-85,-51],[-184,63],[-25,19],[17,118],[16,15],[79,10],[93,79],[47,-38],[58,5],[27,-65],[54,-30],[106,-15],[94,32],[28,52],[1,39],[39,23],[-8,71],[59,75],[7,29],[-10,41],[-55,45],[68,318],[-56,101],[1,35],[31,66],[-5,25]],[[4254,9787],[35,-6]],[[5570,7906],[-1,1]],[[4426,7555],[-45,33]],[[3932,7427],[-80,-10]],[[3750,7403],[-20,5]],[[2947,8045],[94,67],[-11,26],[-135,67],[-37,93],[-104,152],[101,25],[136,56],[163,5],[42,24],[81,91],[-3,129],[-30,95],[-32,50],[-28,17],[-107,9],[-35,26],[-39,59],[-20,79],[-30,34],[-40,14],[-173,-26],[-94,41],[-11,85],[-32,27],[-185,94],[-123,12],[-174,-11],[-26,18],[-3,66],[46,246],[0,77]],[[3002,20808],[-20,25],[-10,59],[13,23],[31,11],[4,18],[-23,55],[15,43],[-28,37],[-43,21],[-8,58],[3,54],[57,100],[3,40],[-15,56],[-50,4],[-25,48],[105,5],[32,17],[68,202],[47,57],[1,115],[43,88],[-4,31],[12,20],[30,0],[31,27],[35,182],[64,92],[32,9],[109,-10],[33,-8],[25,-23],[76,-159],[-11,-121],[77,-52],[45,1],[10,41],[48,26],[25,44],[-34,56],[31,82],[-67,63],[-51,19],[-40,-5],[-7,14],[13,47],[67,37],[146,9],[17,168],[-38,96],[20,23],[30,-7],[18,9],[3,46],[-50,84],[19,77],[147,78],[103,10],[17,-22],[60,25],[61,158],[86,87],[4,94],[-27,87],[32,75],[-45,93],[-29,108],[20,255],[25,43],[192,76],[80,134],[33,31],[47,11],[35,-4],[29,-35],[7,-105],[40,-27],[82,-27],[26,0],[85,40],[75,68],[4,80],[21,29],[56,11],[20,19],[24,-3],[119,-88],[60,41],[-6,135],[41,43],[126,-52],[93,1],[61,-47],[10,-102],[21,-39],[-9,-78],[16,-59],[13,-33],[39,-17],[88,37],[24,29],[9,27],[-15,73],[34,28],[37,7],[21,-56],[32,-18],[28,7],[12,26],[-35,-5],[3,37],[-25,4],[26,39],[-31,35],[41,10],[36,-25],[37,17],[96,-5]]],"transform":{"scale":[0.00019914363182647082,0.00019414942670068546],"translate":[80.246826,17.790091]},"objects":{"chhattisgarh_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"cartodb_id":128,"censuscode":416,"st_cen_cd":22,"dt_cen_cd":17,"district":"Dantewada","st_nm":"Chhattisgarh"}},{"arcs":[[5,6,7]],"type":"Polygon","properties":{"cartodb_id":352,"censuscode":411,"st_cen_cd":22,"dt_cen_cd":12,"district":"Mahasamund","st_nm":"Chhattisgarh"}},{"arcs":[[8,9,10,11,12,-2,13]],"type":"Polygon","properties":{"cartodb_id":61,"censuscode":414,"st_cen_cd":22,"dt_cen_cd":15,"district":"Bastar","st_nm":"Chhattisgarh"}},{"arcs":[[14,15,16,17]],"type":"Polygon","properties":{"cartodb_id":319,"censuscode":400,"st_cen_cd":22,"dt_cen_cd":1,"district":"Koriya","st_nm":"Chhattisgarh"}},{"arcs":[[18,19,20,-15,21]],"type":"Polygon","properties":{"cartodb_id":557,"censuscode":401,"st_cen_cd":22,"dt_cen_cd":2,"district":"Surguja","st_nm":"Chhattisgarh"}},{"arcs":[[22,23,24,25,26,27,-4,28]],"type":"Polygon","properties":{"cartodb_id":82,"censuscode":417,"st_cen_cd":22,"dt_cen_cd":18,"district":"Bijapur","st_nm":"Chhattisgarh"}},{"arcs":[[-17,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45]],"type":"Polygon","properties":{"cartodb_id":86,"censuscode":406,"st_cen_cd":22,"dt_cen_cd":7,"district":"Bilaspur","st_nm":"Chhattisgarh"}},{"arcs":[[46,47,48,49,50,-44],[51]],"type":"Polygon","properties":{"cartodb_id":164,"censuscode":409,"st_cen_cd":22,"dt_cen_cd":10,"district":"Durg","st_nm":"Chhattisgarh"}},{"arcs":[[52,53,-19]],"type":"Polygon","properties":{"cartodb_id":254,"censuscode":402,"st_cen_cd":22,"dt_cen_cd":3,"district":"Jashpur","st_nm":"Chhattisgarh"}},{"arcs":[[-16,-21,54,55,56,57,58,-30],[59]],"type":"Polygon","properties":{"cartodb_id":318,"censuscode":404,"st_cen_cd":22,"dt_cen_cd":5,"district":"Korba","st_nm":"Chhattisgarh"}},{"arcs":[[[-54,60,-6,61,62,-55,-20]],[[-60]]],"type":"MultiPolygon","properties":{"cartodb_id":461,"censuscode":403,"st_cen_cd":22,"dt_cen_cd":4,"district":"Raigarh","st_nm":"Chhattisgarh"}},{"arcs":[[63,-62,-8,64,65,-47,-43]],"type":"Polygon","properties":{"cartodb_id":463,"censuscode":410,"st_cen_cd":22,"dt_cen_cd":11,"district":"Raipur","st_nm":"Chhattisgarh"}},{"arcs":[[-50,66,67,68]],"type":"Polygon","properties":{"cartodb_id":468,"censuscode":408,"st_cen_cd":22,"dt_cen_cd":9,"district":"Rajnandgaon","st_nm":"Chhattisgarh"}},{"arcs":[[[69,-12,70,-48,-66]],[[-52]]],"type":"MultiPolygon","properties":{"cartodb_id":145,"censuscode":412,"st_cen_cd":22,"dt_cen_cd":13,"district":"Dhamtari","st_nm":"Chhattisgarh"}},{"arcs":[[-56,-63,-64,-42,71,-40,72,-38,73,-36,74,-34,75,-32,-58,76]],"type":"Polygon","properties":{"cartodb_id":253,"censuscode":405,"st_cen_cd":22,"dt_cen_cd":6,"district":"Janjgir-Champa","st_nm":"Chhattisgarh"}},{"arcs":[[-71,-11,77,78,79,80,81,-67,-49]],"type":"Polygon","properties":{"cartodb_id":275,"censuscode":413,"st_cen_cd":22,"dt_cen_cd":14,"district":"Kanker","st_nm":"Chhattisgarh"}},{"arcs":[[82,-79,-9,83,-5,84,-27,85,-25,86,-23,87,-81]],"type":"Polygon","properties":{"cartodb_id":401,"censuscode":415,"st_cen_cd":22,"dt_cen_cd":16,"district":"Narayanpur","st_nm":"Chhattisgarh"}},{"arcs":[[-45,-51,-69,88]],"type":"Polygon","properties":{"cartodb_id":625,"censuscode":407,"st_cen_cd":22,"dt_cen_cd":8,"district":"Kabirdham","st_nm":"Chhattisgarh"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [5569, 7907], + [9, -9] + ], + [ + [5578, 7898], + [43, -42], + [37, -11], + [14, -52], + [-89, -53], + [-11, -38], + [15, -116], + [33, -52], + [-57, -44], + [-4, -97], + [188, -87], + [44, -39], + [9, -42], + [24, -5], + [31, 16], + [154, -36], + [34, 8], + [74, 100], + [42, 20], + [143, -46], + [-27, -224], + [-18, -48], + [26, -63], + [-16, -14], + [2, -65], + [-68, -22], + [57, -79], + [1, -102], + [62, -67], + [40, -15], + [3, -15], + [-53, -13], + [-28, -41], + [7, -26], + [21, -27], + [131, -33], + [-32, -43], + [0, -71], + [-44, -27], + [-180, 6], + [3, -25], + [-44, -14], + [-8, -18], + [17, -80], + [57, -94], + [-71, -54], + [-12, -63], + [59, -10], + [155, -78], + [23, -87], + [71, 60], + [134, -56], + [-32, -84], + [0, -39], + [14, -34], + [22, -7], + [-1, -24], + [38, -3], + [16, -39], + [24, 7], + [17, -12], + [48, -113], + [105, 40], + [30, -40], + [42, -19], + [1, -32], + [-38, -28], + [5, -20], + [34, -26], + [68, 8], + [24, -53], + [59, -41], + [60, -22], + [106, 120], + [110, 2], + [36, 72], + [76, -61], + [147, -67], + [58, -155], + [-24, -46], + [16, -14], + [43, 8], + [8, -41], + [-16, -34], + [111, -41], + [33, -28], + [4, -30], + [20, -5], + [59, 35], + [151, -31], + [38, 7], + [54, 39], + [20, 43], + [-6, 22], + [18, 14], + [53, -34], + [46, 1], + [105, 33], + [26, 44], + [49, 5], + [113, -34], + [34, -31], + [-74, -145], + [13, -67], + [9, -17], + [59, -37], + [47, -71] + ], + [ + [8648, 4649], + [-29, -29], + [28, -64], + [-67, -62], + [0, -139], + [-160, 36], + [-112, 93], + [-39, -18], + [23, -36], + [-8, -115], + [58, -7], + [66, -35], + [66, -49], + [18, -35], + [124, -50], + [-44, -61], + [-11, -45], + [17, -36], + [-17, -19], + [-36, 12], + [-81, -2], + [-58, 35], + [-39, -36], + [-16, -75], + [13, -52], + [-17, -21], + [-72, 4], + [-59, -60], + [-39, -2], + [-26, -21], + [-45, -64], + [3, -60], + [-26, -39], + [-413, -361], + [-86, -339], + [-436, -32], + [-26, -14], + [-19, -29], + [57, -78], + [-9, -24], + [-60, 2], + [-204, -62], + [-64, 9], + [-14, -41], + [-21, -6], + [-94, -97], + [-98, -57], + [-101, -16], + [-22, -54], + [11, -62], + [-105, -271], + [2, -31], + [48, -29], + [39, -77], + [-4, -46], + [-50, -98], + [-16, -189], + [-59, -101], + [-11, -76], + [-66, -42], + [-38, -110], + [18, -44], + [7, -84], + [-29, -104], + [21, -69], + [-52, -77], + [-61, -43], + [-48, -105], + [15, -119], + [-55, -140], + [-35, -6], + [-133, 71], + [-39, -5], + [-11, -13], + [-21, -118], + [43, -79], + [-24, -56], + [-45, -52], + [-1, -115], + [-199, 42], + [-148, 4], + [-85, -14], + [-222, 12], + [-203, 108], + [-109, 71], + [-162, 29], + [-354, -215], + [-10, -39], + [-68, -88], + [-89, -18], + [-92, 17], + [-26, 18], + [-100, 139], + [-41, 111], + [-51, 390], + [-12, 26], + [-36, 19], + [-34, 137], + [-27, 224], + [-52, 197], + [18, 61], + [-68, 146], + [-43, 47], + [30, 89], + [-12, 96], + [10, 32], + [116, 105], + [7, 76] + ], + [ + [3692, 1930], + [88, 14], + [47, -7], + [-4, -23], + [19, -13], + [22, 7], + [81, -26], + [54, 48], + [89, 28], + [114, 149], + [67, -2], + [-60, 138], + [-26, -12], + [-34, 40], + [-35, 18], + [-3, 31], + [-38, 51], + [-39, 0], + [-55, 50], + [64, 22], + [33, 137], + [22, 6], + [12, 24], + [-34, 39], + [0, 45], + [-38, 36], + [-7, 41], + [-38, 62], + [-20, 6], + [-44, -20], + [-54, -2], + [-59, 33], + [-115, 22], + [-63, 47], + [-38, 46], + [-23, 3], + [-88, -29], + [-23, 11], + [-18, 43], + [-42, 29], + [-44, -6], + [57, 76], + [49, 25], + [10, 35], + [13, 7], + [23, -15], + [60, 34], + [31, 87], + [73, 64], + [102, 191], + [158, 129], + [-13, 132], + [35, 43], + [72, 0], + [122, 68], + [43, 2], + [112, -16], + [248, -64], + [84, 56], + [-17, 40], + [76, -48], + [58, 28], + [11, 24], + [10, 220], + [-38, 12], + [-100, -25], + [-100, -124], + [2, 159], + [57, 60], + [1, 127], + [37, 14], + [43, 79], + [-77, 76], + [-4, 127], + [85, 105], + [61, 130], + [21, 5], + [17, 36], + [-21, 236], + [-21, 33], + [-11, 98], + [78, 96], + [6, 85], + [44, 95], + [3, 143], + [10, 28], + [35, 32], + [-7, 68], + [-74, -19], + [-60, 4], + [-21, -19], + [-44, 19], + [-29, -13], + [-24, 12], + [-8, 26], + [11, 24], + [41, 17], + [12, 44], + [55, 28], + [123, 8], + [32, 60], + [42, 43], + [-46, 24], + [-32, 46], + [-30, 8], + [-43, 53], + [41, 68], + [69, 49], + [-4, 20], + [-57, -7], + [-22, 23], + [84, 147], + [-27, 44], + [-51, 176], + [-5, 170], + [13, 71], + [-31, 82], + [34, 77], + [-32, 88], + [-48, 3], + [-165, -43], + [-88, 11], + [-90, 154], + [0, 76], + [-20, 21], + [-53, 20], + [30, 36], + [60, 26], + [-17, 49] + ], + [ + [4426, 7555], + [67, -7], + [18, 20], + [-19, 84], + [8, 109], + [76, -6], + [13, -88], + [49, -46], + [113, 39], + [15, 49], + [15, 11], + [118, -4], + [37, 80], + [6, 82], + [36, 20], + [174, 13], + [77, 53], + [84, 0], + [72, -19], + [89, -30], + [30, -36], + [65, 28] + ], + [ + [13496, 19080], + [116, -16], + [52, -105], + [44, 24], + [23, -10], + [94, -83], + [29, 6], + [57, 55], + [10, 89], + [147, -37], + [33, -73], + [-4, -124], + [58, -45], + [118, -11], + [49, -22], + [60, 4], + [82, -45], + [-7, -18], + [-42, -9], + [4, -28], + [21, -37], + [56, -15], + [11, -27], + [-11, -66], + [75, -82], + [28, 13], + [31, 51], + [65, 47], + [52, 76], + [52, -36], + [-5, -60], + [30, 22], + [35, 60], + [66, -17], + [49, -69], + [52, -3], + [44, 15], + [125, -29], + [22, 7] + ], + [ + [15217, 18482], + [4, -82], + [-24, -71], + [-55, -69], + [29, -27], + [-33, -37], + [-1, -37], + [24, -52], + [70, -31], + [9, -54], + [-34, -88], + [-53, 36], + [-74, 4], + [-53, -57], + [-35, 9], + [-33, -36], + [-21, -47], + [25, -140], + [-20, 0], + [1, -42], + [-39, -72], + [18, -53], + [-58, -88], + [-1, -62], + [-29, -23], + [-5, -93], + [-13, -20], + [-68, -25], + [-76, 3], + [-138, -135], + [-71, -21], + [-58, 34], + [-66, -17], + [-32, 16], + [-86, 3], + [-59, 40], + [-65, 22], + [-32, -6], + [-57, 36], + [2, 27], + [-96, 73], + [-57, 13], + [-30, 32], + [-48, -31], + [-18, 47], + [-74, -8], + [-28, 93], + [-18, 8], + [-94, -74], + [-47, -1], + [-30, -14], + [-99, 24], + [-116, -71], + [-32, 10], + [-20, 44], + [-26, -22], + [-84, 14], + [1, 24], + [-36, 3], + [-138, -25], + [-85, -41], + [-33, -58], + [-35, 9], + [-123, 90], + [-26, 6], + [-156, -4], + [-137, -32], + [-10, 21], + [-37, 6], + [-113, -38], + [-81, 5], + [-50, -12], + [-16, -35], + [6, -32], + [69, -58], + [-53, -69], + [6, -26], + [33, -24], + [-48, -51], + [-47, -78], + [-54, -9], + [-30, -20], + [-1, -38], + [67, -140], + [-69, -94], + [-21, -64], + [-112, -98], + [-20, -40], + [-59, -62], + [-68, -131], + [-36, -34], + [-133, -53], + [-29, -38], + [-99, -41], + [-41, -30], + [-12, -20], + [8, -103], + [-14, -125], + [-22, -44], + [-89, -57], + [13, -42], + [-17, -19], + [-28, -13], + [-62, 13], + [-23, 30], + [-106, -17], + [-49, 56], + [8, 55], + [-25, 27], + [-5, 48], + [-93, 38], + [-74, -30], + [-45, 12], + [-16, 18], + [16, 65], + [-63, 6], + [-23, -71] + ], + [ + [10558, 15880], + [-12, 36], + [-29, 15], + [-84, 3], + [-112, 118], + [-68, 33], + [-15, 17], + [-7, 98], + [-182, 34], + [-103, 42], + [-18, -5], + [13, -39], + [-9, -34], + [-127, 30], + [-36, 34], + [-26, 91], + [-29, 4], + [-27, 27], + [-21, 108], + [-54, 132], + [-129, 6], + [-161, 47], + [-138, 108], + [-341, 194], + [-61, 104], + [5, 78], + [29, 103], + [43, 46], + [41, 112], + [2, 240], + [40, 69], + [205, 198], + [299, 128], + [69, 55], + [64, 79], + [59, 30], + [71, 107], + [6, 47], + [38, 44], + [26, 60], + [-14, -4], + [69, 33], + [183, 256], + [59, -3], + [-17, -35], + [13, -44], + [57, -28], + [65, -58], + [10, -38], + [-2, -48], + [-82, -6], + [-77, -93], + [52, -61], + [15, -137], + [-70, -69], + [73, -19], + [34, -51], + [60, -12], + [-4, -77], + [14, -49], + [97, -24], + [3, 57], + [71, 3], + [14, 54], + [37, 5], + [64, -49], + [77, 2], + [2, -28], + [-22, -19], + [-9, -29], + [21, -12], + [41, 7], + [32, 43], + [41, -4], + [59, -61], + [39, 20], + [16, 118], + [18, 26], + [126, 73], + [80, -12], + [29, -19], + [5, -24], + [-37, -40], + [1, -38], + [46, -33], + [32, 4], + [20, 91], + [89, 5], + [-61, 67], + [-7, 77], + [37, -8], + [15, 20], + [54, -40], + [95, -21], + [79, 22], + [59, 54], + [44, -30], + [89, -15], + [36, 8], + [101, 63], + [240, 38], + [73, 38], + [70, -67], + [82, -32], + [99, 6], + [27, 217], + [-25, 111], + [14, 49], + [-19, 240], + [-42, 163], + [215, 44], + [198, 153], + [66, -55], + [32, -12], + [74, 1], + [108, -27], + [-25, 95], + [7, 44], + [34, -11], + [32, 51], + [192, 73], + [24, -11], + [82, -98], + [116, -213], + [72, 34] + ], + [ + [5570, 7906], + [13, 25], + [35, 8], + [56, -17], + [48, 38], + [54, -12], + [2, 30], + [-37, 115], + [-66, 6], + [-61, 47], + [57, 100], + [-11, 83], + [15, 30], + [66, -5], + [-23, -108], + [10, -29], + [56, -58], + [7, -25], + [45, -30], + [57, 6], + [75, 58], + [169, -4], + [1, 144], + [-22, 116], + [8, 87], + [40, 147], + [-211, 22], + [-35, 36], + [-19, 53], + [26, 35], + [103, 75], + [12, 50], + [-48, 29], + [-2, 58], + [29, 72], + [72, 75], + [-15, 58], + [25, 72], + [-12, 71], + [14, 61], + [-7, 19], + [-26, 12], + [-7, 59], + [162, 35], + [103, 40], + [45, 48], + [-89, -10], + [-78, 8], + [-54, 39], + [-125, 45], + [-9, 27], + [16, 99], + [-101, 84], + [-85, 24], + [-164, 13], + [-33, 40], + [-7, 45], + [51, 53], + [-19, 84], + [-24, 43], + [18, 23], + [-25, 60], + [6, 51], + [108, 155] + ], + [ + [5759, 10521], + [-8, 8] + ], + [ + [5751, 10529], + [-81, 84], + [49, 50], + [85, 43], + [-9, 74], + [-95, 67], + [-55, 63], + [-40, 21], + [-68, -13], + [-13, 84], + [-81, 47], + [-12, 27], + [8, 93], + [-12, 41], + [-116, 45], + [-17, 51], + [4, 79], + [-43, 84], + [77, 4], + [28, 28], + [132, 65], + [86, -15], + [13, 62], + [147, 6], + [16, 69], + [67, 94], + [-21, 186], + [90, 172], + [8, 42], + [159, -52], + [116, 66], + [188, 31], + [61, 22], + [166, 110], + [134, 26], + [20, -5], + [76, -106], + [41, -30], + [21, -46], + [142, -84], + [174, -65], + [226, 48], + [39, 88], + [109, 36], + [120, -36], + [91, 9], + [53, 13], + [37, 22], + [13, 25] + ], + [ + [7884, 12254], + [52, -1], + [104, -29], + [12, -270], + [14, -30], + [109, -112], + [-4, -132], + [36, -38] + ], + [ + [8207, 11642], + [-68, -118], + [-66, -272], + [-48, -105], + [8, -23], + [49, -36], + [-15, -122], + [19, -35], + [99, -78], + [145, -73], + [208, -70], + [105, -52], + [-15, -96], + [20, -60], + [94, -147], + [37, -21], + [78, 35], + [106, -28], + [85, -4], + [36, -20], + [20, 15], + [38, -42], + [-22, -114], + [9, -39], + [-66, -81], + [-1, -122], + [-31, -51], + [4, -57], + [42, -121], + [-4, -81], + [12, -22], + [-10, -27], + [25, -101], + [-33, -70], + [1, -47], + [-38, -19], + [-17, -37], + [5, -38], + [46, -95], + [-19, -65], + [29, -70], + [-26, -66], + [-42, -23], + [-51, -100], + [188, 9], + [55, 63], + [107, -31], + [-6, -81], + [41, -23], + [14, -81], + [-25, -65], + [52, -44], + [-2, -49], + [63, -98], + [240, 31], + [17, -2], + [63, -61], + [2, -27], + [-29, -35], + [-19, -147], + [-38, -57], + [-78, 23], + [-32, -2], + [-16, -22], + [6, -90], + [190, -82], + [15, -65], + [-48, -17], + [-26, -132], + [-51, -47], + [-33, -83], + [0, -215], + [10, -40], + [38, -38], + [-28, -61], + [46, -47], + [43, -15], + [-20, -40], + [26, -16], + [3, -20], + [-20, -7], + [38, -48], + [-20, -32], + [-36, 22], + [-18, -12], + [5, -22], + [49, -26], + [-14, -15], + [-31, 4], + [-5, -19], + [16, -29], + [-41, -38], + [25, -61], + [25, -9], + [32, 63], + [75, -45], + [43, 6], + [9, -9], + [-23, -75], + [13, -6], + [-5, -30], + [68, -18], + [-17, -62], + [-59, -55], + [-14, -40], + [156, -234], + [73, -535], + [-42, -27], + [-87, 36], + [-143, -79], + [-64, -8], + [-11, -91], + [-62, -42], + [23, -21], + [-24, -69], + [23, -35], + [-4, -37], + [16, -40], + [-33, -96], + [18, -34], + [-38, -44], + [23, -6], + [11, -22], + [-47, -36], + [-31, -55], + [-33, -19], + [-41, 3], + [-13, -30], + [4, -34], + [-76, 15], + [-113, -23], + [-34, 11], + [-16, -12], + [27, -47], + [-41, -179], + [-87, 31], + [-11, -1], + [-5, -28], + [-31, -3], + [-13, 29], + [-78, 6], + [-91, -27], + [-90, -67], + [-109, -27], + [-76, -48] + ], + [ + [5578, 7898], + [-8, 8] + ], + [ + [11311, 30876], + [-2, -106], + [94, -40], + [103, 16], + [56, -32], + [14, -68], + [67, -42], + [18, -47], + [52, -38], + [93, -151], + [28, -102], + [-10, -38], + [-41, -76], + [-51, -28], + [-40, -92], + [17, -44], + [0, -143], + [30, -141], + [-14, -78], + [156, -146], + [77, -18], + [69, -61], + [26, -51], + [35, -139], + [13, -243], + [-30, -83], + [0, -53], + [11, -18], + [60, -18], + [52, -47], + [29, -10], + [70, -8], + [95, -41], + [72, 18], + [85, -29], + [59, -104], + [8, -46], + [-3, -380], + [-76, -71], + [-79, -50], + [-69, -23], + [-111, 3], + [-50, -64], + [-47, -29], + [-34, -54], + [-56, -179], + [-49, -99], + [-23, -20], + [-161, 4], + [-44, -43], + [-66, -19], + [-22, -21], + [40, -133], + [-3, -49], + [-14, -33], + [-66, -20], + [-5, -56], + [44, -86], + [8, -82], + [31, -24], + [20, -43], + [86, -81], + [4, -18], + [-13, -23], + [-67, -19], + [-67, -53], + [-7, -92], + [45, -104], + [-10, -23], + [-55, -6] + ], + [ + [11693, 26539], + [-7, 28], + [-49, 38], + [16, 28], + [43, 22], + [-15, 24], + [-29, 14], + [-126, 10], + [-143, -36], + [-101, 3], + [-44, -17], + [-62, 14], + [-109, -5], + [-152, 38], + [-27, 19], + [-19, 63], + [-105, 38], + [-91, -1], + [-110, -43], + [-56, -50], + [-39, -63], + [-47, 1], + [-135, -35], + [-176, -112], + [-90, -5], + [-91, 16] + ], + [ + [9929, 26528], + [-108, 48], + [-115, 106], + [-3, 98], + [28, 54], + [8, 79], + [-41, 130], + [-75, 49], + [-67, 125], + [-133, 149] + ], + [ + [9423, 27366], + [62, 43], + [23, 101], + [92, 52], + [13, 84], + [-82, 35], + [22, 51], + [-21, 28], + [1, 40], + [45, 110], + [-21, 94], + [56, 94], + [29, 16], + [52, 108], + [84, 39], + [15, 35], + [-13, 54], + [16, 85], + [-29, 79], + [-132, 33], + [-101, 147], + [-27, 1], + [-91, -42], + [-33, 23], + [-17, 25], + [4, 100], + [-34, 77], + [-18, 4], + [-49, -27], + [-7, 18], + [-19, 2], + [-84, -24], + [-33, 5], + [-37, -76], + [-18, -4], + [-43, 8], + [-39, 41], + [-31, -19], + [-43, 21], + [-2, 29], + [29, 38], + [-13, 37], + [30, 11], + [-37, 68], + [-83, -55], + [-38, 34], + [-23, 1], + [-42, -42], + [-14, 8], + [-28, 56], + [23, 41], + [-19, 81], + [-51, 63], + [-55, 32], + [-13, 29], + [6, 128], + [-72, 46], + [-91, 136], + [-35, 15], + [-48, -4], + [-103, -81], + [-49, -20], + [-95, 10], + [-118, -27], + [-73, 32], + [-13, 26], + [5, 58], + [-32, 61], + [-35, 16], + [-208, 19], + [-42, 66], + [-60, 10], + [-34, -12], + [-50, -46], + [-65, -116], + [-67, -53], + [-130, 44], + [-63, -1], + [-5, -91], + [-30, -60], + [-62, -20], + [-35, -42], + [-55, 24], + [-51, 61], + [-8, 225], + [-16, 16], + [-127, 6], + [-37, 174], + [53, 41], + [73, -6], + [40, 23], + [-9, 72], + [43, 98], + [19, 144], + [150, -3], + [24, 39], + [8, 80], + [119, 51], + [71, 144], + [-76, 96], + [31, 46], + [-22, 26], + [-172, 88], + [-7, 34], + [26, 73], + [-5, 65], + [-72, 153], + [-40, 13], + [-54, -6], + [-18, 13], + [-37, 79], + [-5, 43], + [4, 12], + [40, -2], + [26, 16], + [17, 30], + [-73, 54], + [-17, 29], + [33, 18], + [35, 74], + [94, 4], + [41, 31], + [72, 21], + [29, 35], + [21, 6], + [31, -51], + [59, -42], + [15, -92], + [22, -25], + [53, 6], + [5, -41], + [23, -27], + [-2, -48], + [50, -3], + [52, -20], + [5, -42], + [-28, -38], + [4, -15], + [57, -6], + [212, -129], + [50, -12], + [54, 13], + [92, -25], + [85, 39], + [15, 22], + [107, 15], + [46, 54], + [82, 16], + [79, 32], + [112, 149], + [76, -26], + [3, -27], + [93, -50], + [167, 47], + [84, 6], + [55, -56], + [85, -23], + [33, -27], + [-15, -68], + [42, -15], + [24, -30], + [134, -4], + [30, -14], + [111, 16], + [44, -8], + [43, 23], + [84, -25], + [109, 20], + [33, -10], + [37, 24], + [19, 74], + [80, 24], + [31, 34], + [42, 14], + [13, -62], + [-37, -47], + [11, -19], + [74, -37], + [25, -56], + [25, -17], + [27, 5], + [86, 62], + [33, 11], + [113, -25], + [87, -44], + [81, 14], + [49, -13], + [37, -26], + [51, 12], + [43, -11], + [107, 38], + [100, -50], + [176, 24], + [66, -7], + [47, 32], + [72, 3], + [49, -19], + [64, -53], + [12, -47], + [33, -13] + ], + [ + [19052, 27705], + [-101, 96], + [-101, -31], + [-48, 8], + [-100, -12], + [-28, -36], + [26, -46], + [-54, 5], + [-56, -15], + [-13, -53], + [-26, -29], + [-49, 2], + [-18, 44], + [9, 53], + [-106, 80], + [-66, 4], + [-67, 105], + [-141, 98], + [-45, 13], + [-66, 46], + [-156, 31], + [-48, 30], + [-43, -118], + [-27, -6], + [-135, 84], + [-124, -70], + [-17, -47], + [3, -39], + [-23, -12], + [-53, -6], + [-25, 24], + [-12, 52], + [-145, 41], + [-63, -9], + [-123, -47], + [-42, 5], + [-23, -18], + [-88, -164], + [-135, 39], + [-46, -81], + [-64, 4], + [-3, -38], + [36, -119], + [-7, -54], + [-37, -37], + [-79, -42], + [-68, -100], + [-64, -50], + [-1, -39], + [-43, -70], + [28, -42], + [90, -7], + [35, -26], + [66, -61], + [27, -54], + [-91, -160], + [-87, -80], + [-31, -143], + [27, -67], + [66, -61], + [55, -77], + [118, -109], + [52, -31], + [33, -84], + [33, -23], + [69, -15], + [-19, -45], + [23, -29], + [96, -44], + [58, -78], + [87, -24], + [35, -193], + [22, -35], + [-37, -74], + [22, -35], + [-4, -29], + [-32, -21], + [15, -43], + [-92, -53], + [-3, -110], + [25, -24], + [240, -125], + [21, -78], + [-12, -83], + [-12, -38], + [-59, -71], + [-56, 39], + [-43, 91], + [-42, 38], + [-212, 88], + [-145, 85], + [-35, -4], + [-37, 42], + [-128, -96], + [-111, -29], + [-29, -84], + [-129, 51], + [-175, 32], + [-38, -3], + [-8, -14] + ], + [ + [16023, 25145], + [-40, -52], + [-63, -12], + [-12, -22], + [12, -60], + [-29, -21], + [-27, 45], + [-91, 49], + [-23, 126], + [-9, 62], + [46, -11], + [17, 11], + [40, 162], + [-20, 57], + [-66, 32], + [-35, -9], + [-57, -46], + [-71, 4], + [-51, 104], + [-69, 68], + [-48, -31], + [-144, 32], + [-184, 13], + [-21, 8], + [-9, 23], + [-42, 0], + [-11, 54], + [-60, -1], + [-14, 27], + [-108, -42], + [-23, 2], + [-10, 19], + [-17, -3], + [-128, -70], + [-15, -23], + [-13, -110], + [-25, -43], + [-85, -19], + [-81, -37], + [-4, -65], + [24, -62], + [-7, -28], + [-62, -62], + [12, -44] + ], + [ + [14400, 25170], + [-116, -12], + [-156, -41], + [-208, -138], + [-25, 3], + [-14, 32], + [-78, 72], + [-20, 10], + [-98, -5], + [-130, 66], + [-101, 129], + [-123, 90], + [-76, 84], + [-91, 72], + [-168, -20], + [-190, 77], + [-96, 59], + [-33, 43], + [-11, 55], + [-107, 82], + [-124, 131], + [-83, 15], + [-49, -8], + [-107, -76], + [-87, -38], + [-63, 9], + [-51, 35], + [-145, 59], + [-89, 8], + [-54, -10], + [-25, 10], + [-64, 68], + [-12, 53], + [8, 37], + [58, 24], + [41, 80], + [4, 64], + [58, -3], + [25, 23], + [-9, 33], + [-90, 48], + [5, 117], + [-13, 32] + ], + [ + [11311, 30876], + [123, -8], + [64, 37], + [57, -1], + [22, 15], + [-19, 83], + [-34, 24], + [-33, 47], + [104, 15], + [65, -21], + [27, 10], + [98, -10], + [100, 69], + [118, 14], + [9, 38], + [33, 18], + [15, 43], + [14, 8], + [42, -17], + [42, 72], + [-15, 40], + [-56, 54], + [6, 32], + [46, 67], + [104, 10], + [64, 55], + [60, 23], + [81, -18], + [151, 4], + [29, 71], + [105, 13], + [78, 62], + [42, 60], + [111, 14], + [141, -93], + [71, -109], + [91, -79], + [125, -63], + [57, -13], + [39, -24], + [40, -58], + [82, -33], + [173, 34], + [263, 18], + [124, -40], + [129, 15], + [204, 61], + [35, 23], + [22, 51], + [33, 29], + [52, 7], + [62, 33], + [109, 17], + [17, 30], + [-9, 30], + [53, 41], + [20, 68], + [27, 33], + [-14, 64], + [37, 41], + [1, 45], + [105, 62], + [-7, 29], + [32, 34], + [26, 8], + [60, -19], + [95, 67], + [20, 59], + [-12, 77], + [33, 76], + [42, 65], + [93, 80], + [18, 66], + [56, -37], + [91, -13], + [58, 24], + [130, -9], + [46, -26], + [54, -72], + [112, 15], + [24, -50], + [-5, -62], + [10, -21], + [82, -79], + [158, -20], + [154, -68], + [34, -76], + [-45, -47], + [1, -113], + [24, -64], + [132, -173], + [-8, -97], + [28, -84], + [33, -28], + [104, -12], + [30, -31], + [-16, -38], + [-77, -38], + [18, -34], + [101, -6], + [46, -28], + [106, -15], + [93, -31], + [98, 4], + [33, -23], + [7, -34], + [-12, -26], + [15, -22], + [42, -9], + [28, -30], + [49, 29], + [68, -26], + [16, -22], + [-15, -45], + [76, -93], + [8, -89], + [74, -64], + [11, -26], + [0, -118], + [27, -94], + [-13, -46], + [-48, -54], + [-38, -20], + [-1, -40], + [71, -78], + [110, -72], + [6, -22], + [-38, -17], + [-7, -27], + [23, -71], + [86, -27], + [15, -63], + [35, -50], + [57, -6], + [58, -42], + [13, -35], + [30, -5], + [23, 34], + [52, -20], + [309, -63], + [37, 17], + [42, -25], + [184, -41], + [-28, 157], + [9, 91], + [32, 57], + [125, 20], + [64, 24], + [158, 7], + [4, -19], + [-20, -12], + [-10, -30], + [55, -77], + [49, -41], + [8, -49], + [-6, -68], + [11, -46], + [-19, -82], + [7, -29], + [-50, -120], + [-2, -65], + [-18, -45], + [-58, -33], + [-63, -90], + [-28, -77], + [-48, -27], + [1, -40], + [49, -108], + [-17, -98], + [-42, -75], + [-10, -60], + [6, -36], + [40, -49], + [41, -27], + [117, -34], + [72, 116], + [29, 8], + [85, -15], + [19, -15], + [-19, -7], + [32, -92], + [53, -45], + [49, -67], + [-51, -113], + [19, -82], + [-19, -30], + [-48, -233], + [18, -35], + [-8, -92], + [30, -66], + [-12, -36], + [-61, -61], + [-51, -86] + ], + [ + [2947, 8045], + [50, -82], + [20, 24], + [23, 5], + [122, -25], + [62, 1], + [17, -3], + [17, -26], + [12, -55], + [32, -14], + [47, 9], + [22, -18], + [49, 25], + [135, -22], + [26, -15], + [35, -48], + [-19, -127], + [61, -148], + [-27, -134], + [99, 16] + ], + [ + [3730, 7408], + [20, -5] + ], + [ + [3750, 7403], + [11, 20], + [22, 3], + [69, -9] + ], + [ + [3852, 7417], + [80, 10] + ], + [ + [3932, 7427], + [33, -24], + [26, 5], + [35, 29], + [24, -10], + [11, -28], + [27, 0], + [65, 28], + [-16, 192], + [11, 14], + [27, 9], + [38, -16], + [32, 29], + [95, -13], + [41, -54] + ], + [ + [4381, 7588], + [45, -33] + ], + [ + [3692, 1930], + [-1, 50], + [-98, -6], + [-51, -51], + [-37, -12], + [-24, -28], + [-100, -56], + [-57, -19], + [-194, -11], + [-2, 20], + [-30, 33], + [-20, 131], + [3, 78], + [-21, 72], + [5, 14], + [61, -9], + [30, 24], + [1, 21], + [-42, 96], + [-98, 11], + [-27, 26], + [-24, 5], + [-53, -17], + [-9, -29], + [4, -196], + [-37, -20], + [1, -25], + [-64, -63], + [-179, -17], + [-87, 10], + [-53, 35], + [-7, 242], + [257, 126], + [14, 17], + [5, 39], + [-16, 20], + [-38, 9], + [-55, 95], + [-47, 33], + [-29, 66], + [-34, 24], + [-8, 102], + [-83, 145], + [-19, 56], + [8, 55], + [-40, 57], + [-3, 22], + [65, 85], + [-11, 27], + [-42, 4], + [-26, -21], + [-110, 70], + [21, 78], + [18, 8], + [-19, 24], + [-60, 19], + [-13, 47], + [-150, 95], + [-81, 136], + [-6, 23], + [15, 21], + [-19, 60], + [-28, -3], + [-66, 40], + [-16, 38], + [-77, 80], + [-71, 43], + [-67, 20], + [-51, 58], + [-130, 69], + [-17, 39], + [-67, 70], + [-7, 30], + [-79, 23], + [-49, 47], + [-42, 4], + [-86, -26], + [-64, 19], + [-172, -90], + [-70, -8], + [-103, -71], + [-56, 49], + [-39, 4], + [-49, -66], + [-56, -23], + [-15, 8], + [-37, 44], + [-61, 129], + [-116, 328], + [-92, 130], + [-35, 13], + [-81, 117], + [-77, 82], + [13, 39], + [34, 28], + [115, -15], + [24, 13], + [68, 111], + [47, 37], + [97, 13], + [138, 77], + [12, 67], + [-65, 165], + [-189, 228], + [-153, 145], + [-18, 61], + [24, 121], + [-6, 119], + [23, 52], + [106, 125], + [9, 36], + [-32, 91], + [135, 94], + [32, 53], + [-11, 68], + [58, 66], + [-53, 121], + [20, 88], + [53, 31], + [26, 58], + [24, 21], + [138, 63], + [41, 28], + [28, 43], + [-48, 146], + [11, 78], + [46, 55], + [199, 57], + [88, 80], + [126, 304], + [25, 32], + [125, 32], + [67, 35], + [89, 135], + [140, 119], + [42, 18], + [26, -13], + [55, -109], + [-8, -45], + [16, -79], + [93, -213], + [69, -35], + [234, 112], + [75, -12], + [25, -21], + [5, -38], + [-17, -87], + [9, -46], + [51, -23], + [279, 23], + [85, 110], + [60, 54], + [49, 28], + [58, 6], + [17, 36], + [118, 81] + ], + [ + [9929, 26528], + [-74, -156], + [-187, -197], + [-64, -114], + [-51, -39], + [0, -11], + [44, -11], + [-7, -97], + [27, -44], + [-1, -92], + [-31, -214], + [-17, -36], + [10, -26], + [62, -58], + [15, -148], + [31, -29], + [3, -134], + [9, -11], + [72, 23], + [51, -21], + [21, -32], + [74, 6], + [112, -26], + [-22, -122], + [13, -67], + [-33, -137], + [-131, 15], + [-47, -82], + [-109, -119], + [-69, -57], + [-40, -17], + [51, -60], + [-29, -155], + [-48, -38], + [-21, -35], + [-17, -149], + [11, -29], + [34, -21], + [77, -22], + [80, -161], + [-6, -24], + [-66, -48], + [-8, -68], + [-85, -5], + [26, -46], + [-6, -130], + [-23, -51], + [-51, -45], + [122, -12], + [25, -25], + [27, -3], + [31, 13], + [34, -38], + [49, -7], + [22, -20], + [32, 14], + [46, 112], + [78, -41], + [38, 21], + [137, 5], + [19, -18], + [9, -50], + [-8, -44], + [-37, -60], + [-2, -40], + [40, 5], + [106, -44], + [17, 0], + [57, 51], + [104, 139], + [137, 9], + [85, -48], + [34, -71], + [101, 13], + [39, -26], + [36, -65], + [26, -19], + [-115, -105], + [141, -76], + [73, -113], + [57, -14], + [46, -32] + ], + [ + [11115, 22799], + [13, -14] + ], + [ + [11128, 22785], + [-13, -93], + [74, -41], + [-40, -36] + ], + [ + [11149, 22615], + [-58, -25] + ], + [ + [11091, 22590], + [-53, -31], + [-34, -44], + [-53, -122], + [-109, -20], + [-43, -27], + [-93, 34], + [-96, -7], + [-49, -47], + [-66, -113], + [19, -68], + [-2, -64], + [-36, -158], + [14, -162], + [-13, -37], + [-38, -22], + [-2, -14], + [9, -31], + [-7, -50], + [16, -50], + [-7, -37], + [27, -38], + [-96, -147], + [-14, -44], + [9, -57], + [-19, -45], + [49, -13], + [-24, -36], + [21, -36], + [2, -38], + [34, -40] + ], + [ + [10437, 21026], + [17, -20] + ], + [ + [10454, 21006], + [134, -85], + [25, -68] + ], + [ + [10613, 20853], + [20, -78] + ], + [ + [10633, 20775], + [12, -29] + ], + [ + [10645, 20746], + [18, -40] + ], + [ + [10663, 20706], + [59, -220] + ], + [ + [10722, 20486], + [7, -23] + ], + [ + [10729, 20463], + [18, -27], + [42, 24], + [31, -19], + [65, -1], + [52, -67], + [80, -32] + ], + [ + [11017, 20341], + [-70, -75], + [-125, -63], + [-349, -1], + [-82, 31], + [-53, 37], + [-40, 103], + [-33, 27], + [-368, 30], + [-82, 33], + [-42, 53], + [-27, 84], + [-9, 97], + [18, 143], + [-23, 36], + [-109, 15], + [-188, -65], + [-119, 118], + [-65, 19], + [-105, 54], + [-76, 56], + [-46, 11], + [-28, 1], + [-19, -23], + [-31, -89], + [-23, -16], + [-63, -22], + [-166, -7], + [-102, -38], + [-22, -45], + [-4, -54], + [-50, -60] + ], + [ + [8516, 20731], + [-81, 89], + [-88, 30], + [-44, 29], + [3, 112], + [-12, 46], + [18, 63], + [-31, 23], + [-47, -3], + [-45, -44], + [-23, 2], + [-43, 71], + [-32, -2], + [-48, -22], + [4, -46], + [-28, -21], + [-63, 3], + [-43, 18], + [-8, 20], + [35, 96], + [0, 57], + [-105, 58], + [-13, 19], + [10, 70], + [-27, 12], + [-42, -5], + [-35, 28], + [-27, -1], + [-44, -25], + [-59, 28], + [-67, -31], + [-83, -14], + [-39, 34], + [-66, 18], + [1, 20], + [-59, 21], + [-68, -11], + [-78, 15], + [-20, 21], + [0, 85], + [-17, 20], + [-44, 18], + [-87, -11], + [-17, -24], + [-33, 9], + [-19, 18], + [-14, 66], + [-46, 75], + [-21, 17], + [-73, 7], + [-29, 20], + [-21, 0], + [-19, -29], + [62, -15], + [13, -20], + [-9, -54], + [17, -49], + [-41, -37], + [-19, -2], + [-27, 22], + [-7, 38], + [-60, -3], + [-12, 29], + [-37, 28], + [-55, 9], + [-77, -22], + [-38, -63], + [-75, 111] + ], + [ + [6314, 21752], + [23, 17], + [11, 35], + [-3, 38], + [-48, -6], + [15, 99], + [9, 28], + [41, 5], + [53, 142], + [-32, 39], + [-34, 109], + [7, 124], + [53, 40], + [4, 38], + [21, 29], + [-1, 97], + [63, 95], + [-19, 47], + [16, 26], + [-25, 48], + [28, 35], + [1, 33], + [17, 27], + [42, 23], + [6, 84], + [-12, 71], + [-91, 33], + [18, 69], + [-35, 89], + [-37, 34], + [121, 52], + [28, 48], + [59, 58], + [-3, 15], + [-76, 8], + [-105, 120], + [-50, 110], + [-21, 4], + [-104, 84], + [-17, 39], + [41, 56], + [4, 47], + [-2, 30], + [-56, 76], + [-12, 55], + [3, 52], + [23, 40], + [-10, 29] + ], + [ + [6228, 24223], + [52, 78], + [15, 58], + [49, 37], + [18, -26], + [27, 9], + [18, 68], + [18, 16], + [45, -1], + [71, -50], + [74, 11], + [30, 11], + [-28, 17], + [1, 48], + [28, 21], + [125, -35], + [24, -33], + [35, -10], + [81, 17], + [31, 25], + [-13, 76], + [21, 29], + [72, -11], + [54, 35], + [4, 37], + [-47, 54], + [7, 107], + [35, 65], + [32, 8], + [9, 54], + [33, 3], + [77, 83], + [102, -15], + [41, 19], + [36, 31], + [44, 106], + [71, -36], + [18, -108], + [42, -11], + [69, 91], + [16, 64], + [-97, 259], + [13, 34], + [67, 11], + [8, 59], + [71, 59], + [31, 43], + [-50, 98], + [7, 75], + [-14, 46], + [-61, 129], + [43, 87], + [0, 115], + [133, 35], + [178, 14], + [21, 18], + [105, 23], + [24, 16], + [-6, 108], + [52, -16], + [21, 8], + [60, 61], + [75, 40], + [62, 78], + [133, 46], + [11, 94], + [-26, 175], + [-52, 67], + [-5, 31], + [-38, 64], + [39, 109], + [59, 39], + [1, 42], + [73, -7], + [44, 19], + [40, -4], + [65, 36], + [52, -8], + [48, -33], + [110, 9], + [78, 59], + [41, 61], + [68, 64], + [30, 5], + [93, -39], + [80, -3], + [71, -25] + ], + [ + [8516, 20731], + [-147, -115], + [-63, -68], + [-81, -38], + [-110, -24], + [-69, -50], + [-142, 14], + [-67, 52], + [-28, 0], + [-74, -28], + [-71, 19], + [-56, -63], + [-67, -38], + [-35, 15], + [-24, 70], + [-71, -18], + [-72, 6], + [-31, -20], + [-11, -24], + [-2, -23], + [80, -99], + [21, -65], + [30, -41], + [-11, -83], + [-66, -60], + [-129, -35], + [-31, -23], + [-21, -50], + [-44, 3], + [-26, -35], + [19, -50], + [129, -89], + [35, -38], + [17, -53], + [-8, -38], + [-62, -99], + [-13, -44], + [-74, -53], + [0, -102], + [-117, -1], + [0, -132], + [-54, -43], + [-14, -27], + [0, -162], + [-33, -52], + [8, -52], + [31, -43], + [-5, -154], + [36, -63], + [-64, -85], + [-51, -1], + [-27, -19], + [11, -53], + [-7, -32], + [-79, -36], + [2, -67], + [-16, -22], + [-39, -37], + [-29, -8], + [-57, 18], + [-70, -14], + [-18, -128], + [-25, -25], + [-57, -15], + [49, -118], + [-6, -109], + [17, -71], + [25, -17], + [78, -5], + [55, -93], + [47, -19], + [78, -64], + [110, -228], + [-91, -12], + [0, -52], + [-49, -34], + [-65, -97], + [-4, -83], + [-25, -68], + [13, -107], + [132, -42], + [13, -23], + [-3, -22], + [-52, -27], + [-51, -7], + [-4, -22], + [67, -30], + [59, -82] + ], + [ + [6860, 16659], + [-18, -28], + [30, -34], + [45, -118], + [-53, -48], + [12, -69], + [-13, -23], + [-84, -57], + [-47, -62], + [-203, -46], + [-28, -16], + [-39, -48], + [-35, -93], + [-29, -27], + [-86, 0], + [-87, -120], + [-52, -2], + [-3, -35], + [23, -44], + [26, -23], + [30, 3], + [43, -23], + [8, -15], + [-22, -54], + [29, -22], + [82, -3], + [6, -22], + [-25, -128], + [-37, -13], + [-48, -43], + [-8, -32], + [-54, -26], + [-14, -24], + [4, -41], + [26, -32], + [4, -70], + [-31, -97], + [49, -67], + [59, 17], + [61, -23], + [-20, -239], + [-85, -38], + [-3, -36], + [33, -29], + [-3, -46], + [-46, -70], + [18, -46], + [21, -17], + [13, 26], + [65, 39], + [-9, -56], + [-92, -53], + [-92, -16], + [-10, -23], + [93, -13], + [6, 16], + [83, -18], + [10, 17], + [18, -28], + [-109, -18], + [-23, -17], + [-85, 33], + [-42, -21], + [-97, 22], + [44, -81], + [4, -36], + [-92, -9], + [-40, -25], + [-26, -43], + [-64, 1] + ], + [ + [5851, 14227], + [-38, -11], + [-98, -92], + [-103, 24], + [-55, 65], + [-66, 3], + [-49, 29], + [-46, -4], + [-46, -56], + [-23, -78], + [-48, -54], + [-30, -27], + [-100, -28], + [-78, -51], + [25, -23], + [22, -68], + [-15, -57], + [-48, -74], + [20, -35], + [-15, -22], + [-31, -20], + [-48, 7], + [-12, -65], + [-37, 0], + [-18, -56], + [-185, -42], + [-58, -28], + [-118, -136], + [-385, 213], + [-170, 24], + [-35, 30], + [-58, 89], + [-121, 61], + [-30, -25], + [-63, -19], + [-15, -35], + [-54, -30], + [-45, -12], + [-66, 28] + ], + [ + [3511, 13652], + [15, 45], + [-15, 62], + [50, 25], + [46, 6], + [35, 24], + [-19, 124], + [-81, 25], + [-39, 37], + [20, 68], + [30, 37], + [-4, 93], + [70, 49], + [55, 0], + [76, 105], + [-24, 173], + [-100, 44], + [-35, -6], + [-35, 43], + [-85, 31], + [36, 130], + [-11, 52], + [-66, -17], + [-64, -79], + [-16, 8], + [-24, 79], + [-67, -16], + [-44, -36], + [-66, 52], + [-53, 1], + [-37, 32], + [-5, 13], + [32, 74], + [-164, -18], + [-60, 27], + [-57, 153], + [20, 27], + [1, 28], + [27, 23], + [28, 55], + [8, 82], + [183, 88], + [59, 43], + [17, 46], + [51, 40], + [35, -22], + [48, 38], + [35, -33], + [2, -34], + [-33, -7], + [3, -25], + [30, -35], + [13, -2], + [4, 17], + [51, -8], + [53, -29], + [7, 19], + [21, 0], + [34, 122], + [91, 78], + [-20, 4], + [-5, 21], + [13, 4], + [34, -20], + [37, -48], + [29, 6], + [10, 27], + [-30, 55], + [-22, -13], + [-32, 57], + [-51, 17], + [-13, 18], + [30, 63], + [57, 7], + [80, 51], + [48, 63], + [1, 30], + [-53, 25], + [-14, 40], + [-52, 15], + [-31, 59], + [5, 27], + [28, 28], + [-38, 26], + [-4, 114], + [-13, 6], + [-80, -27], + [-9, 18], + [31, 90], + [-1, 18], + [-38, 37], + [56, 30], + [14, -7], + [10, 19], + [2, 20], + [-37, 59], + [52, 14], + [56, -4], + [2, 16], + [17, 3], + [56, -6], + [64, -32], + [87, -12], + [46, -24], + [55, 12], + [168, -13], + [56, 24], + [58, -8], + [48, 37], + [85, 22], + [69, 73], + [8, 45], + [-15, 25], + [25, 29], + [5, 42], + [42, 48], + [-21, 65], + [19, 31], + [42, 14], + [2, 73], + [29, 39], + [39, 18], + [130, -42], + [59, 31], + [-8, 50], + [-30, 4], + [-3, 57], + [56, 19], + [4, 79], + [32, 76], + [5, 54], + [-46, 41], + [-6, 69], + [-46, 47], + [7, 106], + [-14, 10], + [-88, -22], + [-88, -3], + [-46, -31], + [-4, 14], + [6, 45], + [48, 43], + [7, 33], + [-58, 23], + [2, 17], + [67, 67], + [-11, 154], + [24, 36], + [37, 12], + [21, 94], + [38, 23], + [9, 64], + [41, 0], + [7, 13], + [-45, 61], + [-6, 57], + [24, 45], + [4, 101], + [-18, 36], + [-51, 28], + [31, 9], + [4, 15], + [-48, 62], + [-24, 116], + [36, 57], + [-5, 76], + [16, 89], + [-94, 13], + [-27, 71], + [10, 20], + [83, -26], + [59, -1], + [35, 98], + [-55, 35], + [-105, 29], + [-36, 91], + [-39, 19], + [-33, -10], + [-8, 20], + [71, 153], + [113, 88], + [16, 83], + [-9, 46], + [69, 43], + [-61, 66], + [12, 84], + [-37, 107], + [9, 6], + [-4, 112] + ], + [ + [4668, 20155], + [34, -6], + [29, 31], + [41, -16], + [57, 26], + [38, -28], + [20, 0], + [62, 29], + [22, 44], + [-54, 28], + [1, 153], + [136, -34], + [37, 8], + [36, 34], + [103, 34], + [46, 30], + [86, -48], + [141, 47], + [10, 22], + [-32, 8], + [-9, 40], + [-32, 24], + [7, 131], + [-29, 36], + [0, 40], + [72, 71], + [115, -29], + [71, 27], + [49, -34], + [44, -10], + [24, 0], + [19, 17], + [-14, 83], + [-33, 40], + [-4, 117], + [80, 62], + [44, 125], + [13, -7], + [9, -44], + [18, -21], + [93, -18], + [22, 6], + [-31, 44], + [78, 35], + [6, 133], + [85, 91], + [-24, 51], + [3, 28], + [52, 75], + [-14, 60], + [-46, 75], + [70, 14], + [95, -27] + ], + [ + [6043, 14435], + [13, 63], + [56, 49], + [-7, 57], + [-58, -62], + [-17, -43], + [-8, -66], + [21, 2] + ], + [ + [19052, 27705], + [-23, -72], + [23, -80], + [96, -72], + [43, -75], + [27, -14], + [48, 14], + [58, -2], + [85, -52], + [38, -62], + [70, -10], + [15, -19], + [12, -72], + [-35, -72], + [-1, -117], + [98, -219], + [-3, -67], + [22, -58], + [33, 2], + [67, 34], + [17, 32], + [-14, 92], + [27, 28], + [-6, 35], + [20, 68], + [67, 17], + [41, -24], + [9, -20], + [-16, -57], + [76, -91], + [26, -51], + [49, 19], + [53, 1], + [20, -38], + [48, -8], + [102, 90], + [-12, -51], + [49, -91], + [54, 2], + [87, 30], + [92, 61], + [34, -1], + [59, -28], + [23, 11], + [112, -4], + [30, -45], + [6, -74], + [57, -68], + [3, -76], + [-17, -36], + [-77, -78], + [9, -17], + [20, -3], + [8, -24], + [-7, -89], + [-27, -19], + [-9, -39], + [-59, -21], + [-51, 14], + [-28, -21], + [-64, 2], + [-56, -81], + [1, -44], + [9, 4], + [-13, -97], + [-26, -35], + [-13, -59], + [-33, -2], + [-66, -58], + [-25, -123], + [-19, -17], + [-37, 28], + [-100, -13], + [-63, -75], + [-82, -68], + [21, -154], + [-9, -37], + [22, -49], + [-22, -59], + [-36, -42], + [-55, -30], + [-12, 10], + [-51, -6], + [-84, -72], + [-77, -23], + [-75, -56], + [-215, 11], + [-67, -21], + [-68, 20], + [-161, -218], + [-135, -36], + [-18, -42], + [-64, -49], + [-4, -75], + [-24, -79], + [29, -76], + [-13, -20], + [-42, 41], + [-71, -35], + [-28, -42], + [8, -60], + [105, -59], + [80, -28], + [43, -68], + [86, -16], + [14, -25], + [-7, -160], + [-37, -36], + [-44, -19], + [10, -16], + [-19, -46], + [-39, -32], + [-64, -122], + [13, -65], + [-56, 8], + [-74, -21], + [-57, -37], + [-74, 17], + [-114, -26], + [-70, 17], + [-51, -36], + [-42, -66], + [-126, -4], + [-55, 25], + [-39, -26], + [-51, -64], + [-69, -12], + [-21, -23], + [-23, -48], + [-6, -92], + [-109, -14] + ], + [ + [17866, 23187], + [2, 22], + [-31, 35], + [-10, 43], + [-57, 10], + [-22, 31], + [-35, 5], + [-31, 23], + [-16, 54], + [-38, 41], + [-13, 49], + [-39, 40], + [-30, 93], + [-118, 23], + [-74, -26], + [-44, 1], + [-180, 65], + [-37, 22], + [-45, 107], + [-47, 39], + [-32, 10], + [-42, 68], + [-162, 88], + [-30, 35], + [-10, 49], + [56, 122], + [21, 82], + [17, 110], + [-33, 40], + [-73, 19], + [-69, -50], + [-89, -94], + [-145, -23], + [-40, -20], + [-51, -77], + [-132, 69], + [-125, 105], + [-11, 33], + [-39, 37], + [-162, 86], + [-4, 22], + [43, 44], + [15, 60], + [-3, 111], + [-15, 40], + [-31, 25], + [29, 42], + [67, 37], + [42, 86], + [46, 54], + [-16, 71] + ], + [ + [14400, 25170], + [33, -36], + [17, -95], + [-20, -29], + [-72, -34], + [-35, -36], + [3, -194], + [-28, -97], + [74, -193], + [0, -140], + [-74, -86], + [-26, -106], + [8, -37], + [34, -43], + [-23, -51], + [14, -91], + [14, -20], + [32, 6], + [57, -40], + [-22, -17], + [-2, -148], + [-36, -30], + [34, -91], + [-106, -89], + [-31, -66], + [7, -86], + [-11, -21], + [-56, -45], + [-83, -108], + [-4, -48], + [37, -66], + [-17, -19], + [-103, -46], + [-9, -22], + [12, -30], + [49, -33], + [13, -27], + [18, -118], + [-7, -30], + [-52, -41], + [-61, -113], + [-77, 2], + [-105, -28], + [-66, 11], + [-61, -19], + [-35, -94], + [-76, 7], + [-35, -87], + [5, -34] + ], + [ + [13528, 22312], + [-62, 5], + [-110, 72], + [-23, 22], + [-50, 110], + [-103, 46], + [-62, -12], + [-45, -65], + [-135, -4], + [-67, -54], + [-63, -16], + [16, -48], + [-194, -70], + [-31, -50], + [9, -50], + [-51, -29], + [-20, 15], + [-8, -30], + [-22, -20], + [-34, -6], + [57, -220], + [-8, -24], + [-16, -6], + [-50, 4], + [-74, 58], + [-39, 155], + [-25, 43], + [-69, 6], + [-38, -45], + [-27, 3], + [-43, 53], + [-77, 40], + [-64, 126], + [-1, 55], + [16, 5], + [62, 138], + [41, 135], + [-74, 121], + [6, 64], + [-23, 86], + [-85, 61], + [-52, 19], + [-103, 11], + [-17, -82], + [-61, -105], + [-73, -23], + [-47, -36], + [-46, -16], + [-34, 19], + [-9, 75], + [-37, 71] + ], + [ + [11463, 22919], + [-5, 11] + ], + [ + [11458, 22930], + [-40, 54], + [-120, -30], + [-96, -118], + [-74, -51] + ], + [ + [11128, 22785], + [-13, 14] + ], + [ + [13858, 23004], + [-42, -40], + [-25, -2], + [-33, -41], + [14, -30], + [158, 2], + [4, 24], + [-27, 42], + [-49, 45] + ], + [ + [17866, 23187], + [-45, -48], + [-51, -30], + [-36, -88], + [-73, -36], + [-20, -39], + [-36, -8], + [-265, 22], + [-101, -42], + [-77, -65], + [-58, -1], + [-134, -145], + [-84, -229], + [-184, -201], + [-43, -67], + [9, -22], + [74, -35], + [133, -120], + [-84, -54], + [-164, 3], + [-39, 20], + [-24, -21], + [-29, -109], + [7, -61], + [25, -41], + [49, -39], + [-19, -38], + [9, -6], + [-29, -26], + [-4, -40], + [-23, -29], + [-2, -83], + [114, -101], + [-22, -60], + [172, -31], + [64, -79], + [-6, -24], + [-33, -28], + [-56, -17], + [9, -33], + [-33, -25], + [7, -32], + [-33, -41], + [63, -98], + [2, -48], + [-55, -71], + [-126, 28], + [-87, -17], + [-17, -46], + [43, -24], + [-8, -59], + [20, -32], + [-15, -9], + [4, -25], + [-72, 0], + [-81, 33], + [-76, 72], + [2, -30], + [-29, -28], + [-7, -46], + [-85, -59], + [44, -46], + [16, -78], + [-26, -47], + [51, -41], + [-140, -243], + [-33, -17], + [-44, 12], + [-65, -5], + [-34, -30], + [-7, -59], + [78, -61], + [27, -41], + [128, -57], + [84, -23], + [18, -33], + [-10, -39], + [-73, 6], + [-35, -109], + [-52, -2], + [1, 11], + [-21, 4], + [6, 46], + [-43, 5], + [0, 74], + [31, 63], + [-31, 23], + [-74, -29], + [-13, -26], + [-77, -22], + [-34, -39], + [-106, -72], + [-17, -41], + [-46, -39], + [-29, -126], + [22, -69], + [-5, -49], + [-58, -74], + [-42, -139], + [-41, -29], + [-16, -36], + [38, -53], + [6, -105], + [35, -108], + [54, -9], + [46, -31], + [19, -71], + [37, -65], + [62, -53], + [-3, -83], + [18, -56], + [-18, -37], + [5, -20], + [52, -31], + [-9, -35], + [-74, -48], + [-57, 22], + [-9, -17], + [-202, 81], + [-76, 12], + [-49, 33], + [-142, 54], + [-57, 0] + ], + [ + [13496, 19080], + [-37, 293], + [85, 87], + [7, 52], + [141, 198], + [9, 54], + [43, 44], + [3, 31], + [-33, 134], + [-45, 97], + [-74, -1], + [-20, 129], + [6, 53] + ], + [ + [13581, 20251], + [107, -7], + [79, 23], + [79, 43], + [120, 21], + [66, -17], + [120, -64], + [121, -39], + [166, 27], + [237, -20], + [341, -74], + [344, -114], + [40, -3], + [29, 12], + [6, 50], + [-41, 56], + [-149, 21], + [-65, 36], + [-17, 47], + [-29, 25], + [40, 24], + [4, 22], + [-40, 68], + [-55, 14], + [-49, 122], + [-5, 78], + [-70, 16], + [-14, 30], + [-66, 66], + [19, 71], + [54, 40], + [-78, 38], + [-125, 23], + [13, 61], + [97, 40], + [13, 73], + [54, 22], + [-8, 101], + [-43, 17], + [7, 8], + [-30, 20], + [-13, 31], + [-50, 24], + [-43, 1], + [-20, -32], + [-24, -8], + [-61, 13], + [-54, -29], + [-50, 36], + [-11, 39], + [-41, 12], + [-12, -11], + [-34, 7], + [-27, 20], + [-118, 212], + [-142, 2], + [-19, -34], + [-119, -17], + [-77, 21], + [-73, -19], + [-13, 10], + [-16, 30], + [10, 79], + [46, -1], + [21, 35], + [20, 6], + [4, 27], + [140, 19], + [-130, 23], + [-26, 72], + [-56, 33], + [127, 135], + [-15, 21], + [-50, -25], + [-23, 7], + [-12, 49], + [8, 48], + [-201, 105], + [-171, 143] + ], + [ + [11017, 20341], + [24, 19], + [43, -10], + [90, -58], + [93, -20], + [108, 37], + [148, 23], + [50, -8], + [110, -72], + [134, -47], + [51, 24], + [43, 42], + [52, 19], + [69, -34], + [75, -64], + [37, -6], + [134, 77], + [60, 15], + [112, -13], + [101, -27], + [141, -1], + [106, 18], + [198, -106], + [159, -69], + [60, 2], + [141, 46], + [172, 112], + [53, 11] + ], + [ + [10558, 15880], + [-40, -151], + [8, -66], + [-13, -42], + [29, -151], + [-19, -163], + [54, -153], + [-32, -15], + [38, -60], + [-18, -79], + [40, -107], + [47, -32], + [23, -41], + [-15, -68], + [30, -136], + [-9, -20], + [-41, -26], + [-13, -60], + [-39, -10], + [-46, -38], + [-5, -48], + [24, -50], + [-10, -28], + [-41, -38], + [-23, -2], + [-19, -42], + [92, -83], + [32, -75], + [49, -35], + [111, -33], + [23, -202], + [22, -26], + [-7, -66], + [46, -3], + [64, 110], + [31, -37], + [16, -46], + [-8, -97], + [40, -10], + [17, -55], + [-31, -38], + [7, -42], + [-72, -38], + [14, -75], + [-12, -57], + [-63, -109], + [0, -47], + [-21, -58], + [34, -32], + [0, -23], + [80, -40], + [30, -38], + [8, -67], + [22, -34], + [4, -36], + [-5, -22], + [-36, -31], + [-43, -14], + [-36, -33], + [1, -39], + [43, -74], + [-49, -10], + [20, -98], + [23, -16], + [4, -78], + [-30, -42], + [-9, -77], + [-113, -96], + [20, -60], + [-42, -21], + [39, -58], + [30, -129], + [10, -98], + [-19, -153], + [25, -54], + [146, -28], + [83, -42], + [148, -17], + [97, -69], + [60, -26], + [111, -16], + [97, 10], + [163, -68], + [32, -46], + [80, -22], + [81, 6], + [46, 55], + [41, 13], + [247, -23], + [133, -27], + [18, -36], + [-8, -188], + [11, -11], + [-26, -56], + [-11, -79], + [8, -36], + [-27, -24], + [0, -69], + [45, -119], + [41, 4], + [-33, -115], + [-31, -20], + [5, -34], + [-37, -57], + [-76, -16], + [-188, 8], + [-20, -60], + [-65, -51], + [-30, -74], + [-20, -17], + [-79, -13], + [-21, -12], + [-4, -32], + [-66, -21], + [-33, 25], + [4, 110], + [-39, 24], + [11, 112], + [-13, -7], + [3, 28], + [36, 45], + [23, 9], + [-10, 11], + [41, 40], + [39, 63], + [-34, 30], + [-66, -15], + [-54, 43], + [-60, -12], + [-20, 26], + [-33, -28], + [-72, 67], + [-34, -48], + [-54, 58], + [-51, -9], + [-19, 15], + [-5, 51], + [-16, 11], + [-37, -4], + [-56, 21], + [-88, -31], + [-80, 43], + [-143, -34], + [-85, -61], + [-41, -15], + [-54, -67], + [-4, -29], + [-46, -44], + [-48, 12], + [-12, -9], + [1, -43], + [-85, -86], + [-63, 42], + [-45, 108], + [-98, 125], + [-15, 79], + [-130, 238], + [-4, 65], + [-35, 70], + [-46, 25], + [-110, 111], + [-82, -24], + [-50, -67], + [-102, 4], + [-28, -16], + [-13, 39], + [-51, 64], + [-88, 25], + [-83, 50], + [-78, -12], + [-93, 67], + [-22, 47], + [-19, 10], + [-32, -9], + [-35, 58], + [-32, 20], + [-60, 9], + [-45, -75], + [-90, -63], + [-1, -41], + [-32, -25], + [-48, 48], + [-2, 87], + [-22, 43] + ], + [ + [8892, 11635], + [32, 28], + [0, 47], + [36, 71], + [21, 107], + [37, -12], + [120, 52], + [61, -18], + [77, -3], + [44, 12], + [40, 60], + [18, 88], + [109, 71], + [-13, 46], + [10, 158], + [63, 169], + [74, 47], + [8, 24], + [-9, 20], + [61, 115], + [-44, 0], + [-45, 45], + [-28, 69], + [-44, 27], + [-137, 3], + [-36, 12], + [-61, 156], + [-59, 51], + [21, 83], + [-41, 110], + [24, 52], + [-24, 52], + [17, 50], + [-3, 80], + [-38, 45], + [0, 41], + [-53, 37], + [-6, 55], + [-40, 60], + [-8, 24], + [12, 75], + [-35, 62], + [-2, 62], + [-33, 7], + [-28, 74], + [-78, 58], + [-18, 248], + [-88, 247], + [-17, 13], + [2, 62], + [87, 170], + [-151, 149], + [3, 87], + [-24, 40], + [-214, 63], + [-55, 53], + [-5, 111], + [-65, 74], + [-10, 30], + [69, 84], + [8, 36], + [-12, 26], + [-81, 74], + [-20, 84], + [-59, 113], + [17, 105], + [-7, 45], + [-69, 79], + [-12, 240], + [-67, -26], + [-21, -56], + [-22, -21], + [-91, -14], + [-64, 40], + [-36, -9], + [-5, 31], + [-167, 95], + [-40, 55], + [-47, 20], + [-31, 80], + [-43, 51], + [-81, 12], + [-77, -19], + [-46, 42], + [-36, -27], + [-23, -40], + [-33, -1], + [-29, -29], + [-137, 2], + [-62, 54], + [-58, 5], + [-115, 74] + ], + [ + [3511, 13652], + [-77, -34], + [-128, -166], + [-46, -22], + [-48, -64], + [-78, -3], + [-41, 19], + [-56, -178], + [-32, -36], + [-51, 12], + [-64, 43], + [-21, 2], + [-27, -23], + [71, -71], + [2, -65], + [23, -14], + [5, -29], + [-7, -52], + [-45, -59], + [-42, -12], + [-95, -64], + [-34, -5], + [-23, 11], + [-4, 27], + [-24, 15], + [-52, -8], + [-21, -16], + [-39, 18], + [-29, -32], + [-8, -56], + [-91, -33], + [3, -51], + [38, -116], + [-8, -58], + [-31, -56], + [-9, -51], + [-44, -53], + [-27, -22], + [-120, 16], + [-119, 159], + [-52, 14], + [-45, -35], + [-19, -79], + [-98, -77], + [-57, -28], + [-16, 15], + [-126, -50], + [-43, 47], + [-34, 9], + [-10, -32], + [20, -110], + [-30, -126], + [-29, -65], + [-64, -47] + ], + [ + [1509, 11961], + [-58, 39], + [-27, 36], + [-100, 22], + [-28, 52], + [-34, 13], + [-42, -18], + [-158, 35], + [-37, -74], + [-86, -1], + [-166, 71], + [-47, 74], + [30, 40], + [21, 79], + [94, 31], + [3, 13], + [-10, 62], + [-70, 54], + [-50, 92], + [-26, 57], + [16, 15], + [185, 41], + [214, 98], + [145, 17], + [83, -27], + [125, 129], + [31, 63], + [48, 24], + [164, 40], + [107, 5], + [6, 27], + [50, 2], + [6, 40], + [-59, 117], + [-5, 50], + [-21, 16], + [6, 37], + [-60, 41], + [-21, 39], + [19, 107], + [69, 105], + [-44, 68], + [43, 82], + [18, 258], + [33, 149], + [-16, 18], + [-2, 58], + [49, 57], + [-27, 49], + [16, 21], + [-23, 49], + [48, 69], + [-100, 17], + [-85, 36], + [-92, -10], + [-41, -12], + [-39, -56], + [-160, -75], + [-38, 2], + [-59, 10], + [-37, 88], + [-57, 67], + [0, 65], + [16, 28], + [115, 100], + [57, 37], + [93, 12], + [76, 46], + [101, 6], + [29, 23], + [8, 26], + [-26, 76], + [-74, 68], + [-22, 56], + [-6, 126], + [-45, 94], + [-12, 136], + [38, 122], + [25, 21], + [-27, 134], + [-3, 222], + [-59, 191], + [19, 40], + [-157, -26], + [-185, -8], + [-74, 4], + [-18, 21], + [6, 26], + [-40, 41], + [-2, 30], + [-39, 74], + [-12, 137], + [-73, 90], + [55, 49], + [20, 42], + [33, 19], + [11, 29], + [6, 67], + [-38, 107], + [5, 53], + [-44, 85], + [31, 75], + [49, 1], + [-15, 31], + [-38, 17], + [65, 146], + [29, 119], + [88, -7], + [35, 26], + [39, 5], + [30, 30], + [61, -5], + [66, 109], + [71, -20], + [79, 8], + [53, 24], + [53, 57], + [49, 25], + [110, 29], + [62, 65], + [98, 52], + [48, 133], + [50, 70], + [43, 7], + [48, 38], + [5, 56], + [-29, 24], + [-23, 57], + [-35, 30], + [32, 34], + [43, 109], + [64, 72], + [37, 80], + [7, 69], + [32, 65], + [-9, 67], + [119, 114], + [45, 117], + [-41, 121], + [13, 34], + [1, 83], + [30, 105], + [-87, 87], + [30, 81], + [-51, 79], + [0, 89], + [53, 54], + [13, 42], + [-10, 92], + [-7, 16], + [-34, 12], + [-24, 93], + [13, 18], + [-14, 20], + [40, 36], + [50, 102], + [-2, 31], + [-32, 38], + [21, 14], + [19, 85], + [69, 131], + [14, 7], + [96, 0], + [59, -41], + [17, -46], + [28, -7], + [143, 41], + [2, 85], + [101, 210], + [30, 129] + ], + [ + [3002, 20808], + [276, -47], + [60, -2], + [77, 16], + [25, -67], + [55, -32], + [48, -103], + [6, -100], + [82, -36], + [36, -81], + [98, -85], + [18, -2], + [131, 74], + [91, -14], + [-5, -50], + [69, -18], + [79, 30], + [145, 9], + [33, -15], + [60, -72], + [51, -40], + [17, 44], + [98, -22], + [37, 16], + [79, -56] + ], + [ + [8892, 11635], + [-45, 23], + [-42, -7], + [-31, 22], + [-66, 120], + [-161, 137], + [-38, -15], + [-60, -64], + [-32, -67], + [-131, -157], + [-43, -5], + [-36, 20] + ], + [ + [7884, 12254], + [-18, 77], + [8, 29], + [-47, 110], + [-17, 11], + [-69, -14], + [-17, 78], + [-30, 16], + [-7, 20], + [60, 145], + [54, -19], + [15, 6], + [-63, 159], + [-58, -47], + [-48, 8], + [-31, 34], + [-2, 54], + [25, 61], + [48, 4], + [11, 42], + [83, 13], + [6, 38], + [-52, 82], + [-11, 55], + [-59, -14], + [-36, 15], + [10, 97], + [18, 42], + [-11, 21], + [-73, 47], + [-78, 124], + [-14, 94], + [32, 136], + [-32, 30], + [3, 58], + [-209, 1], + [-178, 79], + [-78, -9], + [-1, 28], + [-22, 29], + [-96, 40], + [-41, -7], + [-42, 18], + [-90, 7], + [-83, -4], + [-59, -19], + [-64, 3], + [-43, -83], + [-70, -28], + [-59, 35], + [-44, 99], + [-15, 4], + [-53, -31], + [-150, 5], + [-85, 21], + [-56, -12], + [-28, 11], + [-61, 46], + [-6, 128] + ], + [ + [10729, 20463], + [-7, 23] + ], + [ + [10663, 20706], + [-18, 40] + ], + [ + [10633, 20775], + [-20, 78] + ], + [ + [10454, 21006], + [-17, 20] + ], + [ + [11091, 22590], + [58, 25] + ], + [ + [11458, 22930], + [5, -11] + ], + [ + [5751, 10529], + [8, -8] + ], + [ + [5759, 10521], + [-240, -5], + [-39, -24], + [-108, -128], + [-75, -21], + [-181, 35], + [-108, 2], + [-81, -40], + [-74, -62], + [-63, -33], + [-43, 1], + [-38, 47], + [0, 44], + [-29, 28], + [-64, 1], + [-143, -89], + [-19, -88], + [82, -185], + [23, -84], + [-45, -99], + [-27, -33], + [-106, -21], + [-92, 14] + ], + [ + [4289, 9781], + [-35, 6] + ], + [ + [4254, 9787], + [-41, 5], + [-94, 75], + [-42, 66], + [-102, 234], + [-155, 197], + [-35, 80], + [-10, 80], + [9, 55], + [34, 53], + [12, 175], + [23, 95], + [63, 54], + [188, 73], + [-12, 41], + [-65, 60], + [-58, 108], + [53, 185], + [95, 135], + [27, 71], + [-33, 90], + [-96, 102], + [-98, 37], + [-96, 12], + [-60, -2], + [-35, -16], + [-65, -74], + [-136, -27], + [-124, -149], + [-131, -77], + [-35, -85], + [-7, -56], + [29, -3], + [21, -26], + [-44, -85], + [-6, -39], + [15, -49], + [52, -43], + [174, -2], + [8, -20], + [-74, -116], + [-174, 25], + [-134, 56], + [-49, 36], + [0, -91], + [-95, -134], + [-110, -31], + [-39, -31], + [-38, -55], + [-102, -54], + [-84, -24], + [-144, -139], + [-19, -34], + [-14, -103], + [-30, -36], + [-39, -20], + [2, -16], + [54, -19], + [50, 24], + [15, 68], + [74, 24], + [45, 42], + [100, 55], + [69, -18], + [48, 1], + [70, -26], + [20, -24], + [10, -50], + [-134, -48], + [-25, -25], + [5, -25], + [-30, -55], + [-19, 6], + [-36, 56], + [6, 36], + [-77, -9], + [-161, -69], + [-65, -73], + [-21, -86], + [6, -110], + [66, -199], + [-83, 12], + [-183, -46] + ], + [ + [2138, 9792], + [2, 22], + [-22, 27], + [-80, 46], + [-60, 62], + [-103, 53], + [-156, 47], + [-58, 86], + [-102, 50], + [-53, 52], + [23, 188], + [-9, 42], + [-35, -6], + [-89, 55], + [-52, 6], + [-46, -3], + [-38, -21], + [-74, 13], + [-34, -17], + [-49, -69], + [17, -28], + [60, -12], + [28, -41], + [11, -76], + [-22, -43], + [-57, 64], + [-72, 42], + [-49, -13], + [-126, 34], + [-115, -13], + [18, 44], + [-4, 67], + [37, -4], + [62, -32], + [37, -6], + [35, 12], + [144, 91], + [17, 41], + [25, 8], + [32, 100], + [113, 61], + [-29, 112], + [-46, 43], + [-107, 23], + [-85, -51], + [-184, 63], + [-25, 19], + [17, 118], + [16, 15], + [79, 10], + [93, 79], + [47, -38], + [58, 5], + [27, -65], + [54, -30], + [106, -15], + [94, 32], + [28, 52], + [1, 39], + [39, 23], + [-8, 71], + [59, 75], + [7, 29], + [-10, 41], + [-55, 45], + [68, 318], + [-56, 101], + [1, 35], + [31, 66], + [-5, 25] + ], + [ + [4254, 9787], + [35, -6] + ], + [ + [5570, 7906], + [-1, 1] + ], + [ + [4426, 7555], + [-45, 33] + ], + [ + [3932, 7427], + [-80, -10] + ], + [ + [3750, 7403], + [-20, 5] + ], + [ + [2947, 8045], + [94, 67], + [-11, 26], + [-135, 67], + [-37, 93], + [-104, 152], + [101, 25], + [136, 56], + [163, 5], + [42, 24], + [81, 91], + [-3, 129], + [-30, 95], + [-32, 50], + [-28, 17], + [-107, 9], + [-35, 26], + [-39, 59], + [-20, 79], + [-30, 34], + [-40, 14], + [-173, -26], + [-94, 41], + [-11, 85], + [-32, 27], + [-185, 94], + [-123, 12], + [-174, -11], + [-26, 18], + [-3, 66], + [46, 246], + [0, 77] + ], + [ + [3002, 20808], + [-20, 25], + [-10, 59], + [13, 23], + [31, 11], + [4, 18], + [-23, 55], + [15, 43], + [-28, 37], + [-43, 21], + [-8, 58], + [3, 54], + [57, 100], + [3, 40], + [-15, 56], + [-50, 4], + [-25, 48], + [105, 5], + [32, 17], + [68, 202], + [47, 57], + [1, 115], + [43, 88], + [-4, 31], + [12, 20], + [30, 0], + [31, 27], + [35, 182], + [64, 92], + [32, 9], + [109, -10], + [33, -8], + [25, -23], + [76, -159], + [-11, -121], + [77, -52], + [45, 1], + [10, 41], + [48, 26], + [25, 44], + [-34, 56], + [31, 82], + [-67, 63], + [-51, 19], + [-40, -5], + [-7, 14], + [13, 47], + [67, 37], + [146, 9], + [17, 168], + [-38, 96], + [20, 23], + [30, -7], + [18, 9], + [3, 46], + [-50, 84], + [19, 77], + [147, 78], + [103, 10], + [17, -22], + [60, 25], + [61, 158], + [86, 87], + [4, 94], + [-27, 87], + [32, 75], + [-45, 93], + [-29, 108], + [20, 255], + [25, 43], + [192, 76], + [80, 134], + [33, 31], + [47, 11], + [35, -4], + [29, -35], + [7, -105], + [40, -27], + [82, -27], + [26, 0], + [85, 40], + [75, 68], + [4, 80], + [21, 29], + [56, 11], + [20, 19], + [24, -3], + [119, -88], + [60, 41], + [-6, 135], + [41, 43], + [126, -52], + [93, 1], + [61, -47], + [10, -102], + [21, -39], + [-9, -78], + [16, -59], + [13, -33], + [39, -17], + [88, 37], + [24, 29], + [9, 27], + [-15, 73], + [34, 28], + [37, 7], + [21, -56], + [32, -18], + [28, 7], + [12, 26], + [-35, -5], + [3, 37], + [-25, 4], + [26, 39], + [-31, 35], + [41, 10], + [36, -25], + [37, 17], + [96, -5] + ] + ], + "transform": { + "scale": [0.00019914363182647082, 0.00019414942670068546], + "translate": [80.246826, 17.790091] + }, + "objects": { + "chhattisgarh_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4]], + "type": "Polygon", + "properties": { + "cartodb_id": 128, + "censuscode": 416, + "st_cen_cd": 22, + "dt_cen_cd": 17, + "district": "Dantewada", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[5, 6, 7]], + "type": "Polygon", + "properties": { + "cartodb_id": 352, + "censuscode": 411, + "st_cen_cd": 22, + "dt_cen_cd": 12, + "district": "Mahasamund", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[8, 9, 10, 11, 12, -2, 13]], + "type": "Polygon", + "properties": { + "cartodb_id": 61, + "censuscode": 414, + "st_cen_cd": 22, + "dt_cen_cd": 15, + "district": "Bastar", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[14, 15, 16, 17]], + "type": "Polygon", + "properties": { + "cartodb_id": 319, + "censuscode": 400, + "st_cen_cd": 22, + "dt_cen_cd": 1, + "district": "Koriya", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[18, 19, 20, -15, 21]], + "type": "Polygon", + "properties": { + "cartodb_id": 557, + "censuscode": 401, + "st_cen_cd": 22, + "dt_cen_cd": 2, + "district": "Surguja", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[22, 23, 24, 25, 26, 27, -4, 28]], + "type": "Polygon", + "properties": { + "cartodb_id": 82, + "censuscode": 417, + "st_cen_cd": 22, + "dt_cen_cd": 18, + "district": "Bijapur", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [ + [ + -17, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45 + ] + ], + "type": "Polygon", + "properties": { + "cartodb_id": 86, + "censuscode": 406, + "st_cen_cd": 22, + "dt_cen_cd": 7, + "district": "Bilaspur", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[46, 47, 48, 49, 50, -44], [51]], + "type": "Polygon", + "properties": { + "cartodb_id": 164, + "censuscode": 409, + "st_cen_cd": 22, + "dt_cen_cd": 10, + "district": "Durg", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[52, 53, -19]], + "type": "Polygon", + "properties": { + "cartodb_id": 254, + "censuscode": 402, + "st_cen_cd": 22, + "dt_cen_cd": 3, + "district": "Jashpur", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[-16, -21, 54, 55, 56, 57, 58, -30], [59]], + "type": "Polygon", + "properties": { + "cartodb_id": 318, + "censuscode": 404, + "st_cen_cd": 22, + "dt_cen_cd": 5, + "district": "Korba", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[[-54, 60, -6, 61, 62, -55, -20]], [[-60]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 461, + "censuscode": 403, + "st_cen_cd": 22, + "dt_cen_cd": 4, + "district": "Raigarh", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[63, -62, -8, 64, 65, -47, -43]], + "type": "Polygon", + "properties": { + "cartodb_id": 463, + "censuscode": 410, + "st_cen_cd": 22, + "dt_cen_cd": 11, + "district": "Raipur", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[-50, 66, 67, 68]], + "type": "Polygon", + "properties": { + "cartodb_id": 468, + "censuscode": 408, + "st_cen_cd": 22, + "dt_cen_cd": 9, + "district": "Rajnandgaon", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[[69, -12, 70, -48, -66]], [[-52]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 145, + "censuscode": 412, + "st_cen_cd": 22, + "dt_cen_cd": 13, + "district": "Dhamtari", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [ + [ + -56, + -63, + -64, + -42, + 71, + -40, + 72, + -38, + 73, + -36, + 74, + -34, + 75, + -32, + -58, + 76 + ] + ], + "type": "Polygon", + "properties": { + "cartodb_id": 253, + "censuscode": 405, + "st_cen_cd": 22, + "dt_cen_cd": 6, + "district": "Janjgir-Champa", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[-71, -11, 77, 78, 79, 80, 81, -67, -49]], + "type": "Polygon", + "properties": { + "cartodb_id": 275, + "censuscode": 413, + "st_cen_cd": 22, + "dt_cen_cd": 14, + "district": "Kanker", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[82, -79, -9, 83, -5, 84, -27, 85, -25, 86, -23, 87, -81]], + "type": "Polygon", + "properties": { + "cartodb_id": 401, + "censuscode": 415, + "st_cen_cd": 22, + "dt_cen_cd": 16, + "district": "Narayanpur", + "st_nm": "Chhattisgarh" + } + }, + { + "arcs": [[-45, -51, -69, 88]], + "type": "Polygon", + "properties": { + "cartodb_id": 625, + "censuscode": 407, + "st_cen_cd": 22, + "dt_cen_cd": 8, + "district": "Kabirdham", + "st_nm": "Chhattisgarh" + } + } + ] + } + } +} diff --git a/public/maps/delhi.json b/public/maps/delhi.json index 4158cc9a0d..15a2d2df21 100644 --- a/public/maps/delhi.json +++ b/public/maps/delhi.json @@ -1 +1,402 @@ -{"type":"Topology","arcs":[[[1911,1270],[-182,106],[-90,-12],[-48,-39],[-17,-38]],[[1574,1287],[-27,35],[8,95]],[[1555,1417],[26,16],[-11,40]],[[1570,1473],[5,14],[87,-12],[42,-46],[48,-14],[125,34]],[[1877,1449],[34,-179]],[[2114,1004],[-128,91],[-4,28],[-52,59]],[[1930,1182],[-19,88]],[[1877,1449],[-10,51]],[[1867,1500],[52,4],[106,55],[87,4],[35,-19],[74,21]],[[2221,1565],[-13,-161],[-18,-39],[105,-103],[13,-29],[-4,-75],[-121,-57],[-69,-97]],[[1867,1500],[-39,42],[17,370],[-105,144],[-35,74],[-5,69]],[[1700,2199],[41,-14],[54,7],[-35,-34],[54,-54],[41,-76],[48,-10],[22,-28],[-6,-42],[19,-32],[69,-10],[26,-22],[35,-61],[2,-66],[37,-15],[38,40],[101,-5],[-16,-71],[35,-68],[-2,-39],[-42,-34]],[[1570,1473],[-60,-5],[-24,32],[16,33]],[[1502,1533],[26,25],[27,97],[99,-5],[63,58],[13,44],[-4,49],[-154,58],[-93,108],[0,23],[64,64],[13,51],[30,1],[97,111]],[[1683,2217],[17,-18]],[[1502,1533],[-19,27],[-65,18],[-189,5],[-59,62],[-56,-41],[-29,31],[-38,9],[-35,-24],[-26,21],[-147,17],[-69,-44],[-56,-7],[-94,84],[-66,-4]],[[554,1687],[4,30],[-61,68],[43,112],[-2,59],[-55,76],[39,83],[-16,122],[-26,48],[23,100],[26,-18],[35,14],[10,59],[13,8],[45,-38],[14,4],[45,77],[106,-23],[114,9],[83,210],[73,-1],[47,67],[34,-57],[74,-13],[47,-36],[86,-5],[30,-40],[-6,-80],[25,-17],[116,110],[87,9],[15,26],[82,-23],[30,-46],[-3,-56],[30,-57],[-17,-126],[-87,10],[-1,-75],[27,-60]],[[1930,1182],[-82,-10],[-154,-139],[0,-28]],[[1694,1005],[-138,48],[-42,47],[-6,35],[66,152]],[[2114,1004],[2,-121],[177,-235],[17,-67],[-15,12],[-25,-16],[-33,-52],[-69,-50],[-48,2],[-83,41],[-32,-6],[-78,-67],[-52,-5],[-47,-51],[-31,-68],[3,-22],[31,-4],[31,-34],[20,-69],[-5,-47],[-12,-28],[-82,-57],[-77,-32],[-121,-6],[-63,-22],[-52,74],[-11,41],[-43,43],[-111,39],[-71,162],[-5,35],[17,67]],[[1246,461],[129,45],[162,155],[9,59],[47,57],[-3,62],[41,75],[68,36],[-5,55]],[[1246,461],[11,33],[-161,153],[-23,2],[-48,-39],[-37,8],[-72,76],[-80,29],[-44,54],[-26,-4],[-20,-30],[10,-27],[61,-47],[-2,-35],[-25,-20],[-170,75],[-109,-80],[-101,33],[-64,-25],[-51,16],[-83,-50],[-25,31],[25,55],[-14,26],[-78,78],[-11,34],[-88,53],[-21,148],[10,52],[69,-8],[21,13],[107,262],[88,-29],[31,30],[29,0],[71,-50],[37,48],[-72,91],[-3,23],[26,69],[30,30],[57,4]],[[501,1543],[1,-26],[24,-20],[24,11],[28,-9],[128,-85],[69,-103],[61,-15],[40,-40],[19,-44],[76,2],[27,24],[142,7],[73,-35],[24,7],[80,110],[99,63],[139,27]],[[501,1543],[23,12],[-6,36],[36,96]]],"transform":{"scale":[0.00021867421138683292,0.00017300020715293462],"translate":[76.84251435748224,28.403052135245243]},"objects":{"delhi_1997-2012_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"OBJECTID":99,"district":"Central Delhi","STATE":"Nation Capital Region"}},{"arcs":[[5,6,-5,7,8,9]],"type":"Polygon","properties":{"OBJECTID":167,"district":"East Delhi","STATE":"Nation Capital Region"}},{"arcs":[[10,11,-9]],"type":"Polygon","properties":{"OBJECTID":417,"district":"North East Delhi","STATE":"Nation Capital Region"}},{"arcs":[[-11,-8,-4,12,13,14]],"type":"Polygon","properties":{"OBJECTID":413,"district":"North Delhi","STATE":"Nation Capital Region"}},{"arcs":[[15,16,-14]],"type":"Polygon","properties":{"OBJECTID":420,"district":"North West Delhi","STATE":"Nation Capital Region"}},{"arcs":[[-7,17,18,-1]],"type":"Polygon","properties":{"OBJECTID":411,"district":"New Delhi","STATE":"Nation Capital Region"}},{"arcs":[[-6,19,20,-18]],"type":"Polygon","properties":{"OBJECTID":544,"district":"South Delhi","STATE":"Nation Capital Region"}},{"arcs":[[-2,-19,-21,21,22]],"type":"Polygon","properties":{"OBJECTID":550,"district":"South West Delhi","STATE":"Nation Capital Region"}},{"arcs":[[-13,-3,-23,23,-16]],"type":"Polygon","properties":{"OBJECTID":613,"district":"West Delhi","STATE":"Nation Capital Region"}}]}}} +{ + "type": "Topology", + "arcs": [ + [ + [1911, 1270], + [-182, 106], + [-90, -12], + [-48, -39], + [-17, -38] + ], + [ + [1574, 1287], + [-27, 35], + [8, 95] + ], + [ + [1555, 1417], + [26, 16], + [-11, 40] + ], + [ + [1570, 1473], + [5, 14], + [87, -12], + [42, -46], + [48, -14], + [125, 34] + ], + [ + [1877, 1449], + [34, -179] + ], + [ + [2114, 1004], + [-128, 91], + [-4, 28], + [-52, 59] + ], + [ + [1930, 1182], + [-19, 88] + ], + [ + [1877, 1449], + [-10, 51] + ], + [ + [1867, 1500], + [52, 4], + [106, 55], + [87, 4], + [35, -19], + [74, 21] + ], + [ + [2221, 1565], + [-13, -161], + [-18, -39], + [105, -103], + [13, -29], + [-4, -75], + [-121, -57], + [-69, -97] + ], + [ + [1867, 1500], + [-39, 42], + [17, 370], + [-105, 144], + [-35, 74], + [-5, 69] + ], + [ + [1700, 2199], + [41, -14], + [54, 7], + [-35, -34], + [54, -54], + [41, -76], + [48, -10], + [22, -28], + [-6, -42], + [19, -32], + [69, -10], + [26, -22], + [35, -61], + [2, -66], + [37, -15], + [38, 40], + [101, -5], + [-16, -71], + [35, -68], + [-2, -39], + [-42, -34] + ], + [ + [1570, 1473], + [-60, -5], + [-24, 32], + [16, 33] + ], + [ + [1502, 1533], + [26, 25], + [27, 97], + [99, -5], + [63, 58], + [13, 44], + [-4, 49], + [-154, 58], + [-93, 108], + [0, 23], + [64, 64], + [13, 51], + [30, 1], + [97, 111] + ], + [ + [1683, 2217], + [17, -18] + ], + [ + [1502, 1533], + [-19, 27], + [-65, 18], + [-189, 5], + [-59, 62], + [-56, -41], + [-29, 31], + [-38, 9], + [-35, -24], + [-26, 21], + [-147, 17], + [-69, -44], + [-56, -7], + [-94, 84], + [-66, -4] + ], + [ + [554, 1687], + [4, 30], + [-61, 68], + [43, 112], + [-2, 59], + [-55, 76], + [39, 83], + [-16, 122], + [-26, 48], + [23, 100], + [26, -18], + [35, 14], + [10, 59], + [13, 8], + [45, -38], + [14, 4], + [45, 77], + [106, -23], + [114, 9], + [83, 210], + [73, -1], + [47, 67], + [34, -57], + [74, -13], + [47, -36], + [86, -5], + [30, -40], + [-6, -80], + [25, -17], + [116, 110], + [87, 9], + [15, 26], + [82, -23], + [30, -46], + [-3, -56], + [30, -57], + [-17, -126], + [-87, 10], + [-1, -75], + [27, -60] + ], + [ + [1930, 1182], + [-82, -10], + [-154, -139], + [0, -28] + ], + [ + [1694, 1005], + [-138, 48], + [-42, 47], + [-6, 35], + [66, 152] + ], + [ + [2114, 1004], + [2, -121], + [177, -235], + [17, -67], + [-15, 12], + [-25, -16], + [-33, -52], + [-69, -50], + [-48, 2], + [-83, 41], + [-32, -6], + [-78, -67], + [-52, -5], + [-47, -51], + [-31, -68], + [3, -22], + [31, -4], + [31, -34], + [20, -69], + [-5, -47], + [-12, -28], + [-82, -57], + [-77, -32], + [-121, -6], + [-63, -22], + [-52, 74], + [-11, 41], + [-43, 43], + [-111, 39], + [-71, 162], + [-5, 35], + [17, 67] + ], + [ + [1246, 461], + [129, 45], + [162, 155], + [9, 59], + [47, 57], + [-3, 62], + [41, 75], + [68, 36], + [-5, 55] + ], + [ + [1246, 461], + [11, 33], + [-161, 153], + [-23, 2], + [-48, -39], + [-37, 8], + [-72, 76], + [-80, 29], + [-44, 54], + [-26, -4], + [-20, -30], + [10, -27], + [61, -47], + [-2, -35], + [-25, -20], + [-170, 75], + [-109, -80], + [-101, 33], + [-64, -25], + [-51, 16], + [-83, -50], + [-25, 31], + [25, 55], + [-14, 26], + [-78, 78], + [-11, 34], + [-88, 53], + [-21, 148], + [10, 52], + [69, -8], + [21, 13], + [107, 262], + [88, -29], + [31, 30], + [29, 0], + [71, -50], + [37, 48], + [-72, 91], + [-3, 23], + [26, 69], + [30, 30], + [57, 4] + ], + [ + [501, 1543], + [1, -26], + [24, -20], + [24, 11], + [28, -9], + [128, -85], + [69, -103], + [61, -15], + [40, -40], + [19, -44], + [76, 2], + [27, 24], + [142, 7], + [73, -35], + [24, 7], + [80, 110], + [99, 63], + [139, 27] + ], + [ + [501, 1543], + [23, 12], + [-6, 36], + [36, 96] + ] + ], + "transform": { + "scale": [0.00021867421138683292, 0.00017300020715293462], + "translate": [76.84251435748224, 28.403052135245243] + }, + "objects": { + "delhi_1997-2012_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4]], + "type": "Polygon", + "properties": { + "OBJECTID": 99, + "district": "Central Delhi", + "STATE": "Nation Capital Region" + } + }, + { + "arcs": [[5, 6, -5, 7, 8, 9]], + "type": "Polygon", + "properties": { + "OBJECTID": 167, + "district": "East Delhi", + "STATE": "Nation Capital Region" + } + }, + { + "arcs": [[10, 11, -9]], + "type": "Polygon", + "properties": { + "OBJECTID": 417, + "district": "North East Delhi", + "STATE": "Nation Capital Region" + } + }, + { + "arcs": [[-11, -8, -4, 12, 13, 14]], + "type": "Polygon", + "properties": { + "OBJECTID": 413, + "district": "North Delhi", + "STATE": "Nation Capital Region" + } + }, + { + "arcs": [[15, 16, -14]], + "type": "Polygon", + "properties": { + "OBJECTID": 420, + "district": "North West Delhi", + "STATE": "Nation Capital Region" + } + }, + { + "arcs": [[-7, 17, 18, -1]], + "type": "Polygon", + "properties": { + "OBJECTID": 411, + "district": "New Delhi", + "STATE": "Nation Capital Region" + } + }, + { + "arcs": [[-6, 19, 20, -18]], + "type": "Polygon", + "properties": { + "OBJECTID": 544, + "district": "South Delhi", + "STATE": "Nation Capital Region" + } + }, + { + "arcs": [[-2, -19, -21, 21, 22]], + "type": "Polygon", + "properties": { + "OBJECTID": 550, + "district": "South West Delhi", + "STATE": "Nation Capital Region" + } + }, + { + "arcs": [[-13, -3, -23, 23, -16]], + "type": "Polygon", + "properties": { + "OBJECTID": 613, + "district": "West Delhi", + "STATE": "Nation Capital Region" + } + } + ] + } + } +} diff --git a/public/maps/goa.json b/public/maps/goa.json index 07f0475a1b..aab75a4490 100644 --- a/public/maps/goa.json +++ b/public/maps/goa.json @@ -1 +1,517 @@ -{"type":"Topology","arcs":[[[1948,5113],[165,-20],[42,-17],[24,-23],[54,-201],[55,-29],[77,-2],[133,-90],[53,-22],[41,-44],[6,-110],[40,-194],[25,-34],[104,-14],[71,34],[35,-7],[22,-38],[138,-28],[73,-37],[17,-113],[26,-20],[53,31],[22,-4],[55,-60],[23,-9],[58,7],[36,114],[-47,57],[-62,40],[-70,218],[113,172],[42,-2],[-23,29],[-5,34],[24,11],[-3,87],[-62,63],[-3,21],[22,8],[-55,35],[-13,34],[-25,16],[-72,9],[1,49],[-27,40],[-10,64],[30,35],[97,53],[73,21],[68,11],[24,-59],[26,65],[39,45],[68,35],[63,-23],[22,32],[27,13],[209,21],[73,-36],[74,51],[22,66],[76,109],[182,73],[71,69],[150,50]],[[4515,5799],[128,-190],[79,-174],[4,-44],[-24,-12],[21,-21],[-55,-73],[14,-71],[56,-105],[-15,-101],[29,-47],[153,-16],[57,-44],[123,-60],[2,-14],[-39,-27],[-9,-37],[47,-109],[-41,-108],[37,-128],[98,-129],[10,-30],[-59,-79],[-125,-7],[-127,31],[-18,-28],[-35,6],[-51,-32],[-49,18],[-50,-54],[-68,-126],[-83,-6],[14,-60],[34,-63],[243,-78],[62,-30],[36,-38],[0,-33],[32,-79],[39,-45],[11,-95],[39,-55],[-88,-172],[-74,-96],[-29,-28],[-41,11],[-24,-36],[13,-60],[-12,-43],[27,-78],[-19,-26],[-19,-87],[-57,-29],[-22,-47],[44,-14],[27,-194],[14,-27],[50,-25],[-2,-65],[58,-114],[-105,-76],[6,-67],[-106,-93],[-36,-57],[8,-8],[-18,-51],[-70,-33],[96,-121],[-23,-29],[-7,-38],[-28,1],[-35,-73],[-88,26],[-56,-26],[-17,-87],[-135,-39],[-101,-157],[-69,47],[8,82],[-53,42],[-40,14],[-17,52],[-29,14],[-114,-19],[-18,-29],[-2,-40],[-28,-22],[-1,-21],[62,-147],[28,-37],[-15,-34],[-44,3],[-126,62],[-37,11],[-28,-9],[-50,24],[-25,-7],[-33,-55],[-73,0],[-43,-23],[-34,12],[-142,-140],[-78,88],[-100,-13],[-43,16],[-34,31],[-105,28],[10,89],[-9,160],[96,121],[-28,18],[-55,6],[-35,87],[-19,17],[19,35],[48,31],[-149,94],[-73,70],[-117,15],[-36,26],[-12,36],[-98,63],[26,110],[-45,50],[15,71],[-95,-4],[-61,109],[-35,-5],[-53,25],[-27,36],[-117,13],[-52,63],[-66,-23],[-42,9],[3,46],[54,26],[11,20],[2,30],[-47,22],[-6,39],[114,32],[41,25],[32,43],[-11,51],[7,55],[95,32],[40,28],[14,26],[-28,206],[37,25],[-2,88],[-27,-51],[-52,-22],[-14,-25],[41,-178],[-19,-35],[-24,-2],[-190,724],[-59,158],[-126,455],[-61,177],[-97,197],[-34,34],[-39,14],[-63,-12],[-30,-35],[-58,0],[-24,-36],[-37,9],[-81,72],[-183,84],[-43,105],[-27,20],[-78,19],[-51,76],[-4,25],[33,10],[35,-13],[69,-40],[29,-33],[64,-20],[20,11],[2,53],[25,39],[37,-18],[8,-39],[32,-7],[41,44],[71,8],[18,-16],[-10,-56],[26,-9],[99,52],[29,4],[19,-36],[98,-29],[172,68],[61,0],[67,-38],[54,11]],[[3488,11],[-45,-11],[-26,23],[-8,34],[19,4],[16,-26],[44,-24]],[[1948,5113],[135,26],[2,12],[-85,25],[-29,22],[3,49],[79,73],[-6,42],[-62,-12],[-43,-33],[-5,-29],[-23,-14],[-62,-6],[-8,-43],[-19,-16],[-78,8],[-135,87],[-127,28],[-51,85],[-80,68],[-35,4],[-8,-29],[-18,-1],[-144,47],[-137,7],[-147,49],[22,33],[29,8],[91,-36],[24,7],[14,39],[-19,85],[15,37],[114,108],[80,19],[8,41],[-48,23],[-36,-21],[-59,15],[-79,-107],[-139,40],[-42,-17],[-38,-48],[-48,9],[-35,23],[-92,393],[-56,135],[-46,27],[-52,195],[-43,65],[4,17],[73,10],[42,22],[53,51],[10,42],[-11,72],[113,54],[-56,31],[-97,-32],[-23,-22],[-8,-35],[-42,-40],[-17,-43],[-11,-9],[-16,9],[-26,57],[-36,21],[-61,152],[-14,48],[6,82],[-36,19],[-74,217],[-56,51],[-28,70],[-10,87],[56,3],[23,30],[-54,28],[-45,-17],[-71,13],[-18,27],[95,2],[108,-47],[92,21],[40,-3],[74,-41],[32,12],[24,54],[37,39],[75,16],[139,-17],[84,-57],[54,3],[34,12],[42,55],[77,10],[61,50],[100,-16],[58,144],[-13,37],[51,19],[35,100],[18,18],[40,-1],[-9,39],[34,36],[12,47],[30,29],[83,-34],[-6,-81],[93,-98],[0,-25],[-20,-20],[-33,-94],[18,-26],[27,-16],[180,-38],[49,24],[24,0],[50,-20],[167,-11],[35,-69],[8,-74],[64,-94],[-22,-50],[20,-28],[-11,-35],[67,-14],[44,-61],[3,-148],[32,-67],[-51,-121],[53,-120],[113,-66],[21,-34],[75,-56],[85,2],[117,-37],[61,36],[29,91],[138,14],[132,32],[56,-4],[173,100],[45,-1],[35,33],[81,17],[25,40],[133,-25],[97,21],[65,-10],[21,30],[59,-2],[16,142],[25,9],[35,47],[56,28],[60,-16],[3,-41],[-28,-12],[14,-57],[120,-30],[-13,-54],[27,-40],[86,10],[37,21],[-38,46],[60,60],[41,-36],[41,31],[24,-2],[81,-89],[16,-159],[-38,-79],[55,5],[24,-12],[39,-47],[9,-58],[-24,-62],[-3,-90],[-69,-60],[8,-55],[-24,-23],[0,-53],[81,-39],[24,21],[18,-18],[21,-54],[50,-44],[32,-56],[34,-122],[-35,-42],[8,-9],[-15,-51],[-167,-95],[-28,-32],[-7,-56]]],"transform":{"scale":[0.00012714219653178977,0.00012758019729630982],"translate":[73.675734,14.752028]},"objects":{"goa_district":{"type":"GeometryCollection","geometries":[{"arcs":[[[0,1]],[[2]]],"type":"MultiPolygon","properties":{"cartodb_id":547,"censuscode":586,"dt_cen_cd":2,"st_cen_cd":30,"st_nm":"Goa","district":"South Goa"}},{"arcs":[[-1,3]],"type":"Polygon","properties":{"cartodb_id":417,"censuscode":585,"dt_cen_cd":1,"st_cen_cd":30,"st_nm":"Goa","district":"North Goa"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [1948, 5113], + [165, -20], + [42, -17], + [24, -23], + [54, -201], + [55, -29], + [77, -2], + [133, -90], + [53, -22], + [41, -44], + [6, -110], + [40, -194], + [25, -34], + [104, -14], + [71, 34], + [35, -7], + [22, -38], + [138, -28], + [73, -37], + [17, -113], + [26, -20], + [53, 31], + [22, -4], + [55, -60], + [23, -9], + [58, 7], + [36, 114], + [-47, 57], + [-62, 40], + [-70, 218], + [113, 172], + [42, -2], + [-23, 29], + [-5, 34], + [24, 11], + [-3, 87], + [-62, 63], + [-3, 21], + [22, 8], + [-55, 35], + [-13, 34], + [-25, 16], + [-72, 9], + [1, 49], + [-27, 40], + [-10, 64], + [30, 35], + [97, 53], + [73, 21], + [68, 11], + [24, -59], + [26, 65], + [39, 45], + [68, 35], + [63, -23], + [22, 32], + [27, 13], + [209, 21], + [73, -36], + [74, 51], + [22, 66], + [76, 109], + [182, 73], + [71, 69], + [150, 50] + ], + [ + [4515, 5799], + [128, -190], + [79, -174], + [4, -44], + [-24, -12], + [21, -21], + [-55, -73], + [14, -71], + [56, -105], + [-15, -101], + [29, -47], + [153, -16], + [57, -44], + [123, -60], + [2, -14], + [-39, -27], + [-9, -37], + [47, -109], + [-41, -108], + [37, -128], + [98, -129], + [10, -30], + [-59, -79], + [-125, -7], + [-127, 31], + [-18, -28], + [-35, 6], + [-51, -32], + [-49, 18], + [-50, -54], + [-68, -126], + [-83, -6], + [14, -60], + [34, -63], + [243, -78], + [62, -30], + [36, -38], + [0, -33], + [32, -79], + [39, -45], + [11, -95], + [39, -55], + [-88, -172], + [-74, -96], + [-29, -28], + [-41, 11], + [-24, -36], + [13, -60], + [-12, -43], + [27, -78], + [-19, -26], + [-19, -87], + [-57, -29], + [-22, -47], + [44, -14], + [27, -194], + [14, -27], + [50, -25], + [-2, -65], + [58, -114], + [-105, -76], + [6, -67], + [-106, -93], + [-36, -57], + [8, -8], + [-18, -51], + [-70, -33], + [96, -121], + [-23, -29], + [-7, -38], + [-28, 1], + [-35, -73], + [-88, 26], + [-56, -26], + [-17, -87], + [-135, -39], + [-101, -157], + [-69, 47], + [8, 82], + [-53, 42], + [-40, 14], + [-17, 52], + [-29, 14], + [-114, -19], + [-18, -29], + [-2, -40], + [-28, -22], + [-1, -21], + [62, -147], + [28, -37], + [-15, -34], + [-44, 3], + [-126, 62], + [-37, 11], + [-28, -9], + [-50, 24], + [-25, -7], + [-33, -55], + [-73, 0], + [-43, -23], + [-34, 12], + [-142, -140], + [-78, 88], + [-100, -13], + [-43, 16], + [-34, 31], + [-105, 28], + [10, 89], + [-9, 160], + [96, 121], + [-28, 18], + [-55, 6], + [-35, 87], + [-19, 17], + [19, 35], + [48, 31], + [-149, 94], + [-73, 70], + [-117, 15], + [-36, 26], + [-12, 36], + [-98, 63], + [26, 110], + [-45, 50], + [15, 71], + [-95, -4], + [-61, 109], + [-35, -5], + [-53, 25], + [-27, 36], + [-117, 13], + [-52, 63], + [-66, -23], + [-42, 9], + [3, 46], + [54, 26], + [11, 20], + [2, 30], + [-47, 22], + [-6, 39], + [114, 32], + [41, 25], + [32, 43], + [-11, 51], + [7, 55], + [95, 32], + [40, 28], + [14, 26], + [-28, 206], + [37, 25], + [-2, 88], + [-27, -51], + [-52, -22], + [-14, -25], + [41, -178], + [-19, -35], + [-24, -2], + [-190, 724], + [-59, 158], + [-126, 455], + [-61, 177], + [-97, 197], + [-34, 34], + [-39, 14], + [-63, -12], + [-30, -35], + [-58, 0], + [-24, -36], + [-37, 9], + [-81, 72], + [-183, 84], + [-43, 105], + [-27, 20], + [-78, 19], + [-51, 76], + [-4, 25], + [33, 10], + [35, -13], + [69, -40], + [29, -33], + [64, -20], + [20, 11], + [2, 53], + [25, 39], + [37, -18], + [8, -39], + [32, -7], + [41, 44], + [71, 8], + [18, -16], + [-10, -56], + [26, -9], + [99, 52], + [29, 4], + [19, -36], + [98, -29], + [172, 68], + [61, 0], + [67, -38], + [54, 11] + ], + [ + [3488, 11], + [-45, -11], + [-26, 23], + [-8, 34], + [19, 4], + [16, -26], + [44, -24] + ], + [ + [1948, 5113], + [135, 26], + [2, 12], + [-85, 25], + [-29, 22], + [3, 49], + [79, 73], + [-6, 42], + [-62, -12], + [-43, -33], + [-5, -29], + [-23, -14], + [-62, -6], + [-8, -43], + [-19, -16], + [-78, 8], + [-135, 87], + [-127, 28], + [-51, 85], + [-80, 68], + [-35, 4], + [-8, -29], + [-18, -1], + [-144, 47], + [-137, 7], + [-147, 49], + [22, 33], + [29, 8], + [91, -36], + [24, 7], + [14, 39], + [-19, 85], + [15, 37], + [114, 108], + [80, 19], + [8, 41], + [-48, 23], + [-36, -21], + [-59, 15], + [-79, -107], + [-139, 40], + [-42, -17], + [-38, -48], + [-48, 9], + [-35, 23], + [-92, 393], + [-56, 135], + [-46, 27], + [-52, 195], + [-43, 65], + [4, 17], + [73, 10], + [42, 22], + [53, 51], + [10, 42], + [-11, 72], + [113, 54], + [-56, 31], + [-97, -32], + [-23, -22], + [-8, -35], + [-42, -40], + [-17, -43], + [-11, -9], + [-16, 9], + [-26, 57], + [-36, 21], + [-61, 152], + [-14, 48], + [6, 82], + [-36, 19], + [-74, 217], + [-56, 51], + [-28, 70], + [-10, 87], + [56, 3], + [23, 30], + [-54, 28], + [-45, -17], + [-71, 13], + [-18, 27], + [95, 2], + [108, -47], + [92, 21], + [40, -3], + [74, -41], + [32, 12], + [24, 54], + [37, 39], + [75, 16], + [139, -17], + [84, -57], + [54, 3], + [34, 12], + [42, 55], + [77, 10], + [61, 50], + [100, -16], + [58, 144], + [-13, 37], + [51, 19], + [35, 100], + [18, 18], + [40, -1], + [-9, 39], + [34, 36], + [12, 47], + [30, 29], + [83, -34], + [-6, -81], + [93, -98], + [0, -25], + [-20, -20], + [-33, -94], + [18, -26], + [27, -16], + [180, -38], + [49, 24], + [24, 0], + [50, -20], + [167, -11], + [35, -69], + [8, -74], + [64, -94], + [-22, -50], + [20, -28], + [-11, -35], + [67, -14], + [44, -61], + [3, -148], + [32, -67], + [-51, -121], + [53, -120], + [113, -66], + [21, -34], + [75, -56], + [85, 2], + [117, -37], + [61, 36], + [29, 91], + [138, 14], + [132, 32], + [56, -4], + [173, 100], + [45, -1], + [35, 33], + [81, 17], + [25, 40], + [133, -25], + [97, 21], + [65, -10], + [21, 30], + [59, -2], + [16, 142], + [25, 9], + [35, 47], + [56, 28], + [60, -16], + [3, -41], + [-28, -12], + [14, -57], + [120, -30], + [-13, -54], + [27, -40], + [86, 10], + [37, 21], + [-38, 46], + [60, 60], + [41, -36], + [41, 31], + [24, -2], + [81, -89], + [16, -159], + [-38, -79], + [55, 5], + [24, -12], + [39, -47], + [9, -58], + [-24, -62], + [-3, -90], + [-69, -60], + [8, -55], + [-24, -23], + [0, -53], + [81, -39], + [24, 21], + [18, -18], + [21, -54], + [50, -44], + [32, -56], + [34, -122], + [-35, -42], + [8, -9], + [-15, -51], + [-167, -95], + [-28, -32], + [-7, -56] + ] + ], + "transform": { + "scale": [0.00012714219653178977, 0.00012758019729630982], + "translate": [73.675734, 14.752028] + }, + "objects": { + "goa_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[[0, 1]], [[2]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 547, + "censuscode": 586, + "dt_cen_cd": 2, + "st_cen_cd": 30, + "st_nm": "Goa", + "district": "South Goa" + } + }, + { + "arcs": [[-1, 3]], + "type": "Polygon", + "properties": { + "cartodb_id": 417, + "censuscode": 585, + "dt_cen_cd": 1, + "st_cen_cd": 30, + "st_nm": "Goa", + "district": "North Goa" + } + } + ] + } + } +} diff --git a/public/maps/gujarat.json b/public/maps/gujarat.json index 5f663b798a..2635cdce7e 100644 --- a/public/maps/gujarat.json +++ b/public/maps/gujarat.json @@ -1 +1,2794 @@ -{"type":"Topology","arcs":[[[8862,8180],[-24,-78],[-70,-72],[13,-46],[-42,-32],[4,-59],[-27,-97],[39,-85],[-26,-65],[5,-46],[68,-148],[-30,-75],[44,-66],[-64,-42],[8,-56],[35,-32],[-21,-90],[-32,10]],[[8742,7101],[-42,18],[-4,53],[-82,-25],[-86,13],[-7,52],[-50,21],[-53,-19],[-4,-95],[-70,17],[-8,-99],[-24,-29],[-74,2],[12,-59],[-33,-23],[-38,-73],[31,-73],[-64,-24],[-39,-83],[-78,5],[-20,-44],[48,-158],[-104,-77],[37,-81],[-58,-56],[-72,7]],[[7860,6271],[-57,-46],[27,-64],[-50,-31],[-16,72],[-49,63],[-71,37],[-61,-36],[-51,-3],[4,76],[42,9],[-34,108],[28,42],[-11,124],[38,5],[18,66],[61,31],[46,49],[-6,50],[70,91],[-68,98],[-33,-45],[-66,-16],[-42,-38],[-31,51],[-139,46],[-85,-32],[-31,29],[-4,100],[-66,-3]],[[7223,7104],[-57,58]],[[7166,7162],[-24,125],[45,63],[48,29],[84,-29],[19,-97],[63,16],[44,50],[87,25],[59,46],[70,7],[99,-60],[32,41],[16,73],[-76,53],[39,104],[22,116],[28,32],[-47,71],[48,29],[50,63],[97,-21],[28,44],[59,18],[58,-30],[15,70]],[[8129,8000],[82,20],[84,-16],[41,36],[-1,47],[78,40],[21,75],[-31,30],[213,91],[26,-34],[82,29],[55,-98],[56,5],[27,-45]],[[11034,6744],[-26,-104],[-23,-268],[70,-130],[-65,-28],[-70,41],[-62,-32],[-23,-81],[0,-132],[-33,-73],[34,-29],[-44,-68],[-5,-73],[-31,-58],[-47,10],[21,-129],[-49,-49],[42,-35],[-31,-110],[-55,-46],[49,-76],[-56,-47],[97,-42],[15,-71],[-88,-19]],[[10654,5095],[-13,3]],[[10641,5098],[-88,-5],[-49,-65],[-11,-114],[30,-48],[-8,-102],[63,-7],[-32,-86],[-47,-22],[-9,-46],[-48,-58],[-70,-1],[-28,30],[21,75],[69,4],[17,43],[-114,57],[-48,-53],[23,-76],[-123,8],[-30,31],[-122,9],[-119,170],[16,63],[-14,74],[-31,29],[25,88],[-89,12],[24,145],[56,77],[-44,52],[-12,115],[77,41],[-9,51],[-68,51],[-11,-105],[-56,69]],[[9782,5604],[69,130],[-29,101],[151,144],[-29,69],[-1,56],[-40,3],[18,147],[-93,20],[15,51],[89,48],[129,-7],[87,83],[0,69],[62,51],[-96,77]],[[10114,6646],[55,67],[22,62],[56,74],[34,17],[37,70],[-10,57]],[[10308,6993],[136,7],[25,-77],[32,12],[58,71],[35,-50],[83,25],[76,-107],[52,-123],[85,8],[16,68],[28,16],[54,-92],[46,-7]],[[3577,3384],[27,-62],[57,5],[48,-50],[6,-41]],[[3715,3236],[-49,36],[-60,-70],[-109,-22],[25,-86],[-101,-34],[14,-79],[-36,-21],[36,-121],[80,-1],[16,-38],[-128,-40],[-76,-139],[27,-55],[41,-22],[-3,-82],[71,-31],[-24,-78],[-38,-31]],[[3401,2322],[-112,137],[-290,368],[-130,156],[-55,52],[-132,150],[-58,19],[-191,198],[-79,61],[-104,121]],[[2250,3584],[22,92],[41,40],[55,-36],[24,-47],[76,8],[-2,82],[90,-5],[15,66],[71,46],[75,-10],[16,-38],[53,0],[-10,68],[61,9],[61,33],[6,-83],[-88,-63],[-30,-75],[-87,-12],[40,-76],[47,15],[58,-33],[50,-54],[49,81],[37,-21],[105,2],[-9,-116],[14,-56],[94,-11],[26,67],[99,27],[24,28],[84,31],[37,-15],[-2,-92],[20,-26],[3,-78],[66,-13],[36,65]],[[9972,2944],[54,-63],[156,-44],[64,23],[38,-25],[73,15],[42,-11],[25,-51],[20,-113]],[[10444,2675],[-75,-34],[-111,-30],[-169,-22],[-6,46],[-102,10],[-37,-131],[23,-50],[-11,-56],[-46,21],[-97,-28],[18,-49],[-27,-51],[-37,6],[-91,-56],[-39,-123],[-48,-14],[2,-84],[-89,-29],[8,-129],[38,-7],[26,-49],[-54,-65],[84,-21],[15,-50],[49,18],[52,-53],[3,-53]],[[9723,1592],[-28,-42],[-4,-89],[-86,2],[-15,65],[-98,24],[-63,86],[-74,-8],[2,49],[-62,33],[-97,145],[-56,26],[10,86],[-128,12],[-46,-45],[-66,34],[-55,-40],[-118,73],[-80,-28],[-82,17],[-32,-17]],[[8545,1975],[4,82],[30,85],[-45,30],[-57,-16],[-6,-125],[-50,-14],[-18,60],[-8,188],[-56,164],[8,72],[54,70],[9,80],[110,127]],[[8520,2778],[1,1]],[[8521,2779],[0,1]],[[8521,2780],[3,4]],[[8524,2784],[33,37],[66,12],[36,-42],[44,15],[10,-71],[52,-8],[76,64],[106,-42],[27,73],[57,40],[-23,56],[146,26],[-1,-68],[44,-31],[30,40],[-35,62],[30,85],[37,-23],[10,-106],[46,3],[31,-48],[46,29],[56,-6],[75,19],[78,-19],[36,27],[62,-3],[33,-40],[44,53],[196,26]],[[8505,2173],[63,-30],[-61,-83],[-24,98],[22,15]],[[7223,7104],[-61,-93],[8,-60],[-24,-79],[-161,-21],[40,-106],[-39,-114],[63,-28],[48,4],[18,-46],[83,23],[7,-85],[-73,-17],[-79,-56],[-18,-148],[27,-65],[71,-52],[70,29],[44,-19],[15,-141],[-59,-90],[26,-55],[-37,-142],[62,-131],[64,-22],[9,-66],[32,-40],[66,-25],[-32,-94],[-63,38],[-56,-31],[65,-59],[4,-109],[62,13],[138,-75],[34,-58],[-83,-58],[35,-73],[-78,-35],[-68,-54],[-65,15],[1,59],[-37,71],[-122,6],[-39,65],[-46,-39],[-26,-87],[93,20],[8,-42],[-73,-42],[20,-144],[-33,3],[-48,77],[-76,-62],[6,-40],[-58,-21],[8,68],[-90,-15],[7,-51],[-93,-1],[-60,74],[-72,-30],[-41,37],[-44,-40],[3,-78],[-26,-11]],[[6480,4656],[-24,25],[-71,-20],[-53,6],[-64,-74],[-107,-40],[-11,-59]],[[6150,4494],[-23,-60],[-61,-20],[-2,110],[-87,-33],[-67,45],[-27,-59],[-39,44],[-75,6],[-26,-117],[50,3],[72,-25],[27,-61],[-15,-37],[-119,6],[-30,40],[-42,-26],[-25,-60],[-97,-47],[4,63],[56,29],[-96,172],[-84,62],[2,54],[-75,55],[-19,51],[14,52],[-15,67],[24,58],[61,-5],[38,-67],[39,3],[8,58],[40,5],[17,91],[60,7],[1,40],[-55,87],[-38,7],[-25,-69],[-52,29],[3,63],[47,44],[-12,49],[31,81],[98,86],[-73,159],[-92,33],[-61,0],[-27,59],[-77,-17],[-17,115],[74,56],[-45,123],[3,75],[-80,93],[48,86],[40,107],[121,-19],[-36,160]],[[5414,6405],[119,64],[58,16],[40,-58],[64,20],[40,-87],[172,47],[55,-9],[48,24],[25,-35],[84,-25],[98,-9],[123,42],[114,-60],[59,16],[33,61],[128,-50],[8,56],[-57,-11],[-73,25],[-52,96],[58,129],[-29,42],[21,45],[-51,63],[-56,-7],[-7,75],[24,77],[-27,51],[-95,54]],[[6338,7057],[61,35],[87,12],[182,-33],[115,-37],[20,-27],[-34,-83],[72,-37],[70,45],[54,112],[148,67],[53,51]],[[10641,5098],[20,-5]],[[10661,5093],[71,-74],[105,-7],[56,73],[49,-8],[108,68],[80,-46]],[[11130,5099],[-42,-18],[-2,-53],[79,-18],[-13,-90],[42,8],[9,-75],[34,-27],[63,40],[58,9],[96,-10],[51,-31],[19,-67],[-65,-34],[-79,-70],[-14,-45],[-108,22],[-42,83],[-76,-24],[-25,-156],[37,-37],[-5,-97],[89,-19],[18,-245],[72,10],[-14,-85],[-48,-15],[-69,-74],[-2,-35],[102,-32],[-10,-54],[-95,-48],[-99,-31],[-45,-36],[-141,-74]],[[10905,3671],[-96,116],[-38,-7],[-26,61],[-96,-48],[-28,6],[-42,71],[-38,-6],[-150,117],[-48,116],[-58,11],[-131,-62],[-83,-22],[20,-76],[-12,-80],[-106,28],[-11,-86],[-24,-44],[-58,-7],[-68,35],[-27,-25],[2,-70],[-51,-17],[-50,32]],[[9686,3714],[-62,85],[-77,-29],[7,-50],[41,-63],[-7,-44],[-72,-45],[-48,20],[-117,98],[-56,-11],[-58,21],[11,88],[-93,-8],[-4,46],[64,-5],[0,78],[-115,107],[-19,43],[-86,-17],[-53,58],[-12,50],[-62,137],[118,29],[-23,45],[-60,-38],[-42,111]],[[8861,4420],[66,13],[38,61],[-8,36]],[[8957,4530],[2,43],[67,-22],[-2,-53],[52,-32],[42,22],[118,116],[-25,108],[46,64],[-12,65],[50,67],[5,109],[81,36],[44,132],[106,62],[22,30]],[[9553,5277],[62,49],[12,37],[-29,85],[10,99],[42,35],[132,22]],[[8843,4517],[104,-24]],[[8947,4493],[-82,-37],[-22,61]],[[9889,1060],[47,-65],[76,-24],[-9,-186],[-51,-59],[-50,-110],[-48,-32],[32,-37],[42,-209],[-31,-53],[12,-116],[-97,-14],[-123,26],[-31,-23],[-2,-89],[-59,-54],[-79,-15],[-39,19],[-3,67],[54,53],[-88,32],[-76,-1],[21,-46],[-62,-43],[-50,31],[-40,-22],[-4,122],[60,15],[67,66],[76,109],[-67,11],[-77,81],[-20,-61],[-68,-3],[-17,-69],[-106,-1],[-30,-42],[-54,45],[-43,-53],[33,-45],[54,-27],[0,-48],[-78,26],[-84,7],[-65,-39],[-40,-108],[-51,-17],[-28,-38],[-88,12],[30,138],[-14,92],[73,234],[48,35],[150,-10],[28,109],[-69,6],[44,81],[-72,25],[54,66],[-5,62],[29,75],[-6,81],[-71,254]],[[8824,1281],[45,-21],[56,31],[61,-3],[60,-29],[20,47],[120,-84],[23,-89],[50,-19],[-16,-44],[15,-64],[52,-5],[102,17],[85,-31],[29,27],[84,-47],[108,44],[128,23],[43,26]],[[8957,4530],[-10,-37]],[[8843,4517],[-22,22],[-160,-107],[-128,12],[-62,66],[-55,33],[-200,-82],[-102,-4],[-67,122],[-90,25],[47,95],[-35,51],[-60,-16]],[[7909,4734],[29,203],[86,21],[33,47],[-2,61],[-27,57],[86,40],[72,74]],[[8186,5237],[88,-102],[6,-50],[38,-85],[77,17],[71,-21],[21,57],[-41,29],[50,50],[38,84],[-4,44],[68,2],[133,26],[66,-35],[33,-53],[49,-34],[89,28],[23,65],[70,19],[44,75],[21,95],[48,37],[52,-34],[78,19],[62,-9],[58,-85],[80,1],[4,-56],[45,-44]],[[7906,4509],[24,98]],[[7930,4607],[82,-69],[0,-114],[-37,-44],[-69,129]],[[7899,4258],[-45,93],[50,143]],[[7904,4494],[19,-44],[-9,-82],[51,-44],[-73,-32],[7,-34]],[[7969,4670],[7,28]],[[7976,4698],[-7,-28]],[[7953,4725],[-18,5]],[[7935,4730],[18,-5]],[[10514,2016],[7,-88],[70,-43],[44,7],[16,-56],[64,11]],[[10715,1847],[107,-38],[-19,-106]],[[10803,1703],[-105,42],[-73,12],[-15,61],[-71,36],[-172,4],[-53,-60],[-60,-10],[-12,52],[-86,24],[-33,-152],[-67,-40],[-3,-107],[18,-26],[-8,-75]],[[10063,1464],[-85,-11],[-121,26]],[[9857,1479],[-11,-1]],[[9846,1478],[-123,114]],[[10444,2675],[86,31],[93,2]],[[10623,2708],[27,-8]],[[10650,2700],[143,92],[64,-7],[100,28],[21,127]],[[10978,2940],[72,64],[83,14],[120,-5],[25,-14],[71,23],[44,-68],[66,44],[60,-26],[37,44],[41,4],[42,-43],[-15,-93],[-53,-37],[-147,-40],[-70,17],[-48,-29],[-75,-8],[-121,13],[-17,-76],[-58,-2],[-106,-53],[-26,-201],[-108,-73],[-113,11],[8,-53],[-31,-43],[4,-105],[-50,21],[-31,-36],[-73,5],[-54,-35],[-60,4],[-86,-41],[109,-67],[29,24],[51,-19],[16,-45]],[[6338,7057],[-23,60],[-141,-62],[19,172],[-65,10],[0,127],[-54,-50],[-31,86],[-39,24],[-100,-20],[-153,30],[3,109],[-28,41],[-67,15],[8,-61],[-79,-105],[5,-66],[-124,-56],[-48,43],[-21,90],[60,50],[0,93],[-28,94],[15,120],[72,137],[211,62],[53,-27],[47,8],[98,127]],[[5928,8108],[32,-28],[60,-5],[75,-37],[18,-47],[58,31],[-2,88],[38,59],[55,5],[-8,-78],[188,1],[26,-70],[128,57],[36,-10],[17,-65],[38,-18],[-15,-93],[84,-85],[103,28],[96,-12],[18,45],[198,46],[-52,62],[-30,65],[3,122],[62,-37],[137,-23],[22,33],[-53,43],[22,77],[66,-73],[61,58],[52,-17],[74,73],[-20,83],[-68,14],[23,41],[50,-5],[5,-47],[108,-24],[27,-82],[55,15],[28,-51],[62,-32],[89,-16],[22,-114],[83,-1],[33,18],[85,-39],[12,-63]],[[7860,6271],[37,-43],[95,-41],[117,-15],[29,76],[33,22],[-28,58],[78,27],[78,-43],[-8,-36],[87,-39],[116,8],[58,32],[36,-31],[83,-4],[91,-149],[54,-62]],[[8816,6031],[4,-58],[-80,-73],[-18,-48],[-60,-8],[-51,20],[-54,-60],[-50,-8],[-52,34],[-67,-21],[-27,-42],[17,-86],[-72,-3],[-91,-57],[21,-62],[-21,-121],[49,-81],[-78,-120]],[[7909,4734],[26,-4]],[[7953,4725],[23,-27]],[[7969,4670],[-39,-63]],[[7906,4509],[-2,-15]],[[7899,4258],[-86,-78],[-30,-177]],[[7783,4003],[-67,-114]],[[7716,3889],[-16,31],[10,81],[-50,47],[-1,-96]],[[7659,3952],[-2,-20]],[[7657,3932],[-3,-10]],[[7654,3922],[-105,14],[-89,131],[-91,7],[-32,93],[-53,39],[-21,-41],[-75,1],[-142,42],[-17,-45],[-89,-17],[-18,75],[-157,5],[-34,34],[-12,68],[-48,2],[-99,70],[-41,-29],[-24,53],[52,41],[-29,59],[-31,8],[-19,124]],[[9044,8884],[14,-101],[116,-47],[-23,-93],[-26,-23],[-45,-126],[-61,-80],[1,-63],[-86,-158],[-72,-13]],[[5928,8108],[-57,35],[57,85],[1,46],[43,146],[-114,15],[44,66],[58,-13],[6,55],[-45,85],[3,90],[-15,66],[36,35],[74,15],[58,51],[-24,87],[-98,4],[25,80],[-28,21],[32,76],[7,80],[-105,1],[-62,-20],[10,78],[68,13],[15,82],[-41,46]],[[5876,9433],[55,74],[58,23],[45,-69],[79,35],[126,75],[92,10],[152,-18],[85,-79],[104,44],[56,0],[74,30],[54,-17],[-3,-82],[66,-15],[42,18],[5,103],[104,-22],[16,-74],[113,62],[1,44],[111,59],[62,-19],[-1,-93],[60,-41],[65,2],[67,-52],[84,49],[85,-23],[3,-48],[-48,-40],[39,-63],[44,-25],[120,29],[53,-109],[66,15],[52,-31],[-22,-69],[37,-47],[16,-65],[86,23],[-18,68],[79,114],[88,-68],[133,-34],[66,7],[0,-86],[74,-122],[158,-7],[100,16],[62,-30],[44,-53],[79,52]],[[4262,5971],[96,-66],[44,2],[131,-39],[47,-73],[78,-45],[30,-52],[-36,-24],[10,-76],[-62,-46],[16,-79],[37,-39],[-60,-43],[7,-74],[-78,-45],[-46,-126],[15,-66],[-39,-23],[-4,-71],[77,31],[20,-50],[-85,-18],[-13,-43],[-73,37],[-68,-75],[17,-31],[66,5],[-56,-107],[62,-30],[40,-44],[-58,-39],[-10,-53],[56,-107],[47,-33],[54,17],[18,-60],[1,-87],[-44,-52],[41,-83],[-51,-18],[-17,-99],[39,-26],[-62,-63],[-32,27],[16,56],[-60,20],[-73,-5],[-7,-32],[-72,-18],[-79,37],[-84,5],[-5,-65],[-128,-49],[-13,-56],[-68,-6],[-1,-120],[-71,-28],[-21,88],[-42,10],[-10,-99],[-23,-60],[-56,-37],[-27,-59],[12,-41],[-113,-18],[85,-124]],[[2250,3584],[-42,23],[-219,209],[-338,394],[-179,235],[-52,157],[39,54],[0,60],[53,100],[64,69],[116,67],[-9,-52],[-58,-50],[46,-72],[78,29],[73,-15],[43,40],[54,-44],[-49,-80],[-8,-144],[103,-76],[115,30],[77,48],[28,74],[150,-31],[45,32],[87,15],[3,37],[59,50],[3,99],[52,-46],[13,-62],[72,-48],[112,14],[11,61],[73,16],[-15,117],[95,13],[73,-96],[52,-15],[64,108],[58,-20],[73,60],[68,112],[166,59],[96,-21],[101,3],[64,19],[39,54],[18,78],[73,89],[3,96],[23,39],[90,65],[15,81],[56,66],[3,40],[87,132],[70,49],[25,66]],[[3442,5192],[45,-53],[-66,-42],[-54,-6],[5,70],[70,31]],[[2730,4911],[55,-72],[-38,-39],[-84,45],[2,36],[65,30]],[[3281,5108],[48,-60],[-92,-26],[9,69],[35,17]],[[3715,3236],[-39,-52],[22,-53],[45,0],[104,50],[51,-47],[34,-1],[13,-75],[-46,-24],[26,-83],[67,42],[14,86],[123,22],[2,83],[132,45],[103,-23],[28,36],[69,21],[2,-64],[128,-41],[56,54],[79,-35],[22,-58],[50,9],[36,71]],[[4836,3199],[56,-1],[15,38]],[[4907,3236],[31,7]],[[4938,3243],[130,-135],[60,-139],[-82,-7],[-36,-83],[1,-75],[67,18],[36,-49],[71,43],[10,-69],[36,-67],[-65,-26],[-42,21],[-42,-43],[25,-119],[88,50],[24,-63],[-66,-27],[-30,-62],[-124,-15],[-42,-63],[39,-74],[92,-53],[37,32],[154,-45],[58,7],[32,-40],[105,-71],[42,-60],[51,-22],[42,-94],[-27,-47],[-13,-96],[30,-27],[105,55],[49,-42],[-55,-120],[54,-160],[-29,-50]],[[5723,1426],[-83,-38],[-37,-51],[-95,1],[-39,-48],[-173,20],[-85,-24],[-30,23],[-91,-36],[-21,36],[0,1],[1,1]],[[5070,1311],[0,1]],[[5070,1312],[1,1]],[[5071,1313],[0,1]],[[5071,1314],[0,8]],[[5071,1322],[-1,3]],[[5070,1325],[-9,4]],[[5061,1329],[-29,70],[59,27],[-20,85],[-63,-8],[-18,55],[83,33],[33,63],[-40,109],[-91,28],[-14,-17],[-99,2],[-51,59],[-52,-109],[-3,-53],[-45,-61],[-29,-81],[11,-110],[-45,-65]],[[4648,1356],[-104,31],[-304,172],[-59,65],[-65,21],[-204,157],[-178,160],[-192,192],[-141,168]],[[5414,6405],[-116,4],[-90,-30],[-87,1],[-3,-37],[-109,-33],[-36,47],[-64,23],[-148,-77],[-126,-97],[-73,-42],[-77,-80],[-26,-123],[-122,29],[-71,-12]],[[4266,5978],[58,88],[46,138],[-105,-26],[-79,-79],[-5,-130],[-21,-40],[-66,-29],[-110,30],[-91,70],[-68,-56],[-126,-22],[-59,-65],[-146,-29],[-13,11],[-138,-18],[-82,-53],[-78,11],[-83,-37],[-41,-10],[-93,-65],[-20,-73],[-58,-98],[-132,60],[-48,-20],[-68,11],[-90,49],[-88,4],[-76,-21],[-108,77],[-133,38],[-99,-17],[-131,30],[-334,216],[-95,46],[-255,168],[-46,37],[-103,44],[-111,97],[-73,45],[-23,45],[-120,107],[37,37],[67,11],[-19,106],[13,108],[-58,72],[-64,-10],[-94,174],[-41,36],[-27,252],[4,83],[54,56],[20,55],[58,65],[70,27],[54,46],[66,102],[60,42],[99,30],[-26,37],[-108,14],[-51,-49],[-104,0],[-104,-170],[-38,58],[14,69],[54,50],[39,81],[91,56],[-59,33],[-56,4],[-41,49],[23,42],[386,4],[31,637],[-12,45],[122,48],[28,-76],[16,-126],[52,-13],[46,126],[77,58],[49,-64],[24,-81],[44,-21],[176,103],[179,-72],[220,90],[126,-22],[118,19],[89,-24],[196,49],[31,-21],[238,-230],[542,-4],[92,57],[82,203],[261,65],[110,49],[130,12],[109,58],[62,13],[210,72],[49,-26],[-37,-90],[-38,-30],[33,-102],[-6,-102],[133,-64],[147,-17],[212,26],[85,37],[-9,106],[142,116],[73,30],[28,-29],[65,1],[78,71],[65,20],[22,48],[-28,36],[-153,-1],[-54,21],[-5,56],[15,118],[-32,39],[5,122],[38,65],[48,18],[117,87],[23,-25],[338,-130]],[[326,7737],[75,-43],[53,24],[-20,-101],[6,-50],[-45,-132],[-65,-72],[-26,-61],[-106,-40],[-51,49],[-79,5],[-35,-21],[-33,62],[36,41],[110,10],[135,161],[0,71],[45,97]],[[326,8094],[32,-16],[111,0],[-59,-98],[-99,-26],[-4,-94],[-20,-93],[-83,3],[-40,-53],[-34,-177],[-31,-64],[-82,95],[29,74],[29,3],[-31,101],[85,101],[13,58],[42,71],[97,-6],[45,121]],[[488,8080],[102,-2],[39,-91],[-62,-53],[-24,-76],[-37,36],[1,89],[-19,97]],[[397,7890],[47,-20],[35,-62],[-24,-60],[-56,-43],[-52,41],[-38,0],[-7,66],[95,78]],[[588,7791],[50,-60],[-12,-100],[-41,-36],[-110,12],[36,65],[-16,65],[93,54]],[[498,8017],[-13,-143],[-88,19],[-74,-15],[-2,64],[58,7],[119,68]],[[230,7776],[27,-41],[-12,-83],[17,-64],[-127,-36],[34,164],[61,60]],[[661,8033],[70,-79],[-43,-69],[-52,-41],[-60,24],[-7,49],[88,64],[4,52]],[[543,7055],[41,-48],[-17,-111],[-43,31],[-2,71],[21,57]],[[704,6705],[103,-45],[5,-39],[-81,-27],[-60,12],[33,99]],[[566,7291],[-23,-74],[-58,12],[81,62]],[[730,6831],[89,-44],[-52,-24],[-37,68]],[[4285,6155],[-37,-99],[-31,23],[68,76]],[[8816,6031],[107,59],[58,118],[65,-6],[36,114],[74,1],[-10,67]],[[9146,6384],[101,0],[96,52],[34,41],[38,-33],[3,-64],[28,-36],[62,6],[13,-73],[62,-81],[53,-26],[42,47],[63,2],[26,35],[-4,63],[62,20],[5,72],[-50,21],[-12,38],[76,41],[-16,35],[147,96],[44,-25],[95,31]],[[6150,4494],[46,-64],[-52,-42],[92,-55],[-17,-99],[58,-55],[-9,-78],[16,-43],[-94,-48],[10,-51],[-128,-59]],[[6072,3900],[-91,14],[-29,86],[-41,34],[-62,-53],[42,-89],[-61,-36],[-24,33],[-8,77],[-92,-20],[4,-55],[-147,-76],[-15,-39],[-107,-33],[0,-46],[-46,-35],[46,-33],[85,44],[10,-35],[-49,-64],[-69,1],[0,-141],[-28,-32],[-104,-23],[-24,42],[-56,-10],[-31,36],[-47,3],[-16,-61],[-113,18],[-87,-26],[41,-38],[-15,-100]],[[4907,3236],[-29,27],[-47,-21],[5,-43]],[[4262,5971],[4,7]],[[4882,3490],[10,-69],[60,53],[-70,16]],[[9146,6384],[-79,12],[44,192],[34,41],[-28,40],[-78,-112],[-45,-2],[-27,46],[-26,120],[-86,-19],[-44,28],[-76,-3],[17,57],[-83,3],[-41,104],[103,43],[42,81],[-31,86]],[[9044,8884],[49,27],[-51,59],[50,60],[-18,64],[60,65],[17,-36],[56,0],[82,62],[24,-80],[-1,-77],[-41,-54],[161,-92],[78,52],[39,-23],[-39,-64],[-45,2],[-26,-71],[-54,14],[-12,-58],[-43,-37],[-47,-87],[-17,-76],[77,-94],[92,-61],[99,-28],[-44,-111],[98,-72],[73,34],[68,74],[16,110],[66,-5],[0,-52],[83,-77],[-6,-111],[21,-50],[-3,-108],[-64,-36],[-51,-108],[25,-69],[-22,-63],[28,-53],[45,37],[39,-10],[58,-56],[54,-92],[59,-25],[-18,-130],[49,-52],[83,90],[92,-5],[79,-60],[-45,-192],[40,-36],[-27,-36],[-22,-94]],[[6072,3900],[11,-51],[89,-10],[36,-53],[-82,-74],[69,-98],[22,-91],[43,7],[35,-44],[55,-24],[45,-63],[65,-28],[-37,-198],[-49,-35],[8,-68],[-35,-63],[-72,-21],[-40,-125],[100,-87],[129,1],[21,-81],[38,-36],[-3,-106],[-73,-46],[-41,-58],[-69,0],[-23,-142],[1,-95],[56,-7],[74,-54],[68,-78],[28,-159],[50,-9],[25,-63]],[[6616,1841],[-77,-16],[-4,-35],[-135,-50],[-105,-11],[-3,-59],[-38,-3],[-26,-52],[-65,-43],[-84,-9],[-45,-25],[-94,-15],[-178,-90],[-39,-7]],[[5061,1329],[4,-2],[1,0],[1,0],[0,-1],[21,-61],[-97,-67],[-54,43],[-87,16],[-143,87],[-59,12]],[[5071,1322],[-1,3]],[[8469,2834],[31,105],[37,15],[-64,-1],[-89,64],[-9,54],[40,72],[82,22],[61,50],[30,-27],[54,11],[67,2],[68,28],[-77,10],[-82,55],[-48,-23],[-220,2],[-68,-42],[-66,43],[-9,70],[40,47],[22,119],[36,66],[77,78],[32,101],[-39,40],[-42,-18],[-7,-69],[-121,-17],[-30,122],[5,93],[40,201],[41,156],[26,55],[41,52],[58,33],[85,-11],[77,-58],[114,-20],[74,131],[37,21],[88,-46]],[[9686,3714],[13,-75],[51,-41],[9,-54],[55,-17],[77,-113],[5,-78],[105,19],[43,-33],[7,-58],[-33,-42],[23,-35],[-7,-60],[-62,-86],[-20,-56],[20,-41]],[[8524,2784],[-68,10],[13,40]],[[8520,2778],[1,1]],[[7654,3922],[-12,-68],[18,-62],[52,-93],[4,-206],[19,-57],[-44,-12],[106,-227],[-4,-54],[-53,-77],[-35,-164],[-36,-96],[-47,-67],[-64,-60],[-19,-42],[-86,-108],[-20,-81],[-54,-86],[54,-55],[9,-37],[-112,-62],[-16,-24],[-110,-41],[-35,-44],[-133,-25],[-30,-29],[-168,-77],[-62,-77],[-82,1],[-78,-51]],[[7783,4003],[-39,-204],[-28,90]],[[7659,3952],[-2,-20]],[[11034,6744],[64,-82],[110,-2],[56,-62],[6,-80],[-28,-42],[4,-58],[54,-45],[53,-12],[46,84],[81,-29],[41,-47],[31,-78],[-10,-50],[52,-32],[33,-78],[41,-26],[41,-106],[-55,-32],[75,-115],[36,-22],[35,40],[84,-11],[30,-115],[-27,-91],[-49,-12],[0,-50],[-68,-115],[-36,-183],[-39,-15],[-163,24],[-79,-71],[-43,-97],[-107,-74],[-57,-17],[-82,53],[-34,3]],[[10661,5093],[-7,2]],[[10905,3671],[-94,-33],[-38,-34],[-72,0],[-27,-55],[36,-147],[83,-66],[15,-91],[-24,-47],[-77,-25],[-30,14],[-79,-31],[70,-56],[17,-94],[52,-121],[146,52],[95,3]],[[10650,2700],[-27,8]],[[9846,1478],[11,1]],[[10063,1464],[-24,-43],[12,-79],[-46,-32],[-3,-49]],[[10002,1261],[-67,-119],[-69,-27],[23,-55]],[[8824,1281],[-53,185],[-65,170],[2,67],[-53,-3],[-35,91],[-28,126],[11,68],[-58,-10]],[[10803,1703],[66,-99],[0,-78],[27,-18],[-9,-149],[17,-56],[-55,-39],[-61,16],[-48,-78],[-39,17],[7,-165],[-77,-46],[-36,1],[-74,-73],[-90,23],[-67,-32],[-55,34],[-21,88],[-181,110],[-61,-42],[-2,69],[-42,75]],[[10514,2016],[50,-28],[53,-1],[8,-46],[90,-94]]],"transform":{"scale":[0.000527982289743159,0.00047618216732406055],"translate":[68.186249,20.120943]},"objects":{"gujarat_district_2011":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"cartodb_id":356,"censuscode":471,"dt_cen_cd":4,"st_cen_cd":24,"st_nm":"Gujarat","district":"Mehsana"}},{"arcs":[[6,7,8,9,10,11]],"type":"Polygon","properties":{"cartodb_id":427,"censuscode":484,"dt_cen_cd":17,"st_cen_cd":24,"st_nm":"Gujarat","district":"Panch Mahals"}},{"arcs":[[12,13,14,15]],"type":"Polygon","properties":{"cartodb_id":445,"censuscode":478,"dt_cen_cd":11,"st_cen_cd":24,"st_nm":"Gujarat","district":"Porbandar"}},{"arcs":[[[16,17,18,19,20,21,22,23]],[[24]]],"type":"MultiPolygon","properties":{"cartodb_id":555,"censuscode":492,"dt_cen_cd":25,"st_cen_cd":24,"st_nm":"Gujarat","district":"Surat"}},{"arcs":[[25,26,27,28,29,-4]],"type":"Polygon","properties":{"cartodb_id":556,"censuscode":475,"dt_cen_cd":8,"st_cen_cd":24,"st_nm":"Gujarat","district":"Surendranagar"}},{"arcs":[[[30,31,32,33,34,35,36,37,-9]],[[38,39]]],"type":"MultiPolygon","properties":{"cartodb_id":598,"censuscode":486,"dt_cen_cd":19,"st_cen_cd":24,"st_nm":"Gujarat","district":"Vadodara"}},{"arcs":[[40,41]],"type":"Polygon","properties":{"cartodb_id":600,"censuscode":491,"dt_cen_cd":24,"st_cen_cd":24,"st_nm":"Gujarat","district":"Valsad"}},{"arcs":[[[-37,42,-39,43,44,45]],[[46,47]],[[48,49]]],"type":"MultiPolygon","properties":{"cartodb_id":19,"censuscode":482,"dt_cen_cd":15,"st_cen_cd":24,"st_nm":"Gujarat","district":"Anand"}},{"arcs":[[54,55,56,57,58,59,-18,60,61,62,63]],"type":"Polygon","properties":{"cartodb_id":637,"censuscode":493,"dt_cen_cd":26,"st_cen_cd":24,"st_nm":"Gujarat","district":"Tapi"}},{"arcs":[[-30,64,65,-5]],"type":"Polygon","properties":{"cartodb_id":436,"censuscode":470,"dt_cen_cd":3,"st_cen_cd":24,"st_nm":"Gujarat","district":"Patan"}},{"arcs":[[66,67,-45,68,-53,69,-51,70,-47,71,-49,72,73,74,75,76,77,-26,-3]],"type":"Polygon","properties":{"cartodb_id":3,"censuscode":474,"dt_cen_cd":7,"st_cen_cd":24,"st_nm":"Gujarat","district":"Ahmedabad"}},{"arcs":[[78,-6,-66,79,80]],"type":"Polygon","properties":{"cartodb_id":43,"censuscode":469,"dt_cen_cd":2,"st_cen_cd":24,"st_nm":"Gujarat","district":"Banas Kantha"}},{"arcs":[[[81,-16,82]],[[83]],[[84]],[[85]]],"type":"MultiPolygon","properties":{"cartodb_id":250,"censuscode":477,"dt_cen_cd":10,"st_cen_cd":24,"st_nm":"Gujarat","district":"Jamnagar"}},{"arcs":[[86,87,88,89,90,91,92,93,94,95,96,97,98,-14]],"type":"Polygon","properties":{"cartodb_id":264,"censuscode":479,"dt_cen_cd":12,"st_cen_cd":24,"st_nm":"Gujarat","district":"Junagadh"}},{"arcs":[[[-65,-29,99,100,-80]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]]],"type":"MultiPolygon","properties":{"cartodb_id":266,"censuscode":468,"dt_cen_cd":1,"st_cen_cd":24,"st_nm":"Gujarat","district":"Kutch"}},{"arcs":[[-10,-38,-46,-68,114,115]],"type":"Polygon","properties":{"cartodb_id":298,"censuscode":483,"dt_cen_cd":16,"st_cen_cd":24,"st_nm":"Gujarat","district":"Kheda"}},{"arcs":[[-28,116,117,-89,118,-87,-13,-82,119,-100],[120]],"type":"Polygon","properties":{"cartodb_id":467,"censuscode":476,"dt_cen_cd":9,"st_cen_cd":24,"st_nm":"Gujarat","district":"Rajkot"}},{"arcs":[[-11,-116,121,-1,-79,122]],"type":"Polygon","properties":{"cartodb_id":488,"censuscode":472,"dt_cen_cd":5,"st_cen_cd":24,"st_nm":"Gujarat","district":"Sabar Kantha"}},{"arcs":[[[123,124,-90,-118]],[[125,-98]],[[-121]],[[-88,-119]]],"type":"MultiPolygon","properties":{"cartodb_id":17,"censuscode":480,"dt_cen_cd":13,"st_cen_cd":24,"st_nm":"Gujarat","district":"Amreli"}},{"arcs":[[127,-35,128,-24,129]],"type":"Polygon","properties":{"cartodb_id":73,"censuscode":488,"dt_cen_cd":21,"st_cen_cd":24,"st_nm":"Gujarat","district":"Bharuch"}},{"arcs":[[[-78,131,-124,-117,-27]],[[132,-74]]],"type":"MultiPolygon","properties":{"cartodb_id":74,"censuscode":481,"dt_cen_cd":14,"st_cen_cd":24,"st_nm":"Gujarat","district":"Bhavnagar"}},{"arcs":[[134,-32,135,-7]],"type":"Polygon","properties":{"cartodb_id":161,"censuscode":485,"dt_cen_cd":18,"st_cen_cd":24,"st_nm":"Gujarat","district":"Dahod"}},{"arcs":[[-122,-115,-67,-2]],"type":"Polygon","properties":{"cartodb_id":190,"censuscode":473,"dt_cen_cd":6,"st_cen_cd":24,"st_nm":"Gujarat","district":"Gandhinagar"}},{"arcs":[[136,-63,137,-61,-17,-129,-34]],"type":"Polygon","properties":{"cartodb_id":402,"censuscode":487,"dt_cen_cd":20,"st_cen_cd":24,"st_nm":"Gujarat","district":"Narmada"}},{"arcs":[[-60,138,-58,139,140,-42,141,-19]],"type":"Polygon","properties":{"cartodb_id":405,"censuscode":490,"dt_cen_cd":23,"st_cen_cd":24,"st_nm":"Gujarat","district":"Navsari"}},{"arcs":[[[142,-140,-57]],[[143,-55]]],"type":"MultiPolygon","properties":{"cartodb_id":564,"censuscode":489,"dt_cen_cd":22,"st_cen_cd":24,"st_nm":"Gujarat","district":"The Dangs"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [8862, 8180], + [-24, -78], + [-70, -72], + [13, -46], + [-42, -32], + [4, -59], + [-27, -97], + [39, -85], + [-26, -65], + [5, -46], + [68, -148], + [-30, -75], + [44, -66], + [-64, -42], + [8, -56], + [35, -32], + [-21, -90], + [-32, 10] + ], + [ + [8742, 7101], + [-42, 18], + [-4, 53], + [-82, -25], + [-86, 13], + [-7, 52], + [-50, 21], + [-53, -19], + [-4, -95], + [-70, 17], + [-8, -99], + [-24, -29], + [-74, 2], + [12, -59], + [-33, -23], + [-38, -73], + [31, -73], + [-64, -24], + [-39, -83], + [-78, 5], + [-20, -44], + [48, -158], + [-104, -77], + [37, -81], + [-58, -56], + [-72, 7] + ], + [ + [7860, 6271], + [-57, -46], + [27, -64], + [-50, -31], + [-16, 72], + [-49, 63], + [-71, 37], + [-61, -36], + [-51, -3], + [4, 76], + [42, 9], + [-34, 108], + [28, 42], + [-11, 124], + [38, 5], + [18, 66], + [61, 31], + [46, 49], + [-6, 50], + [70, 91], + [-68, 98], + [-33, -45], + [-66, -16], + [-42, -38], + [-31, 51], + [-139, 46], + [-85, -32], + [-31, 29], + [-4, 100], + [-66, -3] + ], + [ + [7223, 7104], + [-57, 58] + ], + [ + [7166, 7162], + [-24, 125], + [45, 63], + [48, 29], + [84, -29], + [19, -97], + [63, 16], + [44, 50], + [87, 25], + [59, 46], + [70, 7], + [99, -60], + [32, 41], + [16, 73], + [-76, 53], + [39, 104], + [22, 116], + [28, 32], + [-47, 71], + [48, 29], + [50, 63], + [97, -21], + [28, 44], + [59, 18], + [58, -30], + [15, 70] + ], + [ + [8129, 8000], + [82, 20], + [84, -16], + [41, 36], + [-1, 47], + [78, 40], + [21, 75], + [-31, 30], + [213, 91], + [26, -34], + [82, 29], + [55, -98], + [56, 5], + [27, -45] + ], + [ + [11034, 6744], + [-26, -104], + [-23, -268], + [70, -130], + [-65, -28], + [-70, 41], + [-62, -32], + [-23, -81], + [0, -132], + [-33, -73], + [34, -29], + [-44, -68], + [-5, -73], + [-31, -58], + [-47, 10], + [21, -129], + [-49, -49], + [42, -35], + [-31, -110], + [-55, -46], + [49, -76], + [-56, -47], + [97, -42], + [15, -71], + [-88, -19] + ], + [ + [10654, 5095], + [-13, 3] + ], + [ + [10641, 5098], + [-88, -5], + [-49, -65], + [-11, -114], + [30, -48], + [-8, -102], + [63, -7], + [-32, -86], + [-47, -22], + [-9, -46], + [-48, -58], + [-70, -1], + [-28, 30], + [21, 75], + [69, 4], + [17, 43], + [-114, 57], + [-48, -53], + [23, -76], + [-123, 8], + [-30, 31], + [-122, 9], + [-119, 170], + [16, 63], + [-14, 74], + [-31, 29], + [25, 88], + [-89, 12], + [24, 145], + [56, 77], + [-44, 52], + [-12, 115], + [77, 41], + [-9, 51], + [-68, 51], + [-11, -105], + [-56, 69] + ], + [ + [9782, 5604], + [69, 130], + [-29, 101], + [151, 144], + [-29, 69], + [-1, 56], + [-40, 3], + [18, 147], + [-93, 20], + [15, 51], + [89, 48], + [129, -7], + [87, 83], + [0, 69], + [62, 51], + [-96, 77] + ], + [ + [10114, 6646], + [55, 67], + [22, 62], + [56, 74], + [34, 17], + [37, 70], + [-10, 57] + ], + [ + [10308, 6993], + [136, 7], + [25, -77], + [32, 12], + [58, 71], + [35, -50], + [83, 25], + [76, -107], + [52, -123], + [85, 8], + [16, 68], + [28, 16], + [54, -92], + [46, -7] + ], + [ + [3577, 3384], + [27, -62], + [57, 5], + [48, -50], + [6, -41] + ], + [ + [3715, 3236], + [-49, 36], + [-60, -70], + [-109, -22], + [25, -86], + [-101, -34], + [14, -79], + [-36, -21], + [36, -121], + [80, -1], + [16, -38], + [-128, -40], + [-76, -139], + [27, -55], + [41, -22], + [-3, -82], + [71, -31], + [-24, -78], + [-38, -31] + ], + [ + [3401, 2322], + [-112, 137], + [-290, 368], + [-130, 156], + [-55, 52], + [-132, 150], + [-58, 19], + [-191, 198], + [-79, 61], + [-104, 121] + ], + [ + [2250, 3584], + [22, 92], + [41, 40], + [55, -36], + [24, -47], + [76, 8], + [-2, 82], + [90, -5], + [15, 66], + [71, 46], + [75, -10], + [16, -38], + [53, 0], + [-10, 68], + [61, 9], + [61, 33], + [6, -83], + [-88, -63], + [-30, -75], + [-87, -12], + [40, -76], + [47, 15], + [58, -33], + [50, -54], + [49, 81], + [37, -21], + [105, 2], + [-9, -116], + [14, -56], + [94, -11], + [26, 67], + [99, 27], + [24, 28], + [84, 31], + [37, -15], + [-2, -92], + [20, -26], + [3, -78], + [66, -13], + [36, 65] + ], + [ + [9972, 2944], + [54, -63], + [156, -44], + [64, 23], + [38, -25], + [73, 15], + [42, -11], + [25, -51], + [20, -113] + ], + [ + [10444, 2675], + [-75, -34], + [-111, -30], + [-169, -22], + [-6, 46], + [-102, 10], + [-37, -131], + [23, -50], + [-11, -56], + [-46, 21], + [-97, -28], + [18, -49], + [-27, -51], + [-37, 6], + [-91, -56], + [-39, -123], + [-48, -14], + [2, -84], + [-89, -29], + [8, -129], + [38, -7], + [26, -49], + [-54, -65], + [84, -21], + [15, -50], + [49, 18], + [52, -53], + [3, -53] + ], + [ + [9723, 1592], + [-28, -42], + [-4, -89], + [-86, 2], + [-15, 65], + [-98, 24], + [-63, 86], + [-74, -8], + [2, 49], + [-62, 33], + [-97, 145], + [-56, 26], + [10, 86], + [-128, 12], + [-46, -45], + [-66, 34], + [-55, -40], + [-118, 73], + [-80, -28], + [-82, 17], + [-32, -17] + ], + [ + [8545, 1975], + [4, 82], + [30, 85], + [-45, 30], + [-57, -16], + [-6, -125], + [-50, -14], + [-18, 60], + [-8, 188], + [-56, 164], + [8, 72], + [54, 70], + [9, 80], + [110, 127] + ], + [ + [8520, 2778], + [1, 1] + ], + [ + [8521, 2779], + [0, 1] + ], + [ + [8521, 2780], + [3, 4] + ], + [ + [8524, 2784], + [33, 37], + [66, 12], + [36, -42], + [44, 15], + [10, -71], + [52, -8], + [76, 64], + [106, -42], + [27, 73], + [57, 40], + [-23, 56], + [146, 26], + [-1, -68], + [44, -31], + [30, 40], + [-35, 62], + [30, 85], + [37, -23], + [10, -106], + [46, 3], + [31, -48], + [46, 29], + [56, -6], + [75, 19], + [78, -19], + [36, 27], + [62, -3], + [33, -40], + [44, 53], + [196, 26] + ], + [ + [8505, 2173], + [63, -30], + [-61, -83], + [-24, 98], + [22, 15] + ], + [ + [7223, 7104], + [-61, -93], + [8, -60], + [-24, -79], + [-161, -21], + [40, -106], + [-39, -114], + [63, -28], + [48, 4], + [18, -46], + [83, 23], + [7, -85], + [-73, -17], + [-79, -56], + [-18, -148], + [27, -65], + [71, -52], + [70, 29], + [44, -19], + [15, -141], + [-59, -90], + [26, -55], + [-37, -142], + [62, -131], + [64, -22], + [9, -66], + [32, -40], + [66, -25], + [-32, -94], + [-63, 38], + [-56, -31], + [65, -59], + [4, -109], + [62, 13], + [138, -75], + [34, -58], + [-83, -58], + [35, -73], + [-78, -35], + [-68, -54], + [-65, 15], + [1, 59], + [-37, 71], + [-122, 6], + [-39, 65], + [-46, -39], + [-26, -87], + [93, 20], + [8, -42], + [-73, -42], + [20, -144], + [-33, 3], + [-48, 77], + [-76, -62], + [6, -40], + [-58, -21], + [8, 68], + [-90, -15], + [7, -51], + [-93, -1], + [-60, 74], + [-72, -30], + [-41, 37], + [-44, -40], + [3, -78], + [-26, -11] + ], + [ + [6480, 4656], + [-24, 25], + [-71, -20], + [-53, 6], + [-64, -74], + [-107, -40], + [-11, -59] + ], + [ + [6150, 4494], + [-23, -60], + [-61, -20], + [-2, 110], + [-87, -33], + [-67, 45], + [-27, -59], + [-39, 44], + [-75, 6], + [-26, -117], + [50, 3], + [72, -25], + [27, -61], + [-15, -37], + [-119, 6], + [-30, 40], + [-42, -26], + [-25, -60], + [-97, -47], + [4, 63], + [56, 29], + [-96, 172], + [-84, 62], + [2, 54], + [-75, 55], + [-19, 51], + [14, 52], + [-15, 67], + [24, 58], + [61, -5], + [38, -67], + [39, 3], + [8, 58], + [40, 5], + [17, 91], + [60, 7], + [1, 40], + [-55, 87], + [-38, 7], + [-25, -69], + [-52, 29], + [3, 63], + [47, 44], + [-12, 49], + [31, 81], + [98, 86], + [-73, 159], + [-92, 33], + [-61, 0], + [-27, 59], + [-77, -17], + [-17, 115], + [74, 56], + [-45, 123], + [3, 75], + [-80, 93], + [48, 86], + [40, 107], + [121, -19], + [-36, 160] + ], + [ + [5414, 6405], + [119, 64], + [58, 16], + [40, -58], + [64, 20], + [40, -87], + [172, 47], + [55, -9], + [48, 24], + [25, -35], + [84, -25], + [98, -9], + [123, 42], + [114, -60], + [59, 16], + [33, 61], + [128, -50], + [8, 56], + [-57, -11], + [-73, 25], + [-52, 96], + [58, 129], + [-29, 42], + [21, 45], + [-51, 63], + [-56, -7], + [-7, 75], + [24, 77], + [-27, 51], + [-95, 54] + ], + [ + [6338, 7057], + [61, 35], + [87, 12], + [182, -33], + [115, -37], + [20, -27], + [-34, -83], + [72, -37], + [70, 45], + [54, 112], + [148, 67], + [53, 51] + ], + [ + [10641, 5098], + [20, -5] + ], + [ + [10661, 5093], + [71, -74], + [105, -7], + [56, 73], + [49, -8], + [108, 68], + [80, -46] + ], + [ + [11130, 5099], + [-42, -18], + [-2, -53], + [79, -18], + [-13, -90], + [42, 8], + [9, -75], + [34, -27], + [63, 40], + [58, 9], + [96, -10], + [51, -31], + [19, -67], + [-65, -34], + [-79, -70], + [-14, -45], + [-108, 22], + [-42, 83], + [-76, -24], + [-25, -156], + [37, -37], + [-5, -97], + [89, -19], + [18, -245], + [72, 10], + [-14, -85], + [-48, -15], + [-69, -74], + [-2, -35], + [102, -32], + [-10, -54], + [-95, -48], + [-99, -31], + [-45, -36], + [-141, -74] + ], + [ + [10905, 3671], + [-96, 116], + [-38, -7], + [-26, 61], + [-96, -48], + [-28, 6], + [-42, 71], + [-38, -6], + [-150, 117], + [-48, 116], + [-58, 11], + [-131, -62], + [-83, -22], + [20, -76], + [-12, -80], + [-106, 28], + [-11, -86], + [-24, -44], + [-58, -7], + [-68, 35], + [-27, -25], + [2, -70], + [-51, -17], + [-50, 32] + ], + [ + [9686, 3714], + [-62, 85], + [-77, -29], + [7, -50], + [41, -63], + [-7, -44], + [-72, -45], + [-48, 20], + [-117, 98], + [-56, -11], + [-58, 21], + [11, 88], + [-93, -8], + [-4, 46], + [64, -5], + [0, 78], + [-115, 107], + [-19, 43], + [-86, -17], + [-53, 58], + [-12, 50], + [-62, 137], + [118, 29], + [-23, 45], + [-60, -38], + [-42, 111] + ], + [ + [8861, 4420], + [66, 13], + [38, 61], + [-8, 36] + ], + [ + [8957, 4530], + [2, 43], + [67, -22], + [-2, -53], + [52, -32], + [42, 22], + [118, 116], + [-25, 108], + [46, 64], + [-12, 65], + [50, 67], + [5, 109], + [81, 36], + [44, 132], + [106, 62], + [22, 30] + ], + [ + [9553, 5277], + [62, 49], + [12, 37], + [-29, 85], + [10, 99], + [42, 35], + [132, 22] + ], + [ + [8843, 4517], + [104, -24] + ], + [ + [8947, 4493], + [-82, -37], + [-22, 61] + ], + [ + [9889, 1060], + [47, -65], + [76, -24], + [-9, -186], + [-51, -59], + [-50, -110], + [-48, -32], + [32, -37], + [42, -209], + [-31, -53], + [12, -116], + [-97, -14], + [-123, 26], + [-31, -23], + [-2, -89], + [-59, -54], + [-79, -15], + [-39, 19], + [-3, 67], + [54, 53], + [-88, 32], + [-76, -1], + [21, -46], + [-62, -43], + [-50, 31], + [-40, -22], + [-4, 122], + [60, 15], + [67, 66], + [76, 109], + [-67, 11], + [-77, 81], + [-20, -61], + [-68, -3], + [-17, -69], + [-106, -1], + [-30, -42], + [-54, 45], + [-43, -53], + [33, -45], + [54, -27], + [0, -48], + [-78, 26], + [-84, 7], + [-65, -39], + [-40, -108], + [-51, -17], + [-28, -38], + [-88, 12], + [30, 138], + [-14, 92], + [73, 234], + [48, 35], + [150, -10], + [28, 109], + [-69, 6], + [44, 81], + [-72, 25], + [54, 66], + [-5, 62], + [29, 75], + [-6, 81], + [-71, 254] + ], + [ + [8824, 1281], + [45, -21], + [56, 31], + [61, -3], + [60, -29], + [20, 47], + [120, -84], + [23, -89], + [50, -19], + [-16, -44], + [15, -64], + [52, -5], + [102, 17], + [85, -31], + [29, 27], + [84, -47], + [108, 44], + [128, 23], + [43, 26] + ], + [ + [8957, 4530], + [-10, -37] + ], + [ + [8843, 4517], + [-22, 22], + [-160, -107], + [-128, 12], + [-62, 66], + [-55, 33], + [-200, -82], + [-102, -4], + [-67, 122], + [-90, 25], + [47, 95], + [-35, 51], + [-60, -16] + ], + [ + [7909, 4734], + [29, 203], + [86, 21], + [33, 47], + [-2, 61], + [-27, 57], + [86, 40], + [72, 74] + ], + [ + [8186, 5237], + [88, -102], + [6, -50], + [38, -85], + [77, 17], + [71, -21], + [21, 57], + [-41, 29], + [50, 50], + [38, 84], + [-4, 44], + [68, 2], + [133, 26], + [66, -35], + [33, -53], + [49, -34], + [89, 28], + [23, 65], + [70, 19], + [44, 75], + [21, 95], + [48, 37], + [52, -34], + [78, 19], + [62, -9], + [58, -85], + [80, 1], + [4, -56], + [45, -44] + ], + [ + [7906, 4509], + [24, 98] + ], + [ + [7930, 4607], + [82, -69], + [0, -114], + [-37, -44], + [-69, 129] + ], + [ + [7899, 4258], + [-45, 93], + [50, 143] + ], + [ + [7904, 4494], + [19, -44], + [-9, -82], + [51, -44], + [-73, -32], + [7, -34] + ], + [ + [7969, 4670], + [7, 28] + ], + [ + [7976, 4698], + [-7, -28] + ], + [ + [7953, 4725], + [-18, 5] + ], + [ + [7935, 4730], + [18, -5] + ], + [ + [10514, 2016], + [7, -88], + [70, -43], + [44, 7], + [16, -56], + [64, 11] + ], + [ + [10715, 1847], + [107, -38], + [-19, -106] + ], + [ + [10803, 1703], + [-105, 42], + [-73, 12], + [-15, 61], + [-71, 36], + [-172, 4], + [-53, -60], + [-60, -10], + [-12, 52], + [-86, 24], + [-33, -152], + [-67, -40], + [-3, -107], + [18, -26], + [-8, -75] + ], + [ + [10063, 1464], + [-85, -11], + [-121, 26] + ], + [ + [9857, 1479], + [-11, -1] + ], + [ + [9846, 1478], + [-123, 114] + ], + [ + [10444, 2675], + [86, 31], + [93, 2] + ], + [ + [10623, 2708], + [27, -8] + ], + [ + [10650, 2700], + [143, 92], + [64, -7], + [100, 28], + [21, 127] + ], + [ + [10978, 2940], + [72, 64], + [83, 14], + [120, -5], + [25, -14], + [71, 23], + [44, -68], + [66, 44], + [60, -26], + [37, 44], + [41, 4], + [42, -43], + [-15, -93], + [-53, -37], + [-147, -40], + [-70, 17], + [-48, -29], + [-75, -8], + [-121, 13], + [-17, -76], + [-58, -2], + [-106, -53], + [-26, -201], + [-108, -73], + [-113, 11], + [8, -53], + [-31, -43], + [4, -105], + [-50, 21], + [-31, -36], + [-73, 5], + [-54, -35], + [-60, 4], + [-86, -41], + [109, -67], + [29, 24], + [51, -19], + [16, -45] + ], + [ + [6338, 7057], + [-23, 60], + [-141, -62], + [19, 172], + [-65, 10], + [0, 127], + [-54, -50], + [-31, 86], + [-39, 24], + [-100, -20], + [-153, 30], + [3, 109], + [-28, 41], + [-67, 15], + [8, -61], + [-79, -105], + [5, -66], + [-124, -56], + [-48, 43], + [-21, 90], + [60, 50], + [0, 93], + [-28, 94], + [15, 120], + [72, 137], + [211, 62], + [53, -27], + [47, 8], + [98, 127] + ], + [ + [5928, 8108], + [32, -28], + [60, -5], + [75, -37], + [18, -47], + [58, 31], + [-2, 88], + [38, 59], + [55, 5], + [-8, -78], + [188, 1], + [26, -70], + [128, 57], + [36, -10], + [17, -65], + [38, -18], + [-15, -93], + [84, -85], + [103, 28], + [96, -12], + [18, 45], + [198, 46], + [-52, 62], + [-30, 65], + [3, 122], + [62, -37], + [137, -23], + [22, 33], + [-53, 43], + [22, 77], + [66, -73], + [61, 58], + [52, -17], + [74, 73], + [-20, 83], + [-68, 14], + [23, 41], + [50, -5], + [5, -47], + [108, -24], + [27, -82], + [55, 15], + [28, -51], + [62, -32], + [89, -16], + [22, -114], + [83, -1], + [33, 18], + [85, -39], + [12, -63] + ], + [ + [7860, 6271], + [37, -43], + [95, -41], + [117, -15], + [29, 76], + [33, 22], + [-28, 58], + [78, 27], + [78, -43], + [-8, -36], + [87, -39], + [116, 8], + [58, 32], + [36, -31], + [83, -4], + [91, -149], + [54, -62] + ], + [ + [8816, 6031], + [4, -58], + [-80, -73], + [-18, -48], + [-60, -8], + [-51, 20], + [-54, -60], + [-50, -8], + [-52, 34], + [-67, -21], + [-27, -42], + [17, -86], + [-72, -3], + [-91, -57], + [21, -62], + [-21, -121], + [49, -81], + [-78, -120] + ], + [ + [7909, 4734], + [26, -4] + ], + [ + [7953, 4725], + [23, -27] + ], + [ + [7969, 4670], + [-39, -63] + ], + [ + [7906, 4509], + [-2, -15] + ], + [ + [7899, 4258], + [-86, -78], + [-30, -177] + ], + [ + [7783, 4003], + [-67, -114] + ], + [ + [7716, 3889], + [-16, 31], + [10, 81], + [-50, 47], + [-1, -96] + ], + [ + [7659, 3952], + [-2, -20] + ], + [ + [7657, 3932], + [-3, -10] + ], + [ + [7654, 3922], + [-105, 14], + [-89, 131], + [-91, 7], + [-32, 93], + [-53, 39], + [-21, -41], + [-75, 1], + [-142, 42], + [-17, -45], + [-89, -17], + [-18, 75], + [-157, 5], + [-34, 34], + [-12, 68], + [-48, 2], + [-99, 70], + [-41, -29], + [-24, 53], + [52, 41], + [-29, 59], + [-31, 8], + [-19, 124] + ], + [ + [9044, 8884], + [14, -101], + [116, -47], + [-23, -93], + [-26, -23], + [-45, -126], + [-61, -80], + [1, -63], + [-86, -158], + [-72, -13] + ], + [ + [5928, 8108], + [-57, 35], + [57, 85], + [1, 46], + [43, 146], + [-114, 15], + [44, 66], + [58, -13], + [6, 55], + [-45, 85], + [3, 90], + [-15, 66], + [36, 35], + [74, 15], + [58, 51], + [-24, 87], + [-98, 4], + [25, 80], + [-28, 21], + [32, 76], + [7, 80], + [-105, 1], + [-62, -20], + [10, 78], + [68, 13], + [15, 82], + [-41, 46] + ], + [ + [5876, 9433], + [55, 74], + [58, 23], + [45, -69], + [79, 35], + [126, 75], + [92, 10], + [152, -18], + [85, -79], + [104, 44], + [56, 0], + [74, 30], + [54, -17], + [-3, -82], + [66, -15], + [42, 18], + [5, 103], + [104, -22], + [16, -74], + [113, 62], + [1, 44], + [111, 59], + [62, -19], + [-1, -93], + [60, -41], + [65, 2], + [67, -52], + [84, 49], + [85, -23], + [3, -48], + [-48, -40], + [39, -63], + [44, -25], + [120, 29], + [53, -109], + [66, 15], + [52, -31], + [-22, -69], + [37, -47], + [16, -65], + [86, 23], + [-18, 68], + [79, 114], + [88, -68], + [133, -34], + [66, 7], + [0, -86], + [74, -122], + [158, -7], + [100, 16], + [62, -30], + [44, -53], + [79, 52] + ], + [ + [4262, 5971], + [96, -66], + [44, 2], + [131, -39], + [47, -73], + [78, -45], + [30, -52], + [-36, -24], + [10, -76], + [-62, -46], + [16, -79], + [37, -39], + [-60, -43], + [7, -74], + [-78, -45], + [-46, -126], + [15, -66], + [-39, -23], + [-4, -71], + [77, 31], + [20, -50], + [-85, -18], + [-13, -43], + [-73, 37], + [-68, -75], + [17, -31], + [66, 5], + [-56, -107], + [62, -30], + [40, -44], + [-58, -39], + [-10, -53], + [56, -107], + [47, -33], + [54, 17], + [18, -60], + [1, -87], + [-44, -52], + [41, -83], + [-51, -18], + [-17, -99], + [39, -26], + [-62, -63], + [-32, 27], + [16, 56], + [-60, 20], + [-73, -5], + [-7, -32], + [-72, -18], + [-79, 37], + [-84, 5], + [-5, -65], + [-128, -49], + [-13, -56], + [-68, -6], + [-1, -120], + [-71, -28], + [-21, 88], + [-42, 10], + [-10, -99], + [-23, -60], + [-56, -37], + [-27, -59], + [12, -41], + [-113, -18], + [85, -124] + ], + [ + [2250, 3584], + [-42, 23], + [-219, 209], + [-338, 394], + [-179, 235], + [-52, 157], + [39, 54], + [0, 60], + [53, 100], + [64, 69], + [116, 67], + [-9, -52], + [-58, -50], + [46, -72], + [78, 29], + [73, -15], + [43, 40], + [54, -44], + [-49, -80], + [-8, -144], + [103, -76], + [115, 30], + [77, 48], + [28, 74], + [150, -31], + [45, 32], + [87, 15], + [3, 37], + [59, 50], + [3, 99], + [52, -46], + [13, -62], + [72, -48], + [112, 14], + [11, 61], + [73, 16], + [-15, 117], + [95, 13], + [73, -96], + [52, -15], + [64, 108], + [58, -20], + [73, 60], + [68, 112], + [166, 59], + [96, -21], + [101, 3], + [64, 19], + [39, 54], + [18, 78], + [73, 89], + [3, 96], + [23, 39], + [90, 65], + [15, 81], + [56, 66], + [3, 40], + [87, 132], + [70, 49], + [25, 66] + ], + [ + [3442, 5192], + [45, -53], + [-66, -42], + [-54, -6], + [5, 70], + [70, 31] + ], + [ + [2730, 4911], + [55, -72], + [-38, -39], + [-84, 45], + [2, 36], + [65, 30] + ], + [ + [3281, 5108], + [48, -60], + [-92, -26], + [9, 69], + [35, 17] + ], + [ + [3715, 3236], + [-39, -52], + [22, -53], + [45, 0], + [104, 50], + [51, -47], + [34, -1], + [13, -75], + [-46, -24], + [26, -83], + [67, 42], + [14, 86], + [123, 22], + [2, 83], + [132, 45], + [103, -23], + [28, 36], + [69, 21], + [2, -64], + [128, -41], + [56, 54], + [79, -35], + [22, -58], + [50, 9], + [36, 71] + ], + [ + [4836, 3199], + [56, -1], + [15, 38] + ], + [ + [4907, 3236], + [31, 7] + ], + [ + [4938, 3243], + [130, -135], + [60, -139], + [-82, -7], + [-36, -83], + [1, -75], + [67, 18], + [36, -49], + [71, 43], + [10, -69], + [36, -67], + [-65, -26], + [-42, 21], + [-42, -43], + [25, -119], + [88, 50], + [24, -63], + [-66, -27], + [-30, -62], + [-124, -15], + [-42, -63], + [39, -74], + [92, -53], + [37, 32], + [154, -45], + [58, 7], + [32, -40], + [105, -71], + [42, -60], + [51, -22], + [42, -94], + [-27, -47], + [-13, -96], + [30, -27], + [105, 55], + [49, -42], + [-55, -120], + [54, -160], + [-29, -50] + ], + [ + [5723, 1426], + [-83, -38], + [-37, -51], + [-95, 1], + [-39, -48], + [-173, 20], + [-85, -24], + [-30, 23], + [-91, -36], + [-21, 36], + [0, 1], + [1, 1] + ], + [ + [5070, 1311], + [0, 1] + ], + [ + [5070, 1312], + [1, 1] + ], + [ + [5071, 1313], + [0, 1] + ], + [ + [5071, 1314], + [0, 8] + ], + [ + [5071, 1322], + [-1, 3] + ], + [ + [5070, 1325], + [-9, 4] + ], + [ + [5061, 1329], + [-29, 70], + [59, 27], + [-20, 85], + [-63, -8], + [-18, 55], + [83, 33], + [33, 63], + [-40, 109], + [-91, 28], + [-14, -17], + [-99, 2], + [-51, 59], + [-52, -109], + [-3, -53], + [-45, -61], + [-29, -81], + [11, -110], + [-45, -65] + ], + [ + [4648, 1356], + [-104, 31], + [-304, 172], + [-59, 65], + [-65, 21], + [-204, 157], + [-178, 160], + [-192, 192], + [-141, 168] + ], + [ + [5414, 6405], + [-116, 4], + [-90, -30], + [-87, 1], + [-3, -37], + [-109, -33], + [-36, 47], + [-64, 23], + [-148, -77], + [-126, -97], + [-73, -42], + [-77, -80], + [-26, -123], + [-122, 29], + [-71, -12] + ], + [ + [4266, 5978], + [58, 88], + [46, 138], + [-105, -26], + [-79, -79], + [-5, -130], + [-21, -40], + [-66, -29], + [-110, 30], + [-91, 70], + [-68, -56], + [-126, -22], + [-59, -65], + [-146, -29], + [-13, 11], + [-138, -18], + [-82, -53], + [-78, 11], + [-83, -37], + [-41, -10], + [-93, -65], + [-20, -73], + [-58, -98], + [-132, 60], + [-48, -20], + [-68, 11], + [-90, 49], + [-88, 4], + [-76, -21], + [-108, 77], + [-133, 38], + [-99, -17], + [-131, 30], + [-334, 216], + [-95, 46], + [-255, 168], + [-46, 37], + [-103, 44], + [-111, 97], + [-73, 45], + [-23, 45], + [-120, 107], + [37, 37], + [67, 11], + [-19, 106], + [13, 108], + [-58, 72], + [-64, -10], + [-94, 174], + [-41, 36], + [-27, 252], + [4, 83], + [54, 56], + [20, 55], + [58, 65], + [70, 27], + [54, 46], + [66, 102], + [60, 42], + [99, 30], + [-26, 37], + [-108, 14], + [-51, -49], + [-104, 0], + [-104, -170], + [-38, 58], + [14, 69], + [54, 50], + [39, 81], + [91, 56], + [-59, 33], + [-56, 4], + [-41, 49], + [23, 42], + [386, 4], + [31, 637], + [-12, 45], + [122, 48], + [28, -76], + [16, -126], + [52, -13], + [46, 126], + [77, 58], + [49, -64], + [24, -81], + [44, -21], + [176, 103], + [179, -72], + [220, 90], + [126, -22], + [118, 19], + [89, -24], + [196, 49], + [31, -21], + [238, -230], + [542, -4], + [92, 57], + [82, 203], + [261, 65], + [110, 49], + [130, 12], + [109, 58], + [62, 13], + [210, 72], + [49, -26], + [-37, -90], + [-38, -30], + [33, -102], + [-6, -102], + [133, -64], + [147, -17], + [212, 26], + [85, 37], + [-9, 106], + [142, 116], + [73, 30], + [28, -29], + [65, 1], + [78, 71], + [65, 20], + [22, 48], + [-28, 36], + [-153, -1], + [-54, 21], + [-5, 56], + [15, 118], + [-32, 39], + [5, 122], + [38, 65], + [48, 18], + [117, 87], + [23, -25], + [338, -130] + ], + [ + [326, 7737], + [75, -43], + [53, 24], + [-20, -101], + [6, -50], + [-45, -132], + [-65, -72], + [-26, -61], + [-106, -40], + [-51, 49], + [-79, 5], + [-35, -21], + [-33, 62], + [36, 41], + [110, 10], + [135, 161], + [0, 71], + [45, 97] + ], + [ + [326, 8094], + [32, -16], + [111, 0], + [-59, -98], + [-99, -26], + [-4, -94], + [-20, -93], + [-83, 3], + [-40, -53], + [-34, -177], + [-31, -64], + [-82, 95], + [29, 74], + [29, 3], + [-31, 101], + [85, 101], + [13, 58], + [42, 71], + [97, -6], + [45, 121] + ], + [ + [488, 8080], + [102, -2], + [39, -91], + [-62, -53], + [-24, -76], + [-37, 36], + [1, 89], + [-19, 97] + ], + [ + [397, 7890], + [47, -20], + [35, -62], + [-24, -60], + [-56, -43], + [-52, 41], + [-38, 0], + [-7, 66], + [95, 78] + ], + [ + [588, 7791], + [50, -60], + [-12, -100], + [-41, -36], + [-110, 12], + [36, 65], + [-16, 65], + [93, 54] + ], + [ + [498, 8017], + [-13, -143], + [-88, 19], + [-74, -15], + [-2, 64], + [58, 7], + [119, 68] + ], + [ + [230, 7776], + [27, -41], + [-12, -83], + [17, -64], + [-127, -36], + [34, 164], + [61, 60] + ], + [ + [661, 8033], + [70, -79], + [-43, -69], + [-52, -41], + [-60, 24], + [-7, 49], + [88, 64], + [4, 52] + ], + [ + [543, 7055], + [41, -48], + [-17, -111], + [-43, 31], + [-2, 71], + [21, 57] + ], + [ + [704, 6705], + [103, -45], + [5, -39], + [-81, -27], + [-60, 12], + [33, 99] + ], + [ + [566, 7291], + [-23, -74], + [-58, 12], + [81, 62] + ], + [ + [730, 6831], + [89, -44], + [-52, -24], + [-37, 68] + ], + [ + [4285, 6155], + [-37, -99], + [-31, 23], + [68, 76] + ], + [ + [8816, 6031], + [107, 59], + [58, 118], + [65, -6], + [36, 114], + [74, 1], + [-10, 67] + ], + [ + [9146, 6384], + [101, 0], + [96, 52], + [34, 41], + [38, -33], + [3, -64], + [28, -36], + [62, 6], + [13, -73], + [62, -81], + [53, -26], + [42, 47], + [63, 2], + [26, 35], + [-4, 63], + [62, 20], + [5, 72], + [-50, 21], + [-12, 38], + [76, 41], + [-16, 35], + [147, 96], + [44, -25], + [95, 31] + ], + [ + [6150, 4494], + [46, -64], + [-52, -42], + [92, -55], + [-17, -99], + [58, -55], + [-9, -78], + [16, -43], + [-94, -48], + [10, -51], + [-128, -59] + ], + [ + [6072, 3900], + [-91, 14], + [-29, 86], + [-41, 34], + [-62, -53], + [42, -89], + [-61, -36], + [-24, 33], + [-8, 77], + [-92, -20], + [4, -55], + [-147, -76], + [-15, -39], + [-107, -33], + [0, -46], + [-46, -35], + [46, -33], + [85, 44], + [10, -35], + [-49, -64], + [-69, 1], + [0, -141], + [-28, -32], + [-104, -23], + [-24, 42], + [-56, -10], + [-31, 36], + [-47, 3], + [-16, -61], + [-113, 18], + [-87, -26], + [41, -38], + [-15, -100] + ], + [ + [4907, 3236], + [-29, 27], + [-47, -21], + [5, -43] + ], + [ + [4262, 5971], + [4, 7] + ], + [ + [4882, 3490], + [10, -69], + [60, 53], + [-70, 16] + ], + [ + [9146, 6384], + [-79, 12], + [44, 192], + [34, 41], + [-28, 40], + [-78, -112], + [-45, -2], + [-27, 46], + [-26, 120], + [-86, -19], + [-44, 28], + [-76, -3], + [17, 57], + [-83, 3], + [-41, 104], + [103, 43], + [42, 81], + [-31, 86] + ], + [ + [9044, 8884], + [49, 27], + [-51, 59], + [50, 60], + [-18, 64], + [60, 65], + [17, -36], + [56, 0], + [82, 62], + [24, -80], + [-1, -77], + [-41, -54], + [161, -92], + [78, 52], + [39, -23], + [-39, -64], + [-45, 2], + [-26, -71], + [-54, 14], + [-12, -58], + [-43, -37], + [-47, -87], + [-17, -76], + [77, -94], + [92, -61], + [99, -28], + [-44, -111], + [98, -72], + [73, 34], + [68, 74], + [16, 110], + [66, -5], + [0, -52], + [83, -77], + [-6, -111], + [21, -50], + [-3, -108], + [-64, -36], + [-51, -108], + [25, -69], + [-22, -63], + [28, -53], + [45, 37], + [39, -10], + [58, -56], + [54, -92], + [59, -25], + [-18, -130], + [49, -52], + [83, 90], + [92, -5], + [79, -60], + [-45, -192], + [40, -36], + [-27, -36], + [-22, -94] + ], + [ + [6072, 3900], + [11, -51], + [89, -10], + [36, -53], + [-82, -74], + [69, -98], + [22, -91], + [43, 7], + [35, -44], + [55, -24], + [45, -63], + [65, -28], + [-37, -198], + [-49, -35], + [8, -68], + [-35, -63], + [-72, -21], + [-40, -125], + [100, -87], + [129, 1], + [21, -81], + [38, -36], + [-3, -106], + [-73, -46], + [-41, -58], + [-69, 0], + [-23, -142], + [1, -95], + [56, -7], + [74, -54], + [68, -78], + [28, -159], + [50, -9], + [25, -63] + ], + [ + [6616, 1841], + [-77, -16], + [-4, -35], + [-135, -50], + [-105, -11], + [-3, -59], + [-38, -3], + [-26, -52], + [-65, -43], + [-84, -9], + [-45, -25], + [-94, -15], + [-178, -90], + [-39, -7] + ], + [ + [5061, 1329], + [4, -2], + [1, 0], + [1, 0], + [0, -1], + [21, -61], + [-97, -67], + [-54, 43], + [-87, 16], + [-143, 87], + [-59, 12] + ], + [ + [5071, 1322], + [-1, 3] + ], + [ + [8469, 2834], + [31, 105], + [37, 15], + [-64, -1], + [-89, 64], + [-9, 54], + [40, 72], + [82, 22], + [61, 50], + [30, -27], + [54, 11], + [67, 2], + [68, 28], + [-77, 10], + [-82, 55], + [-48, -23], + [-220, 2], + [-68, -42], + [-66, 43], + [-9, 70], + [40, 47], + [22, 119], + [36, 66], + [77, 78], + [32, 101], + [-39, 40], + [-42, -18], + [-7, -69], + [-121, -17], + [-30, 122], + [5, 93], + [40, 201], + [41, 156], + [26, 55], + [41, 52], + [58, 33], + [85, -11], + [77, -58], + [114, -20], + [74, 131], + [37, 21], + [88, -46] + ], + [ + [9686, 3714], + [13, -75], + [51, -41], + [9, -54], + [55, -17], + [77, -113], + [5, -78], + [105, 19], + [43, -33], + [7, -58], + [-33, -42], + [23, -35], + [-7, -60], + [-62, -86], + [-20, -56], + [20, -41] + ], + [ + [8524, 2784], + [-68, 10], + [13, 40] + ], + [ + [8520, 2778], + [1, 1] + ], + [ + [7654, 3922], + [-12, -68], + [18, -62], + [52, -93], + [4, -206], + [19, -57], + [-44, -12], + [106, -227], + [-4, -54], + [-53, -77], + [-35, -164], + [-36, -96], + [-47, -67], + [-64, -60], + [-19, -42], + [-86, -108], + [-20, -81], + [-54, -86], + [54, -55], + [9, -37], + [-112, -62], + [-16, -24], + [-110, -41], + [-35, -44], + [-133, -25], + [-30, -29], + [-168, -77], + [-62, -77], + [-82, 1], + [-78, -51] + ], + [ + [7783, 4003], + [-39, -204], + [-28, 90] + ], + [ + [7659, 3952], + [-2, -20] + ], + [ + [11034, 6744], + [64, -82], + [110, -2], + [56, -62], + [6, -80], + [-28, -42], + [4, -58], + [54, -45], + [53, -12], + [46, 84], + [81, -29], + [41, -47], + [31, -78], + [-10, -50], + [52, -32], + [33, -78], + [41, -26], + [41, -106], + [-55, -32], + [75, -115], + [36, -22], + [35, 40], + [84, -11], + [30, -115], + [-27, -91], + [-49, -12], + [0, -50], + [-68, -115], + [-36, -183], + [-39, -15], + [-163, 24], + [-79, -71], + [-43, -97], + [-107, -74], + [-57, -17], + [-82, 53], + [-34, 3] + ], + [ + [10661, 5093], + [-7, 2] + ], + [ + [10905, 3671], + [-94, -33], + [-38, -34], + [-72, 0], + [-27, -55], + [36, -147], + [83, -66], + [15, -91], + [-24, -47], + [-77, -25], + [-30, 14], + [-79, -31], + [70, -56], + [17, -94], + [52, -121], + [146, 52], + [95, 3] + ], + [ + [10650, 2700], + [-27, 8] + ], + [ + [9846, 1478], + [11, 1] + ], + [ + [10063, 1464], + [-24, -43], + [12, -79], + [-46, -32], + [-3, -49] + ], + [ + [10002, 1261], + [-67, -119], + [-69, -27], + [23, -55] + ], + [ + [8824, 1281], + [-53, 185], + [-65, 170], + [2, 67], + [-53, -3], + [-35, 91], + [-28, 126], + [11, 68], + [-58, -10] + ], + [ + [10803, 1703], + [66, -99], + [0, -78], + [27, -18], + [-9, -149], + [17, -56], + [-55, -39], + [-61, 16], + [-48, -78], + [-39, 17], + [7, -165], + [-77, -46], + [-36, 1], + [-74, -73], + [-90, 23], + [-67, -32], + [-55, 34], + [-21, 88], + [-181, 110], + [-61, -42], + [-2, 69], + [-42, 75] + ], + [ + [10514, 2016], + [50, -28], + [53, -1], + [8, -46], + [90, -94] + ] + ], + "transform": { + "scale": [0.000527982289743159, 0.00047618216732406055], + "translate": [68.186249, 20.120943] + }, + "objects": { + "gujarat_district_2011": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5]], + "type": "Polygon", + "properties": { + "cartodb_id": 356, + "censuscode": 471, + "dt_cen_cd": 4, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Mehsana" + } + }, + { + "arcs": [[6, 7, 8, 9, 10, 11]], + "type": "Polygon", + "properties": { + "cartodb_id": 427, + "censuscode": 484, + "dt_cen_cd": 17, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Panch Mahals" + } + }, + { + "arcs": [[12, 13, 14, 15]], + "type": "Polygon", + "properties": { + "cartodb_id": 445, + "censuscode": 478, + "dt_cen_cd": 11, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Porbandar" + } + }, + { + "arcs": [[[16, 17, 18, 19, 20, 21, 22, 23]], [[24]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 555, + "censuscode": 492, + "dt_cen_cd": 25, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Surat" + } + }, + { + "arcs": [[25, 26, 27, 28, 29, -4]], + "type": "Polygon", + "properties": { + "cartodb_id": 556, + "censuscode": 475, + "dt_cen_cd": 8, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Surendranagar" + } + }, + { + "arcs": [[[30, 31, 32, 33, 34, 35, 36, 37, -9]], [[38, 39]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 598, + "censuscode": 486, + "dt_cen_cd": 19, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Vadodara" + } + }, + { + "arcs": [[40, 41]], + "type": "Polygon", + "properties": { + "cartodb_id": 600, + "censuscode": 491, + "dt_cen_cd": 24, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Valsad" + } + }, + { + "arcs": [[[-37, 42, -39, 43, 44, 45]], [[46, 47]], [[48, 49]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 19, + "censuscode": 482, + "dt_cen_cd": 15, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Anand" + } + }, + { + "arcs": [[54, 55, 56, 57, 58, 59, -18, 60, 61, 62, 63]], + "type": "Polygon", + "properties": { + "cartodb_id": 637, + "censuscode": 493, + "dt_cen_cd": 26, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Tapi" + } + }, + { + "arcs": [[-30, 64, 65, -5]], + "type": "Polygon", + "properties": { + "cartodb_id": 436, + "censuscode": 470, + "dt_cen_cd": 3, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Patan" + } + }, + { + "arcs": [ + [ + 66, + 67, + -45, + 68, + -53, + 69, + -51, + 70, + -47, + 71, + -49, + 72, + 73, + 74, + 75, + 76, + 77, + -26, + -3 + ] + ], + "type": "Polygon", + "properties": { + "cartodb_id": 3, + "censuscode": 474, + "dt_cen_cd": 7, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Ahmedabad" + } + }, + { + "arcs": [[78, -6, -66, 79, 80]], + "type": "Polygon", + "properties": { + "cartodb_id": 43, + "censuscode": 469, + "dt_cen_cd": 2, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Banas Kantha" + } + }, + { + "arcs": [[[81, -16, 82]], [[83]], [[84]], [[85]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 250, + "censuscode": 477, + "dt_cen_cd": 10, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Jamnagar" + } + }, + { + "arcs": [[86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, -14]], + "type": "Polygon", + "properties": { + "cartodb_id": 264, + "censuscode": 479, + "dt_cen_cd": 12, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Junagadh" + } + }, + { + "arcs": [ + [[-65, -29, 99, 100, -80]], + [[101]], + [[102]], + [[103]], + [[104]], + [[105]], + [[106]], + [[107]], + [[108]], + [[109]], + [[110]], + [[111]], + [[112]], + [[113]] + ], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 266, + "censuscode": 468, + "dt_cen_cd": 1, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Kutch" + } + }, + { + "arcs": [[-10, -38, -46, -68, 114, 115]], + "type": "Polygon", + "properties": { + "cartodb_id": 298, + "censuscode": 483, + "dt_cen_cd": 16, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Kheda" + } + }, + { + "arcs": [[-28, 116, 117, -89, 118, -87, -13, -82, 119, -100], [120]], + "type": "Polygon", + "properties": { + "cartodb_id": 467, + "censuscode": 476, + "dt_cen_cd": 9, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Rajkot" + } + }, + { + "arcs": [[-11, -116, 121, -1, -79, 122]], + "type": "Polygon", + "properties": { + "cartodb_id": 488, + "censuscode": 472, + "dt_cen_cd": 5, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Sabar Kantha" + } + }, + { + "arcs": [ + [[123, 124, -90, -118]], + [[125, -98]], + [[-121]], + [[-88, -119]] + ], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 17, + "censuscode": 480, + "dt_cen_cd": 13, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Amreli" + } + }, + { + "arcs": [[127, -35, 128, -24, 129]], + "type": "Polygon", + "properties": { + "cartodb_id": 73, + "censuscode": 488, + "dt_cen_cd": 21, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Bharuch" + } + }, + { + "arcs": [[[-78, 131, -124, -117, -27]], [[132, -74]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 74, + "censuscode": 481, + "dt_cen_cd": 14, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Bhavnagar" + } + }, + { + "arcs": [[134, -32, 135, -7]], + "type": "Polygon", + "properties": { + "cartodb_id": 161, + "censuscode": 485, + "dt_cen_cd": 18, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Dahod" + } + }, + { + "arcs": [[-122, -115, -67, -2]], + "type": "Polygon", + "properties": { + "cartodb_id": 190, + "censuscode": 473, + "dt_cen_cd": 6, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Gandhinagar" + } + }, + { + "arcs": [[136, -63, 137, -61, -17, -129, -34]], + "type": "Polygon", + "properties": { + "cartodb_id": 402, + "censuscode": 487, + "dt_cen_cd": 20, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Narmada" + } + }, + { + "arcs": [[-60, 138, -58, 139, 140, -42, 141, -19]], + "type": "Polygon", + "properties": { + "cartodb_id": 405, + "censuscode": 490, + "dt_cen_cd": 23, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "Navsari" + } + }, + { + "arcs": [[[142, -140, -57]], [[143, -55]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 564, + "censuscode": 489, + "dt_cen_cd": 22, + "st_cen_cd": 24, + "st_nm": "Gujarat", + "district": "The Dangs" + } + } + ] + } + } +} diff --git a/public/maps/haryana.json b/public/maps/haryana.json index 250ad714b9..82d85498a0 100644 --- a/public/maps/haryana.json +++ b/public/maps/haryana.json @@ -1 +1,2815 @@ -{"type":"Topology","arcs":[[[6319,9968],[-51,-223],[59,-80],[-27,-95],[43,-121],[-22,-121],[31,-16],[19,-43],[-7,-90]],[[6364,9179],[-61,30]],[[6303,9209],[-52,39],[-91,-131],[-40,14],[-36,-6],[-6,-85],[-92,15],[-33,86],[-33,-30],[-14,-87],[-24,-43],[-78,-58],[-62,42],[-66,11],[-67,-27],[-3,34],[-111,-126],[-14,-75],[-114,-8],[-22,-28],[42,-121],[-67,-39],[-10,-54],[-28,13],[-15,-35],[-126,-1],[-179,-29],[-23,-46],[-46,-35],[4,-137],[-69,-25],[-12,-129],[-27,-30],[-39,39],[-10,97],[-85,-33],[-3,36],[-64,-22],[-60,9],[-91,192],[-121,-57],[-3,70],[-108,-21],[-22,38],[-146,24],[26,-142],[-156,-26],[-22,-110],[61,-52],[37,-64],[-31,-20],[3,-36],[-213,-67],[-22,12],[-101,-4],[-60,63],[-177,-131],[95,-104]],[[3477,7769],[-23,-94],[-95,11],[-61,-22]],[[3298,7664],[-37,39],[-12,41],[28,123],[-4,43],[-51,113],[21,33],[39,22],[42,-2],[48,22],[20,28],[2,35],[-108,120],[-84,28],[-2,36],[53,108],[35,25],[152,18],[51,23],[49,65],[-84,142],[21,115],[-49,63],[12,30],[35,21],[60,7],[-16,77],[24,22],[-5,89]],[[3538,9150],[54,82],[6,46],[-47,44],[-57,27],[2,33],[31,46],[84,61],[44,183],[54,8],[48,-49],[38,-14],[-4,31],[-67,107],[7,28],[99,57],[15,34],[72,-8],[21,43],[1,66],[30,22],[26,48],[2,59],[55,69],[42,-5],[103,57],[-3,38],[-33,23],[38,43],[266,-163],[23,-67],[79,61],[60,-5],[52,-29],[29,-103],[24,-8],[103,31],[88,-13],[40,34],[12,94],[67,-10],[66,24],[42,-17],[52,-75],[39,-25],[43,16],[37,257],[17,17],[165,-1],[100,63],[104,-88],[103,40],[39,-15],[18,-104],[44,-71],[47,-30],[39,-83],[67,-26],[77,41],[25,-44],[46,-36],[107,-26]],[[9391,3487],[32,9],[99,-47],[2,-44],[121,-5],[35,48],[1,60],[-109,99],[6,74],[36,93],[-36,98],[-3,157],[50,-10],[44,-30],[55,-85],[70,-10],[50,59],[97,-39],[79,42],[52,129],[236,-18],[36,23]],[[10344,4090],[77,42],[48,-14],[60,21],[94,-27],[103,66],[159,-62],[23,17],[2,29],[-56,39],[-10,22],[18,25],[25,4],[41,-46],[75,-24],[67,-63],[35,-7],[45,33],[21,-2],[152,-126],[-27,-84],[5,-29],[67,-134],[103,-33],[40,-35],[60,-95]],[[11571,3607],[-107,-95],[4,-294],[56,-65],[88,-46],[34,-35],[70,11],[69,-20],[61,-52],[9,-30],[-11,-18]],[[11844,2963],[-106,-41],[-17,-47],[-47,-27],[-12,-25],[16,-66],[-86,-71],[-7,-55]],[[11585,2631],[-127,59],[-20,31],[-41,14],[-95,-28],[-49,38],[-22,-17],[-69,40],[-42,-77],[-71,39],[13,102],[-127,17],[-32,22],[-25,267],[-41,100],[-71,-1],[-12,31],[-29,9],[-91,-54],[-16,-34],[-95,23],[-52,-98],[-49,1],[-16,-24],[63,-80],[-15,-41],[-57,-60],[-28,-4],[-30,8],[-53,49],[-44,-106],[-44,-58]],[[10198,2799],[-98,46],[-116,22],[-30,-14],[-64,-96],[-46,42],[-9,30],[-205,104],[-86,-10],[-86,11],[-22,57],[40,194],[-124,26],[25,139],[-13,46],[21,59]],[[9385,3455],[6,32]],[[10404,5807],[-70,-130],[-38,-9],[-48,-44],[-11,-29],[-79,-46],[-64,4],[-38,61],[-98,-30],[-19,-52],[79,-46],[41,-50],[-81,-82],[-78,-118],[-29,-1],[-50,36],[11,43],[-18,31],[-49,10],[-51,-44],[-55,5],[-78,35],[3,91],[-92,0],[-64,33],[-14,94],[-41,21],[-66,98],[-56,-58],[6,-37],[54,-53],[-79,-92],[-69,7],[-51,-27],[-49,-198],[-60,-29],[-172,57],[-41,-42],[-313,-7],[-149,-72],[9,-74],[-11,-74],[-47,-44]],[[8279,4945],[-98,82],[-15,47],[31,67],[55,48],[22,88],[-64,93],[-250,166],[-3,73],[120,216],[-5,35],[-129,102],[-122,49],[-42,-141],[-17,98],[-41,18],[-170,9],[-19,20],[-12,152],[-61,77],[-17,47],[36,86]],[[7478,6377],[85,76],[-23,266],[168,44],[29,35],[29,4],[61,82]],[[7827,6884],[214,0],[127,-65],[102,37],[31,-8],[80,-67],[67,-26],[63,32],[77,143]],[[8588,6930],[84,-64],[59,-12],[118,114],[136,-197],[78,6],[93,-19],[92,0],[27,-22],[116,46],[52,-13],[95,-79],[119,-129],[18,-132],[-13,-115],[59,-38],[60,18],[38,-26],[53,-66],[-14,-17],[35,-65],[150,4],[38,-36],[-1,-82],[-34,-60],[-31,-127],[30,-26],[170,9],[90,40],[52,-7],[47,-28]],[[8588,6930],[4,84],[44,144],[103,102],[-53,80],[-39,127],[0,47],[-73,94],[6,24],[20,17],[22,-25],[74,-28],[98,-20],[27,-71],[32,-28],[45,-3],[40,21],[24,77],[-43,148],[23,105],[163,14],[50,20],[213,-108],[89,13]],[[9457,7764],[81,-35],[44,-57],[134,46],[102,80],[45,0],[62,-35],[43,-209],[113,-84],[170,-23],[46,-47],[26,-7],[41,82],[46,32],[49,12],[97,-47],[52,3],[65,44],[70,-14],[116,18],[20,-15],[-8,-122],[74,-41],[85,23],[54,-52],[95,24],[81,-88],[49,32],[124,-17]],[[11433,7267],[-25,-85],[51,-92],[-71,-139],[84,-92],[67,-44],[22,-59],[1,-80],[124,-131],[52,-22],[44,-48],[-103,-244],[3,-43],[58,-33],[4,-17],[-37,-74],[23,-26],[83,-36],[-1,-19],[-68,-46],[-101,-22],[-15,-47],[36,-63],[-13,-22],[-82,-8],[-96,-87],[-36,10],[5,67],[-28,33],[-81,3],[-43,31],[-70,10],[-32,48],[-43,-56],[-69,1],[-78,-174],[-107,-7],[-99,18],[-42,-63],[-55,28],[-22,-56],[-32,-11],[-25,14]],[[10616,5584],[-80,42],[-64,-8],[-35,166],[-33,23]],[[11356,13962],[44,-93],[37,-32],[165,-42],[68,-33],[61,-93],[0,-29]],[[11731,13640],[-70,-29],[-88,-141],[-26,-91],[14,-91],[-32,-23],[0,-15],[42,-18],[18,-51],[-44,-108],[-2,-75],[-67,-16],[16,-27],[14,13],[23,-22],[25,14],[16,-18],[-8,-31],[66,-73],[-24,-25],[29,-52],[-22,-32],[-59,-5],[-4,-37],[-127,-78],[-19,-58],[14,-33],[-25,-61],[14,-32],[21,-10],[43,17],[35,-9],[22,-32],[-3,-37],[-31,-46],[-43,-22],[-22,44],[-53,33],[-153,-31],[-6,-28],[-64,-32],[-15,-34],[6,-30],[108,-48],[34,-26],[12,-30],[-58,-104],[-84,58],[-29,-18],[16,-56],[-27,-46],[-3,-67]],[[11111,11871],[-12,-22]],[[11099,11849],[-80,25],[-86,95],[-114,81],[-78,13],[-87,-64],[-50,30],[-25,31],[-2,48],[58,34],[14,39],[-184,35],[-62,-50],[-75,64],[9,37],[-17,21],[-84,65],[8,78],[-49,20],[-96,3],[-35,-33],[-8,-71],[-61,-72],[-94,-19],[-48,-47],[-56,-26],[-50,8],[-273,-47],[-38,-75],[-82,-69],[-50,-29],[-28,12]],[[9276,11986],[-21,73],[81,90],[1,22],[-20,15],[8,44],[-27,19],[-122,25],[33,50],[0,26],[-69,62],[-23,49],[-27,12],[-35,-4],[-136,-119],[-51,-18],[2,24],[40,21],[16,34],[8,102],[244,35],[22,-8],[56,100],[15,-36],[107,74],[48,0],[46,64],[-10,31],[17,32],[21,-22],[38,22],[39,-5],[12,24],[46,0],[18,14],[-1,34],[60,41],[41,53],[-35,38],[-82,-11],[-10,15],[39,42],[-10,15],[-46,3],[-20,62],[113,54],[-6,74],[102,30],[38,58],[24,5],[15,-18],[-11,-53],[28,-32],[161,-31],[103,105],[31,-63],[107,-58],[7,-67],[60,-41],[-17,-110],[46,-23],[46,20],[82,96],[45,28],[17,41],[-24,22],[-88,15],[-7,96],[-58,57],[-5,21],[40,128],[-7,37],[-28,19],[-5,25],[22,24],[31,-4],[48,23],[21,50]],[[10520,13658],[40,-41],[9,-53],[19,-25],[37,-9],[39,12],[100,97],[35,72],[201,85],[18,79],[69,41],[33,104],[41,-5],[37,-30],[6,-38],[33,-46],[52,13],[67,48]],[[8963,11716],[148,118],[78,84],[68,40]],[[9257,11958],[26,-70],[-20,-85],[8,-54],[-102,-117],[-112,-30],[22,39],[-5,17],[-64,46],[-47,12]],[[8279,4945],[1,-1]],[[8280,4944],[8,-75]],[[8288,4869],[4,-35],[182,-25],[14,-28],[-16,-103],[61,-107],[-7,-23],[-41,-25],[-74,-7],[-50,-224],[-67,7],[-40,197],[-187,74],[-59,-10],[-3,-257],[-26,-60],[-29,-165],[-32,-37],[-40,26],[-62,0],[-37,-20],[-25,-70],[39,-48],[-9,-102]],[[7784,3827],[1,-2]],[[7785,3825],[-61,-2],[-10,0],[-28,-48],[-40,-10],[-51,33],[-18,85],[-51,33],[-47,-2],[-43,-111],[-59,-11]],[[7377,3792],[-4,0]],[[7373,3792],[-36,8]],[[7337,3800],[-61,-29],[-40,68],[0,52],[-36,1],[-42,-64],[-121,8],[-39,-105],[-43,-17],[-82,-150],[-96,9],[-122,-28],[-28,21],[9,44],[-40,40],[11,97],[-72,37],[-402,-51],[-18,-11],[-8,-46],[18,-86],[-29,-48]],[[6096,3542],[-24,-8],[-1,-25],[-207,53],[-29,54],[-43,-15],[-6,27],[-61,13],[-64,-46],[-75,15],[-20,63],[84,88],[0,56],[-29,33],[-185,72],[7,70],[-200,57],[-112,105],[-2,73],[-115,55],[-32,-7],[-47,269],[-37,18],[-105,3],[-34,49],[-92,-10],[-28,137],[-40,28],[1,130],[-19,59],[-19,213],[-20,49],[12,35],[-30,28],[-25,78],[-75,74],[23,43],[-4,60],[25,29],[20,102],[-13,33],[-33,12],[-21,49],[-42,17],[2,185],[-91,135],[7,56],[124,16],[26,50],[-3,46],[58,67],[-2,33]],[[4500,6368],[157,-31],[136,37],[60,4],[77,-20],[53,-64],[-12,-37],[59,-83],[24,7],[112,-130],[108,-35],[182,0],[62,-30],[25,8],[36,86],[84,38],[83,-51],[69,-16],[85,70],[28,165],[55,16],[53,52],[3,21],[38,-18],[50,194],[77,42],[223,-157],[20,56],[-28,75],[-38,51],[-2,43],[100,180],[137,-88],[108,-44],[53,-128],[97,52],[42,4],[154,-44],[25,-40],[132,-54],[24,0],[-50,110],[2,108],[49,8],[83,-41],[10,-76],[-17,-82],[33,-80],[117,-69]],[[13053,2438],[-25,58],[-129,22],[-104,-84],[-42,57],[-43,-35],[-120,30],[-12,-25],[-40,36],[8,17],[-48,81],[16,27],[78,18],[-23,48],[-32,2],[-96,49],[-71,-79],[-168,91],[7,39],[-12,10],[-61,-38],[-64,59],[-59,23],[-17,19],[25,56],[-3,36],[-83,16],[-8,-61],[-83,53]],[[11571,3607],[212,35],[109,63],[12,89],[-44,57],[-29,4],[-3,18],[29,56],[44,42],[49,5],[73,55],[30,5],[78,-33],[46,-2],[118,97],[37,-36],[74,-27],[16,-59],[51,-45],[94,-25],[9,-21],[-23,-19],[13,-19],[120,-20],[44,-110],[165,-87],[-3,-47],[-30,-19],[108,-145],[9,-54],[-131,-97],[78,-69],[59,-80],[-13,-126],[-88,3],[-31,-18],[10,-37],[192,-75],[114,1],[11,-32],[-24,-34],[-86,-52],[33,-109],[-18,-25],[-27,-1],[-10,23],[-56,32],[-36,-5],[13,-129],[40,10],[18,40],[138,-22],[19,-45],[-45,-54],[-86,-26]],[[6364,9179],[10,-67],[-10,-39],[-96,-133],[-7,-59],[21,-24],[96,-23],[165,-70],[8,-21],[-32,-29],[-11,-79],[95,-50],[46,-58],[0,-32],[35,-34],[85,72],[105,18],[34,-41],[30,-119],[71,-5],[93,-54],[25,7],[99,88],[76,-13],[222,-88],[85,-86],[8,-39],[-22,-39],[-107,23],[-64,-15],[-76,-54],[-27,-41],[102,-70],[0,-30],[-81,-146],[2,-33],[82,-66],[36,-99],[47,-60],[32,-104],[98,-48],[115,-19],[30,-30],[17,-41],[16,-214],[64,-131],[-54,-100]],[[4500,6368],[-21,137],[-25,21],[-136,24],[-166,-17],[-9,27],[34,93],[-13,43],[-33,27],[2,41],[-213,27],[11,120],[-10,74],[46,41],[20,44],[-150,69],[28,37],[6,93],[84,4],[25,17],[27,70],[-18,118],[-44,37],[5,38],[52,53],[-16,104],[-69,10],[-93,-44],[-33,-35],[-21,-102],[-130,48],[35,75],[5,184],[-21,16],[-84,-55],[-88,-24],[-10,-14]],[[6303,9209],[61,-30]],[[11396,8617],[62,-32],[7,-22],[-16,-47],[-46,-48],[4,-56],[14,-39],[75,-61],[-35,-28],[-93,-34],[3,-94],[26,-58],[97,0],[32,-46],[-17,-18],[18,-71],[-51,-74],[9,-25],[-64,-112],[56,-102],[6,-40],[-5,-26],[-75,-62],[55,-115],[8,-91],[-33,-49]],[[9457,7764],[-4,33],[-75,15],[-91,69],[-11,79],[-19,25],[50,104],[3,122],[10,25],[76,22],[18,19],[81,13],[21,25],[58,-9],[105,44],[10,148],[53,94],[30,112]],[[9772,8704],[67,26],[56,-21],[36,8],[21,43],[37,18],[88,-52],[44,-9],[84,43],[12,41],[40,18],[89,-25],[56,-82],[65,61],[82,-22],[-17,-28],[64,-27],[30,-30],[37,-2],[67,43],[92,-76],[65,-21],[125,14],[136,-44],[189,16],[59,21]],[[10616,5584],[-21,-82],[24,-41],[15,-100],[-36,-70],[51,-62],[2,-49],[-40,-93],[56,-56],[-37,-105],[6,-30],[-76,-13],[-28,-25],[-24,-57],[70,-95],[-44,-42],[-57,43],[-71,-24],[-68,24],[-99,-217],[-20,-11],[-65,6],[-9,-42],[20,-123],[82,-44],[11,-28],[73,-65],[13,-21],[-25,-46],[25,-26]],[[9391,3487],[3,13]],[[9394,3500],[-33,72],[-93,108],[-68,47],[-29,4],[-46,-120],[-145,-25],[-49,-68],[-30,13],[-1,33],[-23,23],[-92,-6],[-28,26],[2,65],[-16,46],[-120,41],[-79,-40],[-83,4],[-24,26],[-7,64],[-31,14],[14,50],[-27,11],[-91,-8],[-7,29],[-15,5],[-53,5],[-36,-16],[1,-20],[36,-29],[25,-55],[-102,-72],[-110,38],[-15,114],[-15,20],[-16,-48],[-27,-18],[8,-73],[-14,-15],[-54,5],[-16,34],[-64,-39],[-2,-33],[-38,1]],[[7781,3713],[0,46]],[[7781,3759],[4,28]],[[7785,3787],[-1,40]],[[8288,4869],[-8,75]],[[8534,11724],[-47,-35],[-53,-124],[-65,-58],[-16,-34],[35,-69],[41,-41],[45,33],[96,-25],[-54,-104],[15,-99],[-34,-55],[7,-22],[59,10],[40,-51],[-16,-110],[-36,-100],[221,-73],[138,-188],[32,15],[2,34],[147,44],[16,70],[-32,100],[107,30],[1,43],[29,57],[41,-14],[103,96],[39,0],[30,-64],[32,22],[2,-72],[35,-78],[33,64],[67,-39],[78,30],[100,-15]],[[9772,10902],[-21,-82],[-89,-113],[-72,-7],[-54,60],[-27,-13],[-31,-123],[-42,-14],[0,-15],[41,-17],[21,-27],[-10,-125],[103,-31],[13,-32],[-58,-74],[-15,-85],[-52,-79],[2,-24],[40,-50],[-1,-130],[-28,-81],[11,-26],[80,-32],[5,-42],[-51,-60],[-74,66],[-18,-62],[-25,-12],[-91,7],[-27,-63],[-101,-59],[-83,-77],[-159,4],[-105,-68],[-30,-6],[-8,-18],[65,-95],[3,-44],[-69,-50],[-32,-93],[0,-54],[-66,-9],[-36,-54]],[[8681,8993],[-30,-52]],[[8651,8941],[-10,-6],[-50,19],[33,83],[-15,29],[-37,-12],[-26,-27],[-39,-3],[-37,16],[-35,37],[-51,-5],[-55,-34],[-117,-5],[-63,21],[-20,22],[-7,152],[-107,28],[-162,-16],[-33,-27],[-2,-53],[-32,-50],[-30,-23],[-50,5],[-29,88],[-92,50],[-14,141],[-18,46],[-41,15],[-115,4],[-12,82],[8,66],[-31,38],[8,53],[-76,83],[-4,36],[22,59],[-12,30],[14,56],[81,88],[24,51],[-8,110],[20,1],[14,61],[39,71],[-9,172]],[[7475,10493],[13,-1],[3,48],[71,6],[29,26],[29,44],[-14,33],[-57,44],[-74,7],[-46,-12],[-54,22],[-12,167],[-45,0],[-22,26],[54,84],[107,-10],[-1,38],[-38,65],[18,36],[-40,149],[6,59],[106,51],[-2,12],[-69,25],[-3,15],[153,228],[38,45],[35,10],[18,36],[-113,23],[-163,123],[15,28],[50,-34],[26,6],[-43,94],[9,21],[29,-14],[138,-137],[7,-27],[28,-14],[123,-26],[57,24],[85,-48],[43,-2],[64,37],[47,56],[-2,19],[-96,85],[74,20],[22,-15],[66,-110],[47,-18],[42,0],[24,18],[-23,88],[73,57],[-88,123],[76,75],[49,16],[42,-22],[37,-86],[2,-33],[-30,-68],[39,-87],[22,-17],[43,0],[0,-125],[35,-52]],[[11776,10954],[-94,-89],[-39,-76],[20,-55],[-10,-103],[-64,-129],[6,-80],[-65,-76],[-7,-98],[-87,-69],[-59,-16],[2,-55],[-25,-75],[41,-27],[0,-33],[75,-90],[11,-75],[-74,-22],[-19,-26],[-4,-54],[48,-83],[-8,-21],[-85,-55],[-37,-67],[-3,-52],[-25,-22],[-39,-81],[18,-50],[53,-65],[33,-115],[-88,-39],[-19,-54],[54,-103],[95,-71],[15,-54],[-34,-51],[-5,-65],[39,-41]],[[9772,8704],[-26,37],[-74,42],[-38,2],[-99,-31],[-167,74]],[[9368,8828],[-9,2]],[[9359,8830],[-72,-96],[-99,17],[-71,-12],[-216,-76],[-98,-113],[-72,-124],[-28,-13],[-84,15],[-66,-45],[-73,23],[0,80],[52,22],[38,92],[11,96],[33,85],[71,-7],[32,20],[-4,40],[-29,15],[-37,86]],[[8647,8935],[34,58]],[[9772,10902],[32,44],[89,21],[47,30],[73,-70],[35,17],[30,-18],[16,-91],[33,-5],[2,72],[88,35],[21,-3],[9,-22],[141,-32],[46,21],[152,-11],[124,128],[29,72],[90,2],[-3,-66],[27,5],[65,-33],[58,35],[96,-39],[31,20],[38,-8],[83,13],[94,136],[-6,63]],[[11312,11218],[70,-40]],[[11382,11178],[22,-16],[-12,-65],[11,-13],[72,32],[36,-18],[26,12],[89,-79],[-14,-36],[33,-38],[32,-12],[99,9]],[[11324,11211],[-12,7]],[[8534,11724],[155,-16],[44,-98],[140,29],[90,77]],[[9257,11958],[19,28]],[[11099,11849],[0,1]],[[11099,11850],[66,-49],[50,-57],[-24,-24],[-41,-113],[59,-66],[11,-47],[84,-25],[4,-36],[-32,-19],[-2,-58],[22,-28],[56,-5],[1,-39],[-31,-52],[2,-21]],[[7785,3825],[0,-38]],[[7781,3759],[0,-55]],[[7781,3704],[-26,-83],[77,-18],[-9,-94],[25,-28],[94,-23],[10,-36],[75,0],[49,-88],[29,-24],[20,-76],[-33,-15],[-10,-40],[-34,-17],[-13,-32],[24,-107],[-39,-52],[31,-55],[-28,-158],[-8,-13],[-57,3],[-28,-72],[-64,-20],[-12,-31],[34,-51],[3,-42]],[[7891,2532],[-82,-4],[-42,-19],[-4,-48],[87,-29],[-15,-27],[28,-29],[29,0],[12,18],[27,-8],[86,-88],[78,-30],[-69,-90],[-33,-14],[-76,26],[-26,-4],[-46,-49],[118,-43],[31,-74],[22,-18],[74,6],[-37,-137],[-40,-77],[-86,-41],[-83,24],[-31,19],[0,92],[-34,47],[-74,47],[-59,10],[-32,-9],[-44,-60],[-32,-6],[-75,2],[-36,25],[-97,-7],[-2,-50],[71,-66],[20,-1],[26,35],[40,-10],[1,-41],[-44,-6],[-33,-41],[-93,1],[-83,-110],[-4,-31],[37,-20],[-7,-39],[79,-35],[-20,-152],[-31,-62],[-5,-64],[14,-25],[124,-52],[5,-52],[-41,-31],[-5,-25],[17,-60],[51,-40],[4,-36],[74,-34],[-66,-60],[-59,13],[-59,-90],[-32,-24],[-130,98],[-64,27],[4,65],[-27,36],[-146,67],[-35,-83],[-86,29],[-44,-44],[-173,71],[-18,-25],[-127,35],[-53,0],[5,33],[39,28],[8,75],[-34,30],[43,48],[-92,49],[-116,-13],[0,47],[-22,32],[64,86],[26,-53],[80,-15],[43,101],[-21,20],[80,107],[-21,12],[-39,-15],[-75,23],[4,59],[101,2],[39,14],[6,27],[-20,23],[-56,16],[-11,61],[18,29],[26,8],[127,-9],[4,49],[-24,36],[49,8],[70,60],[11,25],[-19,48],[-66,24],[-4,-38],[-56,-97],[-74,-48],[-31,7],[-12,23],[56,65],[-23,47],[-22,19],[-77,-1],[-98,46],[48,77],[127,84],[61,4],[19,34],[-4,74],[22,28],[49,6],[71,72],[165,-24],[-5,-112],[42,-12],[56,8],[17,13],[4,43],[-77,82],[-39,127],[-88,19],[-6,13],[36,43],[4,46],[-72,15],[-45,42],[-62,28],[-16,54],[48,134],[-138,71],[-81,136],[-55,-26],[-14,71],[22,10],[-1,13],[-124,33],[4,53],[-25,61],[-109,54],[-1,48],[-33,17]],[[7337,3800],[36,-8]],[[7373,3792],[4,0]],[[12268,938],[-22,-53],[14,-15],[-62,-37],[-28,10],[-75,-14],[4,-54],[-27,-10],[-27,-43],[-63,44],[-42,-88],[-78,-57],[-31,14],[-2,36],[-43,-3],[-43,26],[-20,56],[-36,45],[-27,-33],[6,-80],[-86,-65],[-28,27],[30,48],[48,19],[1,20],[-35,37],[-49,-15],[-45,11],[13,-63],[-9,-50],[-18,-25],[-51,-13],[-38,-36],[-28,62],[-81,-19],[-105,77],[-18,39],[-31,14],[-38,-5],[-77,41],[-62,-105],[-14,-96],[33,10],[47,-25],[46,-67],[50,22],[24,-9],[51,-121],[-112,-51],[-38,21],[-22,45],[-44,37],[-75,-13],[-34,-38],[-39,17],[-66,-172],[-37,-236],[-156,87],[-44,-69],[-79,-23],[-59,115],[22,29],[-9,18],[-59,46],[8,19],[75,-42],[43,10],[18,20],[-50,75],[-61,15],[-22,23],[3,32],[28,53],[13,178],[22,57],[22,18],[-4,31],[16,30],[-27,65],[15,55],[17,16],[61,-20],[20,12],[14,100],[-22,104],[6,84],[52,8],[3,110],[-75,10],[-10,18],[2,134],[24,122],[-27,93],[34,71],[49,226],[37,56],[66,349],[-87,22],[0,31],[-88,34],[-159,141],[8,24],[60,39],[-13,14],[-131,19],[-11,62],[-40,3]],[[10234,2729],[-36,70]],[[11585,2631],[35,-2],[44,-27],[-17,-62],[-117,13],[-14,-101],[-57,-31],[-25,-68],[-45,-51],[5,-27],[47,-16],[4,-36],[-34,-41],[10,-38],[-34,-70],[-3,-52],[-47,-27],[-22,8],[-65,-21],[64,-85],[-11,-94],[-38,-33],[28,-38],[-35,-32],[-78,-26],[-41,-66],[198,-121],[110,12],[17,-47],[47,-51],[53,-5],[37,-35],[26,41],[27,-12],[118,-135],[48,-86],[107,-83],[108,-36],[17,9],[40,93],[44,-16],[62,-60],[12,-88],[58,-50]],[[13053,2438],[-55,-9],[-16,-83],[-34,-20],[3,-13],[45,-15],[5,-40],[-1,-23],[-35,-47],[4,-70],[-9,-14],[-18,10],[-14,50],[-19,1],[-22,-20],[-18,-85],[59,-121],[-22,-56],[6,-24],[46,-23],[72,-82],[22,-57],[100,-82],[-109,-95],[4,-25],[19,-13],[90,0],[0,-78],[-73,-83],[-34,26],[-68,-31],[-45,62],[-31,-17],[-39,-40],[26,-95],[-20,-83],[-103,-78],[-102,77],[-42,8],[-46,-68],[20,-59],[32,-34],[-6,-17],[-84,-1],[-81,23],[-91,-34],[-57,15],[-44,-37]],[[10520,13658],[13,99],[-151,76],[74,51],[16,35],[-30,27],[25,79],[-26,38],[37,14],[27,40],[-13,29],[-38,13],[-9,55],[-68,34],[-47,63],[-60,3],[16,185],[-97,-108],[-21,-5],[1,41],[-69,-17],[-5,144],[80,113],[-8,49],[-41,30],[-9,45],[23,114],[80,138],[-56,57],[-7,100],[-18,35],[-114,48],[-137,163],[-28,81],[32,62],[173,115],[18,-43],[-21,-70],[56,-90],[62,-44],[65,-39],[214,126],[104,-205],[4,-82],[66,-39],[46,-87],[64,-15],[44,-44],[32,69],[27,24],[14,-8],[17,-132],[-49,-58],[68,-51],[1,-67],[36,-49],[21,-8],[44,14],[23,57],[58,-32],[128,-19],[108,-67],[-10,-41],[14,-9],[27,11],[34,-23],[33,-52],[122,-89],[-15,-19],[21,-79],[-10,-67],[41,-75],[-21,-187],[-76,-78],[-119,-75]],[[9394,3500],[-9,-45]],[[10234,2729],[-89,-1],[-42,-49],[-77,6],[-19,-20],[18,-55],[-33,-28],[-17,24],[-16,-27],[9,-87],[17,-25],[-21,-63],[-156,-51],[-69,-84],[-124,16],[-48,-80],[-37,-5],[-35,-81],[-103,6],[-30,-11],[-18,-56],[4,-83],[13,-111],[45,-73],[-6,-49],[-100,-40],[-162,-4],[-65,-46],[-70,-80],[-33,-9],[-57,-49],[-36,-4],[-31,42],[32,125],[-12,97],[13,64],[-54,31],[-62,-49],[-27,-1],[-24,6],[-32,52],[-131,-12],[-34,24],[19,60],[110,-18],[60,30],[-119,104],[-48,-6],[-44,39],[36,82],[17,8],[50,4],[21,-33],[87,3],[2,77],[-48,1],[-5,25],[17,27],[-53,5],[-32,18],[5,78],[-25,4],[-39,-19],[-81,3],[-43,-30],[-129,9],[-18,-32],[-69,-14],[-73,26],[-28,109],[-45,37],[-149,46]],[[7781,3704],[0,9]],[[3298,7664],[-51,-81],[-49,-2],[-71,46],[-66,117],[-68,-20],[-14,-51],[-57,-37],[-145,-14],[-24,-78],[-129,28],[-66,31],[11,37],[-61,82],[-2,42],[-46,70],[-68,22],[-78,-37],[-63,-58],[-60,45],[-103,4],[-45,64],[-10,47],[45,65],[2,36],[-22,32],[-43,25],[-38,128],[-72,32],[-93,75],[-77,-8],[-29,54],[-97,37],[-136,-26],[-144,-184],[-83,-19],[-107,-11],[-87,73],[-97,-17],[-165,35],[-28,-87],[-9,-111],[-197,-14],[18,126],[-14,37],[-102,117],[-12,94],[-52,60],[-25,19],[-89,12],[-9,118],[24,74],[35,7],[124,-20],[31,-18],[54,102],[5,58],[93,168],[-12,21],[-127,78],[-66,76],[18,25],[21,281],[46,39],[-32,93],[66,176],[-5,44],[27,27],[19,73],[-8,92],[19,29],[-2,30],[-34,24],[-21,42],[-26,9],[-36,-7],[-29,-66],[-144,3],[-51,-60],[-232,14],[-28,208],[23,70],[91,117],[175,61],[90,126],[-7,38],[-77,140],[-98,8],[-25,17],[60,170],[24,40],[117,-108],[90,-16],[55,-54],[174,-42],[88,-7],[-34,47],[4,39],[39,41],[137,87],[10,57],[33,39],[20,11],[122,-47],[57,34],[166,26],[108,87],[67,-39],[20,-56],[121,-67],[42,10],[54,-10],[40,44],[56,-74],[-40,-66],[40,2],[92,46],[35,-37],[82,-187],[114,-61],[-2,-44],[88,-116],[18,31],[49,22],[37,-15],[100,83],[61,-34],[59,20],[53,159],[30,14],[76,-87],[7,-115],[-15,-25],[-68,-44],[-15,-45],[19,-22],[78,-32],[13,-55],[-59,-35],[-18,-31],[4,-30],[52,-20],[97,15],[45,-121],[27,-16],[53,19],[22,15],[-41,36],[-3,21],[28,114],[85,46],[4,27],[27,17],[79,-42],[7,-41],[-26,-78],[7,-43],[62,-46],[18,-72],[61,-94],[-42,-91],[-20,-15],[-45,26],[-54,-48],[-27,-64],[5,-40],[40,-34],[-11,-42],[-27,-33],[-58,-14],[-71,-41],[-5,-32],[67,-64],[0,-92],[48,-37],[63,1],[94,-78],[8,-37],[-52,-79],[29,-19],[44,-95],[-20,-60],[189,63],[99,12]],[[11382,11178],[-58,33]],[[11099,11850],[12,21]],[[11731,13640],[-3,-77],[16,-20],[103,39],[107,-20],[39,-40],[12,-45],[202,-63],[67,46],[84,-6],[46,-96],[101,20],[7,-33],[52,-24],[12,-18],[-6,-46],[22,-10],[30,43],[80,64],[84,118],[20,-3],[25,-33],[-13,-86],[-58,-77],[-61,-21],[-41,-34],[2,-21],[59,-5],[20,-18],[112,8],[29,31],[63,16],[19,-12],[19,22],[7,76],[53,73],[20,2],[68,-152],[42,-38],[30,-58],[97,-59],[81,-17],[25,-19],[8,-31],[-95,-162],[1,-27],[21,-26],[-20,-71],[-187,-139],[-30,-106],[-103,-127],[-97,-216],[-75,-36],[-39,-60],[-50,7],[-20,-17],[-29,10],[-36,-57],[-19,-51],[30,-23],[-11,-37],[-29,-49],[-45,-22],[10,-26],[59,-10],[1,-19],[-76,-55],[-121,-20],[-158,-130],[-196,-33],[-67,-44],[11,-68],[-48,-128],[6,-25],[-55,-66],[-65,-34],[-25,-93],[-79,-102]],[[9359,8830],[9,-2]],[[6319,9968],[145,-6],[193,114],[29,-2],[49,-43],[24,10],[73,117],[21,20],[29,-7],[19,25],[14,118],[71,27],[39,-15],[56,-57],[98,97],[118,7],[82,62],[36,66],[60,-8]],[[8651,8941],[-4,-6]]],"transform":{"scale":[0.00023341194452728908,0.00020861360163015782],"translate":[74.474584,27.650638]},"objects":{"haryana_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"cartodb_id":182,"censuscode":78,"dt_cen_cd":10,"st_cen_cd":6,"st_nm":"Haryana","district":"Fatehabad"}},{"arcs":[[6,7,8,9,10,11,12]],"type":"Polygon","properties":{"cartodb_id":213,"censuscode":86,"dt_cen_cd":18,"st_cen_cd":6,"st_nm":"Haryana","district":"Gurugram"}},{"arcs":[[13,14,15,16,17]],"type":"Polygon","properties":{"cartodb_id":484,"censuscode":82,"dt_cen_cd":14,"st_cen_cd":6,"st_nm":"Haryana","district":"Rohtak"}},{"arcs":[[18,19,20,21,-18]],"type":"Polygon","properties":{"cartodb_id":541,"censuscode":76,"dt_cen_cd":8,"st_cen_cd":6,"st_nm":"Haryana","district":"Sonipat"}},{"arcs":[[[22,23,24,25,26,27]],[[28,29]]],"type":"MultiPolygon","properties":{"cartodb_id":14,"censuscode":70,"dt_cen_cd":2,"st_cen_cd":6,"st_nm":"Haryana","district":"Ambala"}},{"arcs":[[-15,30,31,32,33,34,35,36,37,38,39]],"type":"Polygon","properties":{"cartodb_id":77,"censuscode":81,"dt_cen_cd":13,"st_cen_cd":6,"st_nm":"Haryana","district":"Bhiwani"}},{"arcs":[[40,-9,41]],"type":"Polygon","properties":{"cartodb_id":179,"censuscode":88,"dt_cen_cd":20,"st_cen_cd":6,"st_nm":"Haryana","district":"Faridabad"}},{"arcs":[[42,-16,-40,43,-3,44]],"type":"Polygon","properties":{"cartodb_id":228,"censuscode":80,"dt_cen_cd":12,"st_cen_cd":6,"st_nm":"Haryana","district":"Hisar"}},{"arcs":[[45,-20,46,47]],"type":"Polygon","properties":{"cartodb_id":429,"censuscode":75,"dt_cen_cd":7,"st_cen_cd":6,"st_nm":"Haryana","district":"Panipat"}},{"arcs":[[48,-7,49,50,51,52,53,-33,54,-31,-14,-22]],"type":"Polygon","properties":{"cartodb_id":257,"censuscode":83,"dt_cen_cd":15,"st_cen_cd":6,"st_nm":"Haryana","district":"Jhajjar"}},{"arcs":[[55,56,57,58,59]],"type":"Polygon","properties":{"cartodb_id":268,"censuscode":73,"dt_cen_cd":5,"st_cen_cd":6,"st_nm":"Haryana","district":"Kaithal"}},{"arcs":[[60,-48,61,62,63,64,-57,65,66,67]],"type":"Polygon","properties":{"cartodb_id":287,"censuscode":74,"dt_cen_cd":6,"st_cen_cd":6,"st_nm":"Haryana","district":"Karnal"}},{"arcs":[[68,-66,-56,69,-30,70,-26,71,72]],"type":"Polygon","properties":{"cartodb_id":329,"censuscode":72,"dt_cen_cd":4,"st_cen_cd":6,"st_nm":"Haryana","district":"Kurukshetra"}},{"arcs":[[73,-53,74,75,76,-38,77,78,-35]],"type":"Polygon","properties":{"cartodb_id":355,"censuscode":84,"dt_cen_cd":16,"st_cen_cd":6,"st_nm":"Haryana","district":"Mahendragarh"}},{"arcs":[[79,80,-11,81]],"type":"Polygon","properties":{"cartodb_id":374,"censuscode":87,"dt_cen_cd":19,"st_cen_cd":6,"st_nm":"Haryana","district":"Mewat"}},{"arcs":[[82,-82,-10,-41]],"type":"Polygon","properties":{"cartodb_id":426,"censuscode":89,"dt_cen_cd":21,"st_cen_cd":6,"st_nm":"Haryana","district":"Palwal"}},{"arcs":[[-28,83]],"type":"Polygon","properties":{"cartodb_id":428,"censuscode":69,"dt_cen_cd":1,"st_cen_cd":6,"st_nm":"Haryana","district":"Panchkula"}},{"arcs":[[84,-12,-81,85,-76,86,-51]],"type":"Polygon","properties":{"cartodb_id":482,"censuscode":85,"dt_cen_cd":17,"st_cen_cd":6,"st_nm":"Haryana","district":"Rewari"}},{"arcs":[[-5,87]],"type":"Polygon","properties":{"cartodb_id":532,"censuscode":79,"dt_cen_cd":11,"st_cen_cd":6,"st_nm":"Haryana","district":"Sirsa"}},{"arcs":[[-68,88,-73,89,-24,90]],"type":"Polygon","properties":{"cartodb_id":626,"censuscode":71,"dt_cen_cd":3,"st_cen_cd":6,"st_nm":"Haryana","district":"Yamuna Nagar"}},{"arcs":[[91,-62,-47,-19,-17,-43,-1,92,-59,93,-64]],"type":"Polygon","properties":{"cartodb_id":627,"censuscode":77,"dt_cen_cd":9,"st_cen_cd":6,"st_nm":"Haryana","district":"Jind"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [6319, 9968], + [-51, -223], + [59, -80], + [-27, -95], + [43, -121], + [-22, -121], + [31, -16], + [19, -43], + [-7, -90] + ], + [ + [6364, 9179], + [-61, 30] + ], + [ + [6303, 9209], + [-52, 39], + [-91, -131], + [-40, 14], + [-36, -6], + [-6, -85], + [-92, 15], + [-33, 86], + [-33, -30], + [-14, -87], + [-24, -43], + [-78, -58], + [-62, 42], + [-66, 11], + [-67, -27], + [-3, 34], + [-111, -126], + [-14, -75], + [-114, -8], + [-22, -28], + [42, -121], + [-67, -39], + [-10, -54], + [-28, 13], + [-15, -35], + [-126, -1], + [-179, -29], + [-23, -46], + [-46, -35], + [4, -137], + [-69, -25], + [-12, -129], + [-27, -30], + [-39, 39], + [-10, 97], + [-85, -33], + [-3, 36], + [-64, -22], + [-60, 9], + [-91, 192], + [-121, -57], + [-3, 70], + [-108, -21], + [-22, 38], + [-146, 24], + [26, -142], + [-156, -26], + [-22, -110], + [61, -52], + [37, -64], + [-31, -20], + [3, -36], + [-213, -67], + [-22, 12], + [-101, -4], + [-60, 63], + [-177, -131], + [95, -104] + ], + [ + [3477, 7769], + [-23, -94], + [-95, 11], + [-61, -22] + ], + [ + [3298, 7664], + [-37, 39], + [-12, 41], + [28, 123], + [-4, 43], + [-51, 113], + [21, 33], + [39, 22], + [42, -2], + [48, 22], + [20, 28], + [2, 35], + [-108, 120], + [-84, 28], + [-2, 36], + [53, 108], + [35, 25], + [152, 18], + [51, 23], + [49, 65], + [-84, 142], + [21, 115], + [-49, 63], + [12, 30], + [35, 21], + [60, 7], + [-16, 77], + [24, 22], + [-5, 89] + ], + [ + [3538, 9150], + [54, 82], + [6, 46], + [-47, 44], + [-57, 27], + [2, 33], + [31, 46], + [84, 61], + [44, 183], + [54, 8], + [48, -49], + [38, -14], + [-4, 31], + [-67, 107], + [7, 28], + [99, 57], + [15, 34], + [72, -8], + [21, 43], + [1, 66], + [30, 22], + [26, 48], + [2, 59], + [55, 69], + [42, -5], + [103, 57], + [-3, 38], + [-33, 23], + [38, 43], + [266, -163], + [23, -67], + [79, 61], + [60, -5], + [52, -29], + [29, -103], + [24, -8], + [103, 31], + [88, -13], + [40, 34], + [12, 94], + [67, -10], + [66, 24], + [42, -17], + [52, -75], + [39, -25], + [43, 16], + [37, 257], + [17, 17], + [165, -1], + [100, 63], + [104, -88], + [103, 40], + [39, -15], + [18, -104], + [44, -71], + [47, -30], + [39, -83], + [67, -26], + [77, 41], + [25, -44], + [46, -36], + [107, -26] + ], + [ + [9391, 3487], + [32, 9], + [99, -47], + [2, -44], + [121, -5], + [35, 48], + [1, 60], + [-109, 99], + [6, 74], + [36, 93], + [-36, 98], + [-3, 157], + [50, -10], + [44, -30], + [55, -85], + [70, -10], + [50, 59], + [97, -39], + [79, 42], + [52, 129], + [236, -18], + [36, 23] + ], + [ + [10344, 4090], + [77, 42], + [48, -14], + [60, 21], + [94, -27], + [103, 66], + [159, -62], + [23, 17], + [2, 29], + [-56, 39], + [-10, 22], + [18, 25], + [25, 4], + [41, -46], + [75, -24], + [67, -63], + [35, -7], + [45, 33], + [21, -2], + [152, -126], + [-27, -84], + [5, -29], + [67, -134], + [103, -33], + [40, -35], + [60, -95] + ], + [ + [11571, 3607], + [-107, -95], + [4, -294], + [56, -65], + [88, -46], + [34, -35], + [70, 11], + [69, -20], + [61, -52], + [9, -30], + [-11, -18] + ], + [ + [11844, 2963], + [-106, -41], + [-17, -47], + [-47, -27], + [-12, -25], + [16, -66], + [-86, -71], + [-7, -55] + ], + [ + [11585, 2631], + [-127, 59], + [-20, 31], + [-41, 14], + [-95, -28], + [-49, 38], + [-22, -17], + [-69, 40], + [-42, -77], + [-71, 39], + [13, 102], + [-127, 17], + [-32, 22], + [-25, 267], + [-41, 100], + [-71, -1], + [-12, 31], + [-29, 9], + [-91, -54], + [-16, -34], + [-95, 23], + [-52, -98], + [-49, 1], + [-16, -24], + [63, -80], + [-15, -41], + [-57, -60], + [-28, -4], + [-30, 8], + [-53, 49], + [-44, -106], + [-44, -58] + ], + [ + [10198, 2799], + [-98, 46], + [-116, 22], + [-30, -14], + [-64, -96], + [-46, 42], + [-9, 30], + [-205, 104], + [-86, -10], + [-86, 11], + [-22, 57], + [40, 194], + [-124, 26], + [25, 139], + [-13, 46], + [21, 59] + ], + [ + [9385, 3455], + [6, 32] + ], + [ + [10404, 5807], + [-70, -130], + [-38, -9], + [-48, -44], + [-11, -29], + [-79, -46], + [-64, 4], + [-38, 61], + [-98, -30], + [-19, -52], + [79, -46], + [41, -50], + [-81, -82], + [-78, -118], + [-29, -1], + [-50, 36], + [11, 43], + [-18, 31], + [-49, 10], + [-51, -44], + [-55, 5], + [-78, 35], + [3, 91], + [-92, 0], + [-64, 33], + [-14, 94], + [-41, 21], + [-66, 98], + [-56, -58], + [6, -37], + [54, -53], + [-79, -92], + [-69, 7], + [-51, -27], + [-49, -198], + [-60, -29], + [-172, 57], + [-41, -42], + [-313, -7], + [-149, -72], + [9, -74], + [-11, -74], + [-47, -44] + ], + [ + [8279, 4945], + [-98, 82], + [-15, 47], + [31, 67], + [55, 48], + [22, 88], + [-64, 93], + [-250, 166], + [-3, 73], + [120, 216], + [-5, 35], + [-129, 102], + [-122, 49], + [-42, -141], + [-17, 98], + [-41, 18], + [-170, 9], + [-19, 20], + [-12, 152], + [-61, 77], + [-17, 47], + [36, 86] + ], + [ + [7478, 6377], + [85, 76], + [-23, 266], + [168, 44], + [29, 35], + [29, 4], + [61, 82] + ], + [ + [7827, 6884], + [214, 0], + [127, -65], + [102, 37], + [31, -8], + [80, -67], + [67, -26], + [63, 32], + [77, 143] + ], + [ + [8588, 6930], + [84, -64], + [59, -12], + [118, 114], + [136, -197], + [78, 6], + [93, -19], + [92, 0], + [27, -22], + [116, 46], + [52, -13], + [95, -79], + [119, -129], + [18, -132], + [-13, -115], + [59, -38], + [60, 18], + [38, -26], + [53, -66], + [-14, -17], + [35, -65], + [150, 4], + [38, -36], + [-1, -82], + [-34, -60], + [-31, -127], + [30, -26], + [170, 9], + [90, 40], + [52, -7], + [47, -28] + ], + [ + [8588, 6930], + [4, 84], + [44, 144], + [103, 102], + [-53, 80], + [-39, 127], + [0, 47], + [-73, 94], + [6, 24], + [20, 17], + [22, -25], + [74, -28], + [98, -20], + [27, -71], + [32, -28], + [45, -3], + [40, 21], + [24, 77], + [-43, 148], + [23, 105], + [163, 14], + [50, 20], + [213, -108], + [89, 13] + ], + [ + [9457, 7764], + [81, -35], + [44, -57], + [134, 46], + [102, 80], + [45, 0], + [62, -35], + [43, -209], + [113, -84], + [170, -23], + [46, -47], + [26, -7], + [41, 82], + [46, 32], + [49, 12], + [97, -47], + [52, 3], + [65, 44], + [70, -14], + [116, 18], + [20, -15], + [-8, -122], + [74, -41], + [85, 23], + [54, -52], + [95, 24], + [81, -88], + [49, 32], + [124, -17] + ], + [ + [11433, 7267], + [-25, -85], + [51, -92], + [-71, -139], + [84, -92], + [67, -44], + [22, -59], + [1, -80], + [124, -131], + [52, -22], + [44, -48], + [-103, -244], + [3, -43], + [58, -33], + [4, -17], + [-37, -74], + [23, -26], + [83, -36], + [-1, -19], + [-68, -46], + [-101, -22], + [-15, -47], + [36, -63], + [-13, -22], + [-82, -8], + [-96, -87], + [-36, 10], + [5, 67], + [-28, 33], + [-81, 3], + [-43, 31], + [-70, 10], + [-32, 48], + [-43, -56], + [-69, 1], + [-78, -174], + [-107, -7], + [-99, 18], + [-42, -63], + [-55, 28], + [-22, -56], + [-32, -11], + [-25, 14] + ], + [ + [10616, 5584], + [-80, 42], + [-64, -8], + [-35, 166], + [-33, 23] + ], + [ + [11356, 13962], + [44, -93], + [37, -32], + [165, -42], + [68, -33], + [61, -93], + [0, -29] + ], + [ + [11731, 13640], + [-70, -29], + [-88, -141], + [-26, -91], + [14, -91], + [-32, -23], + [0, -15], + [42, -18], + [18, -51], + [-44, -108], + [-2, -75], + [-67, -16], + [16, -27], + [14, 13], + [23, -22], + [25, 14], + [16, -18], + [-8, -31], + [66, -73], + [-24, -25], + [29, -52], + [-22, -32], + [-59, -5], + [-4, -37], + [-127, -78], + [-19, -58], + [14, -33], + [-25, -61], + [14, -32], + [21, -10], + [43, 17], + [35, -9], + [22, -32], + [-3, -37], + [-31, -46], + [-43, -22], + [-22, 44], + [-53, 33], + [-153, -31], + [-6, -28], + [-64, -32], + [-15, -34], + [6, -30], + [108, -48], + [34, -26], + [12, -30], + [-58, -104], + [-84, 58], + [-29, -18], + [16, -56], + [-27, -46], + [-3, -67] + ], + [ + [11111, 11871], + [-12, -22] + ], + [ + [11099, 11849], + [-80, 25], + [-86, 95], + [-114, 81], + [-78, 13], + [-87, -64], + [-50, 30], + [-25, 31], + [-2, 48], + [58, 34], + [14, 39], + [-184, 35], + [-62, -50], + [-75, 64], + [9, 37], + [-17, 21], + [-84, 65], + [8, 78], + [-49, 20], + [-96, 3], + [-35, -33], + [-8, -71], + [-61, -72], + [-94, -19], + [-48, -47], + [-56, -26], + [-50, 8], + [-273, -47], + [-38, -75], + [-82, -69], + [-50, -29], + [-28, 12] + ], + [ + [9276, 11986], + [-21, 73], + [81, 90], + [1, 22], + [-20, 15], + [8, 44], + [-27, 19], + [-122, 25], + [33, 50], + [0, 26], + [-69, 62], + [-23, 49], + [-27, 12], + [-35, -4], + [-136, -119], + [-51, -18], + [2, 24], + [40, 21], + [16, 34], + [8, 102], + [244, 35], + [22, -8], + [56, 100], + [15, -36], + [107, 74], + [48, 0], + [46, 64], + [-10, 31], + [17, 32], + [21, -22], + [38, 22], + [39, -5], + [12, 24], + [46, 0], + [18, 14], + [-1, 34], + [60, 41], + [41, 53], + [-35, 38], + [-82, -11], + [-10, 15], + [39, 42], + [-10, 15], + [-46, 3], + [-20, 62], + [113, 54], + [-6, 74], + [102, 30], + [38, 58], + [24, 5], + [15, -18], + [-11, -53], + [28, -32], + [161, -31], + [103, 105], + [31, -63], + [107, -58], + [7, -67], + [60, -41], + [-17, -110], + [46, -23], + [46, 20], + [82, 96], + [45, 28], + [17, 41], + [-24, 22], + [-88, 15], + [-7, 96], + [-58, 57], + [-5, 21], + [40, 128], + [-7, 37], + [-28, 19], + [-5, 25], + [22, 24], + [31, -4], + [48, 23], + [21, 50] + ], + [ + [10520, 13658], + [40, -41], + [9, -53], + [19, -25], + [37, -9], + [39, 12], + [100, 97], + [35, 72], + [201, 85], + [18, 79], + [69, 41], + [33, 104], + [41, -5], + [37, -30], + [6, -38], + [33, -46], + [52, 13], + [67, 48] + ], + [ + [8963, 11716], + [148, 118], + [78, 84], + [68, 40] + ], + [ + [9257, 11958], + [26, -70], + [-20, -85], + [8, -54], + [-102, -117], + [-112, -30], + [22, 39], + [-5, 17], + [-64, 46], + [-47, 12] + ], + [ + [8279, 4945], + [1, -1] + ], + [ + [8280, 4944], + [8, -75] + ], + [ + [8288, 4869], + [4, -35], + [182, -25], + [14, -28], + [-16, -103], + [61, -107], + [-7, -23], + [-41, -25], + [-74, -7], + [-50, -224], + [-67, 7], + [-40, 197], + [-187, 74], + [-59, -10], + [-3, -257], + [-26, -60], + [-29, -165], + [-32, -37], + [-40, 26], + [-62, 0], + [-37, -20], + [-25, -70], + [39, -48], + [-9, -102] + ], + [ + [7784, 3827], + [1, -2] + ], + [ + [7785, 3825], + [-61, -2], + [-10, 0], + [-28, -48], + [-40, -10], + [-51, 33], + [-18, 85], + [-51, 33], + [-47, -2], + [-43, -111], + [-59, -11] + ], + [ + [7377, 3792], + [-4, 0] + ], + [ + [7373, 3792], + [-36, 8] + ], + [ + [7337, 3800], + [-61, -29], + [-40, 68], + [0, 52], + [-36, 1], + [-42, -64], + [-121, 8], + [-39, -105], + [-43, -17], + [-82, -150], + [-96, 9], + [-122, -28], + [-28, 21], + [9, 44], + [-40, 40], + [11, 97], + [-72, 37], + [-402, -51], + [-18, -11], + [-8, -46], + [18, -86], + [-29, -48] + ], + [ + [6096, 3542], + [-24, -8], + [-1, -25], + [-207, 53], + [-29, 54], + [-43, -15], + [-6, 27], + [-61, 13], + [-64, -46], + [-75, 15], + [-20, 63], + [84, 88], + [0, 56], + [-29, 33], + [-185, 72], + [7, 70], + [-200, 57], + [-112, 105], + [-2, 73], + [-115, 55], + [-32, -7], + [-47, 269], + [-37, 18], + [-105, 3], + [-34, 49], + [-92, -10], + [-28, 137], + [-40, 28], + [1, 130], + [-19, 59], + [-19, 213], + [-20, 49], + [12, 35], + [-30, 28], + [-25, 78], + [-75, 74], + [23, 43], + [-4, 60], + [25, 29], + [20, 102], + [-13, 33], + [-33, 12], + [-21, 49], + [-42, 17], + [2, 185], + [-91, 135], + [7, 56], + [124, 16], + [26, 50], + [-3, 46], + [58, 67], + [-2, 33] + ], + [ + [4500, 6368], + [157, -31], + [136, 37], + [60, 4], + [77, -20], + [53, -64], + [-12, -37], + [59, -83], + [24, 7], + [112, -130], + [108, -35], + [182, 0], + [62, -30], + [25, 8], + [36, 86], + [84, 38], + [83, -51], + [69, -16], + [85, 70], + [28, 165], + [55, 16], + [53, 52], + [3, 21], + [38, -18], + [50, 194], + [77, 42], + [223, -157], + [20, 56], + [-28, 75], + [-38, 51], + [-2, 43], + [100, 180], + [137, -88], + [108, -44], + [53, -128], + [97, 52], + [42, 4], + [154, -44], + [25, -40], + [132, -54], + [24, 0], + [-50, 110], + [2, 108], + [49, 8], + [83, -41], + [10, -76], + [-17, -82], + [33, -80], + [117, -69] + ], + [ + [13053, 2438], + [-25, 58], + [-129, 22], + [-104, -84], + [-42, 57], + [-43, -35], + [-120, 30], + [-12, -25], + [-40, 36], + [8, 17], + [-48, 81], + [16, 27], + [78, 18], + [-23, 48], + [-32, 2], + [-96, 49], + [-71, -79], + [-168, 91], + [7, 39], + [-12, 10], + [-61, -38], + [-64, 59], + [-59, 23], + [-17, 19], + [25, 56], + [-3, 36], + [-83, 16], + [-8, -61], + [-83, 53] + ], + [ + [11571, 3607], + [212, 35], + [109, 63], + [12, 89], + [-44, 57], + [-29, 4], + [-3, 18], + [29, 56], + [44, 42], + [49, 5], + [73, 55], + [30, 5], + [78, -33], + [46, -2], + [118, 97], + [37, -36], + [74, -27], + [16, -59], + [51, -45], + [94, -25], + [9, -21], + [-23, -19], + [13, -19], + [120, -20], + [44, -110], + [165, -87], + [-3, -47], + [-30, -19], + [108, -145], + [9, -54], + [-131, -97], + [78, -69], + [59, -80], + [-13, -126], + [-88, 3], + [-31, -18], + [10, -37], + [192, -75], + [114, 1], + [11, -32], + [-24, -34], + [-86, -52], + [33, -109], + [-18, -25], + [-27, -1], + [-10, 23], + [-56, 32], + [-36, -5], + [13, -129], + [40, 10], + [18, 40], + [138, -22], + [19, -45], + [-45, -54], + [-86, -26] + ], + [ + [6364, 9179], + [10, -67], + [-10, -39], + [-96, -133], + [-7, -59], + [21, -24], + [96, -23], + [165, -70], + [8, -21], + [-32, -29], + [-11, -79], + [95, -50], + [46, -58], + [0, -32], + [35, -34], + [85, 72], + [105, 18], + [34, -41], + [30, -119], + [71, -5], + [93, -54], + [25, 7], + [99, 88], + [76, -13], + [222, -88], + [85, -86], + [8, -39], + [-22, -39], + [-107, 23], + [-64, -15], + [-76, -54], + [-27, -41], + [102, -70], + [0, -30], + [-81, -146], + [2, -33], + [82, -66], + [36, -99], + [47, -60], + [32, -104], + [98, -48], + [115, -19], + [30, -30], + [17, -41], + [16, -214], + [64, -131], + [-54, -100] + ], + [ + [4500, 6368], + [-21, 137], + [-25, 21], + [-136, 24], + [-166, -17], + [-9, 27], + [34, 93], + [-13, 43], + [-33, 27], + [2, 41], + [-213, 27], + [11, 120], + [-10, 74], + [46, 41], + [20, 44], + [-150, 69], + [28, 37], + [6, 93], + [84, 4], + [25, 17], + [27, 70], + [-18, 118], + [-44, 37], + [5, 38], + [52, 53], + [-16, 104], + [-69, 10], + [-93, -44], + [-33, -35], + [-21, -102], + [-130, 48], + [35, 75], + [5, 184], + [-21, 16], + [-84, -55], + [-88, -24], + [-10, -14] + ], + [ + [6303, 9209], + [61, -30] + ], + [ + [11396, 8617], + [62, -32], + [7, -22], + [-16, -47], + [-46, -48], + [4, -56], + [14, -39], + [75, -61], + [-35, -28], + [-93, -34], + [3, -94], + [26, -58], + [97, 0], + [32, -46], + [-17, -18], + [18, -71], + [-51, -74], + [9, -25], + [-64, -112], + [56, -102], + [6, -40], + [-5, -26], + [-75, -62], + [55, -115], + [8, -91], + [-33, -49] + ], + [ + [9457, 7764], + [-4, 33], + [-75, 15], + [-91, 69], + [-11, 79], + [-19, 25], + [50, 104], + [3, 122], + [10, 25], + [76, 22], + [18, 19], + [81, 13], + [21, 25], + [58, -9], + [105, 44], + [10, 148], + [53, 94], + [30, 112] + ], + [ + [9772, 8704], + [67, 26], + [56, -21], + [36, 8], + [21, 43], + [37, 18], + [88, -52], + [44, -9], + [84, 43], + [12, 41], + [40, 18], + [89, -25], + [56, -82], + [65, 61], + [82, -22], + [-17, -28], + [64, -27], + [30, -30], + [37, -2], + [67, 43], + [92, -76], + [65, -21], + [125, 14], + [136, -44], + [189, 16], + [59, 21] + ], + [ + [10616, 5584], + [-21, -82], + [24, -41], + [15, -100], + [-36, -70], + [51, -62], + [2, -49], + [-40, -93], + [56, -56], + [-37, -105], + [6, -30], + [-76, -13], + [-28, -25], + [-24, -57], + [70, -95], + [-44, -42], + [-57, 43], + [-71, -24], + [-68, 24], + [-99, -217], + [-20, -11], + [-65, 6], + [-9, -42], + [20, -123], + [82, -44], + [11, -28], + [73, -65], + [13, -21], + [-25, -46], + [25, -26] + ], + [ + [9391, 3487], + [3, 13] + ], + [ + [9394, 3500], + [-33, 72], + [-93, 108], + [-68, 47], + [-29, 4], + [-46, -120], + [-145, -25], + [-49, -68], + [-30, 13], + [-1, 33], + [-23, 23], + [-92, -6], + [-28, 26], + [2, 65], + [-16, 46], + [-120, 41], + [-79, -40], + [-83, 4], + [-24, 26], + [-7, 64], + [-31, 14], + [14, 50], + [-27, 11], + [-91, -8], + [-7, 29], + [-15, 5], + [-53, 5], + [-36, -16], + [1, -20], + [36, -29], + [25, -55], + [-102, -72], + [-110, 38], + [-15, 114], + [-15, 20], + [-16, -48], + [-27, -18], + [8, -73], + [-14, -15], + [-54, 5], + [-16, 34], + [-64, -39], + [-2, -33], + [-38, 1] + ], + [ + [7781, 3713], + [0, 46] + ], + [ + [7781, 3759], + [4, 28] + ], + [ + [7785, 3787], + [-1, 40] + ], + [ + [8288, 4869], + [-8, 75] + ], + [ + [8534, 11724], + [-47, -35], + [-53, -124], + [-65, -58], + [-16, -34], + [35, -69], + [41, -41], + [45, 33], + [96, -25], + [-54, -104], + [15, -99], + [-34, -55], + [7, -22], + [59, 10], + [40, -51], + [-16, -110], + [-36, -100], + [221, -73], + [138, -188], + [32, 15], + [2, 34], + [147, 44], + [16, 70], + [-32, 100], + [107, 30], + [1, 43], + [29, 57], + [41, -14], + [103, 96], + [39, 0], + [30, -64], + [32, 22], + [2, -72], + [35, -78], + [33, 64], + [67, -39], + [78, 30], + [100, -15] + ], + [ + [9772, 10902], + [-21, -82], + [-89, -113], + [-72, -7], + [-54, 60], + [-27, -13], + [-31, -123], + [-42, -14], + [0, -15], + [41, -17], + [21, -27], + [-10, -125], + [103, -31], + [13, -32], + [-58, -74], + [-15, -85], + [-52, -79], + [2, -24], + [40, -50], + [-1, -130], + [-28, -81], + [11, -26], + [80, -32], + [5, -42], + [-51, -60], + [-74, 66], + [-18, -62], + [-25, -12], + [-91, 7], + [-27, -63], + [-101, -59], + [-83, -77], + [-159, 4], + [-105, -68], + [-30, -6], + [-8, -18], + [65, -95], + [3, -44], + [-69, -50], + [-32, -93], + [0, -54], + [-66, -9], + [-36, -54] + ], + [ + [8681, 8993], + [-30, -52] + ], + [ + [8651, 8941], + [-10, -6], + [-50, 19], + [33, 83], + [-15, 29], + [-37, -12], + [-26, -27], + [-39, -3], + [-37, 16], + [-35, 37], + [-51, -5], + [-55, -34], + [-117, -5], + [-63, 21], + [-20, 22], + [-7, 152], + [-107, 28], + [-162, -16], + [-33, -27], + [-2, -53], + [-32, -50], + [-30, -23], + [-50, 5], + [-29, 88], + [-92, 50], + [-14, 141], + [-18, 46], + [-41, 15], + [-115, 4], + [-12, 82], + [8, 66], + [-31, 38], + [8, 53], + [-76, 83], + [-4, 36], + [22, 59], + [-12, 30], + [14, 56], + [81, 88], + [24, 51], + [-8, 110], + [20, 1], + [14, 61], + [39, 71], + [-9, 172] + ], + [ + [7475, 10493], + [13, -1], + [3, 48], + [71, 6], + [29, 26], + [29, 44], + [-14, 33], + [-57, 44], + [-74, 7], + [-46, -12], + [-54, 22], + [-12, 167], + [-45, 0], + [-22, 26], + [54, 84], + [107, -10], + [-1, 38], + [-38, 65], + [18, 36], + [-40, 149], + [6, 59], + [106, 51], + [-2, 12], + [-69, 25], + [-3, 15], + [153, 228], + [38, 45], + [35, 10], + [18, 36], + [-113, 23], + [-163, 123], + [15, 28], + [50, -34], + [26, 6], + [-43, 94], + [9, 21], + [29, -14], + [138, -137], + [7, -27], + [28, -14], + [123, -26], + [57, 24], + [85, -48], + [43, -2], + [64, 37], + [47, 56], + [-2, 19], + [-96, 85], + [74, 20], + [22, -15], + [66, -110], + [47, -18], + [42, 0], + [24, 18], + [-23, 88], + [73, 57], + [-88, 123], + [76, 75], + [49, 16], + [42, -22], + [37, -86], + [2, -33], + [-30, -68], + [39, -87], + [22, -17], + [43, 0], + [0, -125], + [35, -52] + ], + [ + [11776, 10954], + [-94, -89], + [-39, -76], + [20, -55], + [-10, -103], + [-64, -129], + [6, -80], + [-65, -76], + [-7, -98], + [-87, -69], + [-59, -16], + [2, -55], + [-25, -75], + [41, -27], + [0, -33], + [75, -90], + [11, -75], + [-74, -22], + [-19, -26], + [-4, -54], + [48, -83], + [-8, -21], + [-85, -55], + [-37, -67], + [-3, -52], + [-25, -22], + [-39, -81], + [18, -50], + [53, -65], + [33, -115], + [-88, -39], + [-19, -54], + [54, -103], + [95, -71], + [15, -54], + [-34, -51], + [-5, -65], + [39, -41] + ], + [ + [9772, 8704], + [-26, 37], + [-74, 42], + [-38, 2], + [-99, -31], + [-167, 74] + ], + [ + [9368, 8828], + [-9, 2] + ], + [ + [9359, 8830], + [-72, -96], + [-99, 17], + [-71, -12], + [-216, -76], + [-98, -113], + [-72, -124], + [-28, -13], + [-84, 15], + [-66, -45], + [-73, 23], + [0, 80], + [52, 22], + [38, 92], + [11, 96], + [33, 85], + [71, -7], + [32, 20], + [-4, 40], + [-29, 15], + [-37, 86] + ], + [ + [8647, 8935], + [34, 58] + ], + [ + [9772, 10902], + [32, 44], + [89, 21], + [47, 30], + [73, -70], + [35, 17], + [30, -18], + [16, -91], + [33, -5], + [2, 72], + [88, 35], + [21, -3], + [9, -22], + [141, -32], + [46, 21], + [152, -11], + [124, 128], + [29, 72], + [90, 2], + [-3, -66], + [27, 5], + [65, -33], + [58, 35], + [96, -39], + [31, 20], + [38, -8], + [83, 13], + [94, 136], + [-6, 63] + ], + [ + [11312, 11218], + [70, -40] + ], + [ + [11382, 11178], + [22, -16], + [-12, -65], + [11, -13], + [72, 32], + [36, -18], + [26, 12], + [89, -79], + [-14, -36], + [33, -38], + [32, -12], + [99, 9] + ], + [ + [11324, 11211], + [-12, 7] + ], + [ + [8534, 11724], + [155, -16], + [44, -98], + [140, 29], + [90, 77] + ], + [ + [9257, 11958], + [19, 28] + ], + [ + [11099, 11849], + [0, 1] + ], + [ + [11099, 11850], + [66, -49], + [50, -57], + [-24, -24], + [-41, -113], + [59, -66], + [11, -47], + [84, -25], + [4, -36], + [-32, -19], + [-2, -58], + [22, -28], + [56, -5], + [1, -39], + [-31, -52], + [2, -21] + ], + [ + [7785, 3825], + [0, -38] + ], + [ + [7781, 3759], + [0, -55] + ], + [ + [7781, 3704], + [-26, -83], + [77, -18], + [-9, -94], + [25, -28], + [94, -23], + [10, -36], + [75, 0], + [49, -88], + [29, -24], + [20, -76], + [-33, -15], + [-10, -40], + [-34, -17], + [-13, -32], + [24, -107], + [-39, -52], + [31, -55], + [-28, -158], + [-8, -13], + [-57, 3], + [-28, -72], + [-64, -20], + [-12, -31], + [34, -51], + [3, -42] + ], + [ + [7891, 2532], + [-82, -4], + [-42, -19], + [-4, -48], + [87, -29], + [-15, -27], + [28, -29], + [29, 0], + [12, 18], + [27, -8], + [86, -88], + [78, -30], + [-69, -90], + [-33, -14], + [-76, 26], + [-26, -4], + [-46, -49], + [118, -43], + [31, -74], + [22, -18], + [74, 6], + [-37, -137], + [-40, -77], + [-86, -41], + [-83, 24], + [-31, 19], + [0, 92], + [-34, 47], + [-74, 47], + [-59, 10], + [-32, -9], + [-44, -60], + [-32, -6], + [-75, 2], + [-36, 25], + [-97, -7], + [-2, -50], + [71, -66], + [20, -1], + [26, 35], + [40, -10], + [1, -41], + [-44, -6], + [-33, -41], + [-93, 1], + [-83, -110], + [-4, -31], + [37, -20], + [-7, -39], + [79, -35], + [-20, -152], + [-31, -62], + [-5, -64], + [14, -25], + [124, -52], + [5, -52], + [-41, -31], + [-5, -25], + [17, -60], + [51, -40], + [4, -36], + [74, -34], + [-66, -60], + [-59, 13], + [-59, -90], + [-32, -24], + [-130, 98], + [-64, 27], + [4, 65], + [-27, 36], + [-146, 67], + [-35, -83], + [-86, 29], + [-44, -44], + [-173, 71], + [-18, -25], + [-127, 35], + [-53, 0], + [5, 33], + [39, 28], + [8, 75], + [-34, 30], + [43, 48], + [-92, 49], + [-116, -13], + [0, 47], + [-22, 32], + [64, 86], + [26, -53], + [80, -15], + [43, 101], + [-21, 20], + [80, 107], + [-21, 12], + [-39, -15], + [-75, 23], + [4, 59], + [101, 2], + [39, 14], + [6, 27], + [-20, 23], + [-56, 16], + [-11, 61], + [18, 29], + [26, 8], + [127, -9], + [4, 49], + [-24, 36], + [49, 8], + [70, 60], + [11, 25], + [-19, 48], + [-66, 24], + [-4, -38], + [-56, -97], + [-74, -48], + [-31, 7], + [-12, 23], + [56, 65], + [-23, 47], + [-22, 19], + [-77, -1], + [-98, 46], + [48, 77], + [127, 84], + [61, 4], + [19, 34], + [-4, 74], + [22, 28], + [49, 6], + [71, 72], + [165, -24], + [-5, -112], + [42, -12], + [56, 8], + [17, 13], + [4, 43], + [-77, 82], + [-39, 127], + [-88, 19], + [-6, 13], + [36, 43], + [4, 46], + [-72, 15], + [-45, 42], + [-62, 28], + [-16, 54], + [48, 134], + [-138, 71], + [-81, 136], + [-55, -26], + [-14, 71], + [22, 10], + [-1, 13], + [-124, 33], + [4, 53], + [-25, 61], + [-109, 54], + [-1, 48], + [-33, 17] + ], + [ + [7337, 3800], + [36, -8] + ], + [ + [7373, 3792], + [4, 0] + ], + [ + [12268, 938], + [-22, -53], + [14, -15], + [-62, -37], + [-28, 10], + [-75, -14], + [4, -54], + [-27, -10], + [-27, -43], + [-63, 44], + [-42, -88], + [-78, -57], + [-31, 14], + [-2, 36], + [-43, -3], + [-43, 26], + [-20, 56], + [-36, 45], + [-27, -33], + [6, -80], + [-86, -65], + [-28, 27], + [30, 48], + [48, 19], + [1, 20], + [-35, 37], + [-49, -15], + [-45, 11], + [13, -63], + [-9, -50], + [-18, -25], + [-51, -13], + [-38, -36], + [-28, 62], + [-81, -19], + [-105, 77], + [-18, 39], + [-31, 14], + [-38, -5], + [-77, 41], + [-62, -105], + [-14, -96], + [33, 10], + [47, -25], + [46, -67], + [50, 22], + [24, -9], + [51, -121], + [-112, -51], + [-38, 21], + [-22, 45], + [-44, 37], + [-75, -13], + [-34, -38], + [-39, 17], + [-66, -172], + [-37, -236], + [-156, 87], + [-44, -69], + [-79, -23], + [-59, 115], + [22, 29], + [-9, 18], + [-59, 46], + [8, 19], + [75, -42], + [43, 10], + [18, 20], + [-50, 75], + [-61, 15], + [-22, 23], + [3, 32], + [28, 53], + [13, 178], + [22, 57], + [22, 18], + [-4, 31], + [16, 30], + [-27, 65], + [15, 55], + [17, 16], + [61, -20], + [20, 12], + [14, 100], + [-22, 104], + [6, 84], + [52, 8], + [3, 110], + [-75, 10], + [-10, 18], + [2, 134], + [24, 122], + [-27, 93], + [34, 71], + [49, 226], + [37, 56], + [66, 349], + [-87, 22], + [0, 31], + [-88, 34], + [-159, 141], + [8, 24], + [60, 39], + [-13, 14], + [-131, 19], + [-11, 62], + [-40, 3] + ], + [ + [10234, 2729], + [-36, 70] + ], + [ + [11585, 2631], + [35, -2], + [44, -27], + [-17, -62], + [-117, 13], + [-14, -101], + [-57, -31], + [-25, -68], + [-45, -51], + [5, -27], + [47, -16], + [4, -36], + [-34, -41], + [10, -38], + [-34, -70], + [-3, -52], + [-47, -27], + [-22, 8], + [-65, -21], + [64, -85], + [-11, -94], + [-38, -33], + [28, -38], + [-35, -32], + [-78, -26], + [-41, -66], + [198, -121], + [110, 12], + [17, -47], + [47, -51], + [53, -5], + [37, -35], + [26, 41], + [27, -12], + [118, -135], + [48, -86], + [107, -83], + [108, -36], + [17, 9], + [40, 93], + [44, -16], + [62, -60], + [12, -88], + [58, -50] + ], + [ + [13053, 2438], + [-55, -9], + [-16, -83], + [-34, -20], + [3, -13], + [45, -15], + [5, -40], + [-1, -23], + [-35, -47], + [4, -70], + [-9, -14], + [-18, 10], + [-14, 50], + [-19, 1], + [-22, -20], + [-18, -85], + [59, -121], + [-22, -56], + [6, -24], + [46, -23], + [72, -82], + [22, -57], + [100, -82], + [-109, -95], + [4, -25], + [19, -13], + [90, 0], + [0, -78], + [-73, -83], + [-34, 26], + [-68, -31], + [-45, 62], + [-31, -17], + [-39, -40], + [26, -95], + [-20, -83], + [-103, -78], + [-102, 77], + [-42, 8], + [-46, -68], + [20, -59], + [32, -34], + [-6, -17], + [-84, -1], + [-81, 23], + [-91, -34], + [-57, 15], + [-44, -37] + ], + [ + [10520, 13658], + [13, 99], + [-151, 76], + [74, 51], + [16, 35], + [-30, 27], + [25, 79], + [-26, 38], + [37, 14], + [27, 40], + [-13, 29], + [-38, 13], + [-9, 55], + [-68, 34], + [-47, 63], + [-60, 3], + [16, 185], + [-97, -108], + [-21, -5], + [1, 41], + [-69, -17], + [-5, 144], + [80, 113], + [-8, 49], + [-41, 30], + [-9, 45], + [23, 114], + [80, 138], + [-56, 57], + [-7, 100], + [-18, 35], + [-114, 48], + [-137, 163], + [-28, 81], + [32, 62], + [173, 115], + [18, -43], + [-21, -70], + [56, -90], + [62, -44], + [65, -39], + [214, 126], + [104, -205], + [4, -82], + [66, -39], + [46, -87], + [64, -15], + [44, -44], + [32, 69], + [27, 24], + [14, -8], + [17, -132], + [-49, -58], + [68, -51], + [1, -67], + [36, -49], + [21, -8], + [44, 14], + [23, 57], + [58, -32], + [128, -19], + [108, -67], + [-10, -41], + [14, -9], + [27, 11], + [34, -23], + [33, -52], + [122, -89], + [-15, -19], + [21, -79], + [-10, -67], + [41, -75], + [-21, -187], + [-76, -78], + [-119, -75] + ], + [ + [9394, 3500], + [-9, -45] + ], + [ + [10234, 2729], + [-89, -1], + [-42, -49], + [-77, 6], + [-19, -20], + [18, -55], + [-33, -28], + [-17, 24], + [-16, -27], + [9, -87], + [17, -25], + [-21, -63], + [-156, -51], + [-69, -84], + [-124, 16], + [-48, -80], + [-37, -5], + [-35, -81], + [-103, 6], + [-30, -11], + [-18, -56], + [4, -83], + [13, -111], + [45, -73], + [-6, -49], + [-100, -40], + [-162, -4], + [-65, -46], + [-70, -80], + [-33, -9], + [-57, -49], + [-36, -4], + [-31, 42], + [32, 125], + [-12, 97], + [13, 64], + [-54, 31], + [-62, -49], + [-27, -1], + [-24, 6], + [-32, 52], + [-131, -12], + [-34, 24], + [19, 60], + [110, -18], + [60, 30], + [-119, 104], + [-48, -6], + [-44, 39], + [36, 82], + [17, 8], + [50, 4], + [21, -33], + [87, 3], + [2, 77], + [-48, 1], + [-5, 25], + [17, 27], + [-53, 5], + [-32, 18], + [5, 78], + [-25, 4], + [-39, -19], + [-81, 3], + [-43, -30], + [-129, 9], + [-18, -32], + [-69, -14], + [-73, 26], + [-28, 109], + [-45, 37], + [-149, 46] + ], + [ + [7781, 3704], + [0, 9] + ], + [ + [3298, 7664], + [-51, -81], + [-49, -2], + [-71, 46], + [-66, 117], + [-68, -20], + [-14, -51], + [-57, -37], + [-145, -14], + [-24, -78], + [-129, 28], + [-66, 31], + [11, 37], + [-61, 82], + [-2, 42], + [-46, 70], + [-68, 22], + [-78, -37], + [-63, -58], + [-60, 45], + [-103, 4], + [-45, 64], + [-10, 47], + [45, 65], + [2, 36], + [-22, 32], + [-43, 25], + [-38, 128], + [-72, 32], + [-93, 75], + [-77, -8], + [-29, 54], + [-97, 37], + [-136, -26], + [-144, -184], + [-83, -19], + [-107, -11], + [-87, 73], + [-97, -17], + [-165, 35], + [-28, -87], + [-9, -111], + [-197, -14], + [18, 126], + [-14, 37], + [-102, 117], + [-12, 94], + [-52, 60], + [-25, 19], + [-89, 12], + [-9, 118], + [24, 74], + [35, 7], + [124, -20], + [31, -18], + [54, 102], + [5, 58], + [93, 168], + [-12, 21], + [-127, 78], + [-66, 76], + [18, 25], + [21, 281], + [46, 39], + [-32, 93], + [66, 176], + [-5, 44], + [27, 27], + [19, 73], + [-8, 92], + [19, 29], + [-2, 30], + [-34, 24], + [-21, 42], + [-26, 9], + [-36, -7], + [-29, -66], + [-144, 3], + [-51, -60], + [-232, 14], + [-28, 208], + [23, 70], + [91, 117], + [175, 61], + [90, 126], + [-7, 38], + [-77, 140], + [-98, 8], + [-25, 17], + [60, 170], + [24, 40], + [117, -108], + [90, -16], + [55, -54], + [174, -42], + [88, -7], + [-34, 47], + [4, 39], + [39, 41], + [137, 87], + [10, 57], + [33, 39], + [20, 11], + [122, -47], + [57, 34], + [166, 26], + [108, 87], + [67, -39], + [20, -56], + [121, -67], + [42, 10], + [54, -10], + [40, 44], + [56, -74], + [-40, -66], + [40, 2], + [92, 46], + [35, -37], + [82, -187], + [114, -61], + [-2, -44], + [88, -116], + [18, 31], + [49, 22], + [37, -15], + [100, 83], + [61, -34], + [59, 20], + [53, 159], + [30, 14], + [76, -87], + [7, -115], + [-15, -25], + [-68, -44], + [-15, -45], + [19, -22], + [78, -32], + [13, -55], + [-59, -35], + [-18, -31], + [4, -30], + [52, -20], + [97, 15], + [45, -121], + [27, -16], + [53, 19], + [22, 15], + [-41, 36], + [-3, 21], + [28, 114], + [85, 46], + [4, 27], + [27, 17], + [79, -42], + [7, -41], + [-26, -78], + [7, -43], + [62, -46], + [18, -72], + [61, -94], + [-42, -91], + [-20, -15], + [-45, 26], + [-54, -48], + [-27, -64], + [5, -40], + [40, -34], + [-11, -42], + [-27, -33], + [-58, -14], + [-71, -41], + [-5, -32], + [67, -64], + [0, -92], + [48, -37], + [63, 1], + [94, -78], + [8, -37], + [-52, -79], + [29, -19], + [44, -95], + [-20, -60], + [189, 63], + [99, 12] + ], + [ + [11382, 11178], + [-58, 33] + ], + [ + [11099, 11850], + [12, 21] + ], + [ + [11731, 13640], + [-3, -77], + [16, -20], + [103, 39], + [107, -20], + [39, -40], + [12, -45], + [202, -63], + [67, 46], + [84, -6], + [46, -96], + [101, 20], + [7, -33], + [52, -24], + [12, -18], + [-6, -46], + [22, -10], + [30, 43], + [80, 64], + [84, 118], + [20, -3], + [25, -33], + [-13, -86], + [-58, -77], + [-61, -21], + [-41, -34], + [2, -21], + [59, -5], + [20, -18], + [112, 8], + [29, 31], + [63, 16], + [19, -12], + [19, 22], + [7, 76], + [53, 73], + [20, 2], + [68, -152], + [42, -38], + [30, -58], + [97, -59], + [81, -17], + [25, -19], + [8, -31], + [-95, -162], + [1, -27], + [21, -26], + [-20, -71], + [-187, -139], + [-30, -106], + [-103, -127], + [-97, -216], + [-75, -36], + [-39, -60], + [-50, 7], + [-20, -17], + [-29, 10], + [-36, -57], + [-19, -51], + [30, -23], + [-11, -37], + [-29, -49], + [-45, -22], + [10, -26], + [59, -10], + [1, -19], + [-76, -55], + [-121, -20], + [-158, -130], + [-196, -33], + [-67, -44], + [11, -68], + [-48, -128], + [6, -25], + [-55, -66], + [-65, -34], + [-25, -93], + [-79, -102] + ], + [ + [9359, 8830], + [9, -2] + ], + [ + [6319, 9968], + [145, -6], + [193, 114], + [29, -2], + [49, -43], + [24, 10], + [73, 117], + [21, 20], + [29, -7], + [19, 25], + [14, 118], + [71, 27], + [39, -15], + [56, -57], + [98, 97], + [118, 7], + [82, 62], + [36, 66], + [60, -8] + ], + [ + [8651, 8941], + [-4, -6] + ] + ], + "transform": { + "scale": [0.00023341194452728908, 0.00020861360163015782], + "translate": [74.474584, 27.650638] + }, + "objects": { + "haryana_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5]], + "type": "Polygon", + "properties": { + "cartodb_id": 182, + "censuscode": 78, + "dt_cen_cd": 10, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Fatehabad" + } + }, + { + "arcs": [[6, 7, 8, 9, 10, 11, 12]], + "type": "Polygon", + "properties": { + "cartodb_id": 213, + "censuscode": 86, + "dt_cen_cd": 18, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Gurugram" + } + }, + { + "arcs": [[13, 14, 15, 16, 17]], + "type": "Polygon", + "properties": { + "cartodb_id": 484, + "censuscode": 82, + "dt_cen_cd": 14, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Rohtak" + } + }, + { + "arcs": [[18, 19, 20, 21, -18]], + "type": "Polygon", + "properties": { + "cartodb_id": 541, + "censuscode": 76, + "dt_cen_cd": 8, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Sonipat" + } + }, + { + "arcs": [[[22, 23, 24, 25, 26, 27]], [[28, 29]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 14, + "censuscode": 70, + "dt_cen_cd": 2, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Ambala" + } + }, + { + "arcs": [[-15, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39]], + "type": "Polygon", + "properties": { + "cartodb_id": 77, + "censuscode": 81, + "dt_cen_cd": 13, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Bhiwani" + } + }, + { + "arcs": [[40, -9, 41]], + "type": "Polygon", + "properties": { + "cartodb_id": 179, + "censuscode": 88, + "dt_cen_cd": 20, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Faridabad" + } + }, + { + "arcs": [[42, -16, -40, 43, -3, 44]], + "type": "Polygon", + "properties": { + "cartodb_id": 228, + "censuscode": 80, + "dt_cen_cd": 12, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Hisar" + } + }, + { + "arcs": [[45, -20, 46, 47]], + "type": "Polygon", + "properties": { + "cartodb_id": 429, + "censuscode": 75, + "dt_cen_cd": 7, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Panipat" + } + }, + { + "arcs": [[48, -7, 49, 50, 51, 52, 53, -33, 54, -31, -14, -22]], + "type": "Polygon", + "properties": { + "cartodb_id": 257, + "censuscode": 83, + "dt_cen_cd": 15, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Jhajjar" + } + }, + { + "arcs": [[55, 56, 57, 58, 59]], + "type": "Polygon", + "properties": { + "cartodb_id": 268, + "censuscode": 73, + "dt_cen_cd": 5, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Kaithal" + } + }, + { + "arcs": [[60, -48, 61, 62, 63, 64, -57, 65, 66, 67]], + "type": "Polygon", + "properties": { + "cartodb_id": 287, + "censuscode": 74, + "dt_cen_cd": 6, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Karnal" + } + }, + { + "arcs": [[68, -66, -56, 69, -30, 70, -26, 71, 72]], + "type": "Polygon", + "properties": { + "cartodb_id": 329, + "censuscode": 72, + "dt_cen_cd": 4, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Kurukshetra" + } + }, + { + "arcs": [[73, -53, 74, 75, 76, -38, 77, 78, -35]], + "type": "Polygon", + "properties": { + "cartodb_id": 355, + "censuscode": 84, + "dt_cen_cd": 16, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Mahendragarh" + } + }, + { + "arcs": [[79, 80, -11, 81]], + "type": "Polygon", + "properties": { + "cartodb_id": 374, + "censuscode": 87, + "dt_cen_cd": 19, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Mewat" + } + }, + { + "arcs": [[82, -82, -10, -41]], + "type": "Polygon", + "properties": { + "cartodb_id": 426, + "censuscode": 89, + "dt_cen_cd": 21, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Palwal" + } + }, + { + "arcs": [[-28, 83]], + "type": "Polygon", + "properties": { + "cartodb_id": 428, + "censuscode": 69, + "dt_cen_cd": 1, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Panchkula" + } + }, + { + "arcs": [[84, -12, -81, 85, -76, 86, -51]], + "type": "Polygon", + "properties": { + "cartodb_id": 482, + "censuscode": 85, + "dt_cen_cd": 17, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Rewari" + } + }, + { + "arcs": [[-5, 87]], + "type": "Polygon", + "properties": { + "cartodb_id": 532, + "censuscode": 79, + "dt_cen_cd": 11, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Sirsa" + } + }, + { + "arcs": [[-68, 88, -73, 89, -24, 90]], + "type": "Polygon", + "properties": { + "cartodb_id": 626, + "censuscode": 71, + "dt_cen_cd": 3, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Yamuna Nagar" + } + }, + { + "arcs": [[91, -62, -47, -19, -17, -43, -1, 92, -59, 93, -64]], + "type": "Polygon", + "properties": { + "cartodb_id": 627, + "censuscode": 77, + "dt_cen_cd": 9, + "st_cen_cd": 6, + "st_nm": "Haryana", + "district": "Jind" + } + } + ] + } + } +} diff --git a/public/maps/himachalpradesh.json b/public/maps/himachalpradesh.json index 33a564d443..66cf9de7db 100644 --- a/public/maps/himachalpradesh.json +++ b/public/maps/himachalpradesh.json @@ -1 +1,2141 @@ -{"type":"Topology","arcs":[[[13675,8799],[-22,-16],[-14,-63],[-28,-21],[-41,-18],[-83,-12],[-89,-58],[-19,-1],[-17,30],[-43,12],[-123,0],[-78,15],[-233,-85],[-29,-25],[-7,32],[-52,1],[-66,33],[-51,-11],[-79,-187],[3,-54],[-22,-26],[-9,-58],[59,-52],[13,-35],[60,-26],[48,-44],[-28,-47],[19,-40],[-25,-22],[-138,0],[-89,88],[-136,27],[-41,-65],[-83,-69],[-140,21],[-33,-17],[-8,-41],[-133,47],[-313,-16],[-27,-26],[-18,-46],[-35,-17],[10,-61],[-16,-83],[27,-80],[-72,-48],[-90,5],[-17,20],[-111,-2],[-81,-45],[-70,-1],[18,-27],[-26,-13],[-13,-29],[47,-37],[4,-25],[-19,-16],[13,-36],[-41,-70],[-12,-112],[-32,-19],[-81,-1],[-111,-117],[-32,-3],[-71,78],[-80,4],[-43,17],[-22,-10],[-103,36],[-39,1],[-15,-136],[-27,-11],[3,-39],[-69,-3],[-30,24],[-68,1],[-7,32],[-58,55],[-37,17],[-42,53]],[[10112,7226],[-14,35],[-38,32],[-30,47],[-6,63],[12,60],[-47,99],[48,114],[85,61],[-43,6],[-126,59],[-56,-8],[-52,9],[-102,101],[-12,55],[-51,89],[59,90],[-4,32],[87,75],[-3,23],[-112,112],[71,55],[-57,79],[-19,0],[-47,36],[8,58],[-35,45],[-15,53],[-39,34],[-6,72],[-107,14],[-85,56],[-59,3],[-21,15],[-31,47],[-27,15],[-8,26],[-27,15],[-15,61],[-31,37],[-57,32],[-28,2],[-26,40],[-62,10],[-86,71],[-34,9],[-21,37],[-38,10],[-29,38],[-10,68],[-83,69],[-55,-47],[7,-40],[-12,-29],[-32,-1],[-46,9],[-64,100],[-117,36],[-30,-36],[-18,-115],[-78,-22],[-76,-3],[-38,14],[-12,44],[-97,69],[-28,-13],[-85,34],[-56,51],[-55,109],[20,23],[5,46],[-15,30],[1,56],[-51,127],[-23,-7],[-20,74],[-66,48],[-15,27],[-45,-1],[-64,44],[-30,72],[-57,25],[-80,67],[-20,6],[-55,-16],[-114,77],[-33,62],[-69,16],[-133,59],[-182,-86],[-157,-12]],[[6588,10384],[18,18],[9,44],[-10,43],[-42,-2],[-17,42],[-29,21],[-248,-91],[-53,1],[-43,-35],[-46,6],[-82,-15],[5,111],[-23,2],[-100,-49],[-30,6],[-32,16],[24,45],[1,36],[-36,31],[-41,3],[-40,-17],[38,75],[35,34],[4,37],[-33,15],[-34,-4],[-126,-43]],[[5657,10714],[-27,18],[-24,60],[72,144],[59,81],[-40,9],[-12,28],[7,23],[-73,3],[-78,-30],[-40,24],[-11,39],[-84,-25],[-31,2],[-29,16],[-14,35],[-48,43],[-41,-8],[-21,-18],[-44,57],[-80,12],[-66,-45],[-44,-71],[-63,42],[37,77],[4,42],[-20,19],[-112,-17],[-137,54],[-87,-32],[-21,22],[-2,40],[30,87],[-101,16],[-19,21],[-4,79],[-31,27],[-14,60],[-193,81],[-51,-13],[-37,11],[-37,41],[-24,5],[-109,-25],[-124,-48],[-56,12],[-40,24],[15,76],[-46,20],[-42,51],[21,55],[-25,69],[-97,79],[0,52],[-83,190],[2,91],[-44,23],[8,118],[71,18],[76,94],[149,63],[52,-9],[41,-135],[28,-25],[-4,-43],[14,-37],[178,-11],[149,50],[70,58],[59,22],[69,50],[94,83],[25,-6],[53,-50],[45,-8],[75,36],[62,-16],[62,43],[52,88],[6,36],[88,62],[7,168],[196,35],[22,34],[24,7],[16,41],[63,78],[-52,2],[-13,101],[46,39],[-56,29],[-6,82],[11,25],[-58,18],[-26,38],[-5,98],[-43,45],[-45,153],[-1,71],[23,123],[31,50],[2,94],[-17,29],[15,124]],[[5134,14407],[20,71],[34,22],[80,140],[11,77],[-32,40],[22,29],[79,14],[34,-11],[51,-64],[42,-26],[12,42],[22,16],[64,-5],[2,-20],[-49,-59],[-30,-81],[27,-16],[6,-35],[-68,-60],[14,-47],[-37,-59],[23,-91],[61,-70],[54,-23],[-5,-31],[41,-27],[-14,-30],[45,-43],[36,-4],[72,45],[38,-31],[1,-36],[32,-51],[43,-11],[-16,-75],[25,-25],[16,-61],[46,-71],[32,-86],[198,-102],[20,-35],[63,-29],[79,-62],[57,19],[38,-8],[20,27],[49,14],[103,-70],[33,-3],[40,-63],[99,22],[27,49],[148,-35],[-10,-56],[9,-61],[44,-7],[-1,-70],[12,-7],[-8,-37],[17,-72],[-20,-32],[50,-4],[28,61],[45,31],[35,-81],[32,-28],[69,-19],[60,-47],[46,-9],[4,-45],[-23,-21],[3,-14],[51,-40],[12,-37],[39,-1],[47,59],[102,-107],[34,-16],[73,7],[32,-39],[-7,-45],[43,-49],[4,-30],[28,-13],[92,7],[36,21],[28,110],[-14,66],[52,41],[36,69],[36,24],[44,8],[57,-45],[69,28],[47,-93],[85,-21],[130,128],[44,-26],[112,30],[112,125],[41,8],[70,43],[45,52],[19,62],[11,-20],[118,8],[47,16],[67,60],[66,16],[30,49],[23,88],[26,2],[38,-44],[69,0],[38,-60],[40,29],[47,-38],[59,-85],[38,-11],[12,-33],[53,-62],[136,-114],[10,-38],[-25,-32],[-63,-4],[-30,-55],[-20,-80],[28,-33],[139,-65],[41,-51],[75,20],[100,-59],[60,-63],[35,-82],[-9,-52],[62,-76],[82,-1],[42,-16],[28,-32],[12,-47],[-27,-105],[30,-29],[-41,-49],[-32,-118],[4,-28],[76,-70],[31,-87],[51,-75],[62,-39],[7,-75],[125,-203],[156,2],[81,26],[26,37],[0,31],[-32,54],[-2,102],[45,-34],[95,-24],[61,147],[64,48],[27,-11],[75,-91],[23,0],[65,144],[74,45],[80,-10],[59,-69],[49,18],[30,-11],[51,21],[53,32],[37,43],[15,56],[100,42],[61,0],[102,51],[11,62],[-46,67],[254,132],[118,-9],[0,-145],[29,-73],[-46,-103],[-20,-141],[35,-175],[21,-44],[58,-33],[-215,-155],[-39,-42],[-62,-24],[-95,-14],[11,-248],[-92,-110],[142,-166],[205,190],[115,87],[54,-6],[20,-11],[28,-63],[43,-16],[75,-4],[59,-64],[15,-55],[-49,-83],[-9,-44],[12,-32],[124,-58],[54,-99],[108,2],[72,-40],[-7,-28],[-87,-92],[-26,-113],[-106,-79],[-18,-29],[-15,-78],[18,-85],[6,-189],[-35,-77],[-78,-90],[-7,-27],[194,-17],[138,33],[114,2],[238,-161],[9,-37],[-20,-72],[14,-78],[-22,-56],[-51,-33],[-12,-38],[66,-63],[35,-121],[39,-24],[148,-27],[39,-30],[12,-67]],[[12099,4652],[-22,-114],[-23,-10],[-86,38],[-93,-128],[-25,-17],[-22,3],[0,-21],[-22,-25],[-63,19],[-52,-7],[-29,-59],[-57,-19],[-71,50],[-105,-1],[-19,-38],[-29,-9],[-10,-33],[-70,-10],[-24,-41],[-116,-79],[-151,11],[-107,-39],[-61,-71],[-9,-85],[-96,62],[-103,-10],[-65,71],[-39,-14],[-31,-45],[-21,0],[-88,-55],[-23,-6],[-33,17],[-65,-21],[10,-30],[-42,-59],[-7,-66],[-93,-43],[-28,-27],[-6,-82],[-33,-71],[-24,-20],[-57,-15],[-45,-70],[-62,6],[19,-17],[45,-128],[29,-21],[-12,-73],[28,-39],[-2,-15],[-66,0],[16,-33],[-27,-26],[-6,-53],[-34,-38],[-10,-32],[37,-46],[38,8],[25,-12],[-7,-34],[-67,8],[-106,89],[-64,24],[-45,-1],[-78,-68],[-8,-20],[-6,-52],[15,-52],[44,-29],[-4,-60],[96,-9],[20,19],[45,11],[52,-2],[9,-11],[-2,-17],[26,-40],[-65,-86],[-9,-40],[-4,-84],[24,-36],[2,-33],[-70,12],[-38,22],[-21,65],[-26,24],[-44,-6],[-17,-36],[4,-52],[-46,-69],[56,-75],[2,-33],[-46,-30],[-66,-81],[-18,-72],[-48,-79],[-72,-53]],[[9380,1978],[-52,46],[-24,71],[-44,25],[-47,51],[-21,-12],[-10,36],[-13,-12],[-136,22],[-33,-89],[-65,-49],[-67,-26],[-148,1],[-40,-13],[-4,14],[40,84],[-2,18],[-18,6],[-84,-9],[-24,-66],[-139,58],[14,29],[-29,132],[15,80],[-25,19],[-44,104],[-31,-7],[-41,12],[-43,-17],[-39,37],[-48,12],[23,79],[-10,34],[-34,37],[-11,63],[-60,67],[81,37],[57,58],[-7,159],[-109,118],[-29,7],[-70,61],[-90,53],[-3,-28],[-44,-36],[-115,-46],[-73,-129],[-86,-40],[-5,-59],[-24,-26],[-35,-1],[-96,-55],[-21,-63],[-29,-33],[-37,-17]],[[7351,2775],[-25,108],[51,41],[-77,65],[-142,49],[-2,24],[32,63],[-4,22],[-99,93],[-25,2],[-43,-24],[-99,19],[-18,64],[-66,43],[-42,15],[-65,-4],[-83,59],[-87,40],[15,21],[43,9],[5,29],[22,19],[-38,99],[-21,11],[-14,-9],[-53,24],[-54,-51],[-32,-61],[-19,59],[-31,10],[-8,29],[3,23],[130,62],[-42,63],[-71,-8],[-20,-27],[-116,-20],[-32,32],[-1,25],[74,-3],[15,109],[80,79],[15,33],[-36,51],[-90,63],[-7,35],[5,79],[66,79],[-27,41],[-5,39],[-36,16],[46,178],[-53,134]],[[6270,4726],[65,-47],[63,-69],[128,-59],[101,-82],[53,-17],[47,15],[25,-16],[45,14],[15,-13],[10,-68],[24,-14],[64,15],[66,-4],[126,126],[28,-56],[36,1],[67,80],[92,-7],[36,-23],[98,110],[55,-50],[101,28],[86,111],[28,5],[25,22],[21,126],[73,151],[63,35],[59,-2],[6,15]],[[7976,5053],[45,-10],[23,14],[75,-82],[25,3],[24,-27],[29,14],[47,-6],[33,24],[97,12],[12,14],[88,17],[120,-25],[27,11],[72,148],[28,23],[40,10],[37,-11],[89,47],[84,-10],[42,-26],[45,13],[19,33],[-49,134],[22,116],[56,43],[134,43],[80,122],[79,53],[11,29],[-25,35],[-10,49],[15,57],[-23,63],[-67,40],[-19,51],[-27,8],[-80,88],[-30,106],[-3,73],[22,84],[44,28],[-63,93],[-2,39],[47,51],[11,47],[36,20],[44,81],[27,23],[103,-4],[114,61],[72,-4]],[[9596,6868],[20,-31],[74,-21],[51,-46],[50,-108],[78,-55],[17,-29],[19,-74],[21,-26],[-48,-140],[111,-162],[-17,-86],[44,-182],[-19,-105],[46,8],[21,-14],[15,28],[45,-37],[8,-33],[50,-55],[-11,-83],[81,-73],[19,-70],[62,-53],[24,-6],[28,-37],[92,-12],[53,-41],[13,-60],[58,-5],[84,17],[128,-21],[134,92],[65,-15],[46,8],[41,26],[66,-13],[31,-53],[71,-19],[90,-94],[29,16],[45,-35],[12,-29],[-57,-94],[49,-79],[32,-2],[39,-39],[26,1],[128,-58],[48,14],[85,71],[68,-74],[142,-20],[44,-45],[-18,-29],[-11,-86],[81,-48]],[[5657,10714],[-79,-68],[-104,-56],[-45,-48],[-12,-47],[-37,-33],[-72,-30],[-9,-84],[14,-79],[-44,-65],[-22,-13],[-85,-6],[40,-67],[43,-32],[58,-116],[-61,-41],[19,-90],[-25,-49],[40,-70],[-44,-72],[6,-19],[32,-9],[-30,-31],[-1,-110],[-47,-72],[-94,-95],[-12,-5],[-123,57],[-49,-10],[-71,-88],[-40,-4],[-215,70],[-51,33],[-62,81],[-42,33],[-286,62],[-6,23],[-49,-25],[-41,3],[-98,95],[-26,-20],[-56,4],[-63,68],[-41,19],[-34,-13],[-37,7],[-22,79],[-55,15],[-125,74],[-103,152],[-77,-2],[-59,49],[-72,23],[-32,-13],[-31,12],[-49,143],[-47,39],[-30,-9],[-22,31],[-10,69],[-21,6],[-140,6],[-78,-110],[-127,-88],[-48,-16],[32,-70],[-23,-71],[-36,-44],[11,-102],[23,-74],[82,-57],[-27,-140],[17,-67],[-11,-26],[-38,-13],[-20,62],[-41,-33],[-70,-26],[-94,15],[11,35],[-4,84],[-20,28],[-42,9],[-105,64],[-174,-35],[-27,24],[-46,8],[-63,105],[-1,41],[31,100],[0,13],[-35,-14],[27,65],[-10,37],[-126,194],[-74,79],[-69,-4],[-95,28],[-48,67]],[[1483,10444],[66,14],[27,26],[11,40],[-14,31],[-71,93],[-89,68],[-178,195],[-19,43],[2,69],[22,84],[85,171],[-13,27],[157,222],[71,126],[3,75],[-84,72],[-29,44],[-10,53],[60,155],[18,108],[-6,78],[-56,66],[-116,226],[-162,119],[-73,31],[-57,55],[-60,87],[-32,120],[56,54],[8,33],[-15,47],[43,53],[116,25],[147,-23],[147,-75],[103,-92],[47,-71],[53,4],[185,80],[77,69],[56,18],[49,102],[99,35],[18,35],[124,92],[55,162],[-4,23],[154,27],[70,33],[37,33],[379,49],[80,101],[72,227],[25,22],[-9,17],[58,48],[18,36],[105,51],[89,83],[91,43],[46,69],[114,96],[71,8],[63,-34],[89,-7],[61,15],[60,-18],[120,83],[43,-2],[65,24],[62,-5],[60,52],[68,-17],[84,3],[20,-14],[-10,-57],[59,-26],[10,-74],[58,-40],[64,-18],[61,11],[46,37],[152,11],[51,38],[53,-1],[25,-20],[70,10]],[[4658,7695],[-19,-30],[-11,-91],[-26,-43],[2,-90],[-33,-181],[19,-75],[50,-132],[51,-38],[81,-19],[33,-34],[-7,-53],[17,-36],[56,-31],[-8,-38],[23,-20],[8,-79],[108,-53],[43,-36],[-54,-176],[3,-50],[34,-73],[26,-110]],[[5054,6207],[-109,70],[-90,-30],[-17,-32],[-64,-21],[-99,23],[-54,-61],[-46,-11],[-24,-40],[12,-43],[-23,-53],[11,-74],[18,-25],[-6,-67],[-51,-124],[10,-107],[76,-127],[-9,-33],[-41,-39],[8,-40],[-16,-25],[-93,36],[-16,-18],[-78,50],[-52,-13],[-16,49],[-99,81],[-8,35],[-32,-2],[-36,36],[-20,-40],[-59,46],[-69,8],[-113,79]],[[3849,5695],[-88,144],[-15,42],[16,75],[-139,276],[-36,104],[-27,22],[2,27],[-119,106],[-47,59],[-22,64],[-73,94],[-97,200]],[[3204,6908],[25,50],[-40,87],[4,40],[-16,9],[22,55],[-44,39],[-7,61],[15,-2],[17,-38],[26,-10],[106,33],[64,45],[78,-81],[54,17],[75,86],[60,-66],[9,57],[70,-6],[27,11],[17,68],[27,0],[-6,-37],[73,12],[-27,45],[17,22],[27,-13],[16,-27],[23,1],[6,29],[-33,55],[11,12],[221,75],[3,35],[-19,32],[31,38],[200,131],[105,33],[62,-11],[155,-100]],[[13675,8799],[29,-62],[127,-122],[18,-62],[144,-130],[39,-66],[25,-18],[152,-23],[-83,-310],[-32,-75],[-72,-95],[10,-43],[-35,-86],[-9,-227],[-91,-60],[-30,-44],[-17,-54],[2,-69],[22,-75],[31,-43],[95,-34],[-59,-116],[44,-56],[32,-145],[26,-53],[69,-37],[132,26],[5,-89],[27,-78],[38,-43],[128,-97],[31,-54],[-37,-99],[-114,-126],[-130,-54],[-81,-87],[-128,-40],[-18,-54],[-47,-48],[6,-32],[32,-37],[6,-118],[144,30],[54,-82],[153,-114],[8,-42],[-22,-138],[-71,-57],[-1,-28],[180,-66],[19,-27],[27,-10],[31,-45],[27,-113],[-50,-105],[49,-13],[81,-76],[41,-60],[53,-157],[122,-60],[-5,-46],[18,-84],[26,-45],[86,-15],[-8,-40],[11,-46],[46,-62],[114,-58],[25,-63],[-7,-100],[10,-26],[49,-43],[33,-113],[-26,9],[-112,-9],[-105,-53],[-96,13],[-35,45],[-39,-4],[-31,-51],[-75,-9],[-38,18],[-41,26],[-46,71],[-63,23],[-84,85],[-38,86],[7,29],[-63,67],[25,86],[-36,30],[-167,-53],[-166,12],[-57,-11],[-53,8],[-87,35],[-72,0],[-54,-44],[-10,41],[-33,30],[-16,69],[-77,18],[-31,30],[-66,27],[-128,-13],[-46,-33],[-85,-107],[-103,-14],[-195,0],[-16,88],[-42,35],[-58,85],[-55,28],[-21,33],[-33,20],[-23,-46],[-75,-16],[-28,27],[8,47],[-31,38],[-21,61],[-35,-12],[-19,45],[-57,16],[-132,-14],[-44,-16],[-82,16]],[[9596,6868],[24,30],[-16,164],[40,19],[6,35],[74,-51],[42,-1],[44,36],[53,9],[79,-1],[91,-29],[21,21],[13,47],[7,34],[-13,33],[51,12]],[[3849,5695],[-27,-15],[78,-126],[-26,-63],[60,-8],[5,-15],[-24,-9],[-8,-81],[-54,-11],[-110,-56],[-79,6],[-83,74],[-13,-26],[0,-72]],[[3568,5293],[-38,16],[10,44],[-27,31],[-27,68],[-28,-60],[10,-72],[-55,-52],[-77,-23],[-61,7],[11,-110],[50,-8],[8,-106],[24,-31],[-30,-40],[-54,36],[-9,-24],[-88,-27],[27,-82],[-53,-55],[-130,-50],[-25,47],[-144,-10],[-75,-40],[-149,8],[-30,100],[1,79],[-37,28],[-45,7],[-36,25],[-21,45],[-4,108],[85,75],[16,37],[-14,49],[-29,25],[-16,69],[-68,59],[-30,89],[-26,23],[-3,42],[-30,45],[1,66],[-78,123],[-29,94],[-182,283],[4,57],[-18,28],[-15,-8],[-60,44],[-90,161],[15,25],[-6,59],[-33,31],[0,37],[-28,50],[-24,-2],[-44,51],[7,50],[-35,76],[-15,71],[-38,36],[9,47],[-64,164],[-38,16],[-15,65],[-50,104],[51,-11],[12,16],[75,29],[63,-46],[20,-2],[-17,46],[-53,46],[-51,129]],[[1625,7600],[91,-35],[46,2],[46,7],[38,62],[131,4],[42,-12],[112,-116],[44,28],[11,-68],[23,-39],[52,-24],[58,-70],[228,-61],[62,-49],[20,-39],[-9,-33],[31,-10],[22,21],[41,4],[24,-23],[3,-27],[63,-106],[121,-126],[89,-64],[82,-98],[108,180]],[[5054,6207],[6,-65],[-13,-47],[30,-5],[-26,-37],[5,-47],[26,-34],[-6,-36],[22,-40],[-30,-27],[35,-10],[117,11],[85,-94],[13,-37],[-14,-54],[53,-41],[3,-59],[17,-41],[4,-27],[-21,1],[-6,-31],[29,-27],[2,-91],[35,5],[55,-28],[42,17],[113,-44],[95,-6],[13,-121],[-63,-19],[-19,-18],[47,-72],[1,-65]],[[5704,5018],[27,-73],[-26,-46],[84,-63],[108,-28],[17,-53],[22,-6],[-53,-93],[-78,-31],[-10,-23],[13,-29],[-12,-17],[-29,7],[-61,-21],[-20,-26],[-21,-55],[14,0],[18,-57],[41,-59],[-43,-27],[-58,1],[-103,68],[-29,-29],[-24,-4],[-79,25],[-129,-51],[-18,34],[-77,8],[-55,41],[-56,19],[-44,-52],[-128,-68],[-98,-9],[-101,-28]],[[4696,4273],[-48,42],[6,31],[-43,12],[-131,-69],[-28,2],[-20,49],[29,26],[10,45],[75,58],[-138,151],[-81,-79],[-29,-46],[-49,-3],[-10,58],[21,90],[-27,-2],[-15,-70],[-44,-40],[-16,12],[10,66],[-10,29],[-72,-50],[-43,0],[-57,98],[-14,74],[-26,19],[-93,-106],[-65,-35],[-12,33],[76,57],[12,29],[-134,162],[-120,213],[-52,64],[49,32],[-39,68]],[[6588,10384],[6,-15],[-31,-55],[-74,-87],[-51,-137],[18,-88],[-64,-82],[27,-85],[-29,-95],[7,-126],[92,-110],[-62,-98],[-77,-5],[-21,-25],[-49,-6],[-46,-67],[20,-24],[-56,-144],[-11,-117],[19,-106],[-190,7],[-33,-100],[19,-36],[4,-99],[-20,-20]],[[5986,8664],[-76,-22],[-33,10],[-122,-15],[-158,-51],[-42,-34],[-73,39],[-100,89],[-11,39],[-38,6],[-24,-6],[-20,-35],[-25,11],[-30,-19],[-143,-180],[-33,-5],[-4,16],[-70,14],[-34,22],[-15,50],[-65,14],[-39,-18],[-75,-90],[8,-96],[88,-181],[11,-51],[-11,-28],[23,-34],[20,-115],[-23,-11],[-26,-101],[-22,-16],[4,-49],[-17,-20],[14,-108],[-83,-13],[-84,19]],[[1625,7600],[-140,306],[-74,122],[-7,49],[-74,62],[-51,36],[-110,25],[-23,41],[-137,18],[-95,48],[-79,69],[-126,145],[-123,2],[-45,39],[-47,93],[-180,81],[-226,-57],[-88,81],[142,92],[92,102],[108,137],[29,96],[-25,61],[-161,45],[-8,61],[19,194],[133,107],[105,44],[270,49],[81,63],[39,83],[359,397],[125,98],[175,55]],[[7976,5053],[18,52],[1,62],[-10,30],[-26,24],[6,92],[-15,31],[-194,161],[-26,45],[-60,254],[-6,89],[15,27],[-60,86],[-20,57],[17,114],[-18,67],[24,93],[-37,219],[31,44],[-142,202],[-216,122],[-35,-19],[-19,52],[-23,173],[-43,74],[3,30],[-18,31],[8,33],[-35,55],[8,34],[-14,35],[-51,24],[19,79],[-57,-17],[-278,1],[-42,-8],[-55,-37],[-60,31],[-45,-4],[-8,47],[15,62],[-19,9],[-117,183],[-27,139],[-92,130],[-113,195],[16,84],[-22,122],[-57,22],[-90,86],[-6,66],[-15,28]],[[6270,4726],[-110,67],[-47,61],[-108,61],[9,26],[-13,44],[-97,97],[-52,-21],[-33,8],[-45,-12],[-70,-39]],[[9380,1978],[20,-56],[-6,-49],[27,-17],[42,3],[26,-32],[33,-6],[8,-39],[38,-31],[46,-72],[-33,-68],[-1,-60],[92,-50],[52,-56],[59,-8],[-49,-63],[30,-53],[-16,-65],[47,-47],[-43,-8],[-70,12],[3,-79],[-13,-21],[-53,33],[-34,5],[-12,-5],[-11,-45],[62,-45],[44,-100],[37,-37],[40,-4],[33,-25],[37,20],[18,-6],[34,20],[23,-2],[39,-132],[-58,-137],[-49,-28],[-92,-9],[-205,-136],[-46,-3],[-129,-101],[-14,-30],[-78,-15],[-95,18],[-43,-84],[-120,8],[-129,-57],[-53,-48],[-2,-36],[3,-29],[58,-76],[-6,-27],[-42,2],[-100,64],[-32,61],[-44,41],[-70,164],[-21,-3],[-55,-79],[-7,-81],[-20,-24],[-19,14],[-65,-18],[-31,-33],[-116,-9],[-20,20],[-63,5],[-2,22],[44,38],[62,22],[11,28],[50,54],[13,92],[-25,36],[-22,3],[-87,-127],[-83,-68],[-31,-47],[-23,11],[6,50],[-12,19],[-54,26],[-6,35],[-106,-20],[-47,102],[-89,6],[-69,-49],[-209,68],[-12,48],[-41,43],[-111,22],[-108,-43],[-16,22],[4,114],[-64,99],[-70,36],[-172,45],[-39,34],[-48,99],[127,81],[78,85],[23,201],[-44,80],[12,72],[-22,85],[14,21],[-126,95],[-34,56],[-35,24],[-28,-11],[-15,9],[11,44],[-114,72],[-132,20],[-59,35],[-25,-61],[-45,-16],[-22,9],[-37,54]],[[6337,1899],[46,-4],[26,70],[209,149],[30,126],[0,71],[74,31],[47,50],[17,47],[71,11],[58,-12],[12,20],[21,-3],[48,-60],[48,6],[14,17],[-2,65],[47,3],[108,71],[-38,63],[39,39],[1,30],[11,9],[45,-20],[31,12],[25,60],[26,25]],[[6337,1899],[-1,71],[-71,55],[51,62],[-9,130],[-24,20],[-18,-16],[-42,-84],[-47,47],[-66,17],[-49,93],[-40,14],[-28,28],[-4,88],[-47,77],[-61,144],[-105,-58],[-75,-64],[-42,-15],[-132,90],[-30,41],[-27,56],[20,74],[-18,47],[-179,-124],[-72,59],[1,27],[-24,5],[0,27],[-46,5],[-54,48],[-9,58],[-51,66],[-34,-1],[-48,48],[-141,-7],[-42,55],[-121,55],[-70,61],[16,92],[-37,59],[-28,103],[47,37],[-20,91],[31,93],[61,71],[-9,40],[-36,19],[-37,-10],[-43,34],[-36,7],[42,121],[-19,1],[-20,30],[11,78],[-9,55],[35,18],[62,83],[103,53]]],"transform":{"scale":[0.0002248028211169328,0.00019427506756756742],"translate":[75.593644,30.379624999999997]},"objects":{"himachalpradesh_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"cartodb_id":332,"censuscode":25,"dt_cen_cd":3,"st_cen_cd":2,"st_nm":"Himachal Pradesh","district":"Lahul and Spiti"}},{"arcs":[[5,6,7,8,9,10]],"type":"Polygon","properties":{"cartodb_id":518,"censuscode":33,"dt_cen_cd":11,"st_cen_cd":2,"st_nm":"Himachal Pradesh","district":"Shimla"}},{"arcs":[[-4,11,12]],"type":"Polygon","properties":{"cartodb_id":100,"censuscode":23,"dt_cen_cd":1,"st_cen_cd":2,"st_nm":"Himachal Pradesh","district":"Chamba"}},{"arcs":[[13,14,15,16]],"type":"Polygon","properties":{"cartodb_id":216,"censuscode":28,"dt_cen_cd":6,"st_cen_cd":2,"st_nm":"Himachal Pradesh","district":"Hamirpur"}},{"arcs":[[17,-11,18,-1]],"type":"Polygon","properties":{"cartodb_id":302,"censuscode":34,"dt_cen_cd":12,"st_cen_cd":2,"st_nm":"Himachal Pradesh","district":"Kinnaur"}},{"arcs":[[-16,19,20,21]],"type":"Polygon","properties":{"cartodb_id":591,"censuscode":29,"dt_cen_cd":7,"st_cen_cd":2,"st_nm":"Himachal Pradesh","district":"Una"}},{"arcs":[[22,23,24,-20,-15]],"type":"Polygon","properties":{"cartodb_id":87,"censuscode":30,"dt_cen_cd":8,"st_cen_cd":2,"st_nm":"Himachal Pradesh","district":"Bilaspur"}},{"arcs":[[25,26,-17,-22,27,-12,-3]],"type":"Polygon","properties":{"cartodb_id":274,"censuscode":24,"dt_cen_cd":2,"st_cen_cd":2,"st_nm":"Himachal Pradesh","district":"Kangra"}},{"arcs":[[-19,-10,28,-26,-2]],"type":"Polygon","properties":{"cartodb_id":326,"censuscode":26,"dt_cen_cd":4,"st_cen_cd":2,"st_nm":"Himachal Pradesh","district":"Kullu"}},{"arcs":[[-29,-9,29,-23,-14,-27]],"type":"Polygon","properties":{"cartodb_id":363,"censuscode":27,"dt_cen_cd":5,"st_cen_cd":2,"st_nm":"Himachal Pradesh","district":"Mandi"}},{"arcs":[[30,31,-7]],"type":"Polygon","properties":{"cartodb_id":530,"censuscode":32,"dt_cen_cd":10,"st_cen_cd":2,"st_nm":"Himachal Pradesh","district":"Sirmaur"}},{"arcs":[[-8,-32,32,-24,-30]],"type":"Polygon","properties":{"cartodb_id":537,"censuscode":31,"dt_cen_cd":9,"st_cen_cd":2,"st_nm":"Himachal Pradesh","district":"Solan"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [13675, 8799], + [-22, -16], + [-14, -63], + [-28, -21], + [-41, -18], + [-83, -12], + [-89, -58], + [-19, -1], + [-17, 30], + [-43, 12], + [-123, 0], + [-78, 15], + [-233, -85], + [-29, -25], + [-7, 32], + [-52, 1], + [-66, 33], + [-51, -11], + [-79, -187], + [3, -54], + [-22, -26], + [-9, -58], + [59, -52], + [13, -35], + [60, -26], + [48, -44], + [-28, -47], + [19, -40], + [-25, -22], + [-138, 0], + [-89, 88], + [-136, 27], + [-41, -65], + [-83, -69], + [-140, 21], + [-33, -17], + [-8, -41], + [-133, 47], + [-313, -16], + [-27, -26], + [-18, -46], + [-35, -17], + [10, -61], + [-16, -83], + [27, -80], + [-72, -48], + [-90, 5], + [-17, 20], + [-111, -2], + [-81, -45], + [-70, -1], + [18, -27], + [-26, -13], + [-13, -29], + [47, -37], + [4, -25], + [-19, -16], + [13, -36], + [-41, -70], + [-12, -112], + [-32, -19], + [-81, -1], + [-111, -117], + [-32, -3], + [-71, 78], + [-80, 4], + [-43, 17], + [-22, -10], + [-103, 36], + [-39, 1], + [-15, -136], + [-27, -11], + [3, -39], + [-69, -3], + [-30, 24], + [-68, 1], + [-7, 32], + [-58, 55], + [-37, 17], + [-42, 53] + ], + [ + [10112, 7226], + [-14, 35], + [-38, 32], + [-30, 47], + [-6, 63], + [12, 60], + [-47, 99], + [48, 114], + [85, 61], + [-43, 6], + [-126, 59], + [-56, -8], + [-52, 9], + [-102, 101], + [-12, 55], + [-51, 89], + [59, 90], + [-4, 32], + [87, 75], + [-3, 23], + [-112, 112], + [71, 55], + [-57, 79], + [-19, 0], + [-47, 36], + [8, 58], + [-35, 45], + [-15, 53], + [-39, 34], + [-6, 72], + [-107, 14], + [-85, 56], + [-59, 3], + [-21, 15], + [-31, 47], + [-27, 15], + [-8, 26], + [-27, 15], + [-15, 61], + [-31, 37], + [-57, 32], + [-28, 2], + [-26, 40], + [-62, 10], + [-86, 71], + [-34, 9], + [-21, 37], + [-38, 10], + [-29, 38], + [-10, 68], + [-83, 69], + [-55, -47], + [7, -40], + [-12, -29], + [-32, -1], + [-46, 9], + [-64, 100], + [-117, 36], + [-30, -36], + [-18, -115], + [-78, -22], + [-76, -3], + [-38, 14], + [-12, 44], + [-97, 69], + [-28, -13], + [-85, 34], + [-56, 51], + [-55, 109], + [20, 23], + [5, 46], + [-15, 30], + [1, 56], + [-51, 127], + [-23, -7], + [-20, 74], + [-66, 48], + [-15, 27], + [-45, -1], + [-64, 44], + [-30, 72], + [-57, 25], + [-80, 67], + [-20, 6], + [-55, -16], + [-114, 77], + [-33, 62], + [-69, 16], + [-133, 59], + [-182, -86], + [-157, -12] + ], + [ + [6588, 10384], + [18, 18], + [9, 44], + [-10, 43], + [-42, -2], + [-17, 42], + [-29, 21], + [-248, -91], + [-53, 1], + [-43, -35], + [-46, 6], + [-82, -15], + [5, 111], + [-23, 2], + [-100, -49], + [-30, 6], + [-32, 16], + [24, 45], + [1, 36], + [-36, 31], + [-41, 3], + [-40, -17], + [38, 75], + [35, 34], + [4, 37], + [-33, 15], + [-34, -4], + [-126, -43] + ], + [ + [5657, 10714], + [-27, 18], + [-24, 60], + [72, 144], + [59, 81], + [-40, 9], + [-12, 28], + [7, 23], + [-73, 3], + [-78, -30], + [-40, 24], + [-11, 39], + [-84, -25], + [-31, 2], + [-29, 16], + [-14, 35], + [-48, 43], + [-41, -8], + [-21, -18], + [-44, 57], + [-80, 12], + [-66, -45], + [-44, -71], + [-63, 42], + [37, 77], + [4, 42], + [-20, 19], + [-112, -17], + [-137, 54], + [-87, -32], + [-21, 22], + [-2, 40], + [30, 87], + [-101, 16], + [-19, 21], + [-4, 79], + [-31, 27], + [-14, 60], + [-193, 81], + [-51, -13], + [-37, 11], + [-37, 41], + [-24, 5], + [-109, -25], + [-124, -48], + [-56, 12], + [-40, 24], + [15, 76], + [-46, 20], + [-42, 51], + [21, 55], + [-25, 69], + [-97, 79], + [0, 52], + [-83, 190], + [2, 91], + [-44, 23], + [8, 118], + [71, 18], + [76, 94], + [149, 63], + [52, -9], + [41, -135], + [28, -25], + [-4, -43], + [14, -37], + [178, -11], + [149, 50], + [70, 58], + [59, 22], + [69, 50], + [94, 83], + [25, -6], + [53, -50], + [45, -8], + [75, 36], + [62, -16], + [62, 43], + [52, 88], + [6, 36], + [88, 62], + [7, 168], + [196, 35], + [22, 34], + [24, 7], + [16, 41], + [63, 78], + [-52, 2], + [-13, 101], + [46, 39], + [-56, 29], + [-6, 82], + [11, 25], + [-58, 18], + [-26, 38], + [-5, 98], + [-43, 45], + [-45, 153], + [-1, 71], + [23, 123], + [31, 50], + [2, 94], + [-17, 29], + [15, 124] + ], + [ + [5134, 14407], + [20, 71], + [34, 22], + [80, 140], + [11, 77], + [-32, 40], + [22, 29], + [79, 14], + [34, -11], + [51, -64], + [42, -26], + [12, 42], + [22, 16], + [64, -5], + [2, -20], + [-49, -59], + [-30, -81], + [27, -16], + [6, -35], + [-68, -60], + [14, -47], + [-37, -59], + [23, -91], + [61, -70], + [54, -23], + [-5, -31], + [41, -27], + [-14, -30], + [45, -43], + [36, -4], + [72, 45], + [38, -31], + [1, -36], + [32, -51], + [43, -11], + [-16, -75], + [25, -25], + [16, -61], + [46, -71], + [32, -86], + [198, -102], + [20, -35], + [63, -29], + [79, -62], + [57, 19], + [38, -8], + [20, 27], + [49, 14], + [103, -70], + [33, -3], + [40, -63], + [99, 22], + [27, 49], + [148, -35], + [-10, -56], + [9, -61], + [44, -7], + [-1, -70], + [12, -7], + [-8, -37], + [17, -72], + [-20, -32], + [50, -4], + [28, 61], + [45, 31], + [35, -81], + [32, -28], + [69, -19], + [60, -47], + [46, -9], + [4, -45], + [-23, -21], + [3, -14], + [51, -40], + [12, -37], + [39, -1], + [47, 59], + [102, -107], + [34, -16], + [73, 7], + [32, -39], + [-7, -45], + [43, -49], + [4, -30], + [28, -13], + [92, 7], + [36, 21], + [28, 110], + [-14, 66], + [52, 41], + [36, 69], + [36, 24], + [44, 8], + [57, -45], + [69, 28], + [47, -93], + [85, -21], + [130, 128], + [44, -26], + [112, 30], + [112, 125], + [41, 8], + [70, 43], + [45, 52], + [19, 62], + [11, -20], + [118, 8], + [47, 16], + [67, 60], + [66, 16], + [30, 49], + [23, 88], + [26, 2], + [38, -44], + [69, 0], + [38, -60], + [40, 29], + [47, -38], + [59, -85], + [38, -11], + [12, -33], + [53, -62], + [136, -114], + [10, -38], + [-25, -32], + [-63, -4], + [-30, -55], + [-20, -80], + [28, -33], + [139, -65], + [41, -51], + [75, 20], + [100, -59], + [60, -63], + [35, -82], + [-9, -52], + [62, -76], + [82, -1], + [42, -16], + [28, -32], + [12, -47], + [-27, -105], + [30, -29], + [-41, -49], + [-32, -118], + [4, -28], + [76, -70], + [31, -87], + [51, -75], + [62, -39], + [7, -75], + [125, -203], + [156, 2], + [81, 26], + [26, 37], + [0, 31], + [-32, 54], + [-2, 102], + [45, -34], + [95, -24], + [61, 147], + [64, 48], + [27, -11], + [75, -91], + [23, 0], + [65, 144], + [74, 45], + [80, -10], + [59, -69], + [49, 18], + [30, -11], + [51, 21], + [53, 32], + [37, 43], + [15, 56], + [100, 42], + [61, 0], + [102, 51], + [11, 62], + [-46, 67], + [254, 132], + [118, -9], + [0, -145], + [29, -73], + [-46, -103], + [-20, -141], + [35, -175], + [21, -44], + [58, -33], + [-215, -155], + [-39, -42], + [-62, -24], + [-95, -14], + [11, -248], + [-92, -110], + [142, -166], + [205, 190], + [115, 87], + [54, -6], + [20, -11], + [28, -63], + [43, -16], + [75, -4], + [59, -64], + [15, -55], + [-49, -83], + [-9, -44], + [12, -32], + [124, -58], + [54, -99], + [108, 2], + [72, -40], + [-7, -28], + [-87, -92], + [-26, -113], + [-106, -79], + [-18, -29], + [-15, -78], + [18, -85], + [6, -189], + [-35, -77], + [-78, -90], + [-7, -27], + [194, -17], + [138, 33], + [114, 2], + [238, -161], + [9, -37], + [-20, -72], + [14, -78], + [-22, -56], + [-51, -33], + [-12, -38], + [66, -63], + [35, -121], + [39, -24], + [148, -27], + [39, -30], + [12, -67] + ], + [ + [12099, 4652], + [-22, -114], + [-23, -10], + [-86, 38], + [-93, -128], + [-25, -17], + [-22, 3], + [0, -21], + [-22, -25], + [-63, 19], + [-52, -7], + [-29, -59], + [-57, -19], + [-71, 50], + [-105, -1], + [-19, -38], + [-29, -9], + [-10, -33], + [-70, -10], + [-24, -41], + [-116, -79], + [-151, 11], + [-107, -39], + [-61, -71], + [-9, -85], + [-96, 62], + [-103, -10], + [-65, 71], + [-39, -14], + [-31, -45], + [-21, 0], + [-88, -55], + [-23, -6], + [-33, 17], + [-65, -21], + [10, -30], + [-42, -59], + [-7, -66], + [-93, -43], + [-28, -27], + [-6, -82], + [-33, -71], + [-24, -20], + [-57, -15], + [-45, -70], + [-62, 6], + [19, -17], + [45, -128], + [29, -21], + [-12, -73], + [28, -39], + [-2, -15], + [-66, 0], + [16, -33], + [-27, -26], + [-6, -53], + [-34, -38], + [-10, -32], + [37, -46], + [38, 8], + [25, -12], + [-7, -34], + [-67, 8], + [-106, 89], + [-64, 24], + [-45, -1], + [-78, -68], + [-8, -20], + [-6, -52], + [15, -52], + [44, -29], + [-4, -60], + [96, -9], + [20, 19], + [45, 11], + [52, -2], + [9, -11], + [-2, -17], + [26, -40], + [-65, -86], + [-9, -40], + [-4, -84], + [24, -36], + [2, -33], + [-70, 12], + [-38, 22], + [-21, 65], + [-26, 24], + [-44, -6], + [-17, -36], + [4, -52], + [-46, -69], + [56, -75], + [2, -33], + [-46, -30], + [-66, -81], + [-18, -72], + [-48, -79], + [-72, -53] + ], + [ + [9380, 1978], + [-52, 46], + [-24, 71], + [-44, 25], + [-47, 51], + [-21, -12], + [-10, 36], + [-13, -12], + [-136, 22], + [-33, -89], + [-65, -49], + [-67, -26], + [-148, 1], + [-40, -13], + [-4, 14], + [40, 84], + [-2, 18], + [-18, 6], + [-84, -9], + [-24, -66], + [-139, 58], + [14, 29], + [-29, 132], + [15, 80], + [-25, 19], + [-44, 104], + [-31, -7], + [-41, 12], + [-43, -17], + [-39, 37], + [-48, 12], + [23, 79], + [-10, 34], + [-34, 37], + [-11, 63], + [-60, 67], + [81, 37], + [57, 58], + [-7, 159], + [-109, 118], + [-29, 7], + [-70, 61], + [-90, 53], + [-3, -28], + [-44, -36], + [-115, -46], + [-73, -129], + [-86, -40], + [-5, -59], + [-24, -26], + [-35, -1], + [-96, -55], + [-21, -63], + [-29, -33], + [-37, -17] + ], + [ + [7351, 2775], + [-25, 108], + [51, 41], + [-77, 65], + [-142, 49], + [-2, 24], + [32, 63], + [-4, 22], + [-99, 93], + [-25, 2], + [-43, -24], + [-99, 19], + [-18, 64], + [-66, 43], + [-42, 15], + [-65, -4], + [-83, 59], + [-87, 40], + [15, 21], + [43, 9], + [5, 29], + [22, 19], + [-38, 99], + [-21, 11], + [-14, -9], + [-53, 24], + [-54, -51], + [-32, -61], + [-19, 59], + [-31, 10], + [-8, 29], + [3, 23], + [130, 62], + [-42, 63], + [-71, -8], + [-20, -27], + [-116, -20], + [-32, 32], + [-1, 25], + [74, -3], + [15, 109], + [80, 79], + [15, 33], + [-36, 51], + [-90, 63], + [-7, 35], + [5, 79], + [66, 79], + [-27, 41], + [-5, 39], + [-36, 16], + [46, 178], + [-53, 134] + ], + [ + [6270, 4726], + [65, -47], + [63, -69], + [128, -59], + [101, -82], + [53, -17], + [47, 15], + [25, -16], + [45, 14], + [15, -13], + [10, -68], + [24, -14], + [64, 15], + [66, -4], + [126, 126], + [28, -56], + [36, 1], + [67, 80], + [92, -7], + [36, -23], + [98, 110], + [55, -50], + [101, 28], + [86, 111], + [28, 5], + [25, 22], + [21, 126], + [73, 151], + [63, 35], + [59, -2], + [6, 15] + ], + [ + [7976, 5053], + [45, -10], + [23, 14], + [75, -82], + [25, 3], + [24, -27], + [29, 14], + [47, -6], + [33, 24], + [97, 12], + [12, 14], + [88, 17], + [120, -25], + [27, 11], + [72, 148], + [28, 23], + [40, 10], + [37, -11], + [89, 47], + [84, -10], + [42, -26], + [45, 13], + [19, 33], + [-49, 134], + [22, 116], + [56, 43], + [134, 43], + [80, 122], + [79, 53], + [11, 29], + [-25, 35], + [-10, 49], + [15, 57], + [-23, 63], + [-67, 40], + [-19, 51], + [-27, 8], + [-80, 88], + [-30, 106], + [-3, 73], + [22, 84], + [44, 28], + [-63, 93], + [-2, 39], + [47, 51], + [11, 47], + [36, 20], + [44, 81], + [27, 23], + [103, -4], + [114, 61], + [72, -4] + ], + [ + [9596, 6868], + [20, -31], + [74, -21], + [51, -46], + [50, -108], + [78, -55], + [17, -29], + [19, -74], + [21, -26], + [-48, -140], + [111, -162], + [-17, -86], + [44, -182], + [-19, -105], + [46, 8], + [21, -14], + [15, 28], + [45, -37], + [8, -33], + [50, -55], + [-11, -83], + [81, -73], + [19, -70], + [62, -53], + [24, -6], + [28, -37], + [92, -12], + [53, -41], + [13, -60], + [58, -5], + [84, 17], + [128, -21], + [134, 92], + [65, -15], + [46, 8], + [41, 26], + [66, -13], + [31, -53], + [71, -19], + [90, -94], + [29, 16], + [45, -35], + [12, -29], + [-57, -94], + [49, -79], + [32, -2], + [39, -39], + [26, 1], + [128, -58], + [48, 14], + [85, 71], + [68, -74], + [142, -20], + [44, -45], + [-18, -29], + [-11, -86], + [81, -48] + ], + [ + [5657, 10714], + [-79, -68], + [-104, -56], + [-45, -48], + [-12, -47], + [-37, -33], + [-72, -30], + [-9, -84], + [14, -79], + [-44, -65], + [-22, -13], + [-85, -6], + [40, -67], + [43, -32], + [58, -116], + [-61, -41], + [19, -90], + [-25, -49], + [40, -70], + [-44, -72], + [6, -19], + [32, -9], + [-30, -31], + [-1, -110], + [-47, -72], + [-94, -95], + [-12, -5], + [-123, 57], + [-49, -10], + [-71, -88], + [-40, -4], + [-215, 70], + [-51, 33], + [-62, 81], + [-42, 33], + [-286, 62], + [-6, 23], + [-49, -25], + [-41, 3], + [-98, 95], + [-26, -20], + [-56, 4], + [-63, 68], + [-41, 19], + [-34, -13], + [-37, 7], + [-22, 79], + [-55, 15], + [-125, 74], + [-103, 152], + [-77, -2], + [-59, 49], + [-72, 23], + [-32, -13], + [-31, 12], + [-49, 143], + [-47, 39], + [-30, -9], + [-22, 31], + [-10, 69], + [-21, 6], + [-140, 6], + [-78, -110], + [-127, -88], + [-48, -16], + [32, -70], + [-23, -71], + [-36, -44], + [11, -102], + [23, -74], + [82, -57], + [-27, -140], + [17, -67], + [-11, -26], + [-38, -13], + [-20, 62], + [-41, -33], + [-70, -26], + [-94, 15], + [11, 35], + [-4, 84], + [-20, 28], + [-42, 9], + [-105, 64], + [-174, -35], + [-27, 24], + [-46, 8], + [-63, 105], + [-1, 41], + [31, 100], + [0, 13], + [-35, -14], + [27, 65], + [-10, 37], + [-126, 194], + [-74, 79], + [-69, -4], + [-95, 28], + [-48, 67] + ], + [ + [1483, 10444], + [66, 14], + [27, 26], + [11, 40], + [-14, 31], + [-71, 93], + [-89, 68], + [-178, 195], + [-19, 43], + [2, 69], + [22, 84], + [85, 171], + [-13, 27], + [157, 222], + [71, 126], + [3, 75], + [-84, 72], + [-29, 44], + [-10, 53], + [60, 155], + [18, 108], + [-6, 78], + [-56, 66], + [-116, 226], + [-162, 119], + [-73, 31], + [-57, 55], + [-60, 87], + [-32, 120], + [56, 54], + [8, 33], + [-15, 47], + [43, 53], + [116, 25], + [147, -23], + [147, -75], + [103, -92], + [47, -71], + [53, 4], + [185, 80], + [77, 69], + [56, 18], + [49, 102], + [99, 35], + [18, 35], + [124, 92], + [55, 162], + [-4, 23], + [154, 27], + [70, 33], + [37, 33], + [379, 49], + [80, 101], + [72, 227], + [25, 22], + [-9, 17], + [58, 48], + [18, 36], + [105, 51], + [89, 83], + [91, 43], + [46, 69], + [114, 96], + [71, 8], + [63, -34], + [89, -7], + [61, 15], + [60, -18], + [120, 83], + [43, -2], + [65, 24], + [62, -5], + [60, 52], + [68, -17], + [84, 3], + [20, -14], + [-10, -57], + [59, -26], + [10, -74], + [58, -40], + [64, -18], + [61, 11], + [46, 37], + [152, 11], + [51, 38], + [53, -1], + [25, -20], + [70, 10] + ], + [ + [4658, 7695], + [-19, -30], + [-11, -91], + [-26, -43], + [2, -90], + [-33, -181], + [19, -75], + [50, -132], + [51, -38], + [81, -19], + [33, -34], + [-7, -53], + [17, -36], + [56, -31], + [-8, -38], + [23, -20], + [8, -79], + [108, -53], + [43, -36], + [-54, -176], + [3, -50], + [34, -73], + [26, -110] + ], + [ + [5054, 6207], + [-109, 70], + [-90, -30], + [-17, -32], + [-64, -21], + [-99, 23], + [-54, -61], + [-46, -11], + [-24, -40], + [12, -43], + [-23, -53], + [11, -74], + [18, -25], + [-6, -67], + [-51, -124], + [10, -107], + [76, -127], + [-9, -33], + [-41, -39], + [8, -40], + [-16, -25], + [-93, 36], + [-16, -18], + [-78, 50], + [-52, -13], + [-16, 49], + [-99, 81], + [-8, 35], + [-32, -2], + [-36, 36], + [-20, -40], + [-59, 46], + [-69, 8], + [-113, 79] + ], + [ + [3849, 5695], + [-88, 144], + [-15, 42], + [16, 75], + [-139, 276], + [-36, 104], + [-27, 22], + [2, 27], + [-119, 106], + [-47, 59], + [-22, 64], + [-73, 94], + [-97, 200] + ], + [ + [3204, 6908], + [25, 50], + [-40, 87], + [4, 40], + [-16, 9], + [22, 55], + [-44, 39], + [-7, 61], + [15, -2], + [17, -38], + [26, -10], + [106, 33], + [64, 45], + [78, -81], + [54, 17], + [75, 86], + [60, -66], + [9, 57], + [70, -6], + [27, 11], + [17, 68], + [27, 0], + [-6, -37], + [73, 12], + [-27, 45], + [17, 22], + [27, -13], + [16, -27], + [23, 1], + [6, 29], + [-33, 55], + [11, 12], + [221, 75], + [3, 35], + [-19, 32], + [31, 38], + [200, 131], + [105, 33], + [62, -11], + [155, -100] + ], + [ + [13675, 8799], + [29, -62], + [127, -122], + [18, -62], + [144, -130], + [39, -66], + [25, -18], + [152, -23], + [-83, -310], + [-32, -75], + [-72, -95], + [10, -43], + [-35, -86], + [-9, -227], + [-91, -60], + [-30, -44], + [-17, -54], + [2, -69], + [22, -75], + [31, -43], + [95, -34], + [-59, -116], + [44, -56], + [32, -145], + [26, -53], + [69, -37], + [132, 26], + [5, -89], + [27, -78], + [38, -43], + [128, -97], + [31, -54], + [-37, -99], + [-114, -126], + [-130, -54], + [-81, -87], + [-128, -40], + [-18, -54], + [-47, -48], + [6, -32], + [32, -37], + [6, -118], + [144, 30], + [54, -82], + [153, -114], + [8, -42], + [-22, -138], + [-71, -57], + [-1, -28], + [180, -66], + [19, -27], + [27, -10], + [31, -45], + [27, -113], + [-50, -105], + [49, -13], + [81, -76], + [41, -60], + [53, -157], + [122, -60], + [-5, -46], + [18, -84], + [26, -45], + [86, -15], + [-8, -40], + [11, -46], + [46, -62], + [114, -58], + [25, -63], + [-7, -100], + [10, -26], + [49, -43], + [33, -113], + [-26, 9], + [-112, -9], + [-105, -53], + [-96, 13], + [-35, 45], + [-39, -4], + [-31, -51], + [-75, -9], + [-38, 18], + [-41, 26], + [-46, 71], + [-63, 23], + [-84, 85], + [-38, 86], + [7, 29], + [-63, 67], + [25, 86], + [-36, 30], + [-167, -53], + [-166, 12], + [-57, -11], + [-53, 8], + [-87, 35], + [-72, 0], + [-54, -44], + [-10, 41], + [-33, 30], + [-16, 69], + [-77, 18], + [-31, 30], + [-66, 27], + [-128, -13], + [-46, -33], + [-85, -107], + [-103, -14], + [-195, 0], + [-16, 88], + [-42, 35], + [-58, 85], + [-55, 28], + [-21, 33], + [-33, 20], + [-23, -46], + [-75, -16], + [-28, 27], + [8, 47], + [-31, 38], + [-21, 61], + [-35, -12], + [-19, 45], + [-57, 16], + [-132, -14], + [-44, -16], + [-82, 16] + ], + [ + [9596, 6868], + [24, 30], + [-16, 164], + [40, 19], + [6, 35], + [74, -51], + [42, -1], + [44, 36], + [53, 9], + [79, -1], + [91, -29], + [21, 21], + [13, 47], + [7, 34], + [-13, 33], + [51, 12] + ], + [ + [3849, 5695], + [-27, -15], + [78, -126], + [-26, -63], + [60, -8], + [5, -15], + [-24, -9], + [-8, -81], + [-54, -11], + [-110, -56], + [-79, 6], + [-83, 74], + [-13, -26], + [0, -72] + ], + [ + [3568, 5293], + [-38, 16], + [10, 44], + [-27, 31], + [-27, 68], + [-28, -60], + [10, -72], + [-55, -52], + [-77, -23], + [-61, 7], + [11, -110], + [50, -8], + [8, -106], + [24, -31], + [-30, -40], + [-54, 36], + [-9, -24], + [-88, -27], + [27, -82], + [-53, -55], + [-130, -50], + [-25, 47], + [-144, -10], + [-75, -40], + [-149, 8], + [-30, 100], + [1, 79], + [-37, 28], + [-45, 7], + [-36, 25], + [-21, 45], + [-4, 108], + [85, 75], + [16, 37], + [-14, 49], + [-29, 25], + [-16, 69], + [-68, 59], + [-30, 89], + [-26, 23], + [-3, 42], + [-30, 45], + [1, 66], + [-78, 123], + [-29, 94], + [-182, 283], + [4, 57], + [-18, 28], + [-15, -8], + [-60, 44], + [-90, 161], + [15, 25], + [-6, 59], + [-33, 31], + [0, 37], + [-28, 50], + [-24, -2], + [-44, 51], + [7, 50], + [-35, 76], + [-15, 71], + [-38, 36], + [9, 47], + [-64, 164], + [-38, 16], + [-15, 65], + [-50, 104], + [51, -11], + [12, 16], + [75, 29], + [63, -46], + [20, -2], + [-17, 46], + [-53, 46], + [-51, 129] + ], + [ + [1625, 7600], + [91, -35], + [46, 2], + [46, 7], + [38, 62], + [131, 4], + [42, -12], + [112, -116], + [44, 28], + [11, -68], + [23, -39], + [52, -24], + [58, -70], + [228, -61], + [62, -49], + [20, -39], + [-9, -33], + [31, -10], + [22, 21], + [41, 4], + [24, -23], + [3, -27], + [63, -106], + [121, -126], + [89, -64], + [82, -98], + [108, 180] + ], + [ + [5054, 6207], + [6, -65], + [-13, -47], + [30, -5], + [-26, -37], + [5, -47], + [26, -34], + [-6, -36], + [22, -40], + [-30, -27], + [35, -10], + [117, 11], + [85, -94], + [13, -37], + [-14, -54], + [53, -41], + [3, -59], + [17, -41], + [4, -27], + [-21, 1], + [-6, -31], + [29, -27], + [2, -91], + [35, 5], + [55, -28], + [42, 17], + [113, -44], + [95, -6], + [13, -121], + [-63, -19], + [-19, -18], + [47, -72], + [1, -65] + ], + [ + [5704, 5018], + [27, -73], + [-26, -46], + [84, -63], + [108, -28], + [17, -53], + [22, -6], + [-53, -93], + [-78, -31], + [-10, -23], + [13, -29], + [-12, -17], + [-29, 7], + [-61, -21], + [-20, -26], + [-21, -55], + [14, 0], + [18, -57], + [41, -59], + [-43, -27], + [-58, 1], + [-103, 68], + [-29, -29], + [-24, -4], + [-79, 25], + [-129, -51], + [-18, 34], + [-77, 8], + [-55, 41], + [-56, 19], + [-44, -52], + [-128, -68], + [-98, -9], + [-101, -28] + ], + [ + [4696, 4273], + [-48, 42], + [6, 31], + [-43, 12], + [-131, -69], + [-28, 2], + [-20, 49], + [29, 26], + [10, 45], + [75, 58], + [-138, 151], + [-81, -79], + [-29, -46], + [-49, -3], + [-10, 58], + [21, 90], + [-27, -2], + [-15, -70], + [-44, -40], + [-16, 12], + [10, 66], + [-10, 29], + [-72, -50], + [-43, 0], + [-57, 98], + [-14, 74], + [-26, 19], + [-93, -106], + [-65, -35], + [-12, 33], + [76, 57], + [12, 29], + [-134, 162], + [-120, 213], + [-52, 64], + [49, 32], + [-39, 68] + ], + [ + [6588, 10384], + [6, -15], + [-31, -55], + [-74, -87], + [-51, -137], + [18, -88], + [-64, -82], + [27, -85], + [-29, -95], + [7, -126], + [92, -110], + [-62, -98], + [-77, -5], + [-21, -25], + [-49, -6], + [-46, -67], + [20, -24], + [-56, -144], + [-11, -117], + [19, -106], + [-190, 7], + [-33, -100], + [19, -36], + [4, -99], + [-20, -20] + ], + [ + [5986, 8664], + [-76, -22], + [-33, 10], + [-122, -15], + [-158, -51], + [-42, -34], + [-73, 39], + [-100, 89], + [-11, 39], + [-38, 6], + [-24, -6], + [-20, -35], + [-25, 11], + [-30, -19], + [-143, -180], + [-33, -5], + [-4, 16], + [-70, 14], + [-34, 22], + [-15, 50], + [-65, 14], + [-39, -18], + [-75, -90], + [8, -96], + [88, -181], + [11, -51], + [-11, -28], + [23, -34], + [20, -115], + [-23, -11], + [-26, -101], + [-22, -16], + [4, -49], + [-17, -20], + [14, -108], + [-83, -13], + [-84, 19] + ], + [ + [1625, 7600], + [-140, 306], + [-74, 122], + [-7, 49], + [-74, 62], + [-51, 36], + [-110, 25], + [-23, 41], + [-137, 18], + [-95, 48], + [-79, 69], + [-126, 145], + [-123, 2], + [-45, 39], + [-47, 93], + [-180, 81], + [-226, -57], + [-88, 81], + [142, 92], + [92, 102], + [108, 137], + [29, 96], + [-25, 61], + [-161, 45], + [-8, 61], + [19, 194], + [133, 107], + [105, 44], + [270, 49], + [81, 63], + [39, 83], + [359, 397], + [125, 98], + [175, 55] + ], + [ + [7976, 5053], + [18, 52], + [1, 62], + [-10, 30], + [-26, 24], + [6, 92], + [-15, 31], + [-194, 161], + [-26, 45], + [-60, 254], + [-6, 89], + [15, 27], + [-60, 86], + [-20, 57], + [17, 114], + [-18, 67], + [24, 93], + [-37, 219], + [31, 44], + [-142, 202], + [-216, 122], + [-35, -19], + [-19, 52], + [-23, 173], + [-43, 74], + [3, 30], + [-18, 31], + [8, 33], + [-35, 55], + [8, 34], + [-14, 35], + [-51, 24], + [19, 79], + [-57, -17], + [-278, 1], + [-42, -8], + [-55, -37], + [-60, 31], + [-45, -4], + [-8, 47], + [15, 62], + [-19, 9], + [-117, 183], + [-27, 139], + [-92, 130], + [-113, 195], + [16, 84], + [-22, 122], + [-57, 22], + [-90, 86], + [-6, 66], + [-15, 28] + ], + [ + [6270, 4726], + [-110, 67], + [-47, 61], + [-108, 61], + [9, 26], + [-13, 44], + [-97, 97], + [-52, -21], + [-33, 8], + [-45, -12], + [-70, -39] + ], + [ + [9380, 1978], + [20, -56], + [-6, -49], + [27, -17], + [42, 3], + [26, -32], + [33, -6], + [8, -39], + [38, -31], + [46, -72], + [-33, -68], + [-1, -60], + [92, -50], + [52, -56], + [59, -8], + [-49, -63], + [30, -53], + [-16, -65], + [47, -47], + [-43, -8], + [-70, 12], + [3, -79], + [-13, -21], + [-53, 33], + [-34, 5], + [-12, -5], + [-11, -45], + [62, -45], + [44, -100], + [37, -37], + [40, -4], + [33, -25], + [37, 20], + [18, -6], + [34, 20], + [23, -2], + [39, -132], + [-58, -137], + [-49, -28], + [-92, -9], + [-205, -136], + [-46, -3], + [-129, -101], + [-14, -30], + [-78, -15], + [-95, 18], + [-43, -84], + [-120, 8], + [-129, -57], + [-53, -48], + [-2, -36], + [3, -29], + [58, -76], + [-6, -27], + [-42, 2], + [-100, 64], + [-32, 61], + [-44, 41], + [-70, 164], + [-21, -3], + [-55, -79], + [-7, -81], + [-20, -24], + [-19, 14], + [-65, -18], + [-31, -33], + [-116, -9], + [-20, 20], + [-63, 5], + [-2, 22], + [44, 38], + [62, 22], + [11, 28], + [50, 54], + [13, 92], + [-25, 36], + [-22, 3], + [-87, -127], + [-83, -68], + [-31, -47], + [-23, 11], + [6, 50], + [-12, 19], + [-54, 26], + [-6, 35], + [-106, -20], + [-47, 102], + [-89, 6], + [-69, -49], + [-209, 68], + [-12, 48], + [-41, 43], + [-111, 22], + [-108, -43], + [-16, 22], + [4, 114], + [-64, 99], + [-70, 36], + [-172, 45], + [-39, 34], + [-48, 99], + [127, 81], + [78, 85], + [23, 201], + [-44, 80], + [12, 72], + [-22, 85], + [14, 21], + [-126, 95], + [-34, 56], + [-35, 24], + [-28, -11], + [-15, 9], + [11, 44], + [-114, 72], + [-132, 20], + [-59, 35], + [-25, -61], + [-45, -16], + [-22, 9], + [-37, 54] + ], + [ + [6337, 1899], + [46, -4], + [26, 70], + [209, 149], + [30, 126], + [0, 71], + [74, 31], + [47, 50], + [17, 47], + [71, 11], + [58, -12], + [12, 20], + [21, -3], + [48, -60], + [48, 6], + [14, 17], + [-2, 65], + [47, 3], + [108, 71], + [-38, 63], + [39, 39], + [1, 30], + [11, 9], + [45, -20], + [31, 12], + [25, 60], + [26, 25] + ], + [ + [6337, 1899], + [-1, 71], + [-71, 55], + [51, 62], + [-9, 130], + [-24, 20], + [-18, -16], + [-42, -84], + [-47, 47], + [-66, 17], + [-49, 93], + [-40, 14], + [-28, 28], + [-4, 88], + [-47, 77], + [-61, 144], + [-105, -58], + [-75, -64], + [-42, -15], + [-132, 90], + [-30, 41], + [-27, 56], + [20, 74], + [-18, 47], + [-179, -124], + [-72, 59], + [1, 27], + [-24, 5], + [0, 27], + [-46, 5], + [-54, 48], + [-9, 58], + [-51, 66], + [-34, -1], + [-48, 48], + [-141, -7], + [-42, 55], + [-121, 55], + [-70, 61], + [16, 92], + [-37, 59], + [-28, 103], + [47, 37], + [-20, 91], + [31, 93], + [61, 71], + [-9, 40], + [-36, 19], + [-37, -10], + [-43, 34], + [-36, 7], + [42, 121], + [-19, 1], + [-20, 30], + [11, 78], + [-9, 55], + [35, 18], + [62, 83], + [103, 53] + ] + ], + "transform": { + "scale": [0.0002248028211169328, 0.00019427506756756742], + "translate": [75.593644, 30.379624999999997] + }, + "objects": { + "himachalpradesh_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4]], + "type": "Polygon", + "properties": { + "cartodb_id": 332, + "censuscode": 25, + "dt_cen_cd": 3, + "st_cen_cd": 2, + "st_nm": "Himachal Pradesh", + "district": "Lahul and Spiti" + } + }, + { + "arcs": [[5, 6, 7, 8, 9, 10]], + "type": "Polygon", + "properties": { + "cartodb_id": 518, + "censuscode": 33, + "dt_cen_cd": 11, + "st_cen_cd": 2, + "st_nm": "Himachal Pradesh", + "district": "Shimla" + } + }, + { + "arcs": [[-4, 11, 12]], + "type": "Polygon", + "properties": { + "cartodb_id": 100, + "censuscode": 23, + "dt_cen_cd": 1, + "st_cen_cd": 2, + "st_nm": "Himachal Pradesh", + "district": "Chamba" + } + }, + { + "arcs": [[13, 14, 15, 16]], + "type": "Polygon", + "properties": { + "cartodb_id": 216, + "censuscode": 28, + "dt_cen_cd": 6, + "st_cen_cd": 2, + "st_nm": "Himachal Pradesh", + "district": "Hamirpur" + } + }, + { + "arcs": [[17, -11, 18, -1]], + "type": "Polygon", + "properties": { + "cartodb_id": 302, + "censuscode": 34, + "dt_cen_cd": 12, + "st_cen_cd": 2, + "st_nm": "Himachal Pradesh", + "district": "Kinnaur" + } + }, + { + "arcs": [[-16, 19, 20, 21]], + "type": "Polygon", + "properties": { + "cartodb_id": 591, + "censuscode": 29, + "dt_cen_cd": 7, + "st_cen_cd": 2, + "st_nm": "Himachal Pradesh", + "district": "Una" + } + }, + { + "arcs": [[22, 23, 24, -20, -15]], + "type": "Polygon", + "properties": { + "cartodb_id": 87, + "censuscode": 30, + "dt_cen_cd": 8, + "st_cen_cd": 2, + "st_nm": "Himachal Pradesh", + "district": "Bilaspur" + } + }, + { + "arcs": [[25, 26, -17, -22, 27, -12, -3]], + "type": "Polygon", + "properties": { + "cartodb_id": 274, + "censuscode": 24, + "dt_cen_cd": 2, + "st_cen_cd": 2, + "st_nm": "Himachal Pradesh", + "district": "Kangra" + } + }, + { + "arcs": [[-19, -10, 28, -26, -2]], + "type": "Polygon", + "properties": { + "cartodb_id": 326, + "censuscode": 26, + "dt_cen_cd": 4, + "st_cen_cd": 2, + "st_nm": "Himachal Pradesh", + "district": "Kullu" + } + }, + { + "arcs": [[-29, -9, 29, -23, -14, -27]], + "type": "Polygon", + "properties": { + "cartodb_id": 363, + "censuscode": 27, + "dt_cen_cd": 5, + "st_cen_cd": 2, + "st_nm": "Himachal Pradesh", + "district": "Mandi" + } + }, + { + "arcs": [[30, 31, -7]], + "type": "Polygon", + "properties": { + "cartodb_id": 530, + "censuscode": 32, + "dt_cen_cd": 10, + "st_cen_cd": 2, + "st_nm": "Himachal Pradesh", + "district": "Sirmaur" + } + }, + { + "arcs": [[-8, -32, 32, -24, -30]], + "type": "Polygon", + "properties": { + "cartodb_id": 537, + "censuscode": 31, + "dt_cen_cd": 9, + "st_cen_cd": 2, + "st_nm": "Himachal Pradesh", + "district": "Solan" + } + } + ] + } + } +} diff --git a/public/maps/india.json b/public/maps/india.json index 036fb1c9ac..74d4074d11 100644 --- a/public/maps/india.json +++ b/public/maps/india.json @@ -1 +1,5268 @@ -{"type":"Topology","arcs":[[[11396,230],[35,-101],[-41,-129],[-80,176],[86,54]],[[11336,327],[19,-33],[-56,-50],[37,83]],[[11189,603],[-2,-67],[-30,38],[32,29]],[[11253,702],[-8,-94],[-24,66],[32,28]],[[10928,1181],[16,-35],[-44,-20],[-4,46],[32,9]],[[10805,1971],[35,-94],[-44,-90],[-35,17],[-17,103],[61,64]],[[10885,2609],[26,-29],[-9,-47],[16,-15],[-25,-48],[30,-5],[-25,-198],[-36,1],[-59,155],[41,36],[41,150]],[[10941,2640],[25,-7],[-5,-43],[-47,-64],[2,79],[25,35]],[[10974,2931],[31,-83],[-9,-132],[-28,-66],[-58,-14],[-24,18],[10,235],[78,42]],[[10884,2967],[10,-56],[-24,4],[14,52]],[[11032,3243],[14,-99],[-45,-2],[38,-39],[-5,-93],[-103,-86],[31,272],[70,47]],[[12013,9483],[-18,169]],[[11995,9652],[116,44],[35,64],[24,-19],[189,69],[-59,33],[-55,137],[98,113],[-165,-5],[-40,-36],[-281,-66],[-170,-78],[-94,8],[-273,-296],[-291,-26],[-160,58],[-33,-36],[-212,-32]],[[10624,9584],[-35,88],[18,94],[-23,87],[-161,11],[-41,49],[48,129],[70,-23],[23,-41],[167,67],[23,-40],[113,20],[79,80],[-26,61],[152,87],[76,9],[62,150],[268,21],[125,194],[96,68],[56,1],[31,56],[76,-87],[91,2],[200,-64],[40,86],[238,117],[68,-104],[71,5],[-108,-97],[34,-58],[93,51],[76,-115],[-10,-36],[-51,-18],[-45,-138],[131,34],[48,-44],[55,5],[44,-33],[58,19],[110,-63],[1,-147],[-54,-3],[-160,-138],[6,-76],[115,-155],[-48,-12],[-87,42],[-28,74],[-253,-32],[-88,-42],[-35,-61],[-182,-110],[-55,-67],[-83,-4]],[[11995,9652],[-48,-43],[-89,-9],[-38,-60],[-174,-90],[-38,-65],[-19,40],[-120,-180],[-14,-123],[-89,-38],[2,53],[-43,-23],[8,-27],[-166,-144],[55,-52],[8,-63]],[[11230,8828],[-102,-145],[-24,-94],[-35,-2],[-7,-104],[-43,-86]],[[11019,8397],[-75,-1],[-30,58],[-68,-128],[-66,-55],[-18,55],[-56,0]],[[10706,8326],[-37,-1],[27,66],[-18,55]],[[10678,8446],[8,193],[110,-19],[-26,78]],[[10770,8698],[157,119],[-82,64],[-9,64],[-76,89],[-109,-35],[-2,142],[40,31],[-35,24],[-130,-24],[-29,43],[-44,-78],[-40,-5],[1,37],[-27,2],[-43,-81]],[[10342,9090],[-2,2]],[[10340,9092],[-61,-13],[-48,-52],[-32,60],[-38,-12],[-82,60],[-63,-17],[-117,48],[-161,-27],[-98,-110],[48,-68],[-52,-12],[-15,-39]],[[9621,8910],[7,237],[-66,91]],[[9562,9238],[0,44],[61,59]],[[9623,9341],[1,1]],[[9624,9342],[0,152]],[[9624,9494],[148,31],[17,42],[81,21],[106,-61],[305,3],[32,26],[142,-11],[75,49],[70,-32],[24,22]],[[8847,9416],[74,-78],[-192,-158],[-8,-82],[100,-88],[-10,-64],[-107,-49],[-2,-53],[31,-19],[-28,-37]],[[8705,8788],[-98,54],[-42,-44],[-66,-9],[-15,-63],[-51,-13],[-59,-208],[-48,2],[-36,-38],[-28,31],[-55,-26],[-30,19],[-61,-106],[-75,47],[0,52],[-75,13],[-34,78],[-43,-22],[-32,33],[-45,-1],[-52,-59],[2,-44],[-339,-100],[-37,73],[-71,-63],[-39,9],[-35,-60],[-104,120],[-66,-27],[-52,74],[-56,-50]],[[6963,8460],[-4,2]],[[6959,8462],[-34,-6]],[[6925,8456],[-15,-7]],[[6910,8449],[-111,8]],[[6799,8457],[9,11]],[[6808,8468],[0,2]],[[6808,8470],[-23,86]],[[6785,8556],[-2,0]],[[6783,8556],[-33,24],[-30,109],[13,88],[192,95],[132,113],[-4,28],[111,-11],[27,30]],[[7191,9032],[6,-3]],[[7197,9029],[55,-24],[47,54],[-255,146],[-21,43],[69,34],[7,54],[-120,36],[2,27],[109,63],[117,-6],[-82,115],[-79,11],[-49,108],[19,30],[-57,79]],[[6959,9799],[-9,46],[80,-3],[40,41],[72,-59],[155,-29],[29,-54],[-20,-84],[140,-40],[32,-42],[72,-3],[6,-51],[57,-9],[121,55],[56,-30],[3,-71],[268,-13],[173,-92],[125,52],[145,-88],[21,33],[168,-5],[13,29],[95,-54],[46,88]],[[3837,11425],[-2,-17]],[[3835,11408],[2,-11]],[[3837,11397],[-5,-7]],[[3832,11390],[1,-3]],[[3833,11387],[-33,3]],[[3800,11390],[-6,3]],[[3794,11393],[-1,0]],[[3793,11393],[-2,3]],[[3791,11396],[0,3]],[[3791,11399],[-5,1]],[[3786,11400],[0,1]],[[3786,11401],[1,3]],[[3787,11404],[-11,19]],[[3776,11423],[12,4]],[[3788,11427],[5,6]],[[3793,11433],[4,2]],[[3797,11435],[1,2]],[[3798,11437],[2,2]],[[3800,11439],[13,-3]],[[3813,11436],[1,-2]],[[3814,11434],[-2,0]],[[3812,11434],[7,-1]],[[3819,11433],[4,2]],[[3823,11435],[-2,-9]],[[3821,11426],[9,0]],[[3830,11426],[7,-1]],[[6995,8027],[4,1]],[[6999,8028],[23,4]],[[7022,8032],[3,0]],[[7025,8032],[-18,-122],[46,-21],[-18,-84],[83,-85],[68,0],[3,-48],[-166,-168]],[[7023,7504],[-1,-72],[-158,-69],[-39,-59],[-10,-65],[29,-25],[-98,-142],[-2,-130],[-47,17],[-34,-112],[-247,5],[-37,-99],[-98,-48],[28,-377],[140,-31],[-6,-74],[-99,35],[-60,-33],[-34,67],[-110,23],[-37,38],[-32,-37],[-1,-59],[86,-51],[-2,-120],[55,-52],[30,-246],[-30,-9],[-11,-56],[-85,-45],[-3,-58],[-90,-101],[-97,-41],[-63,-215]],[[5860,5263],[-128,4]],[[5732,5267],[-3,-2]],[[5729,5265],[-15,-14]],[[5714,5251],[-5,1]],[[5709,5252],[-32,178]],[[5677,5430],[0,4]],[[5677,5434],[-106,2],[22,34],[-28,56]],[[5565,5526],[1,3]],[[5566,5529],[-41,72],[-64,51],[-65,-19],[-33,62]],[[5363,5695],[35,44],[-35,84],[53,121],[76,74],[20,-41],[65,-12],[40,33],[-23,34],[46,18],[-102,69],[2,39],[-56,39],[-23,57],[15,109],[-62,56],[104,40],[-36,288],[-34,-2],[-16,39],[15,77],[81,39],[8,37]],[[5536,6937],[32,67],[-10,95],[55,63],[1,67],[37,83],[37,-28],[51,111],[-2,69],[34,23]],[[5771,7487],[3,-7]],[[5774,7480],[58,25],[68,-16]],[[5900,7489],[2,1]],[[5902,7490],[127,87],[2,94],[76,39],[-1,58],[94,30],[16,86],[-94,44]],[[6122,7928],[-1,2]],[[6121,7930],[-25,53],[-83,16],[-55,-26],[3,72],[33,28],[-39,64],[28,33],[66,-55],[62,21]],[[6111,8136],[5,2]],[[6116,8138],[259,-30],[117,81]],[[6492,8189],[65,-43],[77,8],[87,101]],[[6721,8255],[83,-36],[118,-202],[71,-18],[2,28]],[[2221,6361],[1,-7]],[[2222,6354],[-2,-8]],[[2220,6346],[-17,-15]],[[2203,6331],[-5,7]],[[2198,6338],[-9,2]],[[2189,6340],[-7,0]],[[2182,6340],[-5,1]],[[2177,6341],[-6,4]],[[2171,6345],[-7,3]],[[2164,6348],[-16,-13]],[[2148,6335],[-6,5]],[[2142,6340],[-9,13]],[[2133,6353],[-2,10]],[[2131,6363],[1,5]],[[2132,6368],[-3,1]],[[2129,6369],[-2,-8]],[[2127,6361],[-1,-1]],[[2126,6360],[-14,5]],[[2112,6365],[6,13]],[[2118,6378],[0,9]],[[2118,6387],[-4,2]],[[2114,6389],[-3,16]],[[2111,6405],[2,1]],[[2113,6406],[0,5]],[[2113,6411],[-16,29]],[[2097,6440],[4,3]],[[2101,6443],[5,-3]],[[2106,6440],[10,-8]],[[2116,6432],[18,15]],[[2134,6447],[-2,6]],[[2132,6453],[1,1]],[[2133,6454],[4,-6]],[[2137,6448],[7,-6]],[[2144,6442],[2,6]],[[2146,6448],[0,6]],[[2146,6454],[10,5]],[[2156,6459],[6,1]],[[2162,6460],[3,-1]],[[2165,6459],[3,4]],[[2168,6463],[2,10]],[[2170,6473],[5,-25]],[[2175,6448],[7,1]],[[2182,6449],[5,2]],[[2187,6451],[10,3]],[[2197,6454],[3,-1]],[[2200,6453],[4,-2]],[[2204,6451],[-1,-5]],[[2203,6446],[-2,-8]],[[2201,6438],[-1,0]],[[2200,6438],[-1,2]],[[2199,6440],[-5,-1]],[[2194,6439],[-1,-4]],[[2193,6435],[-3,2]],[[2190,6437],[-2,-6]],[[2188,6431],[-2,-4]],[[2186,6427],[-4,-1]],[[2182,6426],[-7,-6]],[[2175,6420],[-5,-8]],[[2170,6412],[-9,2]],[[2161,6414],[-2,-1]],[[2159,6413],[-6,-13]],[[2153,6400],[3,-3]],[[2156,6397],[2,-2]],[[2158,6395],[-1,-8]],[[2157,6387],[4,-9]],[[2161,6378],[9,3]],[[2170,6381],[1,-2]],[[2171,6379],[4,0]],[[2175,6379],[5,-1]],[[2180,6378],[11,23]],[[2191,6401],[7,-2]],[[2198,6399],[4,0]],[[2202,6399],[7,0]],[[2209,6399],[3,-2]],[[2212,6397],[15,-6]],[[2227,6391],[-1,-4]],[[2226,6387],[-14,-9]],[[2212,6378],[0,-8]],[[2212,6370],[9,-9]],[[2041,6481],[19,48]],[[2060,6529],[16,-50],[-35,2]],[[2627,4234],[57,2],[30,-224],[-36,-113],[-65,-25]],[[2613,3874],[-184,396]],[[2429,4270],[81,34],[61,-90],[56,20]],[[66,8114],[26,-41],[-31,-57],[-55,-5],[60,103]],[[66,8195],[-10,-65],[-56,-13],[66,78]],[[1977,7003],[-20,100],[-42,12],[42,74],[-43,9],[-6,35],[60,158],[-122,-40],[-63,-117],[38,-156],[-115,-223],[-399,-184],[-2,-8],[-59,-8],[-10,-4],[-75,-19],[-251,135],[-454,459],[-133,173],[36,69],[58,-21],[38,-69],[417,142],[77,178],[-53,14],[-160,-42],[-76,-61],[-221,46],[-269,178],[25,43],[-68,96],[-3,61],[82,108],[-45,9],[-9,42],[90,0],[7,145],[36,-25],[41,39],[27,-38],[260,32],[63,-56],[127,-1],[41,59],[207,61],[0,-80],[65,-18],[71,14],[-3,25],[105,66],[-49,4],[-4,76],[48,38]],[[1284,8533],[85,-34],[85,31],[330,-21],[105,-108],[34,47],[85,-69],[109,-1],[2,44],[51,20],[-5,-47],[46,-29],[-47,-71],[76,-83],[72,19],[-24,-94],[133,-110],[-12,-81],[86,-3],[30,-52],[49,-1]],[[2574,7890],[9,-1]],[[2583,7889],[50,-33],[-4,-41],[55,0],[32,-55]],[[2716,7760],[26,-73],[37,2],[0,-47],[-36,-82],[-47,2],[-86,-66],[8,-35],[76,-20],[-37,-34],[-53,19],[33,-193]],[[2637,7233],[-142,-68],[28,-48],[-30,-54],[16,-48],[192,29],[7,-37],[-101,-11],[-53,-30],[-6,-46],[-52,-14],[-4,-46],[-83,-18],[72,-31],[64,-142],[-87,-96],[-129,70],[-14,-244],[-52,3],[-42,-41]],[[2212,6370],[0,8]],[[2226,6387],[1,4]],[[2212,6397],[-3,2]],[[2202,6399],[-4,0]],[[2198,6399],[-7,2]],[[2180,6378],[-5,1]],[[2171,6379],[-1,2]],[[2161,6378],[-4,9]],[[2158,6395],[-2,2]],[[2153,6400],[6,13]],[[2161,6414],[9,-2]],[[2175,6420],[7,6]],[[2186,6427],[2,4]],[[2190,6437],[3,-2]],[[2193,6435],[1,4]],[[2199,6440],[1,-2]],[[2201,6438],[2,8]],[[2203,6446],[1,5]],[[2200,6453],[-3,1]],[[2187,6451],[-5,-2]],[[2182,6449],[-7,-1]],[[2170,6473],[-2,-10]],[[2165,6459],[-3,1]],[[2156,6459],[-10,-5]],[[2146,6448],[-2,-6]],[[2137,6448],[-4,6]],[[2132,6453],[2,-6]],[[2116,6432],[-10,8]],[[2106,6440],[-5,3]],[[2101,6443],[-4,-3]],[[2113,6411],[0,-5]],[[2111,6405],[-102,-37]],[[2009,6368],[32,113]],[[2060,6529],[17,65],[-128,334],[28,75]],[[3963,11331],[39,-29]],[[4002,11302],[0,-4]],[[4002,11298],[167,-54]],[[4169,11244],[-72,-131],[-64,-30],[-83,-213],[45,-349]],[[3995,10521],[-109,-22],[2,-65],[-51,-48],[122,-43],[26,-41],[77,48]],[[4062,10350],[88,-151],[-28,-42],[27,-52],[-115,-89]],[[4034,10016],[-106,6],[-30,-77],[-37,30],[33,202],[-57,38],[-82,-63],[5,-35],[-58,-19],[-25,82],[-51,-3],[-10,-54],[-71,14],[-2,-120],[-88,27],[35,171],[-20,14]],[[3470,10229],[5,14]],[[3475,10243],[-58,53]],[[3417,10296],[-148,106],[-20,188],[-33,3],[-33,60],[8,58],[-134,-15],[-102,82],[-32,-21],[-92,23],[16,165],[-59,-5],[36,58],[-15,38]],[[2809,11036],[125,23],[84,-66],[34,11],[16,-36],[36,17],[17,-110],[99,85],[167,13],[51,-39],[120,54]],[[3558,10988],[3,-2]],[[3561,10986],[19,132],[77,13],[48,-31],[42,35],[-16,47],[145,116]],[[3876,11298],[1,4]],[[3877,11302],[-44,85]],[[3832,11390],[5,7]],[[3835,11408],[2,17]],[[3837,11425],[-26,68]],[[3811,11493],[59,-5],[49,-74],[62,-25],[-18,-58]],[[4761,11660],[41,-68],[-52,-6],[-38,48],[-145,-1],[-44,41],[-208,-62],[-96,-186],[49,-122],[-105,-51]],[[4163,11253],[6,-9]],[[4002,11298],[0,4]],[[3811,11493],[-20,15]],[[3791,11508],[0,2]],[[3791,11510],[-51,29],[12,99],[-93,54],[-99,-9],[-138,307],[-126,72],[6,64],[135,84],[-24,79]],[[3413,12289],[23,32],[-5,54],[-46,82],[56,-21],[37,15],[34,42],[64,13],[65,72],[184,-5],[53,-67],[98,-26],[82,-75],[174,71],[117,-181],[142,57],[41,-43],[-40,-21],[5,-49],[33,26],[60,-53],[-25,-67],[137,-132],[-36,-99],[60,-79],[-46,-41],[81,-134]],[[8705,8788],[-7,-57],[86,-104],[-56,-68],[27,-8],[-6,-76],[-41,0],[0,-86],[-51,-64],[4,-46],[-86,-16],[-26,-66],[-47,25],[-17,-67],[-70,-10],[5,-35],[-112,41],[-46,-92],[-154,-26],[-42,-80],[-56,-13],[-38,63],[-45,7],[2,-45],[-81,-19],[-11,-123],[36,-29],[54,6],[77,-72],[81,-8],[10,-94],[98,-58],[7,-37],[46,-1],[39,-85],[-11,-64],[-43,-22]],[[8231,7359],[-99,60],[-33,-16],[-158,112],[-51,-41],[30,-36],[-23,-65],[25,-28],[-59,-99],[-215,85],[-89,-53],[-82,52],[36,65],[-24,90],[-339,-68],[-127,87]],[[7025,8032],[-3,0]],[[6999,8028],[-4,-1]],[[6721,8255],[50,117],[-19,73],[47,12]],[[6910,8449],[15,7]],[[6959,8462],[4,-2]],[[4153,5491],[46,-153],[-57,-68],[6,-48],[-36,-13],[-8,-56],[97,-28],[-123,-144],[-2,-39],[55,-62],[-37,-164],[17,-26],[-17,-42],[-73,-24],[14,-31],[137,-43],[-46,-30],[10,-156]],[[4136,4364],[-116,17],[-77,-22],[-17,-262],[49,-35],[7,-56],[-24,-66],[-104,-1],[-36,30],[-14,-58],[45,-2],[-46,-175],[46,-58],[49,2],[-40,-42],[24,-72],[49,0],[47,47],[92,-32],[16,28],[46,-33],[5,-41],[-53,-3],[-23,-54],[35,-75],[-31,0],[-16,62],[-79,-13],[-50,26],[-1,57],[-35,-29],[42,-89],[-30,-55],[88,-26],[33,66],[82,-32],[46,-56],[171,91],[58,-6],[29,-15],[-12,-97],[134,-32],[-11,-108],[94,-39],[-48,-147],[-96,-56],[-9,-45]],[[4455,2858],[-177,51],[-33,-82],[-68,-32],[3,-127],[-61,-72],[116,-17],[18,-27],[-46,-74],[-77,-12],[-26,-75],[-237,5],[-22,-87],[-133,6],[-21,40],[-36,-18]],[[3655,2337],[-3,29],[-138,62],[-1,57],[-103,-15],[-36,63],[-98,37],[-65,67],[-28,91],[-115,91],[-29,-7],[-18,59],[-64,-15]],[[2957,2856],[-110,513],[-157,422],[-68,30],[-9,53]],[[2627,4234],[18,47],[82,7],[62,154],[8,64],[-71,33],[-33,109],[98,51],[26,2],[9,-38],[92,94],[61,17],[39,76],[101,-50],[25,54],[171,14],[-15,235],[78,-51],[37,17],[17,-39],[84,21],[117,-27],[-23,135],[38,5],[48,73],[75,-25],[98,110],[19,118],[46,-16],[114,137],[68,-85],[37,15]],[[3655,2337],[-89,-46],[15,-43],[125,-57],[-42,-73],[133,-43],[-42,-86],[112,-75],[-35,-226],[73,-36],[81,61],[39,-44],[1,-68],[-29,-8],[33,-62],[-42,-151],[98,-67],[-59,-173],[-53,-63],[51,-86],[-31,-46],[39,-93],[-81,-121]],[[3952,731],[-243,284],[-96,254],[-103,448],[-163,472],[-90,160],[-3,6],[-146,149],[-151,352]],[[3254,2367],[0,-1]],[[3254,2366],[-1,-4]],[[3253,2362],[2,-1]],[[3255,2361],[3,-2]],[[3258,2359],[3,1]],[[3261,2360],[1,0]],[[3262,2360],[3,1]],[[3265,2361],[2,1]],[[3267,2362],[-1,3]],[[3266,2365],[-5,7]],[[3261,2372],[0,7]],[[3261,2379],[-1,2]],[[3260,2381],[-4,-1]],[[3256,2380],[-1,-1]],[[3255,2379],[0,-2]],[[3255,2377],[2,-2]],[[3257,2375],[-3,-8]],[[2619,2117],[-61,48],[21,20],[40,-68]],[[1616,2417],[-28,0],[-21,60],[23,19],[26,-79]],[[6116,8138],[-5,-2]],[[6121,7930],[1,-2]],[[5902,7490],[-2,-1]],[[5774,7480],[-3,7]],[[5536,6937],[-93,34],[-84,103],[-179,-42],[-55,33],[-70,-27],[-39,61],[-113,20],[-8,-31],[-108,-16],[-19,-62],[-219,8],[-8,47],[-107,-21],[-5,-28],[-121,-58],[-101,-2],[-104,47],[-6,34],[64,-7],[-31,105],[-98,4],[-215,-77],[-1,-51],[-75,-76],[-1,-65],[-59,2],[-50,-57],[-86,6],[-38,135],[-392,18],[-72,73],[-208,47],[-36,30],[8,87],[-62,53],[-44,-41],[-64,10]],[[2716,7760],[95,18],[60,47],[-61,58],[36,66],[106,46],[32,53],[-8,94],[39,78],[-52,118],[-48,-2]],[[2915,8336],[-6,3]],[[2909,8339],[46,81],[-63,27]],[[2892,8447],[-1,1]],[[2891,8448],[47,122],[24,-46],[57,19],[5,40],[-68,9],[4,59],[78,-37],[34,14],[16,67],[69,8],[-4,-110],[-26,22],[-6,-60],[171,-22],[57,34],[43,-15],[39,-91],[-10,-44],[-75,-20],[12,-193],[-110,24],[-26,-60],[86,-58],[145,63],[-7,44],[78,33],[-5,53],[37,12],[114,-1],[27,-32],[41,48],[78,-65],[49,2],[19,32],[-47,78],[6,51],[30,32],[18,-36],[40,31],[5,55],[-115,88],[66,22],[-36,66],[134,49],[59,-15],[37,19],[10,49],[-45,100],[-68,-58],[-87,-8],[-158,44],[-37,67],[4,127],[118,70],[21,45]],[[3839,9175],[3,1]],[[3842,9176],[117,87]],[[3959,9263],[1,4]],[[3960,9267],[312,153],[80,71],[43,-8],[3,49],[51,22]],[[4449,9554],[68,17],[90,-54],[67,20],[119,-54],[59,-158],[-159,-301],[15,-50],[-139,-17],[-65,-72],[47,-130],[-121,-129],[43,-103],[0,-105],[53,-83],[51,58],[126,-100],[82,82],[-39,134],[-57,-17],[6,123],[-63,48],[8,47],[-54,107],[37,62],[72,-28],[-18,50],[97,32],[-67,-113],[34,-49],[70,21],[48,-59],[64,5],[28,53],[-36,37],[33,11],[45,-43],[-21,-58],[45,-18],[27,41],[123,-33],[8,65],[153,81],[54,-7],[1,-52],[40,-29],[-24,-38],[57,-70],[122,70],[53,-33],[-6,-64],[136,10],[47,99],[76,-25],[57,39],[35,-57],[113,-44],[1,-47],[136,-41],[40,-80],[49,-14],[5,50],[153,-29],[-25,-267],[44,-56]],[[5363,5695],[-68,-20],[-82,51],[-2,123],[-30,29],[37,34],[14,107],[-87,94],[-137,-48],[-96,54],[-29,-73],[-76,39],[-22,52],[-49,3],[-6,49],[-199,37],[-50,-71],[10,-110],[-54,-29],[-2,-73],[-104,47],[-40,-19],[-41,-152],[58,-54],[-73,-92],[6,-41],[-67,-20],[-21,-121]],[[2429,4270],[-83,118],[-77,268],[17,38],[-49,334],[-156,542],[-33,316],[-77,341],[40,33],[-2,108]],[[2111,6405],[3,-16]],[[2118,6387],[0,-9]],[[2112,6365],[14,-5]],[[2127,6361],[2,8]],[[2132,6368],[-1,-5]],[[2133,6353],[9,-13]],[[2142,6340],[6,-5]],[[2164,6348],[7,-3]],[[2177,6341],[5,-1]],[[2189,6340],[9,-2]],[[2198,6338],[5,-7]],[[2220,6346],[2,8]],[[11766,8899],[-36,-126],[64,-29],[-2,-53],[-213,-407],[-45,-150],[-64,39],[-93,-1],[-20,35],[-129,-16],[-25,52],[-35,-13]],[[11168,8230],[-156,37],[7,130]],[[11230,8828],[59,-51],[102,172],[206,-33],[76,60],[93,-77]],[[10770,8698],[-161,73],[-192,-29],[-168,39],[-365,-30],[-238,78],[-42,30],[17,51]],[[10340,9092],[2,-2]],[[11168,8230],[42,-224],[-17,-170],[-41,-103],[-75,19],[13,-64],[-28,-49],[45,-252],[-17,-47],[-48,10],[-24,-70],[-47,-20],[-83,67],[-8,-53],[-39,-14],[-35,329],[-65,111],[8,156],[-55,220]],[[10694,8076],[27,88],[-15,162]],[[12013,9483],[-75,-105],[30,-38],[-4,-137],[26,-7],[-76,-101],[16,-53],[-106,-127],[-58,-16]],[[3995,10521],[62,-87]],[[4057,10434],[-1,-1]],[[4056,10433],[6,-83]],[[5148,2016],[0,-3]],[[5148,2013],[1,-1]],[[5149,2012],[22,8]],[[5171,2020],[-1,-3]],[[5170,2017],[5,-1]],[[5175,2016],[-7,-79]],[[5168,1937],[-34,33]],[[5134,1970],[0,5]],[[5134,1975],[0,1]],[[5134,1976],[1,1]],[[5135,1977],[-1,2]],[[5134,1979],[-7,-1]],[[5127,1978],[1,2]],[[5128,1980],[-2,1]],[[5126,1981],[1,1]],[[5127,1982],[-1,1]],[[5126,1983],[-1,-1]],[[5125,1982],[-2,0]],[[5123,1982],[1,2]],[[5124,1984],[-5,1]],[[5119,1985],[1,3]],[[5120,1988],[-3,0]],[[5117,1988],[2,4]],[[5119,1992],[2,0]],[[5121,1992],[4,4]],[[5125,1996],[-2,2]],[[5123,1998],[-4,-2]],[[5119,1996],[-2,0]],[[5117,1996],[-1,8]],[[5116,2004],[4,0]],[[5120,2004],[13,-4]],[[5133,2000],[2,0]],[[5135,2000],[0,3]],[[5135,2003],[-2,3]],[[5133,2006],[-1,1]],[[5132,2007],[1,4]],[[5133,2011],[-1,1]],[[5132,2012],[-4,1]],[[5128,2013],[0,5]],[[5128,2018],[0,2]],[[5128,2020],[3,1]],[[5131,2021],[3,-1]],[[5134,2020],[14,-4]],[[3266,2365],[1,-3]],[[3265,2361],[-3,-1]],[[3262,2360],[-1,0]],[[3258,2359],[-3,2]],[[3253,2362],[1,4]],[[3254,2366],[0,1]],[[3257,2375],[-2,2]],[[3255,2377],[0,2]],[[3256,2380],[4,1]],[[3261,2379],[0,-7]],[[5096,2403],[1,4]],[[5097,2407],[5,-1]],[[5102,2406],[1,-2]],[[5103,2404],[-7,-1]],[[5131,2418],[5,-3]],[[5136,2415],[14,-2]],[[5150,2413],[-1,3]],[[5149,2416],[2,2]],[[5151,2418],[-1,-25],[-6,-1]],[[5144,2392],[-1,-1]],[[5143,2391],[-8,5]],[[5135,2396],[0,-1]],[[5135,2395],[-2,-5]],[[5133,2390],[-20,7]],[[5113,2397],[5,4]],[[5118,2401],[1,2]],[[5119,2403],[0,1]],[[5119,2404],[2,8]],[[5121,2412],[0,6]],[[5121,2418],[10,0]],[[5094,2407],[-11,1]],[[5083,2408],[-2,3]],[[5081,2411],[9,8]],[[5090,2419],[0,-6]],[[5090,2413],[5,-2]],[[5095,2411],[-1,-4]],[[5079,2439],[0,3]],[[5079,2442],[3,-1]],[[5082,2441],[3,-2]],[[5085,2439],[0,-3]],[[5085,2436],[3,-2]],[[5088,2434],[3,-5]],[[5091,2429],[-16,-4]],[[5075,2425],[-3,5]],[[5072,2430],[-8,-3]],[[5064,2427],[-1,9]],[[5063,2436],[0,2]],[[5063,2438],[14,4]],[[5077,2442],[2,-3]],[[5103,2482],[-3,-9]],[[5100,2473],[-13,2]],[[5087,2475],[3,3]],[[5090,2478],[1,2]],[[5091,2480],[12,2]],[[5075,2510],[12,-3]],[[5087,2507],[-6,-16]],[[5081,2491],[0,-8]],[[5081,2483],[4,-6]],[[5085,2477],[-1,-4]],[[5084,2473],[-2,-4]],[[5082,2469],[7,2]],[[5089,2471],[0,-2]],[[5089,2469],[1,-2]],[[5090,2467],[0,-1]],[[5090,2466],[5,-2]],[[5095,2464],[0,-6]],[[5095,2458],[0,-3]],[[5095,2455],[-4,0]],[[5091,2455],[-16,-6]],[[5075,2449],[0,1]],[[5075,2450],[-3,9]],[[5072,2459],[0,8]],[[5072,2467],[0,2]],[[5072,2469],[4,0]],[[5076,2469],[0,4]],[[5076,2473],[-5,8]],[[5071,2481],[1,8]],[[5072,2489],[2,1]],[[5074,2490],[-2,6]],[[5072,2496],[0,4]],[[5072,2500],[1,2]],[[5073,2502],[2,8]],[[5110,2501],[5,-5]],[[5115,2496],[0,-3]],[[5115,2493],[22,-2]],[[5137,2491],[-17,-10]],[[5120,2481],[10,-13]],[[5130,2468],[0,-10]],[[5130,2458],[2,0]],[[5132,2458],[0,1]],[[5132,2459],[3,10]],[[5135,2469],[20,9]],[[5155,2478],[0,4]],[[5155,2482],[11,-8]],[[5166,2474],[-23,-51]],[[5143,2423],[-3,-5]],[[5140,2418],[-3,1]],[[5137,2419],[-2,3]],[[5135,2422],[1,2]],[[5136,2424],[2,3]],[[5138,2427],[-1,8]],[[5137,2435],[-3,0]],[[5134,2435],[-1,-2]],[[5133,2433],[-2,-9]],[[5131,2424],[-4,-2]],[[5127,2422],[-10,7]],[[5117,2429],[-1,-4]],[[5116,2425],[-3,7]],[[5113,2432],[-2,1]],[[5111,2433],[-1,9]],[[5110,2442],[-6,-2]],[[5104,2440],[-3,-1]],[[5101,2439],[-5,2]],[[5096,2441],[9,4]],[[5105,2445],[0,3]],[[5105,2448],[0,3]],[[5105,2451],[10,5]],[[5115,2456],[0,-13]],[[5115,2443],[6,0]],[[5121,2443],[0,5]],[[5121,2448],[1,2]],[[5122,2450],[-6,11]],[[5116,2461],[-4,3]],[[5112,2464],[1,-1]],[[5113,2463],[-9,10]],[[5104,2473],[11,6]],[[5115,2479],[-3,5]],[[5112,2484],[-24,6]],[[5088,2490],[1,6]],[[5089,2496],[0,3]],[[5089,2499],[1,2]],[[5090,2501],[21,7]],[[5111,2508],[-1,-7]],[[5140,2442],[3,-5]],[[5143,2437],[0,-4]],[[5143,2433],[4,3]],[[5147,2436],[4,11]],[[5151,2447],[-3,-2]],[[5148,2445],[-4,2]],[[5144,2447],[-3,2]],[[5141,2449],[-1,-7]],[[5170,2502],[2,9]],[[5172,2511],[2,8]],[[5174,2519],[11,-3]],[[5185,2516],[-15,-14]],[[3791,11510],[0,-2]],[[3830,11426],[-9,0]],[[3823,11435],[-4,-2]],[[3819,11433],[-7,1]],[[3814,11434],[-1,2]],[[3800,11439],[-2,-2]],[[3798,11437],[-1,-2]],[[3797,11435],[-4,-2]],[[3788,11427],[-12,-4]],[[3787,11404],[-1,-3]],[[3786,11400],[5,-1]],[[3791,11399],[0,-3]],[[3791,11396],[2,-3]],[[3794,11393],[6,-3]],[[3877,11302],[-1,-4]],[[3561,10986],[-3,2]],[[2809,11036],[-88,5]],[[2721,11041],[-14,1]],[[2707,11042],[-5,0]],[[2702,11042],[-172,7],[33,107]],[[2563,11156],[-31,74],[29,64],[43,16],[174,214],[93,41],[10,35],[-77,4],[16,109],[45,46],[-53,104],[15,71],[165,112],[152,26],[43,57],[-18,49],[64,-12],[108,47],[72,76]],[[2702,11042],[5,0]],[[2707,11042],[14,-1]],[[3475,10243],[-5,-14]],[[4034,10016],[28,-134],[135,-136],[-38,-90],[59,-34],[-93,-36],[-29,-28],[21,-35],[134,79],[166,10],[42,-12],[-10,-46]],[[3960,9267],[-1,-4]],[[3842,9176],[-3,-1]],[[2891,8448],[1,-1]],[[2909,8339],[6,-3]],[[2583,7889],[-9,1]],[[1284,8533],[-95,222],[-98,117],[4,130],[-177,18],[-78,108],[33,293],[-166,23],[-127,68],[34,210],[193,180],[49,117],[106,98],[97,-1],[78,-136],[61,-7],[135,58],[200,20],[107,42],[15,79],[121,125],[47,140],[284,165],[143,245],[54,182],[259,127]],[[9134,9705],[-72,22],[-70,-53],[-124,14],[-64,50]],[[8804,9738],[14,132],[68,170],[-30,10],[6,43],[111,7],[111,61],[50,-15],[57,-85],[-50,-158],[59,-138],[-44,-13],[-22,-47]],[[5148,2445],[3,2]],[[5147,2436],[-4,-3]],[[5143,2433],[0,4]],[[5143,2437],[-3,5]],[[5141,2449],[3,-2]],[[5105,2441],[5,1]],[[5110,2442],[1,-9]],[[5111,2433],[2,-1]],[[5116,2425],[1,4]],[[5117,2429],[10,-7]],[[5131,2424],[2,9]],[[5133,2433],[1,2]],[[5137,2435],[1,-8]],[[5138,2427],[-2,-3]],[[5135,2422],[2,-3]],[[5140,2418],[1,0],[2,5]],[[5143,2423],[8,-5]],[[5151,2418],[-2,-2]],[[5149,2416],[1,-3]],[[5150,2413],[-14,2]],[[5136,2415],[-5,3]],[[5131,2418],[-10,0]],[[5121,2418],[0,-6]],[[5121,2412],[-2,-8]],[[5119,2404],[0,-1]],[[5119,2403],[-1,-2]],[[5118,2401],[-5,-4]],[[5113,2397],[20,-7]],[[5133,2390],[2,5]],[[5135,2396],[8,-5]],[[5143,2391],[1,1]],[[5144,2392],[31,-376]],[[5175,2016],[-5,1]],[[5170,2017],[1,3]],[[5149,2012],[-1,1]],[[5148,2013],[0,3]],[[5134,2020],[-3,1]],[[5128,2020],[0,-2]],[[5128,2013],[4,-1]],[[5132,2012],[1,-1]],[[5132,2007],[1,-1]],[[5135,2003],[0,-3]],[[5135,2000],[-2,0]],[[5120,2004],[-4,0]],[[5117,1996],[2,0]],[[5123,1998],[2,-2]],[[5121,1992],[-2,0]],[[5117,1988],[3,0]],[[5119,1985],[5,-1]],[[5124,1984],[-1,-2]],[[5123,1982],[2,0]],[[5126,1983],[1,-1]],[[5126,1981],[2,-1]],[[5128,1980],[-1,-2]],[[5127,1978],[7,1]],[[5135,1977],[-1,-1]],[[5134,1976],[0,-1]],[[5134,1975],[0,-5]],[[5168,1937],[19,-255],[-218,15],[-50,-40],[-6,-96],[-150,-215],[-11,-61],[39,-86],[-252,-77],[-93,-73],[-35,-220],[-41,-67],[-216,-133],[-106,20],[-96,82]],[[4455,2858],[66,-67],[81,41],[30,132],[81,49],[157,-32],[32,60],[87,24],[-2,65],[113,-40],[113,47],[36,73],[92,-8],[20,37]],[[5361,3239],[31,-139],[-38,-239],[-52,-160],[-117,-185]],[[5174,2519],[-2,-8]],[[5172,2511],[-2,-9]],[[5170,2502],[-4,-28]],[[5155,2482],[0,-4]],[[5135,2469],[-3,-10]],[[5132,2459],[0,-1]],[[5130,2458],[0,10]],[[5120,2481],[17,10]],[[5115,2493],[0,3]],[[5110,2501],[1,7]],[[5090,2501],[-1,-2]],[[5089,2499],[0,-3]],[[5088,2490],[24,-6]],[[5112,2484],[3,-5]],[[5104,2473],[9,-10]],[[5112,2464],[4,-3]],[[5116,2461],[6,-11]],[[5121,2448],[0,-5]],[[5115,2443],[0,13]],[[5105,2451],[0,-3]],[[5105,2448],[0,-3]],[[5096,2441],[5,-2]],[[5101,2439],[3,1]],[[5104,2440],[1,1]],[[5079,2442],[0,-3]],[[5079,2439],[-2,3]],[[5063,2438],[0,-2]],[[5063,2436],[1,-9]],[[5064,2427],[8,3]],[[5072,2430],[3,-5]],[[5075,2425],[16,4]],[[5088,2434],[-3,2]],[[5085,2436],[0,3]],[[5085,2439],[-3,2]],[[5091,2455],[4,0]],[[5095,2458],[0,6]],[[5090,2466],[0,1]],[[5090,2467],[-1,2]],[[5089,2469],[0,2]],[[5082,2469],[2,4]],[[5084,2473],[1,4]],[[5081,2483],[0,8]],[[5081,2491],[6,16]],[[5075,2510],[-2,-8]],[[5072,2500],[0,-4]],[[5072,2496],[2,-6]],[[5072,2489],[-1,-8]],[[5071,2481],[5,-8]],[[5076,2473],[0,-4]],[[5072,2469],[0,-2]],[[5072,2467],[0,-8]],[[5072,2459],[3,-9]],[[5075,2449],[16,6]],[[5091,2480],[-1,-2]],[[5090,2478],[-3,-3]],[[5087,2475],[13,-2]],[[5100,2473],[3,9]],[[5094,2407],[1,4]],[[5090,2413],[0,6]],[[5081,2411],[2,-3]],[[5083,2408],[11,-1]],[[5096,2403],[7,1]],[[5102,2406],[-5,1]],[[5710,5252],[1,-18],[-7,-7],[-31,17],[-38,-25],[2,-22],[56,-73],[48,1],[89,-64],[-56,-26],[-13,-45],[-114,-15],[-36,-78],[-118,48],[-28,-18],[-24,-74],[63,-9],[-9,-78],[-109,52],[-25,66],[-30,3],[-66,-25],[-24,-48],[35,-24],[-57,-86],[-75,46],[-226,-80],[-18,-148],[-91,-3],[-126,-106],[-45,33],[-103,-5],[-61,-22],[-75,-99],[-263,44]],[[5566,5529],[-1,-3]],[[5677,5434],[0,-4]],[[5709,5252],[1,0]],[[10694,8076],[-146,-29],[17,-87],[-85,-83],[15,-99],[-89,-74],[-73,150],[-32,-30],[-26,21],[-73,172],[32,136],[86,106],[73,-16],[32,52],[46,-17],[29,31],[37,-32],[5,92],[74,16],[35,23],[-8,39],[35,-1]],[[5272,10505],[134,-93],[83,28],[156,-112],[135,-47],[52,-105],[44,16],[22,-41],[183,-108],[82,31],[171,-117],[102,19],[25,-103],[195,-23],[57,-58],[40,70],[91,-4],[115,-59]],[[7197,9029],[-6,3]],[[6783,8556],[2,0]],[[6808,8470],[0,-2]],[[4056,10433],[1,1]],[[4163,11253],[158,-71],[-96,-185],[25,-72],[33,-21],[48,20],[17,-76],[157,115],[69,-26],[91,-111],[92,-25],[-76,-68],[78,-72],[75,-5],[146,-104],[4,-37],[162,17],[95,-83],[31,56]],[[4761,11660],[67,101],[33,-16],[125,-191],[40,1],[39,-46],[66,30],[51,-12],[171,-114],[-12,-76],[170,-47],[193,-133],[-78,-13],[-168,-180],[-35,-2],[1,-91],[-60,-97],[-2,-119],[-61,-34],[-29,-116]],[[8895,7142],[40,-43],[-9,-52],[-33,27],[2,68]],[[9166,7144],[13,-59],[-23,-1],[10,60]],[[8944,7189],[20,-44],[-30,-28],[-4,28],[-8,10],[-8,2],[-2,6],[19,10],[13,16]],[[8857,7196],[-1,-117],[-41,9],[42,108]],[[9168,7216],[57,-26],[-33,-24],[-24,50]],[[9158,7264],[38,-3],[4,-40],[-69,13],[27,30]],[[9105,7354],[42,-18],[-43,-37],[-26,6],[9,27],[18,22]],[[9234,7437],[25,-76],[-32,-4],[7,80]],[[9205,7524],[16,-7],[19,-58],[-32,-11],[-14,29],[1,45],[10,2]],[[9134,9705],[52,-18],[115,-143],[85,21],[238,-71]],[[9624,9342],[-1,-1]],[[9562,9238],[-36,23],[-41,-103],[-85,6],[-87,61],[-32,124],[-46,10],[8,-60],[-109,8],[-162,145],[-16,-51],[73,-60],[-160,-132],[-21,-147],[116,-40],[79,-93],[125,-17],[5,-55],[70,-31],[-38,-64],[-212,17],[-19,-123],[-41,-30],[-59,31],[-71,-131],[146,-139],[171,-38],[4,-182],[-70,-26],[-5,-69],[89,-129],[-20,-91],[107,-29],[-40,-45],[-1,-61],[44,-60],[-15,-130],[-18,-4],[-12,-8],[-9,-55],[39,-65],[-15,-56],[-52,2],[-19,9],[-22,5],[-9,-2],[-24,-46],[-8,-96],[-143,-24],[15,-5],[-24,-17],[-1,-5],[7,-23],[-25,6],[-28,93],[31,56],[-76,-30],[-96,-142],[-154,-54]],[[8570,7066],[-19,78],[-72,18],[-21,73],[-105,-22],[17,39],[-35,45],[-107,28],[3,34]],[[8847,9416],[26,156],[-79,114],[10,52]],[[8570,7066],[-151,-45],[-90,-74],[-47,-93],[77,-226],[-101,-73],[-24,-57],[22,-40],[-114,-75],[-71,-105],[-452,-173],[-204,-162],[-55,-78]],[[7360,5865],[-44,24],[-29,-48],[-39,8],[-78,-117],[-107,-22],[-99,35],[-36,90],[-28,-15],[-54,55],[-58,-44],[-61,3],[23,-64],[-161,-146],[18,-82],[-40,-18],[-79,40],[-14,-51],[-79,-36],[6,52],[-54,71],[-53,-50],[-11,-172],[-138,5],[-185,-116],[-100,-4]],[[7360,5865],[-289,-370],[-184,-95],[-217,-244],[-291,-159],[-116,-110],[-23,-61],[52,-34],[-30,-121],[-254,-125],[-153,24],[-55,-19],[-47,-163],[-85,-115],[-55,-13],[-48,85],[-97,-13],[-74,-51],[-95,-177],[-38,-157],[66,-231],[-29,-181],[63,-296]],[[5710,5252],[4,-1]],[[5729,5265],[3,2]],[[2618,13510],[187,-17],[51,-79],[130,-60],[104,23],[29,-101],[54,-44]],[[3173,13232],[24,-6]],[[3197,13226],[14,-93],[137,-72],[89,-100],[51,-1],[86,-180],[65,28],[177,-196]],[[3816,12612],[-21,-36],[-154,2],[-65,-72],[-64,-14],[-34,-41],[-37,-15],[-56,21],[51,-136],[-95,-108],[-108,-47],[-157,42],[-43,41],[-39,-23],[-117,20],[-29,128],[-104,1],[-334,157],[12,56],[-44,78],[27,100],[-15,153],[-83,219],[21,102],[76,6],[69,100],[114,38],[31,126]],[[3197,13226],[-24,6]],[[2618,13510],[-144,45],[-39,33],[31,105],[-113,3],[-95,43],[-68,44],[-23,77],[-130,-19],[-123,32],[32,52],[-10,103],[184,115],[51,63],[-7,46],[322,13],[30,27],[-67,32],[167,-10],[9,28],[250,77],[95,-62],[93,35],[111,-38],[27,-80],[71,9],[98,-37],[84,-116],[306,-121],[76,-157],[111,-57],[115,-10],[76,-110],[172,-9],[27,50],[76,-17],[60,87],[67,30],[230,45],[78,-20],[56,71],[64,2],[17,-46],[143,-45],[112,18],[52,-76],[79,-36],[16,-61],[-116,-361],[-131,-44],[9,-66],[-95,2],[2,-119],[-93,-97],[-160,8],[-49,-36],[89,-172],[-83,9],[33,-144],[205,-34],[-31,-136],[108,-112],[-80,-98],[-48,28],[-100,-99],[-68,-8],[-60,35],[-34,115],[-58,-41],[-78,-12],[-52,-47],[-5,49],[40,21],[-41,43],[-142,-57],[-117,181],[-174,-71],[-82,75],[-98,26],[-62,106]]],"transform":{"scale":[0.0022497991447388913,0.0021010236667396965],"translate":[68.20959745418263,6.757042171233387]},"objects":{"india":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]]],"type":"MultiPolygon","properties":{"ST_NM":"Andaman and Nicobar Islands"}},{"arcs":[[11,12,13]],"type":"Polygon","properties":{"ST_NM":"Arunachal Pradesh"}},{"arcs":[[14,15,16,17,18,19,20,21,22,23,24,25,26,-13]],"type":"Polygon","properties":{"ST_NM":"Assam"}},{"arcs":[[27,28,29,30,31,32,33,34,35,36,37,38,39,40]],"type":"Polygon","properties":{"ST_NM":"Bihar"}},{"arcs":[[41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66]],"type":"Polygon","properties":{"ST_NM":"Chandigarh"}},{"arcs":[[67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92]],"type":"Polygon","properties":{"ST_NM":"Chhattisgarh"}},{"arcs":[[93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171]],"type":"Polygon","properties":{"ST_NM":"Dadra and Nagar Haveli"}},{"arcs":[[172,173]],"type":"Polygon","properties":{"ST_NM":"Daman and Diu"}},{"arcs":[[174,175,176]],"type":"Polygon","properties":{"ST_NM":"Goa"}},{"arcs":[[[177]],[[178]],[[179,180,181,182,183,184,-172,185,-170,186,-168,187,-166,188,189,-163,190,-161,191,-159,192,-157,193,-155,194,-153,195,-151,196,-149,197,-147,198,199,-144,200,-142,201,202,-139,203,-137,204,205,-134,206,-132,207,-130,208,-128,209,-126,210,-124,211,-122,212,213,214,-118,215,-116,216,217,-174,218]]],"type":"MultiPolygon","properties":{"ST_NM":"Gujarat"}},{"arcs":[[219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,-45,234,-43,235,236,237]],"type":"Polygon","properties":{"ST_NM":"Haryana"}},{"arcs":[[238,239,-222,240,-220,-238,241,242,243,244]],"type":"Polygon","properties":{"ST_NM":"Himachal Pradesh"}},{"arcs":[[245,246,-71,247,-69,248,-93,249,-33,250,-31,251,-29]],"type":"Polygon","properties":{"ST_NM":"Jharkhand"}},{"arcs":[[252,253,254,255,256,-175,257]],"type":"Polygon","properties":{"ST_NM":"Karnataka"}},{"arcs":[[258,259,-256],[260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276]],"type":"Polygon","properties":{"ST_NM":"Kerala"}},{"arcs":[[[277]],[[278]]],"type":"MultiPolygon","properties":{"ST_NM":"Lakshadweep"}},{"arcs":[[-91,279,-89,280,-87,281,-85,282,-83,283,-184,284,285,286,287,288,289,290,291,292,293]],"type":"Polygon","properties":{"ST_NM":"Madhya Pradesh"}},{"arcs":[[-82,294,-258,-177,295,-217,296,-114,297,-112,298,-110,299,-108,300,-106,301,302,-103,303,-101,304,-99,305,306,-96,307,-94,-185,-284]],"type":"Polygon","properties":{"ST_NM":"Maharashtra"}},{"arcs":[[308,309,-16,310]],"type":"Polygon","properties":{"ST_NM":"Manipur"}},{"arcs":[[311,-22,312,-20]],"type":"Polygon","properties":{"ST_NM":"Meghalaya"}},{"arcs":[[-310,313,314,-17]],"type":"Polygon","properties":{"ST_NM":"Mizoram"}},{"arcs":[[315,-311,-15,-12]],"type":"Polygon","properties":{"ST_NM":"Nagaland"}},{"arcs":[[316,317,318,-224]],"type":"Polygon","properties":{"ST_NM":"Delhi"}},{"arcs":[[[319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361]],[[362,-268,363,364,-265,365,-263,366,367,-277,368,369,-274,370,-272,371,-270]],[[372,373,374,375]],[[376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391]],[[392,393,394,395,396,397]],[[398,399,400,401,402,403,404,405,406,407,408,409,410]],[[411,412,413,414,415]],[[416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443]],[[444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494],[495,496,497,498,499,500,501,502]],[[503,504,505,506]]],"type":"MultiPolygon","properties":{"ST_NM":"Puducherry"}},{"arcs":[[507,-242,-237,-67,508,-65,509,510,-62,511,-60,512,513,514,-56,515,-54,516,-52,517,518,519,-48,520,-46,-234,521,-232,522,-230,523,524,525,526,527,-244]],"type":"Polygon","properties":{"ST_NM":"Punjab"}},{"arcs":[[528,529,-524,-229,-228,530,-226,531,-293,532,-291,533,-289,534,-287,535,-285,-183,536,-181,537,-527]],"type":"Polygon","properties":{"ST_NM":"Rajasthan"}},{"arcs":[[538,539]],"type":"Polygon","properties":{"ST_NM":"Sikkim"}},{"arcs":[[[-501,540,-499,541,542,543,-503,544]],[[545,546,547,-470,548,549,-467,550,551,-464,552,553,-461,554,-459,555,556,557,558,559,560,561,562,563,564,565,566,567,568,-384,569,570,571,572,573,-322,574,575,-362,576,-360,577,-358,578,579,-355,580,-353,581,582,-350,583,-348,584,-346,585,-344,586,-342,587,-340,588,589,590,-336,591,-334,592,593,594,-330,595,596,597,-326,598,-259,-255,599,600,-506,601,602,603,-456,604,-454,605,606,-451,607,-449,608,-447,609,-445,610,-494,611,612,-491,613,614,-488,615,-486,616,617,-483,618,-481,619,-479,620,621,-476,622,623,624],[-400,625,626,-410,627,628,629,630,631,-404,632,633,634],[635,-429,636,-427,637,638,639,-423,640,641,-420,642,643,-417,644,-443,645,646,-440,647,648,649,-436,650,651,652,-432,653],[654,655,656,657,-416],[658,-397,659,-395,660,661],[-373,662,-375,663]]],"type":"MultiPolygon","properties":{"ST_NM":"Tamil Nadu"}},{"arcs":[[664,-253,-295,-81,665,-79,666,-77,667]],"type":"Polygon","properties":{"ST_NM":"Telangana"}},{"arcs":[[-18,-315,668]],"type":"Polygon","properties":{"ST_NM":"Tripura"}},{"arcs":[[669,-40,670,-38,671,-36,672,-34,-250,-92,-294,-532,-225,-319,673,-317,-223,-240,674]],"type":"Polygon","properties":{"ST_NM":"Uttar Pradesh"}},{"arcs":[[-675,-239,675]],"type":"Polygon","properties":{"ST_NM":"Uttarakhand"}},{"arcs":[[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685,-26,686,-24,687,688,-246,-28,689,-539]]],"type":"MultiPolygon","properties":{"ST_NM":"West Bengal"}},{"arcs":[[-689,690,691,-72,-247]],"type":"Polygon","properties":{"ST_NM":"Odisha"}},{"arcs":[[-73,-692,692,-600,-254,-665,693,-75,694]],"type":"Polygon","properties":{"ST_NM":"Andhra Pradesh"}},{"arcs":[[695,696,697,698]],"type":"Polygon","properties":{"ST_NM":"Jammu and Kashmir"}},{"type":null,"properties":{"ST_NM":"Hello"}},{"arcs":[[-698,699,-696,700]],"type":"Polygon","properties":{"ST_NM":"Ladakh"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [11396, 230], + [35, -101], + [-41, -129], + [-80, 176], + [86, 54] + ], + [ + [11336, 327], + [19, -33], + [-56, -50], + [37, 83] + ], + [ + [11189, 603], + [-2, -67], + [-30, 38], + [32, 29] + ], + [ + [11253, 702], + [-8, -94], + [-24, 66], + [32, 28] + ], + [ + [10928, 1181], + [16, -35], + [-44, -20], + [-4, 46], + [32, 9] + ], + [ + [10805, 1971], + [35, -94], + [-44, -90], + [-35, 17], + [-17, 103], + [61, 64] + ], + [ + [10885, 2609], + [26, -29], + [-9, -47], + [16, -15], + [-25, -48], + [30, -5], + [-25, -198], + [-36, 1], + [-59, 155], + [41, 36], + [41, 150] + ], + [ + [10941, 2640], + [25, -7], + [-5, -43], + [-47, -64], + [2, 79], + [25, 35] + ], + [ + [10974, 2931], + [31, -83], + [-9, -132], + [-28, -66], + [-58, -14], + [-24, 18], + [10, 235], + [78, 42] + ], + [ + [10884, 2967], + [10, -56], + [-24, 4], + [14, 52] + ], + [ + [11032, 3243], + [14, -99], + [-45, -2], + [38, -39], + [-5, -93], + [-103, -86], + [31, 272], + [70, 47] + ], + [ + [12013, 9483], + [-18, 169] + ], + [ + [11995, 9652], + [116, 44], + [35, 64], + [24, -19], + [189, 69], + [-59, 33], + [-55, 137], + [98, 113], + [-165, -5], + [-40, -36], + [-281, -66], + [-170, -78], + [-94, 8], + [-273, -296], + [-291, -26], + [-160, 58], + [-33, -36], + [-212, -32] + ], + [ + [10624, 9584], + [-35, 88], + [18, 94], + [-23, 87], + [-161, 11], + [-41, 49], + [48, 129], + [70, -23], + [23, -41], + [167, 67], + [23, -40], + [113, 20], + [79, 80], + [-26, 61], + [152, 87], + [76, 9], + [62, 150], + [268, 21], + [125, 194], + [96, 68], + [56, 1], + [31, 56], + [76, -87], + [91, 2], + [200, -64], + [40, 86], + [238, 117], + [68, -104], + [71, 5], + [-108, -97], + [34, -58], + [93, 51], + [76, -115], + [-10, -36], + [-51, -18], + [-45, -138], + [131, 34], + [48, -44], + [55, 5], + [44, -33], + [58, 19], + [110, -63], + [1, -147], + [-54, -3], + [-160, -138], + [6, -76], + [115, -155], + [-48, -12], + [-87, 42], + [-28, 74], + [-253, -32], + [-88, -42], + [-35, -61], + [-182, -110], + [-55, -67], + [-83, -4] + ], + [ + [11995, 9652], + [-48, -43], + [-89, -9], + [-38, -60], + [-174, -90], + [-38, -65], + [-19, 40], + [-120, -180], + [-14, -123], + [-89, -38], + [2, 53], + [-43, -23], + [8, -27], + [-166, -144], + [55, -52], + [8, -63] + ], + [ + [11230, 8828], + [-102, -145], + [-24, -94], + [-35, -2], + [-7, -104], + [-43, -86] + ], + [ + [11019, 8397], + [-75, -1], + [-30, 58], + [-68, -128], + [-66, -55], + [-18, 55], + [-56, 0] + ], + [ + [10706, 8326], + [-37, -1], + [27, 66], + [-18, 55] + ], + [ + [10678, 8446], + [8, 193], + [110, -19], + [-26, 78] + ], + [ + [10770, 8698], + [157, 119], + [-82, 64], + [-9, 64], + [-76, 89], + [-109, -35], + [-2, 142], + [40, 31], + [-35, 24], + [-130, -24], + [-29, 43], + [-44, -78], + [-40, -5], + [1, 37], + [-27, 2], + [-43, -81] + ], + [ + [10342, 9090], + [-2, 2] + ], + [ + [10340, 9092], + [-61, -13], + [-48, -52], + [-32, 60], + [-38, -12], + [-82, 60], + [-63, -17], + [-117, 48], + [-161, -27], + [-98, -110], + [48, -68], + [-52, -12], + [-15, -39] + ], + [ + [9621, 8910], + [7, 237], + [-66, 91] + ], + [ + [9562, 9238], + [0, 44], + [61, 59] + ], + [ + [9623, 9341], + [1, 1] + ], + [ + [9624, 9342], + [0, 152] + ], + [ + [9624, 9494], + [148, 31], + [17, 42], + [81, 21], + [106, -61], + [305, 3], + [32, 26], + [142, -11], + [75, 49], + [70, -32], + [24, 22] + ], + [ + [8847, 9416], + [74, -78], + [-192, -158], + [-8, -82], + [100, -88], + [-10, -64], + [-107, -49], + [-2, -53], + [31, -19], + [-28, -37] + ], + [ + [8705, 8788], + [-98, 54], + [-42, -44], + [-66, -9], + [-15, -63], + [-51, -13], + [-59, -208], + [-48, 2], + [-36, -38], + [-28, 31], + [-55, -26], + [-30, 19], + [-61, -106], + [-75, 47], + [0, 52], + [-75, 13], + [-34, 78], + [-43, -22], + [-32, 33], + [-45, -1], + [-52, -59], + [2, -44], + [-339, -100], + [-37, 73], + [-71, -63], + [-39, 9], + [-35, -60], + [-104, 120], + [-66, -27], + [-52, 74], + [-56, -50] + ], + [ + [6963, 8460], + [-4, 2] + ], + [ + [6959, 8462], + [-34, -6] + ], + [ + [6925, 8456], + [-15, -7] + ], + [ + [6910, 8449], + [-111, 8] + ], + [ + [6799, 8457], + [9, 11] + ], + [ + [6808, 8468], + [0, 2] + ], + [ + [6808, 8470], + [-23, 86] + ], + [ + [6785, 8556], + [-2, 0] + ], + [ + [6783, 8556], + [-33, 24], + [-30, 109], + [13, 88], + [192, 95], + [132, 113], + [-4, 28], + [111, -11], + [27, 30] + ], + [ + [7191, 9032], + [6, -3] + ], + [ + [7197, 9029], + [55, -24], + [47, 54], + [-255, 146], + [-21, 43], + [69, 34], + [7, 54], + [-120, 36], + [2, 27], + [109, 63], + [117, -6], + [-82, 115], + [-79, 11], + [-49, 108], + [19, 30], + [-57, 79] + ], + [ + [6959, 9799], + [-9, 46], + [80, -3], + [40, 41], + [72, -59], + [155, -29], + [29, -54], + [-20, -84], + [140, -40], + [32, -42], + [72, -3], + [6, -51], + [57, -9], + [121, 55], + [56, -30], + [3, -71], + [268, -13], + [173, -92], + [125, 52], + [145, -88], + [21, 33], + [168, -5], + [13, 29], + [95, -54], + [46, 88] + ], + [ + [3837, 11425], + [-2, -17] + ], + [ + [3835, 11408], + [2, -11] + ], + [ + [3837, 11397], + [-5, -7] + ], + [ + [3832, 11390], + [1, -3] + ], + [ + [3833, 11387], + [-33, 3] + ], + [ + [3800, 11390], + [-6, 3] + ], + [ + [3794, 11393], + [-1, 0] + ], + [ + [3793, 11393], + [-2, 3] + ], + [ + [3791, 11396], + [0, 3] + ], + [ + [3791, 11399], + [-5, 1] + ], + [ + [3786, 11400], + [0, 1] + ], + [ + [3786, 11401], + [1, 3] + ], + [ + [3787, 11404], + [-11, 19] + ], + [ + [3776, 11423], + [12, 4] + ], + [ + [3788, 11427], + [5, 6] + ], + [ + [3793, 11433], + [4, 2] + ], + [ + [3797, 11435], + [1, 2] + ], + [ + [3798, 11437], + [2, 2] + ], + [ + [3800, 11439], + [13, -3] + ], + [ + [3813, 11436], + [1, -2] + ], + [ + [3814, 11434], + [-2, 0] + ], + [ + [3812, 11434], + [7, -1] + ], + [ + [3819, 11433], + [4, 2] + ], + [ + [3823, 11435], + [-2, -9] + ], + [ + [3821, 11426], + [9, 0] + ], + [ + [3830, 11426], + [7, -1] + ], + [ + [6995, 8027], + [4, 1] + ], + [ + [6999, 8028], + [23, 4] + ], + [ + [7022, 8032], + [3, 0] + ], + [ + [7025, 8032], + [-18, -122], + [46, -21], + [-18, -84], + [83, -85], + [68, 0], + [3, -48], + [-166, -168] + ], + [ + [7023, 7504], + [-1, -72], + [-158, -69], + [-39, -59], + [-10, -65], + [29, -25], + [-98, -142], + [-2, -130], + [-47, 17], + [-34, -112], + [-247, 5], + [-37, -99], + [-98, -48], + [28, -377], + [140, -31], + [-6, -74], + [-99, 35], + [-60, -33], + [-34, 67], + [-110, 23], + [-37, 38], + [-32, -37], + [-1, -59], + [86, -51], + [-2, -120], + [55, -52], + [30, -246], + [-30, -9], + [-11, -56], + [-85, -45], + [-3, -58], + [-90, -101], + [-97, -41], + [-63, -215] + ], + [ + [5860, 5263], + [-128, 4] + ], + [ + [5732, 5267], + [-3, -2] + ], + [ + [5729, 5265], + [-15, -14] + ], + [ + [5714, 5251], + [-5, 1] + ], + [ + [5709, 5252], + [-32, 178] + ], + [ + [5677, 5430], + [0, 4] + ], + [ + [5677, 5434], + [-106, 2], + [22, 34], + [-28, 56] + ], + [ + [5565, 5526], + [1, 3] + ], + [ + [5566, 5529], + [-41, 72], + [-64, 51], + [-65, -19], + [-33, 62] + ], + [ + [5363, 5695], + [35, 44], + [-35, 84], + [53, 121], + [76, 74], + [20, -41], + [65, -12], + [40, 33], + [-23, 34], + [46, 18], + [-102, 69], + [2, 39], + [-56, 39], + [-23, 57], + [15, 109], + [-62, 56], + [104, 40], + [-36, 288], + [-34, -2], + [-16, 39], + [15, 77], + [81, 39], + [8, 37] + ], + [ + [5536, 6937], + [32, 67], + [-10, 95], + [55, 63], + [1, 67], + [37, 83], + [37, -28], + [51, 111], + [-2, 69], + [34, 23] + ], + [ + [5771, 7487], + [3, -7] + ], + [ + [5774, 7480], + [58, 25], + [68, -16] + ], + [ + [5900, 7489], + [2, 1] + ], + [ + [5902, 7490], + [127, 87], + [2, 94], + [76, 39], + [-1, 58], + [94, 30], + [16, 86], + [-94, 44] + ], + [ + [6122, 7928], + [-1, 2] + ], + [ + [6121, 7930], + [-25, 53], + [-83, 16], + [-55, -26], + [3, 72], + [33, 28], + [-39, 64], + [28, 33], + [66, -55], + [62, 21] + ], + [ + [6111, 8136], + [5, 2] + ], + [ + [6116, 8138], + [259, -30], + [117, 81] + ], + [ + [6492, 8189], + [65, -43], + [77, 8], + [87, 101] + ], + [ + [6721, 8255], + [83, -36], + [118, -202], + [71, -18], + [2, 28] + ], + [ + [2221, 6361], + [1, -7] + ], + [ + [2222, 6354], + [-2, -8] + ], + [ + [2220, 6346], + [-17, -15] + ], + [ + [2203, 6331], + [-5, 7] + ], + [ + [2198, 6338], + [-9, 2] + ], + [ + [2189, 6340], + [-7, 0] + ], + [ + [2182, 6340], + [-5, 1] + ], + [ + [2177, 6341], + [-6, 4] + ], + [ + [2171, 6345], + [-7, 3] + ], + [ + [2164, 6348], + [-16, -13] + ], + [ + [2148, 6335], + [-6, 5] + ], + [ + [2142, 6340], + [-9, 13] + ], + [ + [2133, 6353], + [-2, 10] + ], + [ + [2131, 6363], + [1, 5] + ], + [ + [2132, 6368], + [-3, 1] + ], + [ + [2129, 6369], + [-2, -8] + ], + [ + [2127, 6361], + [-1, -1] + ], + [ + [2126, 6360], + [-14, 5] + ], + [ + [2112, 6365], + [6, 13] + ], + [ + [2118, 6378], + [0, 9] + ], + [ + [2118, 6387], + [-4, 2] + ], + [ + [2114, 6389], + [-3, 16] + ], + [ + [2111, 6405], + [2, 1] + ], + [ + [2113, 6406], + [0, 5] + ], + [ + [2113, 6411], + [-16, 29] + ], + [ + [2097, 6440], + [4, 3] + ], + [ + [2101, 6443], + [5, -3] + ], + [ + [2106, 6440], + [10, -8] + ], + [ + [2116, 6432], + [18, 15] + ], + [ + [2134, 6447], + [-2, 6] + ], + [ + [2132, 6453], + [1, 1] + ], + [ + [2133, 6454], + [4, -6] + ], + [ + [2137, 6448], + [7, -6] + ], + [ + [2144, 6442], + [2, 6] + ], + [ + [2146, 6448], + [0, 6] + ], + [ + [2146, 6454], + [10, 5] + ], + [ + [2156, 6459], + [6, 1] + ], + [ + [2162, 6460], + [3, -1] + ], + [ + [2165, 6459], + [3, 4] + ], + [ + [2168, 6463], + [2, 10] + ], + [ + [2170, 6473], + [5, -25] + ], + [ + [2175, 6448], + [7, 1] + ], + [ + [2182, 6449], + [5, 2] + ], + [ + [2187, 6451], + [10, 3] + ], + [ + [2197, 6454], + [3, -1] + ], + [ + [2200, 6453], + [4, -2] + ], + [ + [2204, 6451], + [-1, -5] + ], + [ + [2203, 6446], + [-2, -8] + ], + [ + [2201, 6438], + [-1, 0] + ], + [ + [2200, 6438], + [-1, 2] + ], + [ + [2199, 6440], + [-5, -1] + ], + [ + [2194, 6439], + [-1, -4] + ], + [ + [2193, 6435], + [-3, 2] + ], + [ + [2190, 6437], + [-2, -6] + ], + [ + [2188, 6431], + [-2, -4] + ], + [ + [2186, 6427], + [-4, -1] + ], + [ + [2182, 6426], + [-7, -6] + ], + [ + [2175, 6420], + [-5, -8] + ], + [ + [2170, 6412], + [-9, 2] + ], + [ + [2161, 6414], + [-2, -1] + ], + [ + [2159, 6413], + [-6, -13] + ], + [ + [2153, 6400], + [3, -3] + ], + [ + [2156, 6397], + [2, -2] + ], + [ + [2158, 6395], + [-1, -8] + ], + [ + [2157, 6387], + [4, -9] + ], + [ + [2161, 6378], + [9, 3] + ], + [ + [2170, 6381], + [1, -2] + ], + [ + [2171, 6379], + [4, 0] + ], + [ + [2175, 6379], + [5, -1] + ], + [ + [2180, 6378], + [11, 23] + ], + [ + [2191, 6401], + [7, -2] + ], + [ + [2198, 6399], + [4, 0] + ], + [ + [2202, 6399], + [7, 0] + ], + [ + [2209, 6399], + [3, -2] + ], + [ + [2212, 6397], + [15, -6] + ], + [ + [2227, 6391], + [-1, -4] + ], + [ + [2226, 6387], + [-14, -9] + ], + [ + [2212, 6378], + [0, -8] + ], + [ + [2212, 6370], + [9, -9] + ], + [ + [2041, 6481], + [19, 48] + ], + [ + [2060, 6529], + [16, -50], + [-35, 2] + ], + [ + [2627, 4234], + [57, 2], + [30, -224], + [-36, -113], + [-65, -25] + ], + [ + [2613, 3874], + [-184, 396] + ], + [ + [2429, 4270], + [81, 34], + [61, -90], + [56, 20] + ], + [ + [66, 8114], + [26, -41], + [-31, -57], + [-55, -5], + [60, 103] + ], + [ + [66, 8195], + [-10, -65], + [-56, -13], + [66, 78] + ], + [ + [1977, 7003], + [-20, 100], + [-42, 12], + [42, 74], + [-43, 9], + [-6, 35], + [60, 158], + [-122, -40], + [-63, -117], + [38, -156], + [-115, -223], + [-399, -184], + [-2, -8], + [-59, -8], + [-10, -4], + [-75, -19], + [-251, 135], + [-454, 459], + [-133, 173], + [36, 69], + [58, -21], + [38, -69], + [417, 142], + [77, 178], + [-53, 14], + [-160, -42], + [-76, -61], + [-221, 46], + [-269, 178], + [25, 43], + [-68, 96], + [-3, 61], + [82, 108], + [-45, 9], + [-9, 42], + [90, 0], + [7, 145], + [36, -25], + [41, 39], + [27, -38], + [260, 32], + [63, -56], + [127, -1], + [41, 59], + [207, 61], + [0, -80], + [65, -18], + [71, 14], + [-3, 25], + [105, 66], + [-49, 4], + [-4, 76], + [48, 38] + ], + [ + [1284, 8533], + [85, -34], + [85, 31], + [330, -21], + [105, -108], + [34, 47], + [85, -69], + [109, -1], + [2, 44], + [51, 20], + [-5, -47], + [46, -29], + [-47, -71], + [76, -83], + [72, 19], + [-24, -94], + [133, -110], + [-12, -81], + [86, -3], + [30, -52], + [49, -1] + ], + [ + [2574, 7890], + [9, -1] + ], + [ + [2583, 7889], + [50, -33], + [-4, -41], + [55, 0], + [32, -55] + ], + [ + [2716, 7760], + [26, -73], + [37, 2], + [0, -47], + [-36, -82], + [-47, 2], + [-86, -66], + [8, -35], + [76, -20], + [-37, -34], + [-53, 19], + [33, -193] + ], + [ + [2637, 7233], + [-142, -68], + [28, -48], + [-30, -54], + [16, -48], + [192, 29], + [7, -37], + [-101, -11], + [-53, -30], + [-6, -46], + [-52, -14], + [-4, -46], + [-83, -18], + [72, -31], + [64, -142], + [-87, -96], + [-129, 70], + [-14, -244], + [-52, 3], + [-42, -41] + ], + [ + [2212, 6370], + [0, 8] + ], + [ + [2226, 6387], + [1, 4] + ], + [ + [2212, 6397], + [-3, 2] + ], + [ + [2202, 6399], + [-4, 0] + ], + [ + [2198, 6399], + [-7, 2] + ], + [ + [2180, 6378], + [-5, 1] + ], + [ + [2171, 6379], + [-1, 2] + ], + [ + [2161, 6378], + [-4, 9] + ], + [ + [2158, 6395], + [-2, 2] + ], + [ + [2153, 6400], + [6, 13] + ], + [ + [2161, 6414], + [9, -2] + ], + [ + [2175, 6420], + [7, 6] + ], + [ + [2186, 6427], + [2, 4] + ], + [ + [2190, 6437], + [3, -2] + ], + [ + [2193, 6435], + [1, 4] + ], + [ + [2199, 6440], + [1, -2] + ], + [ + [2201, 6438], + [2, 8] + ], + [ + [2203, 6446], + [1, 5] + ], + [ + [2200, 6453], + [-3, 1] + ], + [ + [2187, 6451], + [-5, -2] + ], + [ + [2182, 6449], + [-7, -1] + ], + [ + [2170, 6473], + [-2, -10] + ], + [ + [2165, 6459], + [-3, 1] + ], + [ + [2156, 6459], + [-10, -5] + ], + [ + [2146, 6448], + [-2, -6] + ], + [ + [2137, 6448], + [-4, 6] + ], + [ + [2132, 6453], + [2, -6] + ], + [ + [2116, 6432], + [-10, 8] + ], + [ + [2106, 6440], + [-5, 3] + ], + [ + [2101, 6443], + [-4, -3] + ], + [ + [2113, 6411], + [0, -5] + ], + [ + [2111, 6405], + [-102, -37] + ], + [ + [2009, 6368], + [32, 113] + ], + [ + [2060, 6529], + [17, 65], + [-128, 334], + [28, 75] + ], + [ + [3963, 11331], + [39, -29] + ], + [ + [4002, 11302], + [0, -4] + ], + [ + [4002, 11298], + [167, -54] + ], + [ + [4169, 11244], + [-72, -131], + [-64, -30], + [-83, -213], + [45, -349] + ], + [ + [3995, 10521], + [-109, -22], + [2, -65], + [-51, -48], + [122, -43], + [26, -41], + [77, 48] + ], + [ + [4062, 10350], + [88, -151], + [-28, -42], + [27, -52], + [-115, -89] + ], + [ + [4034, 10016], + [-106, 6], + [-30, -77], + [-37, 30], + [33, 202], + [-57, 38], + [-82, -63], + [5, -35], + [-58, -19], + [-25, 82], + [-51, -3], + [-10, -54], + [-71, 14], + [-2, -120], + [-88, 27], + [35, 171], + [-20, 14] + ], + [ + [3470, 10229], + [5, 14] + ], + [ + [3475, 10243], + [-58, 53] + ], + [ + [3417, 10296], + [-148, 106], + [-20, 188], + [-33, 3], + [-33, 60], + [8, 58], + [-134, -15], + [-102, 82], + [-32, -21], + [-92, 23], + [16, 165], + [-59, -5], + [36, 58], + [-15, 38] + ], + [ + [2809, 11036], + [125, 23], + [84, -66], + [34, 11], + [16, -36], + [36, 17], + [17, -110], + [99, 85], + [167, 13], + [51, -39], + [120, 54] + ], + [ + [3558, 10988], + [3, -2] + ], + [ + [3561, 10986], + [19, 132], + [77, 13], + [48, -31], + [42, 35], + [-16, 47], + [145, 116] + ], + [ + [3876, 11298], + [1, 4] + ], + [ + [3877, 11302], + [-44, 85] + ], + [ + [3832, 11390], + [5, 7] + ], + [ + [3835, 11408], + [2, 17] + ], + [ + [3837, 11425], + [-26, 68] + ], + [ + [3811, 11493], + [59, -5], + [49, -74], + [62, -25], + [-18, -58] + ], + [ + [4761, 11660], + [41, -68], + [-52, -6], + [-38, 48], + [-145, -1], + [-44, 41], + [-208, -62], + [-96, -186], + [49, -122], + [-105, -51] + ], + [ + [4163, 11253], + [6, -9] + ], + [ + [4002, 11298], + [0, 4] + ], + [ + [3811, 11493], + [-20, 15] + ], + [ + [3791, 11508], + [0, 2] + ], + [ + [3791, 11510], + [-51, 29], + [12, 99], + [-93, 54], + [-99, -9], + [-138, 307], + [-126, 72], + [6, 64], + [135, 84], + [-24, 79] + ], + [ + [3413, 12289], + [23, 32], + [-5, 54], + [-46, 82], + [56, -21], + [37, 15], + [34, 42], + [64, 13], + [65, 72], + [184, -5], + [53, -67], + [98, -26], + [82, -75], + [174, 71], + [117, -181], + [142, 57], + [41, -43], + [-40, -21], + [5, -49], + [33, 26], + [60, -53], + [-25, -67], + [137, -132], + [-36, -99], + [60, -79], + [-46, -41], + [81, -134] + ], + [ + [8705, 8788], + [-7, -57], + [86, -104], + [-56, -68], + [27, -8], + [-6, -76], + [-41, 0], + [0, -86], + [-51, -64], + [4, -46], + [-86, -16], + [-26, -66], + [-47, 25], + [-17, -67], + [-70, -10], + [5, -35], + [-112, 41], + [-46, -92], + [-154, -26], + [-42, -80], + [-56, -13], + [-38, 63], + [-45, 7], + [2, -45], + [-81, -19], + [-11, -123], + [36, -29], + [54, 6], + [77, -72], + [81, -8], + [10, -94], + [98, -58], + [7, -37], + [46, -1], + [39, -85], + [-11, -64], + [-43, -22] + ], + [ + [8231, 7359], + [-99, 60], + [-33, -16], + [-158, 112], + [-51, -41], + [30, -36], + [-23, -65], + [25, -28], + [-59, -99], + [-215, 85], + [-89, -53], + [-82, 52], + [36, 65], + [-24, 90], + [-339, -68], + [-127, 87] + ], + [ + [7025, 8032], + [-3, 0] + ], + [ + [6999, 8028], + [-4, -1] + ], + [ + [6721, 8255], + [50, 117], + [-19, 73], + [47, 12] + ], + [ + [6910, 8449], + [15, 7] + ], + [ + [6959, 8462], + [4, -2] + ], + [ + [4153, 5491], + [46, -153], + [-57, -68], + [6, -48], + [-36, -13], + [-8, -56], + [97, -28], + [-123, -144], + [-2, -39], + [55, -62], + [-37, -164], + [17, -26], + [-17, -42], + [-73, -24], + [14, -31], + [137, -43], + [-46, -30], + [10, -156] + ], + [ + [4136, 4364], + [-116, 17], + [-77, -22], + [-17, -262], + [49, -35], + [7, -56], + [-24, -66], + [-104, -1], + [-36, 30], + [-14, -58], + [45, -2], + [-46, -175], + [46, -58], + [49, 2], + [-40, -42], + [24, -72], + [49, 0], + [47, 47], + [92, -32], + [16, 28], + [46, -33], + [5, -41], + [-53, -3], + [-23, -54], + [35, -75], + [-31, 0], + [-16, 62], + [-79, -13], + [-50, 26], + [-1, 57], + [-35, -29], + [42, -89], + [-30, -55], + [88, -26], + [33, 66], + [82, -32], + [46, -56], + [171, 91], + [58, -6], + [29, -15], + [-12, -97], + [134, -32], + [-11, -108], + [94, -39], + [-48, -147], + [-96, -56], + [-9, -45] + ], + [ + [4455, 2858], + [-177, 51], + [-33, -82], + [-68, -32], + [3, -127], + [-61, -72], + [116, -17], + [18, -27], + [-46, -74], + [-77, -12], + [-26, -75], + [-237, 5], + [-22, -87], + [-133, 6], + [-21, 40], + [-36, -18] + ], + [ + [3655, 2337], + [-3, 29], + [-138, 62], + [-1, 57], + [-103, -15], + [-36, 63], + [-98, 37], + [-65, 67], + [-28, 91], + [-115, 91], + [-29, -7], + [-18, 59], + [-64, -15] + ], + [ + [2957, 2856], + [-110, 513], + [-157, 422], + [-68, 30], + [-9, 53] + ], + [ + [2627, 4234], + [18, 47], + [82, 7], + [62, 154], + [8, 64], + [-71, 33], + [-33, 109], + [98, 51], + [26, 2], + [9, -38], + [92, 94], + [61, 17], + [39, 76], + [101, -50], + [25, 54], + [171, 14], + [-15, 235], + [78, -51], + [37, 17], + [17, -39], + [84, 21], + [117, -27], + [-23, 135], + [38, 5], + [48, 73], + [75, -25], + [98, 110], + [19, 118], + [46, -16], + [114, 137], + [68, -85], + [37, 15] + ], + [ + [3655, 2337], + [-89, -46], + [15, -43], + [125, -57], + [-42, -73], + [133, -43], + [-42, -86], + [112, -75], + [-35, -226], + [73, -36], + [81, 61], + [39, -44], + [1, -68], + [-29, -8], + [33, -62], + [-42, -151], + [98, -67], + [-59, -173], + [-53, -63], + [51, -86], + [-31, -46], + [39, -93], + [-81, -121] + ], + [ + [3952, 731], + [-243, 284], + [-96, 254], + [-103, 448], + [-163, 472], + [-90, 160], + [-3, 6], + [-146, 149], + [-151, 352] + ], + [ + [3254, 2367], + [0, -1] + ], + [ + [3254, 2366], + [-1, -4] + ], + [ + [3253, 2362], + [2, -1] + ], + [ + [3255, 2361], + [3, -2] + ], + [ + [3258, 2359], + [3, 1] + ], + [ + [3261, 2360], + [1, 0] + ], + [ + [3262, 2360], + [3, 1] + ], + [ + [3265, 2361], + [2, 1] + ], + [ + [3267, 2362], + [-1, 3] + ], + [ + [3266, 2365], + [-5, 7] + ], + [ + [3261, 2372], + [0, 7] + ], + [ + [3261, 2379], + [-1, 2] + ], + [ + [3260, 2381], + [-4, -1] + ], + [ + [3256, 2380], + [-1, -1] + ], + [ + [3255, 2379], + [0, -2] + ], + [ + [3255, 2377], + [2, -2] + ], + [ + [3257, 2375], + [-3, -8] + ], + [ + [2619, 2117], + [-61, 48], + [21, 20], + [40, -68] + ], + [ + [1616, 2417], + [-28, 0], + [-21, 60], + [23, 19], + [26, -79] + ], + [ + [6116, 8138], + [-5, -2] + ], + [ + [6121, 7930], + [1, -2] + ], + [ + [5902, 7490], + [-2, -1] + ], + [ + [5774, 7480], + [-3, 7] + ], + [ + [5536, 6937], + [-93, 34], + [-84, 103], + [-179, -42], + [-55, 33], + [-70, -27], + [-39, 61], + [-113, 20], + [-8, -31], + [-108, -16], + [-19, -62], + [-219, 8], + [-8, 47], + [-107, -21], + [-5, -28], + [-121, -58], + [-101, -2], + [-104, 47], + [-6, 34], + [64, -7], + [-31, 105], + [-98, 4], + [-215, -77], + [-1, -51], + [-75, -76], + [-1, -65], + [-59, 2], + [-50, -57], + [-86, 6], + [-38, 135], + [-392, 18], + [-72, 73], + [-208, 47], + [-36, 30], + [8, 87], + [-62, 53], + [-44, -41], + [-64, 10] + ], + [ + [2716, 7760], + [95, 18], + [60, 47], + [-61, 58], + [36, 66], + [106, 46], + [32, 53], + [-8, 94], + [39, 78], + [-52, 118], + [-48, -2] + ], + [ + [2915, 8336], + [-6, 3] + ], + [ + [2909, 8339], + [46, 81], + [-63, 27] + ], + [ + [2892, 8447], + [-1, 1] + ], + [ + [2891, 8448], + [47, 122], + [24, -46], + [57, 19], + [5, 40], + [-68, 9], + [4, 59], + [78, -37], + [34, 14], + [16, 67], + [69, 8], + [-4, -110], + [-26, 22], + [-6, -60], + [171, -22], + [57, 34], + [43, -15], + [39, -91], + [-10, -44], + [-75, -20], + [12, -193], + [-110, 24], + [-26, -60], + [86, -58], + [145, 63], + [-7, 44], + [78, 33], + [-5, 53], + [37, 12], + [114, -1], + [27, -32], + [41, 48], + [78, -65], + [49, 2], + [19, 32], + [-47, 78], + [6, 51], + [30, 32], + [18, -36], + [40, 31], + [5, 55], + [-115, 88], + [66, 22], + [-36, 66], + [134, 49], + [59, -15], + [37, 19], + [10, 49], + [-45, 100], + [-68, -58], + [-87, -8], + [-158, 44], + [-37, 67], + [4, 127], + [118, 70], + [21, 45] + ], + [ + [3839, 9175], + [3, 1] + ], + [ + [3842, 9176], + [117, 87] + ], + [ + [3959, 9263], + [1, 4] + ], + [ + [3960, 9267], + [312, 153], + [80, 71], + [43, -8], + [3, 49], + [51, 22] + ], + [ + [4449, 9554], + [68, 17], + [90, -54], + [67, 20], + [119, -54], + [59, -158], + [-159, -301], + [15, -50], + [-139, -17], + [-65, -72], + [47, -130], + [-121, -129], + [43, -103], + [0, -105], + [53, -83], + [51, 58], + [126, -100], + [82, 82], + [-39, 134], + [-57, -17], + [6, 123], + [-63, 48], + [8, 47], + [-54, 107], + [37, 62], + [72, -28], + [-18, 50], + [97, 32], + [-67, -113], + [34, -49], + [70, 21], + [48, -59], + [64, 5], + [28, 53], + [-36, 37], + [33, 11], + [45, -43], + [-21, -58], + [45, -18], + [27, 41], + [123, -33], + [8, 65], + [153, 81], + [54, -7], + [1, -52], + [40, -29], + [-24, -38], + [57, -70], + [122, 70], + [53, -33], + [-6, -64], + [136, 10], + [47, 99], + [76, -25], + [57, 39], + [35, -57], + [113, -44], + [1, -47], + [136, -41], + [40, -80], + [49, -14], + [5, 50], + [153, -29], + [-25, -267], + [44, -56] + ], + [ + [5363, 5695], + [-68, -20], + [-82, 51], + [-2, 123], + [-30, 29], + [37, 34], + [14, 107], + [-87, 94], + [-137, -48], + [-96, 54], + [-29, -73], + [-76, 39], + [-22, 52], + [-49, 3], + [-6, 49], + [-199, 37], + [-50, -71], + [10, -110], + [-54, -29], + [-2, -73], + [-104, 47], + [-40, -19], + [-41, -152], + [58, -54], + [-73, -92], + [6, -41], + [-67, -20], + [-21, -121] + ], + [ + [2429, 4270], + [-83, 118], + [-77, 268], + [17, 38], + [-49, 334], + [-156, 542], + [-33, 316], + [-77, 341], + [40, 33], + [-2, 108] + ], + [ + [2111, 6405], + [3, -16] + ], + [ + [2118, 6387], + [0, -9] + ], + [ + [2112, 6365], + [14, -5] + ], + [ + [2127, 6361], + [2, 8] + ], + [ + [2132, 6368], + [-1, -5] + ], + [ + [2133, 6353], + [9, -13] + ], + [ + [2142, 6340], + [6, -5] + ], + [ + [2164, 6348], + [7, -3] + ], + [ + [2177, 6341], + [5, -1] + ], + [ + [2189, 6340], + [9, -2] + ], + [ + [2198, 6338], + [5, -7] + ], + [ + [2220, 6346], + [2, 8] + ], + [ + [11766, 8899], + [-36, -126], + [64, -29], + [-2, -53], + [-213, -407], + [-45, -150], + [-64, 39], + [-93, -1], + [-20, 35], + [-129, -16], + [-25, 52], + [-35, -13] + ], + [ + [11168, 8230], + [-156, 37], + [7, 130] + ], + [ + [11230, 8828], + [59, -51], + [102, 172], + [206, -33], + [76, 60], + [93, -77] + ], + [ + [10770, 8698], + [-161, 73], + [-192, -29], + [-168, 39], + [-365, -30], + [-238, 78], + [-42, 30], + [17, 51] + ], + [ + [10340, 9092], + [2, -2] + ], + [ + [11168, 8230], + [42, -224], + [-17, -170], + [-41, -103], + [-75, 19], + [13, -64], + [-28, -49], + [45, -252], + [-17, -47], + [-48, 10], + [-24, -70], + [-47, -20], + [-83, 67], + [-8, -53], + [-39, -14], + [-35, 329], + [-65, 111], + [8, 156], + [-55, 220] + ], + [ + [10694, 8076], + [27, 88], + [-15, 162] + ], + [ + [12013, 9483], + [-75, -105], + [30, -38], + [-4, -137], + [26, -7], + [-76, -101], + [16, -53], + [-106, -127], + [-58, -16] + ], + [ + [3995, 10521], + [62, -87] + ], + [ + [4057, 10434], + [-1, -1] + ], + [ + [4056, 10433], + [6, -83] + ], + [ + [5148, 2016], + [0, -3] + ], + [ + [5148, 2013], + [1, -1] + ], + [ + [5149, 2012], + [22, 8] + ], + [ + [5171, 2020], + [-1, -3] + ], + [ + [5170, 2017], + [5, -1] + ], + [ + [5175, 2016], + [-7, -79] + ], + [ + [5168, 1937], + [-34, 33] + ], + [ + [5134, 1970], + [0, 5] + ], + [ + [5134, 1975], + [0, 1] + ], + [ + [5134, 1976], + [1, 1] + ], + [ + [5135, 1977], + [-1, 2] + ], + [ + [5134, 1979], + [-7, -1] + ], + [ + [5127, 1978], + [1, 2] + ], + [ + [5128, 1980], + [-2, 1] + ], + [ + [5126, 1981], + [1, 1] + ], + [ + [5127, 1982], + [-1, 1] + ], + [ + [5126, 1983], + [-1, -1] + ], + [ + [5125, 1982], + [-2, 0] + ], + [ + [5123, 1982], + [1, 2] + ], + [ + [5124, 1984], + [-5, 1] + ], + [ + [5119, 1985], + [1, 3] + ], + [ + [5120, 1988], + [-3, 0] + ], + [ + [5117, 1988], + [2, 4] + ], + [ + [5119, 1992], + [2, 0] + ], + [ + [5121, 1992], + [4, 4] + ], + [ + [5125, 1996], + [-2, 2] + ], + [ + [5123, 1998], + [-4, -2] + ], + [ + [5119, 1996], + [-2, 0] + ], + [ + [5117, 1996], + [-1, 8] + ], + [ + [5116, 2004], + [4, 0] + ], + [ + [5120, 2004], + [13, -4] + ], + [ + [5133, 2000], + [2, 0] + ], + [ + [5135, 2000], + [0, 3] + ], + [ + [5135, 2003], + [-2, 3] + ], + [ + [5133, 2006], + [-1, 1] + ], + [ + [5132, 2007], + [1, 4] + ], + [ + [5133, 2011], + [-1, 1] + ], + [ + [5132, 2012], + [-4, 1] + ], + [ + [5128, 2013], + [0, 5] + ], + [ + [5128, 2018], + [0, 2] + ], + [ + [5128, 2020], + [3, 1] + ], + [ + [5131, 2021], + [3, -1] + ], + [ + [5134, 2020], + [14, -4] + ], + [ + [3266, 2365], + [1, -3] + ], + [ + [3265, 2361], + [-3, -1] + ], + [ + [3262, 2360], + [-1, 0] + ], + [ + [3258, 2359], + [-3, 2] + ], + [ + [3253, 2362], + [1, 4] + ], + [ + [3254, 2366], + [0, 1] + ], + [ + [3257, 2375], + [-2, 2] + ], + [ + [3255, 2377], + [0, 2] + ], + [ + [3256, 2380], + [4, 1] + ], + [ + [3261, 2379], + [0, -7] + ], + [ + [5096, 2403], + [1, 4] + ], + [ + [5097, 2407], + [5, -1] + ], + [ + [5102, 2406], + [1, -2] + ], + [ + [5103, 2404], + [-7, -1] + ], + [ + [5131, 2418], + [5, -3] + ], + [ + [5136, 2415], + [14, -2] + ], + [ + [5150, 2413], + [-1, 3] + ], + [ + [5149, 2416], + [2, 2] + ], + [ + [5151, 2418], + [-1, -25], + [-6, -1] + ], + [ + [5144, 2392], + [-1, -1] + ], + [ + [5143, 2391], + [-8, 5] + ], + [ + [5135, 2396], + [0, -1] + ], + [ + [5135, 2395], + [-2, -5] + ], + [ + [5133, 2390], + [-20, 7] + ], + [ + [5113, 2397], + [5, 4] + ], + [ + [5118, 2401], + [1, 2] + ], + [ + [5119, 2403], + [0, 1] + ], + [ + [5119, 2404], + [2, 8] + ], + [ + [5121, 2412], + [0, 6] + ], + [ + [5121, 2418], + [10, 0] + ], + [ + [5094, 2407], + [-11, 1] + ], + [ + [5083, 2408], + [-2, 3] + ], + [ + [5081, 2411], + [9, 8] + ], + [ + [5090, 2419], + [0, -6] + ], + [ + [5090, 2413], + [5, -2] + ], + [ + [5095, 2411], + [-1, -4] + ], + [ + [5079, 2439], + [0, 3] + ], + [ + [5079, 2442], + [3, -1] + ], + [ + [5082, 2441], + [3, -2] + ], + [ + [5085, 2439], + [0, -3] + ], + [ + [5085, 2436], + [3, -2] + ], + [ + [5088, 2434], + [3, -5] + ], + [ + [5091, 2429], + [-16, -4] + ], + [ + [5075, 2425], + [-3, 5] + ], + [ + [5072, 2430], + [-8, -3] + ], + [ + [5064, 2427], + [-1, 9] + ], + [ + [5063, 2436], + [0, 2] + ], + [ + [5063, 2438], + [14, 4] + ], + [ + [5077, 2442], + [2, -3] + ], + [ + [5103, 2482], + [-3, -9] + ], + [ + [5100, 2473], + [-13, 2] + ], + [ + [5087, 2475], + [3, 3] + ], + [ + [5090, 2478], + [1, 2] + ], + [ + [5091, 2480], + [12, 2] + ], + [ + [5075, 2510], + [12, -3] + ], + [ + [5087, 2507], + [-6, -16] + ], + [ + [5081, 2491], + [0, -8] + ], + [ + [5081, 2483], + [4, -6] + ], + [ + [5085, 2477], + [-1, -4] + ], + [ + [5084, 2473], + [-2, -4] + ], + [ + [5082, 2469], + [7, 2] + ], + [ + [5089, 2471], + [0, -2] + ], + [ + [5089, 2469], + [1, -2] + ], + [ + [5090, 2467], + [0, -1] + ], + [ + [5090, 2466], + [5, -2] + ], + [ + [5095, 2464], + [0, -6] + ], + [ + [5095, 2458], + [0, -3] + ], + [ + [5095, 2455], + [-4, 0] + ], + [ + [5091, 2455], + [-16, -6] + ], + [ + [5075, 2449], + [0, 1] + ], + [ + [5075, 2450], + [-3, 9] + ], + [ + [5072, 2459], + [0, 8] + ], + [ + [5072, 2467], + [0, 2] + ], + [ + [5072, 2469], + [4, 0] + ], + [ + [5076, 2469], + [0, 4] + ], + [ + [5076, 2473], + [-5, 8] + ], + [ + [5071, 2481], + [1, 8] + ], + [ + [5072, 2489], + [2, 1] + ], + [ + [5074, 2490], + [-2, 6] + ], + [ + [5072, 2496], + [0, 4] + ], + [ + [5072, 2500], + [1, 2] + ], + [ + [5073, 2502], + [2, 8] + ], + [ + [5110, 2501], + [5, -5] + ], + [ + [5115, 2496], + [0, -3] + ], + [ + [5115, 2493], + [22, -2] + ], + [ + [5137, 2491], + [-17, -10] + ], + [ + [5120, 2481], + [10, -13] + ], + [ + [5130, 2468], + [0, -10] + ], + [ + [5130, 2458], + [2, 0] + ], + [ + [5132, 2458], + [0, 1] + ], + [ + [5132, 2459], + [3, 10] + ], + [ + [5135, 2469], + [20, 9] + ], + [ + [5155, 2478], + [0, 4] + ], + [ + [5155, 2482], + [11, -8] + ], + [ + [5166, 2474], + [-23, -51] + ], + [ + [5143, 2423], + [-3, -5] + ], + [ + [5140, 2418], + [-3, 1] + ], + [ + [5137, 2419], + [-2, 3] + ], + [ + [5135, 2422], + [1, 2] + ], + [ + [5136, 2424], + [2, 3] + ], + [ + [5138, 2427], + [-1, 8] + ], + [ + [5137, 2435], + [-3, 0] + ], + [ + [5134, 2435], + [-1, -2] + ], + [ + [5133, 2433], + [-2, -9] + ], + [ + [5131, 2424], + [-4, -2] + ], + [ + [5127, 2422], + [-10, 7] + ], + [ + [5117, 2429], + [-1, -4] + ], + [ + [5116, 2425], + [-3, 7] + ], + [ + [5113, 2432], + [-2, 1] + ], + [ + [5111, 2433], + [-1, 9] + ], + [ + [5110, 2442], + [-6, -2] + ], + [ + [5104, 2440], + [-3, -1] + ], + [ + [5101, 2439], + [-5, 2] + ], + [ + [5096, 2441], + [9, 4] + ], + [ + [5105, 2445], + [0, 3] + ], + [ + [5105, 2448], + [0, 3] + ], + [ + [5105, 2451], + [10, 5] + ], + [ + [5115, 2456], + [0, -13] + ], + [ + [5115, 2443], + [6, 0] + ], + [ + [5121, 2443], + [0, 5] + ], + [ + [5121, 2448], + [1, 2] + ], + [ + [5122, 2450], + [-6, 11] + ], + [ + [5116, 2461], + [-4, 3] + ], + [ + [5112, 2464], + [1, -1] + ], + [ + [5113, 2463], + [-9, 10] + ], + [ + [5104, 2473], + [11, 6] + ], + [ + [5115, 2479], + [-3, 5] + ], + [ + [5112, 2484], + [-24, 6] + ], + [ + [5088, 2490], + [1, 6] + ], + [ + [5089, 2496], + [0, 3] + ], + [ + [5089, 2499], + [1, 2] + ], + [ + [5090, 2501], + [21, 7] + ], + [ + [5111, 2508], + [-1, -7] + ], + [ + [5140, 2442], + [3, -5] + ], + [ + [5143, 2437], + [0, -4] + ], + [ + [5143, 2433], + [4, 3] + ], + [ + [5147, 2436], + [4, 11] + ], + [ + [5151, 2447], + [-3, -2] + ], + [ + [5148, 2445], + [-4, 2] + ], + [ + [5144, 2447], + [-3, 2] + ], + [ + [5141, 2449], + [-1, -7] + ], + [ + [5170, 2502], + [2, 9] + ], + [ + [5172, 2511], + [2, 8] + ], + [ + [5174, 2519], + [11, -3] + ], + [ + [5185, 2516], + [-15, -14] + ], + [ + [3791, 11510], + [0, -2] + ], + [ + [3830, 11426], + [-9, 0] + ], + [ + [3823, 11435], + [-4, -2] + ], + [ + [3819, 11433], + [-7, 1] + ], + [ + [3814, 11434], + [-1, 2] + ], + [ + [3800, 11439], + [-2, -2] + ], + [ + [3798, 11437], + [-1, -2] + ], + [ + [3797, 11435], + [-4, -2] + ], + [ + [3788, 11427], + [-12, -4] + ], + [ + [3787, 11404], + [-1, -3] + ], + [ + [3786, 11400], + [5, -1] + ], + [ + [3791, 11399], + [0, -3] + ], + [ + [3791, 11396], + [2, -3] + ], + [ + [3794, 11393], + [6, -3] + ], + [ + [3877, 11302], + [-1, -4] + ], + [ + [3561, 10986], + [-3, 2] + ], + [ + [2809, 11036], + [-88, 5] + ], + [ + [2721, 11041], + [-14, 1] + ], + [ + [2707, 11042], + [-5, 0] + ], + [ + [2702, 11042], + [-172, 7], + [33, 107] + ], + [ + [2563, 11156], + [-31, 74], + [29, 64], + [43, 16], + [174, 214], + [93, 41], + [10, 35], + [-77, 4], + [16, 109], + [45, 46], + [-53, 104], + [15, 71], + [165, 112], + [152, 26], + [43, 57], + [-18, 49], + [64, -12], + [108, 47], + [72, 76] + ], + [ + [2702, 11042], + [5, 0] + ], + [ + [2707, 11042], + [14, -1] + ], + [ + [3475, 10243], + [-5, -14] + ], + [ + [4034, 10016], + [28, -134], + [135, -136], + [-38, -90], + [59, -34], + [-93, -36], + [-29, -28], + [21, -35], + [134, 79], + [166, 10], + [42, -12], + [-10, -46] + ], + [ + [3960, 9267], + [-1, -4] + ], + [ + [3842, 9176], + [-3, -1] + ], + [ + [2891, 8448], + [1, -1] + ], + [ + [2909, 8339], + [6, -3] + ], + [ + [2583, 7889], + [-9, 1] + ], + [ + [1284, 8533], + [-95, 222], + [-98, 117], + [4, 130], + [-177, 18], + [-78, 108], + [33, 293], + [-166, 23], + [-127, 68], + [34, 210], + [193, 180], + [49, 117], + [106, 98], + [97, -1], + [78, -136], + [61, -7], + [135, 58], + [200, 20], + [107, 42], + [15, 79], + [121, 125], + [47, 140], + [284, 165], + [143, 245], + [54, 182], + [259, 127] + ], + [ + [9134, 9705], + [-72, 22], + [-70, -53], + [-124, 14], + [-64, 50] + ], + [ + [8804, 9738], + [14, 132], + [68, 170], + [-30, 10], + [6, 43], + [111, 7], + [111, 61], + [50, -15], + [57, -85], + [-50, -158], + [59, -138], + [-44, -13], + [-22, -47] + ], + [ + [5148, 2445], + [3, 2] + ], + [ + [5147, 2436], + [-4, -3] + ], + [ + [5143, 2433], + [0, 4] + ], + [ + [5143, 2437], + [-3, 5] + ], + [ + [5141, 2449], + [3, -2] + ], + [ + [5105, 2441], + [5, 1] + ], + [ + [5110, 2442], + [1, -9] + ], + [ + [5111, 2433], + [2, -1] + ], + [ + [5116, 2425], + [1, 4] + ], + [ + [5117, 2429], + [10, -7] + ], + [ + [5131, 2424], + [2, 9] + ], + [ + [5133, 2433], + [1, 2] + ], + [ + [5137, 2435], + [1, -8] + ], + [ + [5138, 2427], + [-2, -3] + ], + [ + [5135, 2422], + [2, -3] + ], + [ + [5140, 2418], + [1, 0], + [2, 5] + ], + [ + [5143, 2423], + [8, -5] + ], + [ + [5151, 2418], + [-2, -2] + ], + [ + [5149, 2416], + [1, -3] + ], + [ + [5150, 2413], + [-14, 2] + ], + [ + [5136, 2415], + [-5, 3] + ], + [ + [5131, 2418], + [-10, 0] + ], + [ + [5121, 2418], + [0, -6] + ], + [ + [5121, 2412], + [-2, -8] + ], + [ + [5119, 2404], + [0, -1] + ], + [ + [5119, 2403], + [-1, -2] + ], + [ + [5118, 2401], + [-5, -4] + ], + [ + [5113, 2397], + [20, -7] + ], + [ + [5133, 2390], + [2, 5] + ], + [ + [5135, 2396], + [8, -5] + ], + [ + [5143, 2391], + [1, 1] + ], + [ + [5144, 2392], + [31, -376] + ], + [ + [5175, 2016], + [-5, 1] + ], + [ + [5170, 2017], + [1, 3] + ], + [ + [5149, 2012], + [-1, 1] + ], + [ + [5148, 2013], + [0, 3] + ], + [ + [5134, 2020], + [-3, 1] + ], + [ + [5128, 2020], + [0, -2] + ], + [ + [5128, 2013], + [4, -1] + ], + [ + [5132, 2012], + [1, -1] + ], + [ + [5132, 2007], + [1, -1] + ], + [ + [5135, 2003], + [0, -3] + ], + [ + [5135, 2000], + [-2, 0] + ], + [ + [5120, 2004], + [-4, 0] + ], + [ + [5117, 1996], + [2, 0] + ], + [ + [5123, 1998], + [2, -2] + ], + [ + [5121, 1992], + [-2, 0] + ], + [ + [5117, 1988], + [3, 0] + ], + [ + [5119, 1985], + [5, -1] + ], + [ + [5124, 1984], + [-1, -2] + ], + [ + [5123, 1982], + [2, 0] + ], + [ + [5126, 1983], + [1, -1] + ], + [ + [5126, 1981], + [2, -1] + ], + [ + [5128, 1980], + [-1, -2] + ], + [ + [5127, 1978], + [7, 1] + ], + [ + [5135, 1977], + [-1, -1] + ], + [ + [5134, 1976], + [0, -1] + ], + [ + [5134, 1975], + [0, -5] + ], + [ + [5168, 1937], + [19, -255], + [-218, 15], + [-50, -40], + [-6, -96], + [-150, -215], + [-11, -61], + [39, -86], + [-252, -77], + [-93, -73], + [-35, -220], + [-41, -67], + [-216, -133], + [-106, 20], + [-96, 82] + ], + [ + [4455, 2858], + [66, -67], + [81, 41], + [30, 132], + [81, 49], + [157, -32], + [32, 60], + [87, 24], + [-2, 65], + [113, -40], + [113, 47], + [36, 73], + [92, -8], + [20, 37] + ], + [ + [5361, 3239], + [31, -139], + [-38, -239], + [-52, -160], + [-117, -185] + ], + [ + [5174, 2519], + [-2, -8] + ], + [ + [5172, 2511], + [-2, -9] + ], + [ + [5170, 2502], + [-4, -28] + ], + [ + [5155, 2482], + [0, -4] + ], + [ + [5135, 2469], + [-3, -10] + ], + [ + [5132, 2459], + [0, -1] + ], + [ + [5130, 2458], + [0, 10] + ], + [ + [5120, 2481], + [17, 10] + ], + [ + [5115, 2493], + [0, 3] + ], + [ + [5110, 2501], + [1, 7] + ], + [ + [5090, 2501], + [-1, -2] + ], + [ + [5089, 2499], + [0, -3] + ], + [ + [5088, 2490], + [24, -6] + ], + [ + [5112, 2484], + [3, -5] + ], + [ + [5104, 2473], + [9, -10] + ], + [ + [5112, 2464], + [4, -3] + ], + [ + [5116, 2461], + [6, -11] + ], + [ + [5121, 2448], + [0, -5] + ], + [ + [5115, 2443], + [0, 13] + ], + [ + [5105, 2451], + [0, -3] + ], + [ + [5105, 2448], + [0, -3] + ], + [ + [5096, 2441], + [5, -2] + ], + [ + [5101, 2439], + [3, 1] + ], + [ + [5104, 2440], + [1, 1] + ], + [ + [5079, 2442], + [0, -3] + ], + [ + [5079, 2439], + [-2, 3] + ], + [ + [5063, 2438], + [0, -2] + ], + [ + [5063, 2436], + [1, -9] + ], + [ + [5064, 2427], + [8, 3] + ], + [ + [5072, 2430], + [3, -5] + ], + [ + [5075, 2425], + [16, 4] + ], + [ + [5088, 2434], + [-3, 2] + ], + [ + [5085, 2436], + [0, 3] + ], + [ + [5085, 2439], + [-3, 2] + ], + [ + [5091, 2455], + [4, 0] + ], + [ + [5095, 2458], + [0, 6] + ], + [ + [5090, 2466], + [0, 1] + ], + [ + [5090, 2467], + [-1, 2] + ], + [ + [5089, 2469], + [0, 2] + ], + [ + [5082, 2469], + [2, 4] + ], + [ + [5084, 2473], + [1, 4] + ], + [ + [5081, 2483], + [0, 8] + ], + [ + [5081, 2491], + [6, 16] + ], + [ + [5075, 2510], + [-2, -8] + ], + [ + [5072, 2500], + [0, -4] + ], + [ + [5072, 2496], + [2, -6] + ], + [ + [5072, 2489], + [-1, -8] + ], + [ + [5071, 2481], + [5, -8] + ], + [ + [5076, 2473], + [0, -4] + ], + [ + [5072, 2469], + [0, -2] + ], + [ + [5072, 2467], + [0, -8] + ], + [ + [5072, 2459], + [3, -9] + ], + [ + [5075, 2449], + [16, 6] + ], + [ + [5091, 2480], + [-1, -2] + ], + [ + [5090, 2478], + [-3, -3] + ], + [ + [5087, 2475], + [13, -2] + ], + [ + [5100, 2473], + [3, 9] + ], + [ + [5094, 2407], + [1, 4] + ], + [ + [5090, 2413], + [0, 6] + ], + [ + [5081, 2411], + [2, -3] + ], + [ + [5083, 2408], + [11, -1] + ], + [ + [5096, 2403], + [7, 1] + ], + [ + [5102, 2406], + [-5, 1] + ], + [ + [5710, 5252], + [1, -18], + [-7, -7], + [-31, 17], + [-38, -25], + [2, -22], + [56, -73], + [48, 1], + [89, -64], + [-56, -26], + [-13, -45], + [-114, -15], + [-36, -78], + [-118, 48], + [-28, -18], + [-24, -74], + [63, -9], + [-9, -78], + [-109, 52], + [-25, 66], + [-30, 3], + [-66, -25], + [-24, -48], + [35, -24], + [-57, -86], + [-75, 46], + [-226, -80], + [-18, -148], + [-91, -3], + [-126, -106], + [-45, 33], + [-103, -5], + [-61, -22], + [-75, -99], + [-263, 44] + ], + [ + [5566, 5529], + [-1, -3] + ], + [ + [5677, 5434], + [0, -4] + ], + [ + [5709, 5252], + [1, 0] + ], + [ + [10694, 8076], + [-146, -29], + [17, -87], + [-85, -83], + [15, -99], + [-89, -74], + [-73, 150], + [-32, -30], + [-26, 21], + [-73, 172], + [32, 136], + [86, 106], + [73, -16], + [32, 52], + [46, -17], + [29, 31], + [37, -32], + [5, 92], + [74, 16], + [35, 23], + [-8, 39], + [35, -1] + ], + [ + [5272, 10505], + [134, -93], + [83, 28], + [156, -112], + [135, -47], + [52, -105], + [44, 16], + [22, -41], + [183, -108], + [82, 31], + [171, -117], + [102, 19], + [25, -103], + [195, -23], + [57, -58], + [40, 70], + [91, -4], + [115, -59] + ], + [ + [7197, 9029], + [-6, 3] + ], + [ + [6783, 8556], + [2, 0] + ], + [ + [6808, 8470], + [0, -2] + ], + [ + [4056, 10433], + [1, 1] + ], + [ + [4163, 11253], + [158, -71], + [-96, -185], + [25, -72], + [33, -21], + [48, 20], + [17, -76], + [157, 115], + [69, -26], + [91, -111], + [92, -25], + [-76, -68], + [78, -72], + [75, -5], + [146, -104], + [4, -37], + [162, 17], + [95, -83], + [31, 56] + ], + [ + [4761, 11660], + [67, 101], + [33, -16], + [125, -191], + [40, 1], + [39, -46], + [66, 30], + [51, -12], + [171, -114], + [-12, -76], + [170, -47], + [193, -133], + [-78, -13], + [-168, -180], + [-35, -2], + [1, -91], + [-60, -97], + [-2, -119], + [-61, -34], + [-29, -116] + ], + [ + [8895, 7142], + [40, -43], + [-9, -52], + [-33, 27], + [2, 68] + ], + [ + [9166, 7144], + [13, -59], + [-23, -1], + [10, 60] + ], + [ + [8944, 7189], + [20, -44], + [-30, -28], + [-4, 28], + [-8, 10], + [-8, 2], + [-2, 6], + [19, 10], + [13, 16] + ], + [ + [8857, 7196], + [-1, -117], + [-41, 9], + [42, 108] + ], + [ + [9168, 7216], + [57, -26], + [-33, -24], + [-24, 50] + ], + [ + [9158, 7264], + [38, -3], + [4, -40], + [-69, 13], + [27, 30] + ], + [ + [9105, 7354], + [42, -18], + [-43, -37], + [-26, 6], + [9, 27], + [18, 22] + ], + [ + [9234, 7437], + [25, -76], + [-32, -4], + [7, 80] + ], + [ + [9205, 7524], + [16, -7], + [19, -58], + [-32, -11], + [-14, 29], + [1, 45], + [10, 2] + ], + [ + [9134, 9705], + [52, -18], + [115, -143], + [85, 21], + [238, -71] + ], + [ + [9624, 9342], + [-1, -1] + ], + [ + [9562, 9238], + [-36, 23], + [-41, -103], + [-85, 6], + [-87, 61], + [-32, 124], + [-46, 10], + [8, -60], + [-109, 8], + [-162, 145], + [-16, -51], + [73, -60], + [-160, -132], + [-21, -147], + [116, -40], + [79, -93], + [125, -17], + [5, -55], + [70, -31], + [-38, -64], + [-212, 17], + [-19, -123], + [-41, -30], + [-59, 31], + [-71, -131], + [146, -139], + [171, -38], + [4, -182], + [-70, -26], + [-5, -69], + [89, -129], + [-20, -91], + [107, -29], + [-40, -45], + [-1, -61], + [44, -60], + [-15, -130], + [-18, -4], + [-12, -8], + [-9, -55], + [39, -65], + [-15, -56], + [-52, 2], + [-19, 9], + [-22, 5], + [-9, -2], + [-24, -46], + [-8, -96], + [-143, -24], + [15, -5], + [-24, -17], + [-1, -5], + [7, -23], + [-25, 6], + [-28, 93], + [31, 56], + [-76, -30], + [-96, -142], + [-154, -54] + ], + [ + [8570, 7066], + [-19, 78], + [-72, 18], + [-21, 73], + [-105, -22], + [17, 39], + [-35, 45], + [-107, 28], + [3, 34] + ], + [ + [8847, 9416], + [26, 156], + [-79, 114], + [10, 52] + ], + [ + [8570, 7066], + [-151, -45], + [-90, -74], + [-47, -93], + [77, -226], + [-101, -73], + [-24, -57], + [22, -40], + [-114, -75], + [-71, -105], + [-452, -173], + [-204, -162], + [-55, -78] + ], + [ + [7360, 5865], + [-44, 24], + [-29, -48], + [-39, 8], + [-78, -117], + [-107, -22], + [-99, 35], + [-36, 90], + [-28, -15], + [-54, 55], + [-58, -44], + [-61, 3], + [23, -64], + [-161, -146], + [18, -82], + [-40, -18], + [-79, 40], + [-14, -51], + [-79, -36], + [6, 52], + [-54, 71], + [-53, -50], + [-11, -172], + [-138, 5], + [-185, -116], + [-100, -4] + ], + [ + [7360, 5865], + [-289, -370], + [-184, -95], + [-217, -244], + [-291, -159], + [-116, -110], + [-23, -61], + [52, -34], + [-30, -121], + [-254, -125], + [-153, 24], + [-55, -19], + [-47, -163], + [-85, -115], + [-55, -13], + [-48, 85], + [-97, -13], + [-74, -51], + [-95, -177], + [-38, -157], + [66, -231], + [-29, -181], + [63, -296] + ], + [ + [5710, 5252], + [4, -1] + ], + [ + [5729, 5265], + [3, 2] + ], + [ + [2618, 13510], + [187, -17], + [51, -79], + [130, -60], + [104, 23], + [29, -101], + [54, -44] + ], + [ + [3173, 13232], + [24, -6] + ], + [ + [3197, 13226], + [14, -93], + [137, -72], + [89, -100], + [51, -1], + [86, -180], + [65, 28], + [177, -196] + ], + [ + [3816, 12612], + [-21, -36], + [-154, 2], + [-65, -72], + [-64, -14], + [-34, -41], + [-37, -15], + [-56, 21], + [51, -136], + [-95, -108], + [-108, -47], + [-157, 42], + [-43, 41], + [-39, -23], + [-117, 20], + [-29, 128], + [-104, 1], + [-334, 157], + [12, 56], + [-44, 78], + [27, 100], + [-15, 153], + [-83, 219], + [21, 102], + [76, 6], + [69, 100], + [114, 38], + [31, 126] + ], + [ + [3197, 13226], + [-24, 6] + ], + [ + [2618, 13510], + [-144, 45], + [-39, 33], + [31, 105], + [-113, 3], + [-95, 43], + [-68, 44], + [-23, 77], + [-130, -19], + [-123, 32], + [32, 52], + [-10, 103], + [184, 115], + [51, 63], + [-7, 46], + [322, 13], + [30, 27], + [-67, 32], + [167, -10], + [9, 28], + [250, 77], + [95, -62], + [93, 35], + [111, -38], + [27, -80], + [71, 9], + [98, -37], + [84, -116], + [306, -121], + [76, -157], + [111, -57], + [115, -10], + [76, -110], + [172, -9], + [27, 50], + [76, -17], + [60, 87], + [67, 30], + [230, 45], + [78, -20], + [56, 71], + [64, 2], + [17, -46], + [143, -45], + [112, 18], + [52, -76], + [79, -36], + [16, -61], + [-116, -361], + [-131, -44], + [9, -66], + [-95, 2], + [2, -119], + [-93, -97], + [-160, 8], + [-49, -36], + [89, -172], + [-83, 9], + [33, -144], + [205, -34], + [-31, -136], + [108, -112], + [-80, -98], + [-48, 28], + [-100, -99], + [-68, -8], + [-60, 35], + [-34, 115], + [-58, -41], + [-78, -12], + [-52, -47], + [-5, 49], + [40, 21], + [-41, 43], + [-142, -57], + [-117, 181], + [-174, -71], + [-82, 75], + [-98, 26], + [-62, 106] + ] + ], + "transform": { + "scale": [0.0022497991447388913, 0.0021010236667396965], + "translate": [68.20959745418263, 6.757042171233387] + }, + "objects": { + "india": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [ + [[0]], + [[1]], + [[2]], + [[3]], + [[4]], + [[5]], + [[6]], + [[7]], + [[8]], + [[9]], + [[10]] + ], + "type": "MultiPolygon", + "properties": {"ST_NM": "Andaman and Nicobar Islands"} + }, + { + "arcs": [[11, 12, 13]], + "type": "Polygon", + "properties": {"ST_NM": "Arunachal Pradesh"} + }, + { + "arcs": [[14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, -13]], + "type": "Polygon", + "properties": {"ST_NM": "Assam"} + }, + { + "arcs": [[27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40]], + "type": "Polygon", + "properties": {"ST_NM": "Bihar"} + }, + { + "arcs": [ + [ + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66 + ] + ], + "type": "Polygon", + "properties": {"ST_NM": "Chandigarh"} + }, + { + "arcs": [ + [ + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92 + ] + ], + "type": "Polygon", + "properties": {"ST_NM": "Chhattisgarh"} + }, + { + "arcs": [ + [ + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171 + ] + ], + "type": "Polygon", + "properties": {"ST_NM": "Dadra and Nagar Haveli"} + }, + { + "arcs": [[172, 173]], + "type": "Polygon", + "properties": {"ST_NM": "Daman and Diu"} + }, + { + "arcs": [[174, 175, 176]], + "type": "Polygon", + "properties": {"ST_NM": "Goa"} + }, + { + "arcs": [ + [[177]], + [[178]], + [ + [ + 179, + 180, + 181, + 182, + 183, + 184, + -172, + 185, + -170, + 186, + -168, + 187, + -166, + 188, + 189, + -163, + 190, + -161, + 191, + -159, + 192, + -157, + 193, + -155, + 194, + -153, + 195, + -151, + 196, + -149, + 197, + -147, + 198, + 199, + -144, + 200, + -142, + 201, + 202, + -139, + 203, + -137, + 204, + 205, + -134, + 206, + -132, + 207, + -130, + 208, + -128, + 209, + -126, + 210, + -124, + 211, + -122, + 212, + 213, + 214, + -118, + 215, + -116, + 216, + 217, + -174, + 218 + ] + ] + ], + "type": "MultiPolygon", + "properties": {"ST_NM": "Gujarat"} + }, + { + "arcs": [ + [ + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + -45, + 234, + -43, + 235, + 236, + 237 + ] + ], + "type": "Polygon", + "properties": {"ST_NM": "Haryana"} + }, + { + "arcs": [[238, 239, -222, 240, -220, -238, 241, 242, 243, 244]], + "type": "Polygon", + "properties": {"ST_NM": "Himachal Pradesh"} + }, + { + "arcs": [ + [245, 246, -71, 247, -69, 248, -93, 249, -33, 250, -31, 251, -29] + ], + "type": "Polygon", + "properties": {"ST_NM": "Jharkhand"} + }, + { + "arcs": [[252, 253, 254, 255, 256, -175, 257]], + "type": "Polygon", + "properties": {"ST_NM": "Karnataka"} + }, + { + "arcs": [ + [258, 259, -256], + [ + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276 + ] + ], + "type": "Polygon", + "properties": {"ST_NM": "Kerala"} + }, + { + "arcs": [[[277]], [[278]]], + "type": "MultiPolygon", + "properties": {"ST_NM": "Lakshadweep"} + }, + { + "arcs": [ + [ + -91, + 279, + -89, + 280, + -87, + 281, + -85, + 282, + -83, + 283, + -184, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293 + ] + ], + "type": "Polygon", + "properties": {"ST_NM": "Madhya Pradesh"} + }, + { + "arcs": [ + [ + -82, + 294, + -258, + -177, + 295, + -217, + 296, + -114, + 297, + -112, + 298, + -110, + 299, + -108, + 300, + -106, + 301, + 302, + -103, + 303, + -101, + 304, + -99, + 305, + 306, + -96, + 307, + -94, + -185, + -284 + ] + ], + "type": "Polygon", + "properties": {"ST_NM": "Maharashtra"} + }, + { + "arcs": [[308, 309, -16, 310]], + "type": "Polygon", + "properties": {"ST_NM": "Manipur"} + }, + { + "arcs": [[311, -22, 312, -20]], + "type": "Polygon", + "properties": {"ST_NM": "Meghalaya"} + }, + { + "arcs": [[-310, 313, 314, -17]], + "type": "Polygon", + "properties": {"ST_NM": "Mizoram"} + }, + { + "arcs": [[315, -311, -15, -12]], + "type": "Polygon", + "properties": {"ST_NM": "Nagaland"} + }, + { + "arcs": [[316, 317, 318, -224]], + "type": "Polygon", + "properties": {"ST_NM": "Delhi"} + }, + { + "arcs": [ + [ + [ + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358, + 359, + 360, + 361 + ] + ], + [ + [ + 362, + -268, + 363, + 364, + -265, + 365, + -263, + 366, + 367, + -277, + 368, + 369, + -274, + 370, + -272, + 371, + -270 + ] + ], + [[372, 373, 374, 375]], + [ + [ + 376, + 377, + 378, + 379, + 380, + 381, + 382, + 383, + 384, + 385, + 386, + 387, + 388, + 389, + 390, + 391 + ] + ], + [[392, 393, 394, 395, 396, 397]], + [[398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410]], + [[411, 412, 413, 414, 415]], + [ + [ + 416, + 417, + 418, + 419, + 420, + 421, + 422, + 423, + 424, + 425, + 426, + 427, + 428, + 429, + 430, + 431, + 432, + 433, + 434, + 435, + 436, + 437, + 438, + 439, + 440, + 441, + 442, + 443 + ] + ], + [ + [ + 444, + 445, + 446, + 447, + 448, + 449, + 450, + 451, + 452, + 453, + 454, + 455, + 456, + 457, + 458, + 459, + 460, + 461, + 462, + 463, + 464, + 465, + 466, + 467, + 468, + 469, + 470, + 471, + 472, + 473, + 474, + 475, + 476, + 477, + 478, + 479, + 480, + 481, + 482, + 483, + 484, + 485, + 486, + 487, + 488, + 489, + 490, + 491, + 492, + 493, + 494 + ], + [495, 496, 497, 498, 499, 500, 501, 502] + ], + [[503, 504, 505, 506]] + ], + "type": "MultiPolygon", + "properties": {"ST_NM": "Puducherry"} + }, + { + "arcs": [ + [ + 507, + -242, + -237, + -67, + 508, + -65, + 509, + 510, + -62, + 511, + -60, + 512, + 513, + 514, + -56, + 515, + -54, + 516, + -52, + 517, + 518, + 519, + -48, + 520, + -46, + -234, + 521, + -232, + 522, + -230, + 523, + 524, + 525, + 526, + 527, + -244 + ] + ], + "type": "Polygon", + "properties": {"ST_NM": "Punjab"} + }, + { + "arcs": [ + [ + 528, + 529, + -524, + -229, + -228, + 530, + -226, + 531, + -293, + 532, + -291, + 533, + -289, + 534, + -287, + 535, + -285, + -183, + 536, + -181, + 537, + -527 + ] + ], + "type": "Polygon", + "properties": {"ST_NM": "Rajasthan"} + }, + { + "arcs": [[538, 539]], + "type": "Polygon", + "properties": {"ST_NM": "Sikkim"} + }, + { + "arcs": [ + [[-501, 540, -499, 541, 542, 543, -503, 544]], + [ + [ + 545, + 546, + 547, + -470, + 548, + 549, + -467, + 550, + 551, + -464, + 552, + 553, + -461, + 554, + -459, + 555, + 556, + 557, + 558, + 559, + 560, + 561, + 562, + 563, + 564, + 565, + 566, + 567, + 568, + -384, + 569, + 570, + 571, + 572, + 573, + -322, + 574, + 575, + -362, + 576, + -360, + 577, + -358, + 578, + 579, + -355, + 580, + -353, + 581, + 582, + -350, + 583, + -348, + 584, + -346, + 585, + -344, + 586, + -342, + 587, + -340, + 588, + 589, + 590, + -336, + 591, + -334, + 592, + 593, + 594, + -330, + 595, + 596, + 597, + -326, + 598, + -259, + -255, + 599, + 600, + -506, + 601, + 602, + 603, + -456, + 604, + -454, + 605, + 606, + -451, + 607, + -449, + 608, + -447, + 609, + -445, + 610, + -494, + 611, + 612, + -491, + 613, + 614, + -488, + 615, + -486, + 616, + 617, + -483, + 618, + -481, + 619, + -479, + 620, + 621, + -476, + 622, + 623, + 624 + ], + [ + -400, + 625, + 626, + -410, + 627, + 628, + 629, + 630, + 631, + -404, + 632, + 633, + 634 + ], + [ + 635, + -429, + 636, + -427, + 637, + 638, + 639, + -423, + 640, + 641, + -420, + 642, + 643, + -417, + 644, + -443, + 645, + 646, + -440, + 647, + 648, + 649, + -436, + 650, + 651, + 652, + -432, + 653 + ], + [654, 655, 656, 657, -416], + [658, -397, 659, -395, 660, 661], + [-373, 662, -375, 663] + ] + ], + "type": "MultiPolygon", + "properties": {"ST_NM": "Tamil Nadu"} + }, + { + "arcs": [[664, -253, -295, -81, 665, -79, 666, -77, 667]], + "type": "Polygon", + "properties": {"ST_NM": "Telangana"} + }, + { + "arcs": [[-18, -315, 668]], + "type": "Polygon", + "properties": {"ST_NM": "Tripura"} + }, + { + "arcs": [ + [ + 669, + -40, + 670, + -38, + 671, + -36, + 672, + -34, + -250, + -92, + -294, + -532, + -225, + -319, + 673, + -317, + -223, + -240, + 674 + ] + ], + "type": "Polygon", + "properties": {"ST_NM": "Uttar Pradesh"} + }, + { + "arcs": [[-675, -239, 675]], + "type": "Polygon", + "properties": {"ST_NM": "Uttarakhand"} + }, + { + "arcs": [ + [[676]], + [[677]], + [[678]], + [[679]], + [[680]], + [[681]], + [[682]], + [[683]], + [[684]], + [[685, -26, 686, -24, 687, 688, -246, -28, 689, -539]] + ], + "type": "MultiPolygon", + "properties": {"ST_NM": "West Bengal"} + }, + { + "arcs": [[-689, 690, 691, -72, -247]], + "type": "Polygon", + "properties": {"ST_NM": "Odisha"} + }, + { + "arcs": [[-73, -692, 692, -600, -254, -665, 693, -75, 694]], + "type": "Polygon", + "properties": {"ST_NM": "Andhra Pradesh"} + }, + { + "arcs": [[695, 696, 697, 698]], + "type": "Polygon", + "properties": {"ST_NM": "Jammu and Kashmir"} + }, + {"type": null, "properties": {"ST_NM": "Hello"}}, + { + "arcs": [[-698, 699, -696, 700]], + "type": "Polygon", + "properties": {"ST_NM": "Ladakh"} + } + ] + } + } +} diff --git a/public/maps/jammukashmir.json b/public/maps/jammukashmir.json index 1a58d6858e..19f4a4b261 100644 --- a/public/maps/jammukashmir.json +++ b/public/maps/jammukashmir.json @@ -1 +1,2865 @@ -{"type":"Topology","arcs":[[[2447,6034],[-94,-199],[-3,-160],[-135,-98],[9,-33],[-19,-39]],[[2205,5505],[-55,5],[28,-60]],[[2178,5450],[-37,-31]],[[2141,5419],[-11,-45],[-88,2],[-30,-46]],[[2012,5330],[-16,-93],[-53,-79],[-83,-40],[-15,23],[-78,7],[-157,-57],[-38,-80],[-29,-10],[-19,-100],[-51,-7],[-105,56]],[[1368,4950],[-84,-46],[-69,37]],[[1215,4941],[-10,33],[-75,3]],[[1130,4977],[-7,80]],[[1123,5057],[-35,-5],[-8,22],[32,49]],[[1112,5123],[-63,42]],[[1049,5165],[-90,-65]],[[959,5100],[-112,58],[-36,-27],[-59,42],[-8,70],[107,112],[66,-4],[104,65],[-9,79],[18,58],[139,181],[-9,47],[-33,3],[-13,31],[0,55],[79,133],[55,-9],[53,24],[72,-31],[82,19],[6,-59],[55,-36],[43,85],[255,160],[73,98]],[[1887,6254],[36,-11],[437,-24],[83,-39],[15,-55],[-11,-91]],[[3903,5208],[-77,-7]],[[3826,5201],[-34,35],[-42,-19],[-79,41]],[[3671,5258],[-13,-68],[-87,-37],[-130,89],[-42,64],[-78,34],[-19,40],[-113,25]],[[3189,5405],[-41,45],[-83,-39]],[[3065,5411],[-17,-38],[2,-52],[34,-27],[-33,-65]],[[3051,5229],[-52,-15],[-56,-57],[-103,-12],[-45,-68],[-46,1],[-49,78],[-130,45],[21,-103],[-12,-110],[-28,7],[-4,-33],[32,-20],[-14,-35],[12,-47]],[[2577,4860],[90,-104]],[[2667,4756],[-52,-26],[-34,28]],[[2581,4758],[-51,-23],[0,48]],[[2530,4783],[-128,-21],[-7,38],[53,71],[-49,13]],[[2399,4884],[-37,-35]],[[2362,4849],[5,28],[-80,158],[52,261],[-93,109],[-50,-51]],[[2196,5354],[-66,-3],[11,68]],[[2178,5450],[-30,57],[57,-2]],[[2447,6034],[11,101],[103,-103],[166,-65],[203,-20],[32,28],[31,-30],[124,2],[194,-93],[82,1],[34,30],[109,20],[218,-46],[34,-55],[92,-42],[114,-147],[-76,-238],[106,-70],[-87,-122],[-34,23]],[[2399,4884],[50,-18],[-51,-60],[2,-42],[130,19]],[[2581,4758],[83,-38]],[[2664,4720],[11,-42],[-23,-26]],[[2652,4652],[18,-26],[-31,16],[-148,-62]],[[2491,4580],[-105,-114],[-28,-3],[-21,-49],[-95,21],[-4,-33],[39,-24],[-74,-71],[21,-114],[-53,-63]],[[2171,4130],[-65,-30],[-5,-32],[-30,-7],[-50,95],[-142,27]],[[1879,4183],[-27,92],[-64,-19],[-51,92],[-54,22],[-85,-14],[-102,53],[-62,-66],[-106,-1],[-34,-44],[-52,44],[-97,-6],[-106,81]],[[1039,4417],[-15,58],[25,84]],[[1049,4559],[42,3],[10,84]],[[1101,4646],[68,32],[85,92],[-12,29],[17,49]],[[1259,4848],[-44,93]],[[1215,4941],[77,-38],[76,47]],[[2012,5330],[33,49],[59,4],[34,-37],[58,8]],[[2196,5354],[38,53],[37,-13],[22,-40],[53,-82],[-57,-242],[66,-124],[7,-57]],[[3671,5258],[76,-41],[52,17],[27,-33]],[[3903,5208],[30,-24],[69,84],[32,-6],[-5,-36],[23,-17],[-18,-46],[41,-70],[-8,-63],[41,-31],[124,-5],[46,-118],[-63,-62]],[[4215,4814],[-113,72],[-16,-52],[-54,-26],[-83,20]],[[3949,4828],[-137,106],[-67,-57]],[[3745,4877],[-56,-11],[-34,-81],[-74,25],[-58,-28],[25,-30],[-19,-37]],[[3529,4715],[-114,-10]],[[3415,4705],[-39,25],[-85,-35]],[[3291,4695],[-163,105],[-24,-68]],[[3104,4732],[-93,15],[-45,-145],[-66,26],[8,39],[-78,52],[-33,-76]],[[2797,4643],[43,-58],[-38,-2],[-84,136]],[[2718,4719],[-11,-17],[-20,18],[-110,140]],[[3051,5229],[33,61],[-36,37],[17,84]],[[3065,5411],[85,39],[39,-45]],[[4215,4814],[72,65],[109,-57],[50,7],[31,-41],[-47,-104]],[[4430,4684],[-40,-2],[-26,-50],[-25,-101],[9,-83]],[[4348,4448],[-21,-38],[-152,-17],[-27,-49],[11,-44],[-18,-44]],[[4141,4256],[-72,-55],[0,-150]],[[4069,4051],[32,-25],[35,-118],[69,-126],[43,-24],[-37,-68],[116,-104],[-24,-42],[15,-112],[-13,-61],[38,-69],[-72,-123],[43,-54],[-70,-13],[3,-25],[-48,-41],[38,-112]],[[4237,2934],[-6,-136],[-23,14],[-41,-66]],[[4167,2746],[-47,8]],[[4120,2754],[-48,-40],[-29,-4],[-7,37]],[[4036,2747],[-97,45],[-215,258],[-100,60],[-70,0]],[[3554,3110],[56,162],[16,0]],[[3626,3272],[-25,16],[-7,-21],[-54,3],[9,49],[-44,9],[-23,51],[10,70],[35,0],[-53,29],[6,18],[16,18],[21,-36],[16,25],[-14,22]],[[3519,3525],[24,13],[-24,26]],[[3519,3564],[14,21],[-40,30],[33,18]],[[3526,3633],[-11,76],[-61,-1]],[[3454,3708],[-10,40],[-33,0]],[[3411,3748],[29,-62],[17,-167],[-23,44],[-9,149]],[[3425,3712],[-38,9],[-2,22],[-58,5],[1,29]],[[3328,3777],[40,19],[-11,37],[29,14]],[[3386,3847],[-4,30],[21,17]],[[3403,3894],[-41,30],[69,-1]],[[3431,3923],[41,46],[41,-14]],[[3513,3955],[44,20],[45,66],[58,13]],[[3660,4054],[68,134],[-11,144]],[[3717,4332],[27,42],[-32,13],[-27,79],[-102,21]],[[3583,4487],[-33,70]],[[3550,4557],[17,40]],[[3567,4597],[-21,47],[-80,36]],[[3466,4680],[19,11]],[[3485,4691],[-4,30],[48,-6]],[[3745,4877],[71,55],[133,-104]],[[5749,1856],[-18,173],[-42,16]],[[5689,2045],[-78,145],[-64,47],[-21,3],[10,-34]],[[5536,2206],[-38,-101]],[[5498,2105],[-203,-84],[-31,65]],[[5264,2086],[-27,-16],[-21,44],[-30,-59],[-72,53],[-101,7],[-63,40],[-48,-10],[-2,55],[-224,198],[-93,6],[-88,38],[-129,176],[-64,133],[-73,24]],[[4229,2775],[8,159]],[[4069,4051],[6,72],[-15,16],[11,66],[70,51]],[[4348,4448],[2,141],[33,84],[47,11]],[[4430,4684],[53,112],[122,91],[78,-31],[-20,-165],[52,-110],[72,-46],[50,-102],[56,-32],[40,6],[86,-69],[-11,-119],[15,23],[161,21],[76,-21],[-3,57],[87,-11],[52,-170],[101,-131],[85,-69],[62,-134],[178,-93],[27,-67],[-9,-129],[37,-43],[-29,-46],[-84,-34],[23,-62],[-33,-11],[15,-33],[-13,-24],[-40,-21],[40,-53],[42,-6],[28,49],[88,6],[15,16],[-22,61],[14,28],[34,-18],[26,20],[47,-18],[44,-65],[-1,-61],[94,-38],[49,63],[28,-43],[-11,-28],[88,-45],[12,-42],[83,-87],[41,5],[25,-100],[69,34],[26,-12],[62,-195],[74,-71],[44,2],[40,-169],[86,-55],[-66,-149],[-64,5],[-140,-47],[-56,30],[-33,79],[-71,10],[-164,-77],[-156,18],[-240,-208],[9,-106],[-36,-57],[-63,-40],[-52,-1]],[[3415,4705],[64,9],[6,-23]],[[3466,4680],[81,-39],[20,-44]],[[3550,4557],[28,-52],[-159,80],[-59,-44]],[[3360,4541],[19,-22]],[[3379,4519],[-12,-10],[-49,3]],[[3318,4512],[-1,-32],[-54,-4],[7,-27],[-21,-16],[-133,-76]],[[3116,4357],[-26,13],[7,-23]],[[3097,4347],[-34,-13]],[[3063,4334],[0,45],[-68,21],[-54,73],[-68,-6],[-102,80],[-20,44]],[[2751,4591],[-15,-18],[-38,14],[-46,65]],[[2664,4720],[-43,12],[46,24]],[[2667,4756],[39,-54],[12,17]],[[2718,4719],[73,-123],[42,-21],[6,20],[-42,48]],[[3104,4732],[26,37],[-15,25],[25,6],[38,-45],[113,-60]],[[3063,4334],[31,11],[-32,-27]],[[3062,4318],[6,-39],[-126,-156],[-40,-96],[-4,-71],[-57,-77],[11,-22],[-41,-12],[-9,-29]],[[2802,3816],[-56,30],[-40,-37],[-70,1]],[[2636,3810],[-127,-138],[-1,-26]],[[2508,3646],[-90,-52],[-29,-68],[-55,-27]],[[2334,3499],[7,25]],[[2341,3524],[-79,33],[-5,37],[-100,85],[-7,23],[41,51],[-63,67],[5,32],[-62,49]],[[2071,3901],[-17,98],[25,11],[-12,21],[35,65],[69,34]],[[2491,4580],[151,62],[62,-58],[47,7]],[[3717,4332],[10,-149],[-67,-129]],[[3660,4054],[-53,-10],[-47,-67],[-47,-22]],[[3431,3923],[-59,8],[31,-37]],[[3386,3847],[-41,-26]],[[3345,3821],[-74,6],[-9,-33],[-33,26],[-30,-37],[-52,-8],[-32,53],[-97,-60],[-43,22],[44,44],[-55,10]],[[2964,3844],[-53,-91],[-43,35]],[[2868,3788],[-52,-21],[-36,43]],[[2780,3810],[-95,-37],[8,40],[49,31],[60,-28]],[[3062,4318],[35,29]],[[3097,4347],[-8,22],[27,-12]],[[3318,4512],[46,-5],[15,12]],[[3360,4541],[62,44],[161,-98]],[[474,4518],[32,-55],[62,-16],[56,45]],[[624,4492],[281,9],[44,-40],[76,-4]],[[1025,4457],[14,-40]],[[1879,4183],[144,-29],[63,-93],[-34,-82],[25,-41],[-6,-37]],[[2341,3524],[-1,-48],[-47,-75]],[[2293,3401],[15,-63],[-26,-42],[28,-80],[-25,-32]],[[2285,3184],[46,-66],[70,-28],[0,-64],[-66,-9]],[[2335,3017],[-1,-53]],[[2334,2964],[-24,7],[-78,120]],[[2232,3091],[-137,126]],[[2095,3217],[-136,36],[-46,-32],[-52,3]],[[1861,3224],[-45,-62],[-42,10],[-22,-23],[-18,33],[-70,-22],[35,-139],[-86,-172]],[[1613,2849],[-35,-23],[-46,123]],[[1532,2949],[26,121],[-20,78],[14,12],[-182,14],[-41,43],[-13,57],[-47,40],[-67,-4],[-60,43],[-66,-43],[-147,-29],[-68,72],[-94,-15],[-52,29],[5,-77],[-27,-26]],[[693,3264],[-70,112],[-110,51]],[[513,3427],[-42,57],[-43,68],[-21,129],[-63,57],[60,267],[-22,66],[-60,52],[-55,134],[-68,397]],[[199,4654],[54,27],[39,-9],[124,-173],[27,-22],[31,41]],[[3345,3821],[2,19],[23,-31],[-42,-32]],[[3328,3777],[17,-53]],[[3345,3724],[-40,-81],[-37,30]],[[3268,3673],[-2,-27],[-97,-1],[30,-113],[-16,-29],[16,-3],[-61,-62],[-14,29],[-45,-7],[11,-28],[-83,-75],[-88,77],[-83,3],[-17,-27],[-8,47],[22,36],[-100,-31],[-15,50],[-99,42],[-67,-33],[-75,12],[-18,-34]],[[2459,3499],[-71,29],[28,65],[92,53]],[[2636,3810],[51,-7],[1,-31],[92,38]],[[2868,3788],[41,-36],[55,92]],[[3454,3708],[55,16],[17,-91]],[[3519,3564],[24,-23],[-24,-16]],[[3626,3272],[-49,-82]],[[3577,3190],[-8,22]],[[3569,3212],[-38,-6],[-10,23],[28,23],[-57,31],[-15,-56],[-74,-64]],[[3403,3163],[64,-101],[-31,-27]],[[3436,3035],[-254,46]],[[3182,3081],[-36,-55],[-48,15],[-51,-40],[-194,-37],[-17,51],[-59,6]],[[2777,3021],[-99,92],[-58,-52],[-50,2]],[[2570,3063],[-14,22]],[[2556,3085],[-20,-31],[-68,-19],[-34,37],[-30,-5]],[[2404,3067],[-18,41],[-57,11],[-44,65]],[[2293,3401],[20,5],[21,93]],[[2334,3499],[42,24],[83,-24]],[[3268,3673],[34,-32],[43,83]],[[3345,3724],[-13,24],[93,-36]],[[3411,3748],[18,7],[25,-47]],[[2232,3091],[79,-120],[23,-7]],[[2335,3017],[65,8],[4,42]],[[2404,3067],[106,-28]],[[2510,3039],[18,-28]],[[2528,3011],[-11,-44],[-58,-23],[35,-43]],[[2494,2901],[99,-24],[-5,-85],[42,-93],[-32,-29],[-44,2],[-1,-64],[44,-58],[-36,-73]],[[2561,2477],[82,-71],[-17,-109]],[[2626,2297],[-47,-36],[-81,49],[-27,-30],[-81,24],[12,-34],[-40,-22],[-39,33],[-28,-15],[3,-29],[45,-27],[70,-28],[43,11],[59,-37],[-30,-44],[24,-49],[15,7],[-24,-16],[26,-22],[-63,-7]],[[2463,2025],[-26,-55],[-59,-2]],[[2378,1968],[-11,-41]],[[2367,1927],[44,-76],[-11,-49],[-46,-39],[-60,76]],[[2294,1839],[-149,-2],[3,-34]],[[2148,1803],[-168,-122]],[[1980,1681],[-64,7]],[[1916,1688],[-38,130],[11,61],[-319,113],[26,46],[-38,34],[-22,78],[-130,88],[-33,49]],[[1373,2287],[-95,27],[-38,31]],[[1240,2345],[-7,51],[15,55]],[[1248,2451],[270,129],[12,78]],[[1530,2658],[36,31],[-43,45],[-11,58]],[[1512,2792],[101,57]],[[1861,3224],[128,21],[106,-28]],[[3577,3190],[-23,-80]],[[4036,2747],[-23,-177]],[[4013,2570],[-36,-26],[56,-237],[-51,-127],[-33,-26],[28,-95],[21,-11]],[[3998,2048],[-5,-75],[-121,81]],[[3872,2054],[-107,-26],[-27,29]],[[3738,2057],[3,121],[-35,16]],[[3706,2194],[-70,-19]],[[3636,2175],[-71,82],[-49,-7]],[[3516,2250],[-50,37]],[[3466,2287],[-9,-24]],[[3457,2263],[-21,36]],[[3436,2299],[-92,19],[24,81]],[[3368,2399],[-62,17],[15,81],[-17,84],[30,74],[56,40],[-103,146],[55,63]],[[3342,2904],[-41,129],[38,27],[97,-25]],[[3403,3163],[105,117],[43,-36],[-26,-31],[44,-1]],[[3182,3081],[94,-22],[20,16],[23,-24],[-17,-51],[40,-96]],[[3368,2399],[-26,-79],[94,-21]],[[3457,2263],[-31,-54]],[[3426,2209],[-55,-31]],[[3371,2178],[-43,-125],[110,-85],[-29,-39]],[[3409,1929],[-42,13],[-52,-24],[32,-60],[-79,-42],[12,-47],[-32,-72],[34,-59]],[[3282,1638],[-88,-10]],[[3194,1628],[-5,-87],[-24,12]],[[3165,1553],[6,-18],[-37,-10],[-45,86]],[[3089,1611],[-31,-1],[-16,84],[-30,-10],[-48,92],[-53,1],[-60,107],[-117,67],[-54,-22],[-70,25],[-1,-34],[-46,-56],[-33,-9],[-21,25],[-11,-77],[57,-51],[-85,-60]],[[2470,1692],[-4,-25],[8,103]],[[2474,1770],[-49,40]],[[2425,1810],[44,28],[-27,17],[0,33],[-46,-14],[-29,53]],[[2378,1968],[74,11],[11,46]],[[2626,2297],[17,107],[-82,73]],[[2494,2901],[-32,58],[51,2],[15,50]],[[2510,3039],[46,46]],[[2570,3063],[48,-2],[64,48],[95,-88]],[[5264,2086],[35,-66],[199,85]],[[5536,2206],[-10,35],[62,-27],[101,-169]],[[5689,2045],[45,-23],[15,-166]],[[5749,1856],[-79,-1],[-36,-35],[-107,-1],[-2,-46],[-47,-79],[-90,-48],[-24,-50],[-159,-108],[-59,82],[-152,59],[-94,-110],[-81,9],[-45,-36],[-99,4],[-22,-36]],[[4653,1460],[-42,147],[-135,67],[-28,-7]],[[4448,1667],[-37,50],[-60,-44]],[[4351,1673],[-25,26],[-140,4],[-91,127]],[[4095,1830],[-9,120],[-88,30],[0,68]],[[4013,2570],[27,138],[80,46]],[[4167,2746],[18,47],[32,15],[12,-33]],[[1980,1681],[81,49],[87,73]],[[2294,1839],[70,-74],[42,47],[-9,61],[41,15],[31,-52],[-44,-26]],[[2474,1770],[-6,-103],[2,25]],[[3089,1611],[48,-89],[34,14],[-6,17]],[[3194,1628],[22,14],[72,-112],[203,-157],[42,-43]],[[3533,1330],[-4,-41],[56,-16]],[[3585,1273],[20,-53],[-76,-44]],[[3529,1176],[0,-27]],[[3529,1149],[-35,6],[-41,-53],[-76,54]],[[3377,1156],[-22,-36]],[[3355,1120],[-59,9],[-21,36],[-91,-85]],[[3184,1080],[5,-66]],[[3189,1014],[-123,-78],[-38,-120]],[[3028,816],[25,-17],[44,71],[37,-47],[-26,-28],[74,-13],[-31,-12]],[[3151,770],[27,-42],[-54,3]],[[3124,731],[-3,-24],[24,-5]],[[3145,702],[-30,-26],[-40,14]],[[3075,690],[-7,-43],[34,-27],[-58,-9]],[[3044,611],[-41,-88],[-100,31],[-16,-47],[-197,-9],[-9,41],[-61,-2],[21,99],[-59,36],[-1,20],[23,-3],[0,39],[-42,-13],[-8,56],[22,28],[-36,7],[-7,34],[36,7],[-3,53],[32,3],[52,55],[-59,37],[-27,53],[21,72],[-17,6],[101,231],[0,52],[-78,-43],[-21,20],[-45,-57],[51,-55],[-55,-30],[12,-60],[-42,24],[-77,-33],[-33,31],[-31,-36],[-11,17],[-58,-21],[-5,50],[-53,2],[-52,58],[-33,2],[-19,83]],[[2119,1361],[-41,42],[-5,141],[-90,56],[-87,5],[-35,36],[55,47]],[[3732,436],[63,88],[8,74],[42,2]],[[3845,600],[-56,62],[46,84],[76,-11],[54,32],[-28,76],[-83,38]],[[3854,881],[-9,29],[95,56]],[[3940,966],[29,1],[-1,-19],[23,30]],[[3991,978],[18,-21],[19,18],[-21,22]],[[4007,997],[19,-15],[10,18],[-8,51]],[[4028,1051],[38,-77],[42,31],[28,-47],[32,29],[34,-19],[33,44],[-2,66],[40,139],[116,17],[13,-39],[47,-33]],[[4449,1162],[8,41],[61,36],[81,-5]],[[4599,1234],[70,57],[-17,63]],[[4652,1354],[26,43],[-25,63]],[[4653,1460],[22,36],[93,-6],[62,39],[66,-11],[44,-79],[123,-104],[14,-73],[72,-93],[-74,-232],[39,17],[19,-36],[37,8],[-13,-41],[-23,4],[-34,-100],[-43,-16],[0,-39],[-24,-18],[14,-33],[-70,-67],[-18,-50],[-116,-98],[-95,-28],[2,-35],[29,-17],[-31,1],[-13,-67],[-22,14],[-50,-51],[-183,-32],[-75,-51],[-41,-52],[6,-77],[-15,-66],[-19,-7],[-45,38],[17,41],[-61,31],[-4,35],[30,16],[-11,13],[-42,-18],[-2,-33],[-74,-24],[-182,75],[-20,-48],[-19,44],[-69,28],[2,37],[-64,3],[-3,44],[-23,-12],[-66,44],[-7,-19],[-33,16],[-2,26],[83,49],[-9,50]],[[3678,980],[8,-30],[-101,38],[-30,50]],[[3555,1038],[23,7],[100,-65]],[[3516,2250],[53,5],[67,-80]],[[3706,2194],[39,-19],[-7,-118]],[[3872,2054],[72,-66],[141,-37],[10,-121]],[[4351,1673],[57,46],[40,-52]],[[4448,1667],[151,-48],[77,-210],[-24,-55]],[[4652,1354],[16,-64],[-69,-56]],[[4599,1234],[-114,-12],[-36,-60]],[[4028,1051],[4,-66],[-25,12]],[[4007,997],[20,-24],[-28,-23],[-8,28]],[[3940,966],[-92,-56],[-94,32],[-20,-53],[-78,1]],[[3656,890],[7,34],[46,26]],[[3709,950],[-3,71],[-70,35],[-35,59],[-83,-48]],[[3518,1067],[-64,28],[34,55],[41,-1]],[[3529,1176],[74,40],[-18,57]],[[3585,1273],[-53,13],[1,44]],[[3533,1330],[-197,152],[-113,141],[59,15]],[[3409,1929],[28,37],[-109,86],[43,126]],[[3426,2209],[40,78]],[[3377,1156],[54,-20],[25,-44],[62,-25]],[[3518,1067],[56,47],[41,-3],[20,-53],[77,-47],[-3,-61]],[[3656,890],[75,-2],[23,54],[24,-2],[55,-19],[21,-40]],[[3854,881],[66,-22],[42,-48],[-11,-62],[-115,-2],[-45,-80],[54,-67]],[[3732,436],[-1,-63],[-56,-24],[-26,26],[-69,-13],[-44,-32],[-10,38],[15,10],[-53,80],[0,34],[-46,-12],[-119,69],[-18,-76],[-68,-40],[-31,24],[-44,-31],[-17,59],[-41,-18],[-85,35],[25,109]],[[3075,690],[42,-13],[28,25]],[[3124,731],[28,-14],[29,25],[-30,28]],[[3028,816],[26,40],[6,66],[129,92]],[[3184,1080],[97,82],[16,-33],[58,-9]],[[3678,980],[-106,66],[-17,-8]],[[959,5100],[14,29],[30,-11],[46,47]],[[1049,5165],[21,-10],[42,-32]],[[1123,5057],[-8,-57],[15,-23]],[[1130,4977],[84,-11],[45,-118]],[[1259,4848],[-14,-94],[-144,-108]],[[1049,4559],[-24,-102]],[[1025,4457],[-211,49],[-190,-14]],[[624,4492],[-34,-38],[-56,0],[-60,64]],[[199,4654],[9,188],[-47,79],[17,96],[-22,14],[-28,-44],[-1,47],[-59,106],[1,34],[-47,12],[-22,41],[37,30],[23,77],[4,132],[31,84],[-16,42],[37,132],[152,1],[70,47],[124,-19],[43,-49],[23,5],[19,105],[73,109],[-60,30],[2,46],[167,255],[48,24],[97,-2],[58,54],[35,-15],[69,26],[34,-19],[36,48],[58,20],[21,59],[113,31],[28,110],[61,45],[-28,134],[97,64],[-85,72],[59,122],[79,27],[60,-54],[121,0],[9,-47],[46,0],[7,-74],[32,-6],[58,24],[22,38],[146,-6],[101,138],[87,7],[87,-52],[48,-89],[-8,-69],[106,-54],[-32,-109],[10,-138],[-18,-94],[-76,-40],[-51,17],[-97,-28],[-89,-132],[-36,11],[-155,-43]],[[1532,2949],[41,-110],[-61,-47]],[[1530,2658],[-1,-55],[-25,-34],[-256,-118]],[[1248,2451],[-8,-106]],[[1240,2345],[55,-43],[78,-15]],[[2119,1361],[32,-97],[-89,-3],[-46,-62],[-60,14],[-92,72],[-15,77],[-171,55],[-30,63],[-50,31],[-240,65],[-23,58],[-122,8],[18,61],[-58,23],[-21,44],[-261,51],[-43,-87],[-45,-17],[-14,22],[19,59],[-92,102],[-17,68],[-95,55],[-123,3],[-3,125],[61,73],[3,97],[-34,46],[-25,-27],[-7,52],[-40,37],[-15,78],[12,31],[-45,78],[18,26],[-51,14],[11,34],[-26,30],[13,65],[54,69],[-18,18],[11,35],[75,35],[-24,57],[-23,-5],[-10,55],[26,1],[-5,48],[53,33],[-29,27],[4,75],[-41,47],[6,36],[-29,-8],[-57,42],[16,49],[-12,87],[70,101],[93,-160]],[[513,3427],[126,-74],[54,-89]]],"transform":{"scale":[0.0004925430896671998,0.00040139638111393836],"translate":[73.390075,32.276216]},"objects":{"jammukashmir_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12]],"type":"Polygon","properties":{"dt_code":"001","district":"Kupwara","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[13,14,15,16,17,18,19,20,21,22,23,24,25,-3,26,-1,27]],"type":"Polygon","properties":{"dt_code":"009","district":"Bandipore","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-24,28,-22,29,30,31,32,33,34,35,36,37,38,39,-5,40,41]],"type":"Polygon","properties":{"dt_code":"008","district":"Baramula","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-16,42,-14,43,44,45,46,47,48,49,50,51,52,-19,53,54]],"type":"Polygon","properties":{"dt_code":"011","district":"Ganderbal","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-45,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,-47,84]],"type":"Polygon","properties":{"dt_code":"014","district":"Anantnag","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[85,86,87,88,89,90,-60,91,-58,92,93]],"type":"Polygon","properties":{"dt_code":"018","district":"Kishtwar","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-49,94,-83,95,-81,96,97,98,99,100,101,102,103,-31,104,105,106,-51,107]],"type":"Polygon","properties":{"dt_code":"010","district":"Srinagar","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-103,108,109,110,111,112,113,114,115,-33,116]],"type":"Polygon","properties":{"dt_code":"002","district":"Badgam","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-79,117,118,-76,119,-74,120,121,122,123,124,-110,125,126,-100,127,-98,128]],"type":"Polygon","properties":{"dt_code":"012","district":"Pulwama","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[129,130,131,-35,132,-115,133,134,135,136,137,138,139,140,141,142,143,144,145]],"type":"Polygon","properties":{"dt_code":"005","district":"Punch","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-122,146,147,148,149,150,-112,151,-124,152]],"type":"Polygon","properties":{"dt_code":"013","district":"Shupiyan","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[153,-68,154,-66,155,156,157,158,159,160,161,162,163,164,-135,165,166,-150,167,168,-71,169]],"type":"Polygon","properties":{"dt_code":"015","district":"Kulgam","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-139,170,-137,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,-141,190]],"type":"Polygon","properties":{"dt_code":"006","district":"Rajouri","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-157,191,-64,192,193,194,195,196,197,198,199,200,201,202,203,204,-159,205]],"type":"Polygon","properties":{"dt_code":"017","district":"Ramban","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-161,206,-204,207,-202,208,209,210,211,212,213,214,215,216,217,218,-180,219,-178,220,-176,221,-174,222,-163,223]],"type":"Polygon","properties":{"dt_code":"020","district":"Reasi","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-90,224,-88,225,226,227,228,229,230,231,-194,232,-62,233]],"type":"Polygon","properties":{"dt_code":"016","district":"Doda","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-184,234,-182,235,-218,236,-216,237,-214,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253]],"type":"Polygon","properties":{"dt_code":"021","district":"Jammu","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[254,255,256,257,258,259,260,261,262,263,264]],"type":"Polygon","properties":{"dt_code":"007","district":"Kathua","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[[265,266]],[[267,-198,268,-196,269,-231,270,271,272,273,-261,274,275,-258,276,277,278,279,-242,280,281,282,-212,283,-210,284,-200]]],"type":"MultiPolygon","properties":{"dt_code":"019","district":"Udhampur","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-244,285,286,-278,287,288,-255,289,-252,290,-250,291,-248,292,-246,293],[-266,294]],"type":"Polygon","properties":{"dt_code":"022","district":"Samba","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-12,295,296,-9,297,298,299,-37,300,301,302,-146,303]],"type":"Polygon","properties":{"dt_code":"992","district":"Muzaffarabad","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}},{"arcs":[[-143,304,-189,305,306,307,-185,-254,308,309]],"type":"Polygon","properties":{"dt_code":"991","district":"Mirpur","st_nm":"Jammu and Kashmir","st_code":"01","year":"2011_c"}}]}},"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}}} +{ + "type": "Topology", + "arcs": [ + [ + [2447, 6034], + [-94, -199], + [-3, -160], + [-135, -98], + [9, -33], + [-19, -39] + ], + [ + [2205, 5505], + [-55, 5], + [28, -60] + ], + [ + [2178, 5450], + [-37, -31] + ], + [ + [2141, 5419], + [-11, -45], + [-88, 2], + [-30, -46] + ], + [ + [2012, 5330], + [-16, -93], + [-53, -79], + [-83, -40], + [-15, 23], + [-78, 7], + [-157, -57], + [-38, -80], + [-29, -10], + [-19, -100], + [-51, -7], + [-105, 56] + ], + [ + [1368, 4950], + [-84, -46], + [-69, 37] + ], + [ + [1215, 4941], + [-10, 33], + [-75, 3] + ], + [ + [1130, 4977], + [-7, 80] + ], + [ + [1123, 5057], + [-35, -5], + [-8, 22], + [32, 49] + ], + [ + [1112, 5123], + [-63, 42] + ], + [ + [1049, 5165], + [-90, -65] + ], + [ + [959, 5100], + [-112, 58], + [-36, -27], + [-59, 42], + [-8, 70], + [107, 112], + [66, -4], + [104, 65], + [-9, 79], + [18, 58], + [139, 181], + [-9, 47], + [-33, 3], + [-13, 31], + [0, 55], + [79, 133], + [55, -9], + [53, 24], + [72, -31], + [82, 19], + [6, -59], + [55, -36], + [43, 85], + [255, 160], + [73, 98] + ], + [ + [1887, 6254], + [36, -11], + [437, -24], + [83, -39], + [15, -55], + [-11, -91] + ], + [ + [3903, 5208], + [-77, -7] + ], + [ + [3826, 5201], + [-34, 35], + [-42, -19], + [-79, 41] + ], + [ + [3671, 5258], + [-13, -68], + [-87, -37], + [-130, 89], + [-42, 64], + [-78, 34], + [-19, 40], + [-113, 25] + ], + [ + [3189, 5405], + [-41, 45], + [-83, -39] + ], + [ + [3065, 5411], + [-17, -38], + [2, -52], + [34, -27], + [-33, -65] + ], + [ + [3051, 5229], + [-52, -15], + [-56, -57], + [-103, -12], + [-45, -68], + [-46, 1], + [-49, 78], + [-130, 45], + [21, -103], + [-12, -110], + [-28, 7], + [-4, -33], + [32, -20], + [-14, -35], + [12, -47] + ], + [ + [2577, 4860], + [90, -104] + ], + [ + [2667, 4756], + [-52, -26], + [-34, 28] + ], + [ + [2581, 4758], + [-51, -23], + [0, 48] + ], + [ + [2530, 4783], + [-128, -21], + [-7, 38], + [53, 71], + [-49, 13] + ], + [ + [2399, 4884], + [-37, -35] + ], + [ + [2362, 4849], + [5, 28], + [-80, 158], + [52, 261], + [-93, 109], + [-50, -51] + ], + [ + [2196, 5354], + [-66, -3], + [11, 68] + ], + [ + [2178, 5450], + [-30, 57], + [57, -2] + ], + [ + [2447, 6034], + [11, 101], + [103, -103], + [166, -65], + [203, -20], + [32, 28], + [31, -30], + [124, 2], + [194, -93], + [82, 1], + [34, 30], + [109, 20], + [218, -46], + [34, -55], + [92, -42], + [114, -147], + [-76, -238], + [106, -70], + [-87, -122], + [-34, 23] + ], + [ + [2399, 4884], + [50, -18], + [-51, -60], + [2, -42], + [130, 19] + ], + [ + [2581, 4758], + [83, -38] + ], + [ + [2664, 4720], + [11, -42], + [-23, -26] + ], + [ + [2652, 4652], + [18, -26], + [-31, 16], + [-148, -62] + ], + [ + [2491, 4580], + [-105, -114], + [-28, -3], + [-21, -49], + [-95, 21], + [-4, -33], + [39, -24], + [-74, -71], + [21, -114], + [-53, -63] + ], + [ + [2171, 4130], + [-65, -30], + [-5, -32], + [-30, -7], + [-50, 95], + [-142, 27] + ], + [ + [1879, 4183], + [-27, 92], + [-64, -19], + [-51, 92], + [-54, 22], + [-85, -14], + [-102, 53], + [-62, -66], + [-106, -1], + [-34, -44], + [-52, 44], + [-97, -6], + [-106, 81] + ], + [ + [1039, 4417], + [-15, 58], + [25, 84] + ], + [ + [1049, 4559], + [42, 3], + [10, 84] + ], + [ + [1101, 4646], + [68, 32], + [85, 92], + [-12, 29], + [17, 49] + ], + [ + [1259, 4848], + [-44, 93] + ], + [ + [1215, 4941], + [77, -38], + [76, 47] + ], + [ + [2012, 5330], + [33, 49], + [59, 4], + [34, -37], + [58, 8] + ], + [ + [2196, 5354], + [38, 53], + [37, -13], + [22, -40], + [53, -82], + [-57, -242], + [66, -124], + [7, -57] + ], + [ + [3671, 5258], + [76, -41], + [52, 17], + [27, -33] + ], + [ + [3903, 5208], + [30, -24], + [69, 84], + [32, -6], + [-5, -36], + [23, -17], + [-18, -46], + [41, -70], + [-8, -63], + [41, -31], + [124, -5], + [46, -118], + [-63, -62] + ], + [ + [4215, 4814], + [-113, 72], + [-16, -52], + [-54, -26], + [-83, 20] + ], + [ + [3949, 4828], + [-137, 106], + [-67, -57] + ], + [ + [3745, 4877], + [-56, -11], + [-34, -81], + [-74, 25], + [-58, -28], + [25, -30], + [-19, -37] + ], + [ + [3529, 4715], + [-114, -10] + ], + [ + [3415, 4705], + [-39, 25], + [-85, -35] + ], + [ + [3291, 4695], + [-163, 105], + [-24, -68] + ], + [ + [3104, 4732], + [-93, 15], + [-45, -145], + [-66, 26], + [8, 39], + [-78, 52], + [-33, -76] + ], + [ + [2797, 4643], + [43, -58], + [-38, -2], + [-84, 136] + ], + [ + [2718, 4719], + [-11, -17], + [-20, 18], + [-110, 140] + ], + [ + [3051, 5229], + [33, 61], + [-36, 37], + [17, 84] + ], + [ + [3065, 5411], + [85, 39], + [39, -45] + ], + [ + [4215, 4814], + [72, 65], + [109, -57], + [50, 7], + [31, -41], + [-47, -104] + ], + [ + [4430, 4684], + [-40, -2], + [-26, -50], + [-25, -101], + [9, -83] + ], + [ + [4348, 4448], + [-21, -38], + [-152, -17], + [-27, -49], + [11, -44], + [-18, -44] + ], + [ + [4141, 4256], + [-72, -55], + [0, -150] + ], + [ + [4069, 4051], + [32, -25], + [35, -118], + [69, -126], + [43, -24], + [-37, -68], + [116, -104], + [-24, -42], + [15, -112], + [-13, -61], + [38, -69], + [-72, -123], + [43, -54], + [-70, -13], + [3, -25], + [-48, -41], + [38, -112] + ], + [ + [4237, 2934], + [-6, -136], + [-23, 14], + [-41, -66] + ], + [ + [4167, 2746], + [-47, 8] + ], + [ + [4120, 2754], + [-48, -40], + [-29, -4], + [-7, 37] + ], + [ + [4036, 2747], + [-97, 45], + [-215, 258], + [-100, 60], + [-70, 0] + ], + [ + [3554, 3110], + [56, 162], + [16, 0] + ], + [ + [3626, 3272], + [-25, 16], + [-7, -21], + [-54, 3], + [9, 49], + [-44, 9], + [-23, 51], + [10, 70], + [35, 0], + [-53, 29], + [6, 18], + [16, 18], + [21, -36], + [16, 25], + [-14, 22] + ], + [ + [3519, 3525], + [24, 13], + [-24, 26] + ], + [ + [3519, 3564], + [14, 21], + [-40, 30], + [33, 18] + ], + [ + [3526, 3633], + [-11, 76], + [-61, -1] + ], + [ + [3454, 3708], + [-10, 40], + [-33, 0] + ], + [ + [3411, 3748], + [29, -62], + [17, -167], + [-23, 44], + [-9, 149] + ], + [ + [3425, 3712], + [-38, 9], + [-2, 22], + [-58, 5], + [1, 29] + ], + [ + [3328, 3777], + [40, 19], + [-11, 37], + [29, 14] + ], + [ + [3386, 3847], + [-4, 30], + [21, 17] + ], + [ + [3403, 3894], + [-41, 30], + [69, -1] + ], + [ + [3431, 3923], + [41, 46], + [41, -14] + ], + [ + [3513, 3955], + [44, 20], + [45, 66], + [58, 13] + ], + [ + [3660, 4054], + [68, 134], + [-11, 144] + ], + [ + [3717, 4332], + [27, 42], + [-32, 13], + [-27, 79], + [-102, 21] + ], + [ + [3583, 4487], + [-33, 70] + ], + [ + [3550, 4557], + [17, 40] + ], + [ + [3567, 4597], + [-21, 47], + [-80, 36] + ], + [ + [3466, 4680], + [19, 11] + ], + [ + [3485, 4691], + [-4, 30], + [48, -6] + ], + [ + [3745, 4877], + [71, 55], + [133, -104] + ], + [ + [5749, 1856], + [-18, 173], + [-42, 16] + ], + [ + [5689, 2045], + [-78, 145], + [-64, 47], + [-21, 3], + [10, -34] + ], + [ + [5536, 2206], + [-38, -101] + ], + [ + [5498, 2105], + [-203, -84], + [-31, 65] + ], + [ + [5264, 2086], + [-27, -16], + [-21, 44], + [-30, -59], + [-72, 53], + [-101, 7], + [-63, 40], + [-48, -10], + [-2, 55], + [-224, 198], + [-93, 6], + [-88, 38], + [-129, 176], + [-64, 133], + [-73, 24] + ], + [ + [4229, 2775], + [8, 159] + ], + [ + [4069, 4051], + [6, 72], + [-15, 16], + [11, 66], + [70, 51] + ], + [ + [4348, 4448], + [2, 141], + [33, 84], + [47, 11] + ], + [ + [4430, 4684], + [53, 112], + [122, 91], + [78, -31], + [-20, -165], + [52, -110], + [72, -46], + [50, -102], + [56, -32], + [40, 6], + [86, -69], + [-11, -119], + [15, 23], + [161, 21], + [76, -21], + [-3, 57], + [87, -11], + [52, -170], + [101, -131], + [85, -69], + [62, -134], + [178, -93], + [27, -67], + [-9, -129], + [37, -43], + [-29, -46], + [-84, -34], + [23, -62], + [-33, -11], + [15, -33], + [-13, -24], + [-40, -21], + [40, -53], + [42, -6], + [28, 49], + [88, 6], + [15, 16], + [-22, 61], + [14, 28], + [34, -18], + [26, 20], + [47, -18], + [44, -65], + [-1, -61], + [94, -38], + [49, 63], + [28, -43], + [-11, -28], + [88, -45], + [12, -42], + [83, -87], + [41, 5], + [25, -100], + [69, 34], + [26, -12], + [62, -195], + [74, -71], + [44, 2], + [40, -169], + [86, -55], + [-66, -149], + [-64, 5], + [-140, -47], + [-56, 30], + [-33, 79], + [-71, 10], + [-164, -77], + [-156, 18], + [-240, -208], + [9, -106], + [-36, -57], + [-63, -40], + [-52, -1] + ], + [ + [3415, 4705], + [64, 9], + [6, -23] + ], + [ + [3466, 4680], + [81, -39], + [20, -44] + ], + [ + [3550, 4557], + [28, -52], + [-159, 80], + [-59, -44] + ], + [ + [3360, 4541], + [19, -22] + ], + [ + [3379, 4519], + [-12, -10], + [-49, 3] + ], + [ + [3318, 4512], + [-1, -32], + [-54, -4], + [7, -27], + [-21, -16], + [-133, -76] + ], + [ + [3116, 4357], + [-26, 13], + [7, -23] + ], + [ + [3097, 4347], + [-34, -13] + ], + [ + [3063, 4334], + [0, 45], + [-68, 21], + [-54, 73], + [-68, -6], + [-102, 80], + [-20, 44] + ], + [ + [2751, 4591], + [-15, -18], + [-38, 14], + [-46, 65] + ], + [ + [2664, 4720], + [-43, 12], + [46, 24] + ], + [ + [2667, 4756], + [39, -54], + [12, 17] + ], + [ + [2718, 4719], + [73, -123], + [42, -21], + [6, 20], + [-42, 48] + ], + [ + [3104, 4732], + [26, 37], + [-15, 25], + [25, 6], + [38, -45], + [113, -60] + ], + [ + [3063, 4334], + [31, 11], + [-32, -27] + ], + [ + [3062, 4318], + [6, -39], + [-126, -156], + [-40, -96], + [-4, -71], + [-57, -77], + [11, -22], + [-41, -12], + [-9, -29] + ], + [ + [2802, 3816], + [-56, 30], + [-40, -37], + [-70, 1] + ], + [ + [2636, 3810], + [-127, -138], + [-1, -26] + ], + [ + [2508, 3646], + [-90, -52], + [-29, -68], + [-55, -27] + ], + [ + [2334, 3499], + [7, 25] + ], + [ + [2341, 3524], + [-79, 33], + [-5, 37], + [-100, 85], + [-7, 23], + [41, 51], + [-63, 67], + [5, 32], + [-62, 49] + ], + [ + [2071, 3901], + [-17, 98], + [25, 11], + [-12, 21], + [35, 65], + [69, 34] + ], + [ + [2491, 4580], + [151, 62], + [62, -58], + [47, 7] + ], + [ + [3717, 4332], + [10, -149], + [-67, -129] + ], + [ + [3660, 4054], + [-53, -10], + [-47, -67], + [-47, -22] + ], + [ + [3431, 3923], + [-59, 8], + [31, -37] + ], + [ + [3386, 3847], + [-41, -26] + ], + [ + [3345, 3821], + [-74, 6], + [-9, -33], + [-33, 26], + [-30, -37], + [-52, -8], + [-32, 53], + [-97, -60], + [-43, 22], + [44, 44], + [-55, 10] + ], + [ + [2964, 3844], + [-53, -91], + [-43, 35] + ], + [ + [2868, 3788], + [-52, -21], + [-36, 43] + ], + [ + [2780, 3810], + [-95, -37], + [8, 40], + [49, 31], + [60, -28] + ], + [ + [3062, 4318], + [35, 29] + ], + [ + [3097, 4347], + [-8, 22], + [27, -12] + ], + [ + [3318, 4512], + [46, -5], + [15, 12] + ], + [ + [3360, 4541], + [62, 44], + [161, -98] + ], + [ + [474, 4518], + [32, -55], + [62, -16], + [56, 45] + ], + [ + [624, 4492], + [281, 9], + [44, -40], + [76, -4] + ], + [ + [1025, 4457], + [14, -40] + ], + [ + [1879, 4183], + [144, -29], + [63, -93], + [-34, -82], + [25, -41], + [-6, -37] + ], + [ + [2341, 3524], + [-1, -48], + [-47, -75] + ], + [ + [2293, 3401], + [15, -63], + [-26, -42], + [28, -80], + [-25, -32] + ], + [ + [2285, 3184], + [46, -66], + [70, -28], + [0, -64], + [-66, -9] + ], + [ + [2335, 3017], + [-1, -53] + ], + [ + [2334, 2964], + [-24, 7], + [-78, 120] + ], + [ + [2232, 3091], + [-137, 126] + ], + [ + [2095, 3217], + [-136, 36], + [-46, -32], + [-52, 3] + ], + [ + [1861, 3224], + [-45, -62], + [-42, 10], + [-22, -23], + [-18, 33], + [-70, -22], + [35, -139], + [-86, -172] + ], + [ + [1613, 2849], + [-35, -23], + [-46, 123] + ], + [ + [1532, 2949], + [26, 121], + [-20, 78], + [14, 12], + [-182, 14], + [-41, 43], + [-13, 57], + [-47, 40], + [-67, -4], + [-60, 43], + [-66, -43], + [-147, -29], + [-68, 72], + [-94, -15], + [-52, 29], + [5, -77], + [-27, -26] + ], + [ + [693, 3264], + [-70, 112], + [-110, 51] + ], + [ + [513, 3427], + [-42, 57], + [-43, 68], + [-21, 129], + [-63, 57], + [60, 267], + [-22, 66], + [-60, 52], + [-55, 134], + [-68, 397] + ], + [ + [199, 4654], + [54, 27], + [39, -9], + [124, -173], + [27, -22], + [31, 41] + ], + [ + [3345, 3821], + [2, 19], + [23, -31], + [-42, -32] + ], + [ + [3328, 3777], + [17, -53] + ], + [ + [3345, 3724], + [-40, -81], + [-37, 30] + ], + [ + [3268, 3673], + [-2, -27], + [-97, -1], + [30, -113], + [-16, -29], + [16, -3], + [-61, -62], + [-14, 29], + [-45, -7], + [11, -28], + [-83, -75], + [-88, 77], + [-83, 3], + [-17, -27], + [-8, 47], + [22, 36], + [-100, -31], + [-15, 50], + [-99, 42], + [-67, -33], + [-75, 12], + [-18, -34] + ], + [ + [2459, 3499], + [-71, 29], + [28, 65], + [92, 53] + ], + [ + [2636, 3810], + [51, -7], + [1, -31], + [92, 38] + ], + [ + [2868, 3788], + [41, -36], + [55, 92] + ], + [ + [3454, 3708], + [55, 16], + [17, -91] + ], + [ + [3519, 3564], + [24, -23], + [-24, -16] + ], + [ + [3626, 3272], + [-49, -82] + ], + [ + [3577, 3190], + [-8, 22] + ], + [ + [3569, 3212], + [-38, -6], + [-10, 23], + [28, 23], + [-57, 31], + [-15, -56], + [-74, -64] + ], + [ + [3403, 3163], + [64, -101], + [-31, -27] + ], + [ + [3436, 3035], + [-254, 46] + ], + [ + [3182, 3081], + [-36, -55], + [-48, 15], + [-51, -40], + [-194, -37], + [-17, 51], + [-59, 6] + ], + [ + [2777, 3021], + [-99, 92], + [-58, -52], + [-50, 2] + ], + [ + [2570, 3063], + [-14, 22] + ], + [ + [2556, 3085], + [-20, -31], + [-68, -19], + [-34, 37], + [-30, -5] + ], + [ + [2404, 3067], + [-18, 41], + [-57, 11], + [-44, 65] + ], + [ + [2293, 3401], + [20, 5], + [21, 93] + ], + [ + [2334, 3499], + [42, 24], + [83, -24] + ], + [ + [3268, 3673], + [34, -32], + [43, 83] + ], + [ + [3345, 3724], + [-13, 24], + [93, -36] + ], + [ + [3411, 3748], + [18, 7], + [25, -47] + ], + [ + [2232, 3091], + [79, -120], + [23, -7] + ], + [ + [2335, 3017], + [65, 8], + [4, 42] + ], + [ + [2404, 3067], + [106, -28] + ], + [ + [2510, 3039], + [18, -28] + ], + [ + [2528, 3011], + [-11, -44], + [-58, -23], + [35, -43] + ], + [ + [2494, 2901], + [99, -24], + [-5, -85], + [42, -93], + [-32, -29], + [-44, 2], + [-1, -64], + [44, -58], + [-36, -73] + ], + [ + [2561, 2477], + [82, -71], + [-17, -109] + ], + [ + [2626, 2297], + [-47, -36], + [-81, 49], + [-27, -30], + [-81, 24], + [12, -34], + [-40, -22], + [-39, 33], + [-28, -15], + [3, -29], + [45, -27], + [70, -28], + [43, 11], + [59, -37], + [-30, -44], + [24, -49], + [15, 7], + [-24, -16], + [26, -22], + [-63, -7] + ], + [ + [2463, 2025], + [-26, -55], + [-59, -2] + ], + [ + [2378, 1968], + [-11, -41] + ], + [ + [2367, 1927], + [44, -76], + [-11, -49], + [-46, -39], + [-60, 76] + ], + [ + [2294, 1839], + [-149, -2], + [3, -34] + ], + [ + [2148, 1803], + [-168, -122] + ], + [ + [1980, 1681], + [-64, 7] + ], + [ + [1916, 1688], + [-38, 130], + [11, 61], + [-319, 113], + [26, 46], + [-38, 34], + [-22, 78], + [-130, 88], + [-33, 49] + ], + [ + [1373, 2287], + [-95, 27], + [-38, 31] + ], + [ + [1240, 2345], + [-7, 51], + [15, 55] + ], + [ + [1248, 2451], + [270, 129], + [12, 78] + ], + [ + [1530, 2658], + [36, 31], + [-43, 45], + [-11, 58] + ], + [ + [1512, 2792], + [101, 57] + ], + [ + [1861, 3224], + [128, 21], + [106, -28] + ], + [ + [3577, 3190], + [-23, -80] + ], + [ + [4036, 2747], + [-23, -177] + ], + [ + [4013, 2570], + [-36, -26], + [56, -237], + [-51, -127], + [-33, -26], + [28, -95], + [21, -11] + ], + [ + [3998, 2048], + [-5, -75], + [-121, 81] + ], + [ + [3872, 2054], + [-107, -26], + [-27, 29] + ], + [ + [3738, 2057], + [3, 121], + [-35, 16] + ], + [ + [3706, 2194], + [-70, -19] + ], + [ + [3636, 2175], + [-71, 82], + [-49, -7] + ], + [ + [3516, 2250], + [-50, 37] + ], + [ + [3466, 2287], + [-9, -24] + ], + [ + [3457, 2263], + [-21, 36] + ], + [ + [3436, 2299], + [-92, 19], + [24, 81] + ], + [ + [3368, 2399], + [-62, 17], + [15, 81], + [-17, 84], + [30, 74], + [56, 40], + [-103, 146], + [55, 63] + ], + [ + [3342, 2904], + [-41, 129], + [38, 27], + [97, -25] + ], + [ + [3403, 3163], + [105, 117], + [43, -36], + [-26, -31], + [44, -1] + ], + [ + [3182, 3081], + [94, -22], + [20, 16], + [23, -24], + [-17, -51], + [40, -96] + ], + [ + [3368, 2399], + [-26, -79], + [94, -21] + ], + [ + [3457, 2263], + [-31, -54] + ], + [ + [3426, 2209], + [-55, -31] + ], + [ + [3371, 2178], + [-43, -125], + [110, -85], + [-29, -39] + ], + [ + [3409, 1929], + [-42, 13], + [-52, -24], + [32, -60], + [-79, -42], + [12, -47], + [-32, -72], + [34, -59] + ], + [ + [3282, 1638], + [-88, -10] + ], + [ + [3194, 1628], + [-5, -87], + [-24, 12] + ], + [ + [3165, 1553], + [6, -18], + [-37, -10], + [-45, 86] + ], + [ + [3089, 1611], + [-31, -1], + [-16, 84], + [-30, -10], + [-48, 92], + [-53, 1], + [-60, 107], + [-117, 67], + [-54, -22], + [-70, 25], + [-1, -34], + [-46, -56], + [-33, -9], + [-21, 25], + [-11, -77], + [57, -51], + [-85, -60] + ], + [ + [2470, 1692], + [-4, -25], + [8, 103] + ], + [ + [2474, 1770], + [-49, 40] + ], + [ + [2425, 1810], + [44, 28], + [-27, 17], + [0, 33], + [-46, -14], + [-29, 53] + ], + [ + [2378, 1968], + [74, 11], + [11, 46] + ], + [ + [2626, 2297], + [17, 107], + [-82, 73] + ], + [ + [2494, 2901], + [-32, 58], + [51, 2], + [15, 50] + ], + [ + [2510, 3039], + [46, 46] + ], + [ + [2570, 3063], + [48, -2], + [64, 48], + [95, -88] + ], + [ + [5264, 2086], + [35, -66], + [199, 85] + ], + [ + [5536, 2206], + [-10, 35], + [62, -27], + [101, -169] + ], + [ + [5689, 2045], + [45, -23], + [15, -166] + ], + [ + [5749, 1856], + [-79, -1], + [-36, -35], + [-107, -1], + [-2, -46], + [-47, -79], + [-90, -48], + [-24, -50], + [-159, -108], + [-59, 82], + [-152, 59], + [-94, -110], + [-81, 9], + [-45, -36], + [-99, 4], + [-22, -36] + ], + [ + [4653, 1460], + [-42, 147], + [-135, 67], + [-28, -7] + ], + [ + [4448, 1667], + [-37, 50], + [-60, -44] + ], + [ + [4351, 1673], + [-25, 26], + [-140, 4], + [-91, 127] + ], + [ + [4095, 1830], + [-9, 120], + [-88, 30], + [0, 68] + ], + [ + [4013, 2570], + [27, 138], + [80, 46] + ], + [ + [4167, 2746], + [18, 47], + [32, 15], + [12, -33] + ], + [ + [1980, 1681], + [81, 49], + [87, 73] + ], + [ + [2294, 1839], + [70, -74], + [42, 47], + [-9, 61], + [41, 15], + [31, -52], + [-44, -26] + ], + [ + [2474, 1770], + [-6, -103], + [2, 25] + ], + [ + [3089, 1611], + [48, -89], + [34, 14], + [-6, 17] + ], + [ + [3194, 1628], + [22, 14], + [72, -112], + [203, -157], + [42, -43] + ], + [ + [3533, 1330], + [-4, -41], + [56, -16] + ], + [ + [3585, 1273], + [20, -53], + [-76, -44] + ], + [ + [3529, 1176], + [0, -27] + ], + [ + [3529, 1149], + [-35, 6], + [-41, -53], + [-76, 54] + ], + [ + [3377, 1156], + [-22, -36] + ], + [ + [3355, 1120], + [-59, 9], + [-21, 36], + [-91, -85] + ], + [ + [3184, 1080], + [5, -66] + ], + [ + [3189, 1014], + [-123, -78], + [-38, -120] + ], + [ + [3028, 816], + [25, -17], + [44, 71], + [37, -47], + [-26, -28], + [74, -13], + [-31, -12] + ], + [ + [3151, 770], + [27, -42], + [-54, 3] + ], + [ + [3124, 731], + [-3, -24], + [24, -5] + ], + [ + [3145, 702], + [-30, -26], + [-40, 14] + ], + [ + [3075, 690], + [-7, -43], + [34, -27], + [-58, -9] + ], + [ + [3044, 611], + [-41, -88], + [-100, 31], + [-16, -47], + [-197, -9], + [-9, 41], + [-61, -2], + [21, 99], + [-59, 36], + [-1, 20], + [23, -3], + [0, 39], + [-42, -13], + [-8, 56], + [22, 28], + [-36, 7], + [-7, 34], + [36, 7], + [-3, 53], + [32, 3], + [52, 55], + [-59, 37], + [-27, 53], + [21, 72], + [-17, 6], + [101, 231], + [0, 52], + [-78, -43], + [-21, 20], + [-45, -57], + [51, -55], + [-55, -30], + [12, -60], + [-42, 24], + [-77, -33], + [-33, 31], + [-31, -36], + [-11, 17], + [-58, -21], + [-5, 50], + [-53, 2], + [-52, 58], + [-33, 2], + [-19, 83] + ], + [ + [2119, 1361], + [-41, 42], + [-5, 141], + [-90, 56], + [-87, 5], + [-35, 36], + [55, 47] + ], + [ + [3732, 436], + [63, 88], + [8, 74], + [42, 2] + ], + [ + [3845, 600], + [-56, 62], + [46, 84], + [76, -11], + [54, 32], + [-28, 76], + [-83, 38] + ], + [ + [3854, 881], + [-9, 29], + [95, 56] + ], + [ + [3940, 966], + [29, 1], + [-1, -19], + [23, 30] + ], + [ + [3991, 978], + [18, -21], + [19, 18], + [-21, 22] + ], + [ + [4007, 997], + [19, -15], + [10, 18], + [-8, 51] + ], + [ + [4028, 1051], + [38, -77], + [42, 31], + [28, -47], + [32, 29], + [34, -19], + [33, 44], + [-2, 66], + [40, 139], + [116, 17], + [13, -39], + [47, -33] + ], + [ + [4449, 1162], + [8, 41], + [61, 36], + [81, -5] + ], + [ + [4599, 1234], + [70, 57], + [-17, 63] + ], + [ + [4652, 1354], + [26, 43], + [-25, 63] + ], + [ + [4653, 1460], + [22, 36], + [93, -6], + [62, 39], + [66, -11], + [44, -79], + [123, -104], + [14, -73], + [72, -93], + [-74, -232], + [39, 17], + [19, -36], + [37, 8], + [-13, -41], + [-23, 4], + [-34, -100], + [-43, -16], + [0, -39], + [-24, -18], + [14, -33], + [-70, -67], + [-18, -50], + [-116, -98], + [-95, -28], + [2, -35], + [29, -17], + [-31, 1], + [-13, -67], + [-22, 14], + [-50, -51], + [-183, -32], + [-75, -51], + [-41, -52], + [6, -77], + [-15, -66], + [-19, -7], + [-45, 38], + [17, 41], + [-61, 31], + [-4, 35], + [30, 16], + [-11, 13], + [-42, -18], + [-2, -33], + [-74, -24], + [-182, 75], + [-20, -48], + [-19, 44], + [-69, 28], + [2, 37], + [-64, 3], + [-3, 44], + [-23, -12], + [-66, 44], + [-7, -19], + [-33, 16], + [-2, 26], + [83, 49], + [-9, 50] + ], + [ + [3678, 980], + [8, -30], + [-101, 38], + [-30, 50] + ], + [ + [3555, 1038], + [23, 7], + [100, -65] + ], + [ + [3516, 2250], + [53, 5], + [67, -80] + ], + [ + [3706, 2194], + [39, -19], + [-7, -118] + ], + [ + [3872, 2054], + [72, -66], + [141, -37], + [10, -121] + ], + [ + [4351, 1673], + [57, 46], + [40, -52] + ], + [ + [4448, 1667], + [151, -48], + [77, -210], + [-24, -55] + ], + [ + [4652, 1354], + [16, -64], + [-69, -56] + ], + [ + [4599, 1234], + [-114, -12], + [-36, -60] + ], + [ + [4028, 1051], + [4, -66], + [-25, 12] + ], + [ + [4007, 997], + [20, -24], + [-28, -23], + [-8, 28] + ], + [ + [3940, 966], + [-92, -56], + [-94, 32], + [-20, -53], + [-78, 1] + ], + [ + [3656, 890], + [7, 34], + [46, 26] + ], + [ + [3709, 950], + [-3, 71], + [-70, 35], + [-35, 59], + [-83, -48] + ], + [ + [3518, 1067], + [-64, 28], + [34, 55], + [41, -1] + ], + [ + [3529, 1176], + [74, 40], + [-18, 57] + ], + [ + [3585, 1273], + [-53, 13], + [1, 44] + ], + [ + [3533, 1330], + [-197, 152], + [-113, 141], + [59, 15] + ], + [ + [3409, 1929], + [28, 37], + [-109, 86], + [43, 126] + ], + [ + [3426, 2209], + [40, 78] + ], + [ + [3377, 1156], + [54, -20], + [25, -44], + [62, -25] + ], + [ + [3518, 1067], + [56, 47], + [41, -3], + [20, -53], + [77, -47], + [-3, -61] + ], + [ + [3656, 890], + [75, -2], + [23, 54], + [24, -2], + [55, -19], + [21, -40] + ], + [ + [3854, 881], + [66, -22], + [42, -48], + [-11, -62], + [-115, -2], + [-45, -80], + [54, -67] + ], + [ + [3732, 436], + [-1, -63], + [-56, -24], + [-26, 26], + [-69, -13], + [-44, -32], + [-10, 38], + [15, 10], + [-53, 80], + [0, 34], + [-46, -12], + [-119, 69], + [-18, -76], + [-68, -40], + [-31, 24], + [-44, -31], + [-17, 59], + [-41, -18], + [-85, 35], + [25, 109] + ], + [ + [3075, 690], + [42, -13], + [28, 25] + ], + [ + [3124, 731], + [28, -14], + [29, 25], + [-30, 28] + ], + [ + [3028, 816], + [26, 40], + [6, 66], + [129, 92] + ], + [ + [3184, 1080], + [97, 82], + [16, -33], + [58, -9] + ], + [ + [3678, 980], + [-106, 66], + [-17, -8] + ], + [ + [959, 5100], + [14, 29], + [30, -11], + [46, 47] + ], + [ + [1049, 5165], + [21, -10], + [42, -32] + ], + [ + [1123, 5057], + [-8, -57], + [15, -23] + ], + [ + [1130, 4977], + [84, -11], + [45, -118] + ], + [ + [1259, 4848], + [-14, -94], + [-144, -108] + ], + [ + [1049, 4559], + [-24, -102] + ], + [ + [1025, 4457], + [-211, 49], + [-190, -14] + ], + [ + [624, 4492], + [-34, -38], + [-56, 0], + [-60, 64] + ], + [ + [199, 4654], + [9, 188], + [-47, 79], + [17, 96], + [-22, 14], + [-28, -44], + [-1, 47], + [-59, 106], + [1, 34], + [-47, 12], + [-22, 41], + [37, 30], + [23, 77], + [4, 132], + [31, 84], + [-16, 42], + [37, 132], + [152, 1], + [70, 47], + [124, -19], + [43, -49], + [23, 5], + [19, 105], + [73, 109], + [-60, 30], + [2, 46], + [167, 255], + [48, 24], + [97, -2], + [58, 54], + [35, -15], + [69, 26], + [34, -19], + [36, 48], + [58, 20], + [21, 59], + [113, 31], + [28, 110], + [61, 45], + [-28, 134], + [97, 64], + [-85, 72], + [59, 122], + [79, 27], + [60, -54], + [121, 0], + [9, -47], + [46, 0], + [7, -74], + [32, -6], + [58, 24], + [22, 38], + [146, -6], + [101, 138], + [87, 7], + [87, -52], + [48, -89], + [-8, -69], + [106, -54], + [-32, -109], + [10, -138], + [-18, -94], + [-76, -40], + [-51, 17], + [-97, -28], + [-89, -132], + [-36, 11], + [-155, -43] + ], + [ + [1532, 2949], + [41, -110], + [-61, -47] + ], + [ + [1530, 2658], + [-1, -55], + [-25, -34], + [-256, -118] + ], + [ + [1248, 2451], + [-8, -106] + ], + [ + [1240, 2345], + [55, -43], + [78, -15] + ], + [ + [2119, 1361], + [32, -97], + [-89, -3], + [-46, -62], + [-60, 14], + [-92, 72], + [-15, 77], + [-171, 55], + [-30, 63], + [-50, 31], + [-240, 65], + [-23, 58], + [-122, 8], + [18, 61], + [-58, 23], + [-21, 44], + [-261, 51], + [-43, -87], + [-45, -17], + [-14, 22], + [19, 59], + [-92, 102], + [-17, 68], + [-95, 55], + [-123, 3], + [-3, 125], + [61, 73], + [3, 97], + [-34, 46], + [-25, -27], + [-7, 52], + [-40, 37], + [-15, 78], + [12, 31], + [-45, 78], + [18, 26], + [-51, 14], + [11, 34], + [-26, 30], + [13, 65], + [54, 69], + [-18, 18], + [11, 35], + [75, 35], + [-24, 57], + [-23, -5], + [-10, 55], + [26, 1], + [-5, 48], + [53, 33], + [-29, 27], + [4, 75], + [-41, 47], + [6, 36], + [-29, -8], + [-57, 42], + [16, 49], + [-12, 87], + [70, 101], + [93, -160] + ], + [ + [513, 3427], + [126, -74], + [54, -89] + ] + ], + "transform": { + "scale": [0.0004925430896671998, 0.00040139638111393836], + "translate": [73.390075, 32.276216] + }, + "objects": { + "jammukashmir_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]], + "type": "Polygon", + "properties": { + "dt_code": "001", + "district": "Kupwara", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -3, 26, -1, 27] + ], + "type": "Polygon", + "properties": { + "dt_code": "009", + "district": "Bandipore", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + -24, + 28, + -22, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + -5, + 40, + 41 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "008", + "district": "Baramula", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [-16, 42, -14, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, -19, 53, 54] + ], + "type": "Polygon", + "properties": { + "dt_code": "011", + "district": "Ganderbal", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + -45, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + -47, + 84 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "014", + "district": "Anantnag", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [[85, 86, 87, 88, 89, 90, -60, 91, -58, 92, 93]], + "type": "Polygon", + "properties": { + "dt_code": "018", + "district": "Kishtwar", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + -49, + 94, + -83, + 95, + -81, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + -31, + 104, + 105, + 106, + -51, + 107 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "010", + "district": "Srinagar", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [[-103, 108, 109, 110, 111, 112, 113, 114, 115, -33, 116]], + "type": "Polygon", + "properties": { + "dt_code": "002", + "district": "Badgam", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + -79, + 117, + 118, + -76, + 119, + -74, + 120, + 121, + 122, + 123, + 124, + -110, + 125, + 126, + -100, + 127, + -98, + 128 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "012", + "district": "Pulwama", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + 129, + 130, + 131, + -35, + 132, + -115, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "005", + "district": "Punch", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [[-122, 146, 147, 148, 149, 150, -112, 151, -124, 152]], + "type": "Polygon", + "properties": { + "dt_code": "013", + "district": "Shupiyan", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + 153, + -68, + 154, + -66, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + -135, + 165, + 166, + -150, + 167, + 168, + -71, + 169 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "015", + "district": "Kulgam", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + -139, + 170, + -137, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + -141, + 190 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "006", + "district": "Rajouri", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + -157, + 191, + -64, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + -159, + 205 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "017", + "district": "Ramban", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + -161, + 206, + -204, + 207, + -202, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + -180, + 219, + -178, + 220, + -176, + 221, + -174, + 222, + -163, + 223 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "020", + "district": "Reasi", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + -90, + 224, + -88, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + -194, + 232, + -62, + 233 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "016", + "district": "Doda", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + -184, + 234, + -182, + 235, + -218, + 236, + -216, + 237, + -214, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253 + ] + ], + "type": "Polygon", + "properties": { + "dt_code": "021", + "district": "Jammu", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [[254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264]], + "type": "Polygon", + "properties": { + "dt_code": "007", + "district": "Kathua", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [[265, 266]], + [ + [ + 267, + -198, + 268, + -196, + 269, + -231, + 270, + 271, + 272, + 273, + -261, + 274, + 275, + -258, + 276, + 277, + 278, + 279, + -242, + 280, + 281, + 282, + -212, + 283, + -210, + 284, + -200 + ] + ] + ], + "type": "MultiPolygon", + "properties": { + "dt_code": "019", + "district": "Udhampur", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [ + -244, + 285, + 286, + -278, + 287, + 288, + -255, + 289, + -252, + 290, + -250, + 291, + -248, + 292, + -246, + 293 + ], + [-266, 294] + ], + "type": "Polygon", + "properties": { + "dt_code": "022", + "district": "Samba", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [ + [-12, 295, 296, -9, 297, 298, 299, -37, 300, 301, 302, -146, 303] + ], + "type": "Polygon", + "properties": { + "dt_code": "992", + "district": "Muzaffarabad", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + }, + { + "arcs": [[-143, 304, -189, 305, 306, 307, -185, -254, 308, 309]], + "type": "Polygon", + "properties": { + "dt_code": "991", + "district": "Mirpur", + "st_nm": "Jammu and Kashmir", + "st_code": "01", + "year": "2011_c" + } + } + ] + } + }, + "crs": { + "type": "name", + "properties": {"name": "urn:ogc:def:crs:OGC:1.3:CRS84"} + } +} diff --git a/public/maps/jharkhand.json b/public/maps/jharkhand.json index 808cb9f37e..53f0c2a06b 100644 --- a/public/maps/jharkhand.json +++ b/public/maps/jharkhand.json @@ -1 +1,4464 @@ -{"type":"Topology","arcs":[[[16853,14156],[8,-82],[56,-27],[-41,-82],[6,-26],[63,-29],[-6,-86],[25,-69],[44,-34],[20,-56],[87,-25],[54,-260],[-25,-24],[29,-66],[-24,-43],[-6,-55],[-41,-46],[4,-90],[-86,-184],[141,-26],[67,51],[113,-32],[31,19],[113,-82]],[[17485,12802],[-28,-4],[-14,-26],[-2,-48],[-18,-21],[-32,-125],[-34,-34],[-25,-115],[-47,-48],[-30,-73],[-139,-39],[-43,-32],[-83,-2],[-19,-57],[3,-50],[32,20],[0,-35],[-85,-32]],[[16921,12081],[-72,25],[-62,47],[-120,-2],[-135,63],[-62,109],[-53,-3],[-47,-46],[-105,28],[-68,-19],[-1,-56],[-80,-42],[43,-35],[69,-18],[1,-33],[-78,-46],[-68,-92],[-55,-43],[-11,-38],[10,-36],[-81,-189],[15,-187],[-71,111],[-91,-17],[-115,78],[-103,17],[-51,-7],[-81,20],[-248,-80],[-79,10],[-39,-104],[8,-37],[-16,-13],[-7,-48],[-43,-49]],[[15025,11349],[-36,-19],[-96,-9],[-233,85],[-105,-29],[-75,75],[-44,-2],[-174,-76],[-95,3],[-33,51],[-19,132],[-27,17],[-76,-39],[-1,98],[-61,78]],[[13950,11714],[53,-3],[26,83],[-39,53],[-28,-4],[-7,19],[-119,63],[-16,122],[-65,47],[4,33],[40,48],[-55,3],[-12,23],[-27,1],[-4,44],[-16,24],[-25,4],[11,19],[-12,13],[-45,-17],[-37,17],[-30,38],[16,24],[-14,11],[-35,-16],[-43,47],[-56,27],[-57,-48],[-65,10],[-13,10],[23,51],[-172,81],[28,62],[-40,12],[-45,-32],[-89,12],[-40,-31],[-35,18],[-102,13]],[[12808,12595],[25,111],[-58,67],[-172,123],[48,158],[253,77],[25,13],[8,47],[139,27],[38,37],[42,-18],[58,16],[53,25],[42,66],[91,-86],[55,36],[87,2],[51,-39],[19,12],[-24,29],[16,103],[-27,77],[-9,17],[-77,11],[-7,26],[127,113],[18,53],[52,16],[8,61],[-25,80],[-3,96],[-80,3],[-36,70],[1,32],[42,89],[-7,59],[-19,21],[24,116],[-17,59],[21,54],[-82,55],[-32,101],[2,19],[115,111],[71,203],[-14,59],[21,82],[-149,121],[-164,30],[-9,30],[-19,7],[11,103],[-66,93],[12,69],[37,53],[-73,-30],[-20,7],[-101,45],[-15,56],[110,152],[27,81],[59,46],[47,4],[98,-37],[70,17],[-21,85],[-18,5],[-36,152],[-33,27],[7,81],[89,45],[87,4],[16,26],[40,-23],[62,9],[89,-25],[10,33],[-29,40],[5,34],[53,0],[58,45]],[[13905,16469],[124,-123],[123,-49],[85,1],[35,24],[25,66],[122,23],[33,84],[19,13],[54,-1],[44,15],[36,35],[87,20],[13,-105],[-62,-82],[-30,-3],[17,-36],[115,38],[14,23],[126,-31],[123,-83],[9,-48],[72,-111],[50,-175],[-42,-28],[14,-29],[-12,-69],[-43,-72],[39,-178],[28,-17],[13,-31],[61,-3],[42,-20],[25,-62],[47,-33],[157,10],[112,35],[10,121],[114,-88],[53,-68],[49,-12],[35,-43],[12,36],[57,-46],[-17,50],[101,20],[94,-26],[12,25],[57,-11],[-1,-20],[-22,-10],[5,-26],[-61,-52],[9,-15],[-31,-28],[31,-65],[-46,-91],[11,-25],[23,-8],[26,-105],[-48,-60],[-52,-129],[-45,2],[-34,-87],[117,-31],[-7,-46],[22,-25],[64,-5],[21,-22],[153,2],[15,19],[121,-164],[137,-92],[91,-124],[100,-14],[65,-49],[32,1]],[[5754,9639],[234,-91],[19,28],[39,12],[-6,-62],[60,-15],[43,-39],[-49,-246],[41,-79],[2,-134],[26,-76],[-58,-103],[-86,-70],[-31,-67],[-99,-107],[124,-136],[26,-3],[63,30],[65,-26],[30,-51],[-42,-45],[-3,-102],[36,-58],[111,-46],[13,115],[58,72],[36,-13],[4,-71],[30,-24],[66,-102],[37,-17],[65,14],[51,-9],[124,-144],[98,-31],[39,27],[73,-73],[38,-10],[48,6],[34,22],[44,-16],[28,37],[36,4],[20,23],[56,-17],[40,-45],[101,13],[26,52],[106,65],[53,-2],[45,-58],[94,-12],[85,10],[30,-53],[-33,-171],[13,-19],[128,20],[25,64],[114,18],[71,110],[67,1],[56,-30],[125,53]],[[8443,7962],[71,40],[50,-39],[33,-55],[-130,-150],[-15,-144],[85,-37],[-15,-27],[7,-38],[200,-92],[1,-51],[-30,-57],[-32,-7],[-17,-36],[-121,-46],[4,-17],[58,-28],[-25,-110],[-113,23],[-28,-19],[-46,-172],[25,-60],[-2,-74],[50,-49],[-26,-60],[-128,-6],[-10,-23],[38,-101],[5,-54],[144,-74],[4,-42],[38,-33],[32,-81],[64,-8],[13,10],[-3,29],[22,-6],[44,-48],[-25,-55],[19,-24]],[[8684,6141],[19,-29],[3,-41],[-22,-28],[23,-176],[29,-14],[112,26],[67,-16],[32,-20],[76,-94],[51,13],[4,-24],[-14,-59],[17,-33],[-26,-86],[-10,-8],[-1,38],[-43,30],[-30,7],[-28,-15],[-47,-145],[49,-9],[-17,-158],[80,-174],[-2,-45],[31,-90],[-4,-77],[-120,-24],[-33,-84]],[[8880,4806],[-55,-18],[-59,-43],[-31,3],[-102,89],[-54,-52],[-17,-83],[-38,-41],[-60,-21],[-21,-50],[-77,-40],[-32,18],[-16,46],[-60,26],[-16,38],[-71,35],[-19,-17],[3,-87],[73,-119],[0,-51],[-12,-20],[-31,9],[-80,61],[-22,60],[-37,31],[-25,-9],[-19,-34],[23,-156],[-30,-26],[-78,15],[-17,34],[-43,27],[30,191],[-3,102],[-26,-3],[-11,-18],[-10,-55],[-38,25],[-8,107],[26,58],[-88,-3],[-177,65],[-38,-63],[-35,-23],[1,-26],[20,3],[33,-57],[-20,-51],[-77,8],[-43,-19],[-36,-122],[-93,-35],[-46,11],[-28,-54],[-31,-4],[-31,26],[-17,39],[-23,-37],[-49,-16],[-162,-1],[-8,-46],[-67,-58],[-33,8],[-71,72],[-79,18],[49,90],[-32,14],[-77,96],[-41,-12],[-15,-94],[-35,-12],[-3,-22],[-74,95],[23,28],[32,5],[32,27],[89,8],[23,21],[19,44],[-9,58],[-28,24],[-97,-2],[-26,22],[-131,4],[8,153],[-159,66],[-97,16],[-34,-24],[1,-111],[-59,-34],[-58,16],[25,-60],[-2,-42],[-65,-80],[-31,-93],[-21,3],[-53,61],[-62,-9],[9,-30],[-60,-30],[-40,-53],[-113,45],[-12,-9],[25,-53],[-24,-24],[-60,1],[-67,95],[-177,62]],[[5192,4733],[14,95],[71,67],[35,3],[14,67],[28,40],[14,191],[49,59],[69,-2],[30,23],[54,-14],[65,23],[8,45],[24,8],[13,115],[-9,27],[-31,23],[83,90],[19,40],[-4,89],[-53,60],[-15,102],[-31,52],[-121,4],[-25,-12],[-63,32],[-36,1],[-99,-70],[-94,-34],[-58,-3],[-52,105],[14,58],[-111,-103],[-50,8],[-22,44],[-110,-23],[-28,59],[-81,104],[16,65],[-9,23],[-44,28],[-72,-19],[-22,-79],[7,-40],[-28,-32],[14,-105],[-18,-36],[-72,-39],[-35,-3],[-24,66],[3,77],[-110,285],[6,100],[37,82],[-13,83],[-15,21],[-76,12],[-40,71],[-92,61],[-114,-15],[-28,17],[-46,86],[-91,62],[-38,111],[55,145],[91,106],[12,42],[-32,75],[9,105],[-20,40],[47,244],[25,59],[-20,93],[55,129]],[[4021,8026],[109,-11],[24,47],[75,30],[16,48],[52,-33],[23,2],[47,-43],[284,-78],[41,66],[136,27],[90,49],[45,122],[46,53],[-43,172],[19,85],[-38,107],[15,68],[138,91],[40,55],[31,99],[78,-53],[65,-5],[2,55],[50,12],[-9,135],[18,63],[-12,135],[-39,164],[118,39],[17,18],[-16,65],[97,56],[92,-22],[31,15],[61,-25],[30,5]],[[3704,10769],[37,19],[43,-41],[29,13],[12,62],[71,53],[-18,95],[47,46],[20,72],[37,45],[98,23],[143,194],[124,37],[41,108],[-30,141],[210,-51],[86,-46],[28,-61],[70,1],[10,-59],[45,-1],[8,34],[36,5],[60,70],[59,3],[-7,-53],[-53,-100],[8,-80],[49,50],[1,23],[172,33],[46,72],[116,-55],[102,24],[-11,57],[17,15],[49,170],[89,-54],[219,-51],[88,81],[113,6],[47,74],[23,4],[42,-47],[50,7],[1,-35],[49,-65],[6,-36],[-6,-28],[-37,-4],[-8,-53],[61,-53],[19,-81],[65,30],[-2,-36],[67,31],[89,11],[-33,119],[60,42],[186,-2],[41,53],[-16,42],[9,79],[84,83],[9,47],[-14,43]],[[6760,11894],[40,2],[31,-21],[41,38],[50,-41],[37,5],[37,-19],[94,147],[44,10],[58,-34],[27,4],[26,16],[71,112],[67,-5],[57,25],[-11,73],[58,31],[49,-21],[72,42],[20,-50],[41,10],[-12,-54],[36,-30],[24,-63],[37,-45],[-54,-134],[21,-48],[27,-7],[-52,-57],[68,-7],[43,21],[138,2],[53,58],[55,22],[-2,-72],[28,-81],[84,45],[97,-57],[109,-19],[28,-55],[91,43],[91,3],[65,-93],[-27,-45],[-18,-91],[43,-8],[29,-28],[51,-143],[0,-42],[-83,-46],[-26,-48],[74,-33],[25,-62],[0,-79],[-17,-27],[2,-128],[-148,10],[-30,-15],[-24,-30],[-24,-128],[134,-42],[4,-99],[53,-131],[124,-45],[-2,-55],[14,11]],[[8798,10286],[10,-42],[-19,-66],[-69,35],[-77,-63],[4,-56],[-68,-71],[7,-31],[-27,-67],[16,-38],[106,-59],[4,-23],[15,-145],[-67,-212],[16,-54],[-8,-74],[-57,15],[-19,-41],[-47,-16],[-18,210],[-14,17],[-21,-19],[-29,-115],[-55,-7]],[[8381,9364],[-52,0],[-21,-77],[-35,-22],[-32,5],[-36,-50],[-172,63],[-6,145],[-95,-35],[-15,19],[5,63],[-18,5],[-19,-38],[-8,-152],[-42,3],[-20,50],[20,102],[-61,19],[-4,33],[-29,15],[-24,105],[-26,26],[-71,29],[-7,100],[-45,69],[-41,0],[-9,-84],[-31,-38],[-214,-81],[-8,78],[-82,50],[-27,129],[-96,117],[-151,-54],[-63,57],[-60,-16],[4,-63],[-42,-223],[-95,-14],[-64,84],[6,81],[-89,151],[-59,2],[-120,47],[-47,-17],[-33,-59],[-79,-10],[-31,-27],[-50,-91],[14,-82],[-32,2],[-82,51],[-39,-27],[-78,8],[-45,38],[-87,-13],[7,-135],[17,-34],[-8,-29]],[[4021,8026],[-52,77],[-57,51],[-35,106],[20,9],[-20,16],[-92,17],[-30,-8],[-77,-134],[-126,40],[-87,86],[4,110],[46,86],[17,113],[-52,124],[-1,45],[52,31],[29,88],[68,104],[62,38],[19,50],[3,75],[53,138],[8,257],[-9,56],[-53,48],[-58,88],[10,35],[22,13],[-3,22]],[[3682,9807],[126,118],[79,40],[44,108],[8,33],[-11,21],[51,30],[-62,34],[-37,-27],[-64,15],[-69,-8],[-89,67],[-87,20],[-48,88],[12,45],[36,38],[69,26],[7,94],[82,104],[2,21],[-34,55],[7,40]],[[6134,13848],[34,-73],[55,-14]],[[6223,13761],[46,12],[9,-16],[-24,-31],[50,-58]],[[6304,13668],[-83,-64],[17,-70],[-122,-30],[37,39],[-7,12],[-25,-15],[-51,14],[-7,-39],[-62,-103],[20,-27],[135,-61],[-2,-109],[83,-53],[176,-10],[42,44],[41,-23],[4,-25],[-48,-45],[54,-121],[36,-16],[37,-88],[152,-69],[-43,-138],[-40,-12],[-59,-75],[51,-151],[62,-43],[-58,-108],[-57,-15],[4,-36],[55,-62],[-42,-36],[-14,-62],[27,-81],[62,-105],[81,9]],[[3704,10769],[-89,-8],[-16,32],[6,85],[-13,31],[-161,132],[-64,78],[-119,46],[4,211],[27,124],[-16,17],[-54,0],[-22,74],[-18,-12],[-24,16],[9,33],[-51,43],[-12,62],[-50,50],[-4,53],[-27,28],[-65,19],[-39,-7],[-30,-90],[4,-89],[-173,-29],[-80,52],[-1,23],[60,9],[27,20],[29,130],[-46,31],[-23,51],[66,83],[38,98],[86,58],[24,163],[104,57],[47,51],[69,10],[19,20],[31,-1],[16,-25],[102,68],[71,-37],[49,103],[98,-51],[29,-3],[32,22],[-7,35],[-65,71],[4,66],[-43,99],[-213,93],[-138,129]],[[3092,13093],[-29,23]],[[3063,13116],[-103,97],[-148,248],[-92,132],[-94,101],[4,63],[49,52],[24,66],[-18,52],[-85,131],[-2,54],[42,94],[130,94],[56,81],[13,142],[-21,207],[5,154],[112,230]],[[2935,15114],[326,89],[156,167],[80,120],[107,244],[121,-37],[5,-24],[46,9],[49,-60],[27,2],[46,-41],[-10,-32],[16,-2],[28,-70],[-1,-40],[45,9],[7,-33],[-15,-40],[68,-44],[32,-144],[61,-66],[-17,-113],[14,-62],[63,-96],[48,-38],[69,31],[12,68],[82,39],[-20,145],[52,64],[79,-12],[20,-27],[-46,-55],[-12,-40],[41,-29],[98,-13],[38,71],[-22,7],[-51,108],[0,30],[76,13],[7,35],[63,11],[3,-45],[31,-24],[14,-48],[46,-12],[18,89],[77,17],[-4,-56],[37,-2],[38,-27],[1,-42],[47,-5],[7,41],[23,-3],[11,20],[25,5],[-4,32],[52,4],[10,26],[-45,12],[-14,61],[128,10],[24,-16],[25,-95],[40,-45],[18,-75],[34,-26],[39,-116],[-25,-76],[-149,-53],[-48,-88],[43,-89],[118,-19],[82,-96],[1,-16],[-16,-5],[-44,9],[-23,-34],[17,-19],[36,20],[15,-8],[-10,-67],[65,-57],[-11,-32],[104,-28],[33,-25],[32,1],[35,24],[45,-8],[16,-60],[37,-22],[31,10],[11,-16],[-26,-41],[149,-50],[-28,-164],[148,17],[10,32],[42,-6],[40,-124]],[[11779,4944],[110,-9],[22,77],[50,17],[45,-11],[54,63],[218,-39],[67,133],[145,10],[10,-29],[41,-20],[41,-66],[62,-28],[29,-44],[62,-1],[42,-60],[-28,-114],[14,-83],[32,-70],[72,-39],[-14,-60],[-26,-17],[-100,16],[-29,-28],[-21,-68],[76,-98],[36,-98],[122,-62],[40,32],[52,13],[19,35],[24,11],[127,-12],[11,61],[61,-14],[41,19],[-3,21],[-18,-1],[6,20],[73,-22],[96,44],[76,-66],[30,0],[48,84],[64,-71],[0,-29],[-30,-37],[31,-29],[15,-48],[-30,-148],[71,-160],[-45,-80],[18,-23],[68,8],[52,-53],[91,-38],[-42,-80],[-10,-57],[-128,-59],[-9,-47],[47,-36],[32,8],[26,-12],[69,-66],[-44,-105],[58,-38],[9,-44],[87,-75],[209,-105]],[[14203,3017],[-39,-134],[42,-19],[30,-68],[140,-112],[85,13],[26,-120],[-7,-29],[31,-34],[-3,-42],[22,-26],[-2,-40],[-15,-20],[-13,9],[5,-64],[-58,-79],[-72,-62],[30,-42],[34,27],[50,-7],[35,-30],[-79,-80],[14,-35],[15,4],[35,-35],[38,-3],[19,21],[22,-15],[37,21],[22,-15],[-18,-16],[-52,-3],[-16,-21],[-102,-40],[-44,-49],[10,-17],[-25,-36],[-66,-48],[1,-57],[-19,-32],[-65,-51],[8,-30],[35,-16],[81,-118],[132,-99],[50,-80],[-64,-74],[-18,-88],[-65,-75],[-1,-46],[-25,-31],[9,-66],[34,-45],[-11,-24],[-115,-151],[-20,-68],[-177,-310],[-21,-15],[-53,16],[-89,-86],[4,-48],[-31,-91],[11,-33],[-26,-17],[8,-27],[-17,-9],[-47,69],[-16,1],[-50,-21],[-223,9],[-119,-38],[-15,8],[-1,51],[-78,10],[-89,-18],[-127,65],[-25,110],[14,37],[91,80],[18,47],[-46,89],[94,152],[143,-42],[88,41],[-31,60],[-51,33],[-37,-5],[35,42],[-2,18],[-68,51],[-124,-102],[-115,-50],[-63,-89],[-128,-69],[-95,-23],[-90,10],[-35,-43],[-51,16],[2,49],[-26,8],[-123,172],[-25,-1],[-74,-62],[-82,-16],[-20,29],[-30,-32],[-58,-12],[-107,69],[-59,-7],[-31,35],[-80,-25],[-33,60],[-100,67],[-156,49],[-156,114],[-251,119],[-85,15],[-50,-37],[-32,-4],[-53,21],[-34,-4],[-1,-48],[-26,-50],[18,-97],[-43,-6],[-44,38],[-120,-11],[-42,-55],[-82,-51],[-140,-159],[-178,-398],[-54,-73],[-47,19],[-40,43],[-1,156],[-21,35],[-147,69],[-23,58],[-36,20],[-44,-17],[35,-101],[-38,28],[-44,103],[-79,19],[-119,-42],[-53,80],[-50,26],[-4,68],[-19,20],[-61,6],[-79,39],[-138,21],[-47,-15],[-43,-41],[-38,13],[-32,-57],[-27,-18],[-10,-45],[-106,-37],[-42,47],[4,39],[233,122],[40,149],[-31,98],[120,120],[10,29],[-14,39],[122,264],[-8,75],[34,44],[-24,56],[3,70],[187,111],[50,-3],[2,58],[-15,28],[11,53],[-102,-10],[-39,10],[-11,17],[25,46],[13,96],[-58,1],[-44,43],[5,73],[44,103],[-31,176],[-74,87],[-4,76],[-25,21],[-6,30],[75,66],[14,64],[-2,36],[-58,33]],[[9365,3013],[39,61],[27,151],[-14,43],[-63,79],[31,44],[-14,88],[55,61]],[[9426,3540],[65,23],[26,124],[-35,58],[-71,51],[-1,16],[80,93],[26,106],[102,44],[23,153],[21,23],[-6,123],[49,47],[-12,114],[70,12],[23,41],[-36,40],[3,155],[42,167],[62,91],[-20,13],[31,50],[34,14],[78,-58],[61,-6],[-24,-56],[7,-14],[26,2],[10,32],[14,-20],[84,57],[67,81],[114,-18],[50,70],[39,-5],[14,83],[27,13],[12,-9],[37,58],[19,-8],[7,19],[10,-11],[51,28],[36,-4],[38,59],[46,-21],[115,25],[6,-32],[70,-6],[7,-43],[81,-54],[68,17],[21,-11],[12,-50],[-19,-50],[11,-29],[96,15],[67,-72],[64,21],[31,-36],[13,-44],[46,-20],[48,-98],[71,-11],[61,28],[119,-24],[66,48]],[[15025,11349],[-24,-31],[18,-18],[25,10],[-18,-41],[17,-31],[-9,-38],[38,-13],[19,-26],[50,-9],[-7,-39],[23,-38],[-29,-38],[36,-63],[98,-7],[13,-95],[-18,-64],[19,-76],[51,-34],[3,-51],[57,-41],[-12,-29],[26,-20],[9,-71],[-15,-28],[3,-53],[-43,-38],[-46,3],[176,-93],[108,-29],[184,3],[220,-24],[390,-11],[80,-157],[58,-44],[135,-54],[22,-109],[98,-110]],[[16780,9742],[4,-63],[-67,8],[-14,-33],[-77,-40],[-22,-59],[-91,4],[-13,-20],[-33,-6],[11,-72],[-44,-21],[-9,-42],[-44,-25],[-4,-34],[-34,-49],[14,-27],[-5,-46],[43,-48],[-13,-42],[-44,-15],[-18,-97],[27,-40],[18,13],[46,-9],[7,-45],[-88,-7],[-35,-53],[15,-52],[-75,-15],[14,-51],[-49,-31],[-28,61],[-140,-82],[30,-44],[35,7],[11,-54],[-77,-48],[-95,43],[-21,81],[-60,-7],[-19,-20],[-61,6],[-31,-20],[34,-55],[-35,-33],[-18,2],[-18,18],[-2,53],[-45,-12],[-35,36],[15,82],[42,38],[19,80],[-72,1],[-7,-74],[-16,-7],[-96,15],[-20,32],[-42,2],[-27,23],[-43,-3],[2,43],[-36,20],[-24,-14],[-81,5],[-40,-23],[-15,25],[13,98],[54,60],[-3,88],[-62,49],[7,46],[29,35],[19,62],[-38,41],[12,31],[-20,23],[-33,13],[-37,-22],[-27,3],[-39,42],[-50,-19],[-46,19],[-74,-37],[-81,4],[-8,60],[-32,13],[-76,-11],[-24,30],[-51,-3],[-11,-49],[-55,-16],[-40,-52],[-36,-14],[-1,-56],[55,-37],[-14,-18],[77,-144],[0,-77],[97,-19],[-19,-47],[-32,-20],[-113,-14],[-79,-31],[-59,-42],[-23,5],[-80,-33],[-122,-66],[-17,-25],[-32,-4],[-142,45],[-60,56],[-81,24],[-74,0]],[[13756,8893],[31,41],[-22,8],[7,14],[-49,51],[-40,8],[-14,27],[-36,7],[-66,-25],[-50,21],[13,103],[-58,23],[-39,61],[16,21],[62,20],[12,41],[12,2],[-9,25],[-32,47],[-105,6],[-30,158],[-63,104],[-28,-9],[6,44],[-26,11],[22,39],[-117,109],[9,120],[-29,64],[-21,13],[-17,-3],[-49,-149],[-59,-44],[-68,-15],[-49,-104],[-42,-11],[-62,67],[-40,-24],[-45,36],[-20,-7],[-8,-57],[-26,-5],[-24,-39],[-19,3],[0,-51],[-59,-84],[-112,54],[-42,68],[-57,25],[-1,302],[13,44],[-42,71],[52,56],[8,58],[-4,125],[-24,28],[1,104],[72,28],[65,86],[41,27],[5,102],[24,35],[-8,50],[-66,1],[-35,-109],[-71,-44],[-48,7],[-14,45],[-69,71],[-13,49],[22,38],[-37,100],[-48,21],[34,56],[149,65],[7,34],[-31,68],[12,84],[252,182],[-25,24],[-1,25],[-53,40]],[[12481,11580],[13,43],[64,-6],[56,22],[15,49],[-32,38],[42,10],[15,53],[31,-19],[36,7],[53,-33],[-5,-23],[-46,-6],[-24,-41],[5,-30],[87,-133],[40,-34],[32,4],[10,-63],[19,-10],[23,67],[36,40],[53,27],[0,37],[17,6],[31,-32],[79,-12],[12,-16],[-12,-80],[62,-58],[40,0],[12,-83],[80,-42],[-15,-32],[46,-84],[-9,-78],[54,-45],[-6,-30],[93,-9],[24,-15],[50,64],[88,58],[22,92],[110,178],[15,91],[-26,14],[-4,19],[15,81],[-22,63],[17,47],[32,30],[38,-5],[75,-49],[-4,48],[32,14]],[[9467,14223],[-21,-57],[13,-67],[67,-84],[21,-57],[37,25],[122,-23],[39,28],[-9,117],[44,7],[42,-5],[57,-34],[17,-55],[85,-12],[70,-64],[24,4],[37,61],[133,40],[273,-51],[85,21],[168,-109],[120,-38],[-49,-50]],[[10842,13820],[-21,-12],[-19,11],[-14,35],[-42,6],[-13,-22],[18,-72],[-33,-12],[-7,-161],[-23,-33],[10,-18],[-16,-46],[-62,-58],[-10,-21],[13,-55],[-30,-22],[27,-28],[6,-41],[-2,-47],[-14,-9],[-59,-1],[-20,41],[-87,51],[-104,-4],[-79,45],[-123,-12],[-82,41],[-145,-2],[-54,21],[-67,-88],[-12,-62],[-30,-31],[44,-109],[-29,-135],[45,-4],[43,-111],[67,-88],[-35,-35],[18,-4],[9,-14],[-13,-13],[21,-9],[1,-64],[100,-39],[74,-60],[124,-41],[75,-55],[31,-74],[-13,-71],[36,-152],[-117,-39],[-28,-118],[-48,-32],[-10,-54],[-57,-79],[3,-66],[-84,-72],[-86,34],[-106,8],[-32,-11],[-56,53],[7,24],[-23,26],[-47,27],[-27,6],[-12,-13],[-51,28],[-60,-6],[-70,-96],[-57,13],[31,62],[-1,39],[-21,30],[-152,5],[-59,-21],[-15,-42],[6,-57],[105,-25],[12,-34],[-85,-83],[24,-56],[-22,-29],[33,-31],[-8,-34],[-99,2],[-43,-94],[23,-38],[5,-58],[60,-36],[-32,-77],[5,-30],[124,-102],[35,-62],[-7,-26],[-58,7],[1,-80],[-16,-13],[28,-174],[-20,-53],[16,-166],[69,-58],[12,-34],[-18,-10],[-47,28],[-31,-18],[22,-15],[4,-27],[22,-9],[-5,-66]],[[9283,10284],[-67,-60],[-28,-81]],[[9188,10143],[-99,-15]],[[9089,10128],[-32,34],[-25,-86],[-52,18],[-53,131],[-63,25],[-19,41],[-47,-5]],[[6304,13668],[18,33],[29,11],[5,123],[40,11],[37,97],[43,34],[-33,38],[-3,43],[49,69],[-34,67],[109,3],[22,-18],[107,60],[-36,78],[34,61],[38,29],[41,-12],[9,-53],[44,18],[60,-20],[118,17],[32,-22],[158,-38],[26,100],[26,14],[-9,107],[42,59],[27,89],[82,33],[67,62],[34,-22],[65,26],[81,90],[11,48],[204,50],[20,76],[63,69],[34,-49],[96,22],[71,-79],[-30,-244],[34,-3],[-15,-61],[20,-39],[41,17],[30,62],[53,-31],[-2,-18],[15,-6],[17,6],[24,55],[69,-24],[-13,-237],[76,-142],[34,-28],[12,-69],[-33,-42],[20,-17],[147,35],[121,-37],[112,25],[118,214],[109,22],[115,55],[40,-7],[15,-34],[59,-19],[23,8],[38,83],[63,55],[-9,-185],[-23,-19],[3,-33],[-29,-76],[82,-35]],[[6304,13539],[33,-11],[21,31],[-33,79],[-20,9],[-24,-39],[23,-69]],[[6134,13848],[85,-9],[72,81],[34,26],[18,-10],[-10,-50],[-99,-69],[-11,-56]],[[21958,14960],[65,3],[46,45],[119,17],[26,26],[38,-10],[96,27],[35,25],[85,-19],[199,-107],[57,63],[92,18],[51,-93],[-18,-28],[-21,-136],[16,-46],[0,-304],[20,-224],[83,-328],[-25,-390],[106,-13],[114,11],[116,-39]],[[23258,13458],[-33,-44],[40,-73],[-29,-109],[82,-32],[97,-2],[40,-86],[57,-36],[19,6],[23,-63],[-2,-49],[-17,-16],[-20,-86],[-50,-11],[-125,47],[-60,-12],[-99,54],[-61,10],[-64,-4],[-47,-25],[-85,10],[-56,-35],[90,-48],[116,-109],[-39,-21],[-101,-12],[-21,-76],[-46,-22],[8,-67],[29,-59],[-32,13],[-75,-31],[-92,32],[-44,42],[-6,44],[-46,11],[-24,40],[-34,-4],[-91,29],[18,-94],[-43,-65],[6,-16],[85,-20],[-25,-52],[-62,-1],[-4,-21],[28,-41],[-16,-62],[89,-38],[15,-35],[-46,-68],[-3,-34],[-55,6],[-46,-58],[-61,-16],[-123,32],[-79,-47],[69,0],[-29,-30],[92,-58],[-2,-71],[-49,17],[-53,-36],[-53,22],[-16,50],[-41,-6],[-99,27],[-56,47],[-179,43],[-46,-79],[-130,7],[-46,44],[2,16],[26,12],[20,48],[44,1],[16,37],[-16,42],[-101,8],[-54,-17],[-76,5],[-37,-20],[-210,90],[-30,-5],[-18,-23],[-11,-76]],[[21055,12129],[-86,-6],[-279,41],[-87,60],[-95,18],[-107,120],[-62,173],[-31,26],[11,39],[-102,-1],[-106,73],[-58,89],[-125,62],[-29,29],[17,-65],[-27,-53],[-131,-14],[-66,13],[-17,-18],[-13,-95]],[[19662,12620],[-84,35],[-9,80],[-96,49],[-54,9],[38,188],[62,-6],[58,84],[74,15],[3,90],[-29,69],[37,40],[227,-63],[32,-34],[53,-9],[49,-39],[47,53],[-28,89],[35,51],[18,63],[55,53],[6,31],[-142,54],[-24,23],[-32,87],[9,173],[-58,93],[-201,-115],[-46,24],[-60,8],[-33,31],[7,223],[-55,23],[-88,4],[-38,81],[11,34],[-35,25],[-2,59],[61,48],[28,107],[-30,11],[-21,-23],[-44,10],[-17,-36],[-36,-23],[-74,29],[-38,59],[24,11],[-23,35],[-44,-22],[23,156],[52,74],[76,163],[-8,159],[27,106]],[[19325,15159],[-21,28],[-5,118],[-27,20],[10,28],[-28,53],[1,35],[59,62],[48,81],[5,51],[27,29],[55,13],[10,23],[-31,73],[100,0],[-17,-96],[108,31],[30,-9],[115,-65],[95,-76],[35,68],[41,19],[17,-69],[40,5],[10,18],[42,-46],[32,8],[-33,101]],[[20043,15662],[29,12],[28,73],[24,19],[31,-2],[60,-31],[55,5],[108,-50],[106,-4],[130,-87],[84,7],[39,-42],[49,-6],[73,-61],[95,-53],[35,28],[125,-39],[87,31],[86,71],[89,-43],[90,5],[13,-44],[86,-69],[6,-62],[49,-35],[111,-150],[64,-102],[31,-83],[128,-15],[4,25]],[[12481,11580],[-53,29],[-314,-156],[-156,-153],[-130,-172],[-179,-320]],[[11649,10808],[-204,-98]],[[11445,10710],[85,-76],[44,-87],[-109,-176],[-46,-42],[-4,-197],[-219,-80],[-60,36],[-153,47],[-160,74],[-88,-10],[-165,-62],[-134,19],[-87,30],[-135,12]],[[10214,10198],[-203,64],[-125,-256],[-41,47],[-272,-61],[-41,21],[-120,8],[9,23],[-77,62],[-37,54],[18,30],[54,10],[-6,50],[-11,22],[-57,-13],[-22,25]],[[10842,13820],[55,-63],[111,76],[11,64],[33,34],[9,89],[15,16],[157,39],[35,53],[48,-52],[3,-87],[94,10],[41,-13],[22,-48],[22,1],[41,41],[155,-47],[59,-44],[64,95],[71,-8],[50,93],[102,-51],[18,11],[7,52],[14,8],[21,-5],[30,-80],[41,-28],[73,39],[19,-6],[32,-66],[97,-13],[35,35],[0,-86],[-31,-46],[-17,-88],[-36,-6],[-25,14],[-33,-19],[6,-33],[-86,-173],[-55,7],[-71,-26],[-21,-29],[-19,-97],[-84,17],[-31,-49],[-93,-2],[-40,-136],[48,-38],[-11,-26],[-52,-21],[-53,14],[-56,-128],[48,-44],[35,-8],[214,-21],[120,-138],[15,-65],[113,18],[161,-24],[48,33],[92,-64],[48,-79],[100,-79],[88,4],[59,48]],[[9467,14223],[47,-9],[16,13],[19,55],[72,47],[31,61],[30,-4],[147,58],[40,-1],[13,36],[62,31],[-57,129],[-47,27],[4,41],[68,25],[193,2],[22,33],[111,-11],[26,49],[36,3],[22,52],[38,39],[43,15],[148,-4],[-14,129],[17,45],[80,11],[114,-24],[279,30],[67,18],[3,15],[126,62],[143,-56],[49,19],[77,-1],[84,51],[77,17],[59,-13],[27,-33],[0,-68],[85,-40],[86,45],[12,23],[21,84],[-19,88],[38,-5],[58,-49],[10,27],[63,26],[-13,39],[7,39],[-31,31],[8,45],[13,32],[61,37],[79,-34],[38,3],[52,-40],[3,-34],[38,-13],[35,6],[120,-33],[110,22],[46,65],[-15,38],[9,118],[-59,160],[12,107],[-19,59],[-62,41],[7,31],[162,40],[91,116],[-1,22],[45,68],[18,112],[-24,58],[6,67],[28,71],[59,36],[11,70],[29,10],[46,130],[154,-60],[21,-57],[43,-23],[10,9],[170,-35],[40,74],[24,11],[223,-20],[74,-31],[64,-50],[-13,-36],[78,-93],[15,-50]],[[24285,16380],[41,-43],[149,-52],[19,4],[37,53],[25,-17],[45,-80],[54,-6],[11,-69],[-22,0],[-12,-114],[-56,-73],[2,-24],[45,-33],[27,5],[62,-42],[10,-22],[-24,-42],[-6,-86],[-19,-38],[-83,6],[-23,-28],[39,-18],[56,14],[-3,-79],[-72,-7],[-61,29],[-23,-33],[72,-33],[14,18],[105,0],[10,-84],[-25,-59],[-75,-25],[-22,-100],[-116,-11],[-11,-25],[-40,-12],[-32,20],[-12,-41],[-128,50],[-6,42],[-77,57],[-127,36],[-86,-4],[-10,-60],[55,-1],[74,-33],[42,-40],[37,-81],[-14,-30],[-21,6],[-12,-14],[0,-83],[20,-59],[-15,-31],[8,-31],[-39,-41],[13,-36],[32,22],[30,93],[27,-68],[-8,-41],[46,0],[17,25],[5,-11],[-14,-51],[-39,-4],[-21,-51],[47,-47],[-16,-102],[-43,8],[-24,-14],[-14,-38],[-47,-35],[-16,-34],[22,-49],[-40,-55],[16,-17],[58,-2],[36,41],[26,-68],[-82,-38],[-13,-22],[1,-20],[30,-13],[-4,-51],[-40,-31],[-41,-99],[-114,-158],[-4,-31],[21,-31],[-23,-20],[-21,-93],[-22,6],[-63,-70],[-23,-5],[1,-18],[-50,-16],[-90,35],[-42,-190],[-75,-25],[-40,-54],[-40,1],[-28,-23],[-36,13],[-26,-56],[-54,77],[-29,8]],[[21958,14960],[-80,75],[7,158],[43,6],[34,-57],[12,1],[6,44],[41,9],[36,58],[80,23],[11,34],[65,-8],[71,33],[18,50],[-63,45],[-1,60],[47,36],[-24,84],[-62,10],[-6,45],[124,152],[8,43],[-22,127],[18,35],[-54,226],[-31,7],[14,41],[-82,108],[-36,11],[4,51],[97,117],[28,68],[186,-51],[18,12],[-13,16],[74,51]],[[22526,16680],[137,38],[23,35],[9,101],[21,1],[152,-98],[213,-40],[4,-45],[-17,-17],[-114,36],[26,-73],[73,-49],[334,-136],[175,-115],[45,-10],[46,32],[12,142],[18,44],[52,20],[47,-24],[73,-112],[54,-20],[79,18],[30,-168],[18,-24],[45,-4],[47,21],[60,41],[97,106]],[[14747,3429],[27,67],[162,122],[91,130],[103,72],[100,109],[3,82],[63,118],[-26,37],[-10,240],[18,45],[-36,137],[36,78],[29,12],[15,126],[-9,52],[-35,7],[-35,38],[-58,-22],[-16,48],[16,48],[50,40],[18,102],[78,-27],[34,-50],[78,-38],[-1,56],[25,55],[-5,145],[14,31],[48,35],[44,102],[-50,13],[-55,38],[-18,-10],[-17,10],[-19,139],[22,42],[-15,28],[11,66],[-27,12],[47,127],[108,-5],[18,27],[94,0],[18,15],[24,76],[-32,46]],[[15677,6050],[145,13],[97,90],[79,-16],[23,31],[20,-59],[42,-16],[13,-31],[107,-38],[50,26],[27,-1],[22,-23],[6,34],[45,10],[18,-23],[34,9],[58,-21],[17,-62],[51,-35],[39,53],[56,23],[30,45],[131,-28],[25,-29],[31,15],[65,-14],[17,20],[47,-18],[24,19],[97,6],[0,-39],[55,-61],[-42,-25],[67,-14],[35,11],[21,24],[-10,4],[105,85],[10,-76],[-19,-74],[-64,-5],[-18,-72],[-27,-26],[-117,19],[-5,-37],[-34,16],[-26,-57],[-4,23],[-56,34],[5,28],[-21,4],[-2,-16],[-43,-15],[-22,-32],[1,-34],[-114,-33],[-23,-23],[-2,-45],[87,-82],[74,-17],[4,-14],[-65,-81],[-22,3],[13,-38],[-13,-107],[-76,10],[-8,-83],[14,-105],[-67,-117],[-19,-112],[-29,-20],[19,-58],[150,-105],[54,6],[65,-78],[3,-37],[66,-105],[15,14],[32,-9],[102,-128],[16,5],[2,81],[128,3],[30,24],[224,-186],[56,-2],[62,-52],[81,-38],[24,-42],[44,-22],[33,-44],[1,-143],[-24,-123],[11,-75],[75,-33],[18,-93],[31,-18],[22,10],[61,-12],[57,25],[122,22],[117,-34],[173,-13],[40,-68],[-15,-60],[36,-14],[0,-15],[27,7],[42,-16],[11,-40],[-18,-10],[14,-20],[-14,-47],[37,-24],[11,-41],[-11,-34],[48,-52],[-41,-30],[32,-29],[6,-28],[-47,-56],[-36,17],[-70,-9],[-88,25],[-27,-8],[-17,-48],[34,-117],[33,-26],[2,-63],[32,-75],[294,-62],[137,-96],[-2,-49],[-29,-54],[15,-56],[-65,-162],[1,-100],[62,-64],[36,-3],[84,-56],[28,5],[24,-34],[68,-12],[19,-124],[-4,-36],[-13,-4],[1,-99],[-148,13],[-41,36],[-51,-20],[-27,22],[-42,-9],[-30,12],[-13,-4],[-22,-67],[-24,87],[-16,-103],[-50,-33],[-15,12],[-2,41],[23,71],[-56,5],[14,-142],[25,-28],[21,27],[46,-3],[-53,-144],[-47,23],[-42,-34],[-25,-1],[-16,13],[35,68],[47,-30],[5,21],[-29,33],[-59,13],[-20,-23],[17,-77],[-109,-39],[-39,0],[-121,32],[-23,20],[-209,16],[-44,32],[-22,30],[0,40],[-26,10],[-26,-26],[-49,-6],[-16,15],[1,103],[-15,48],[-23,17],[-20,-6],[-16,35],[-40,-13],[-100,70],[-32,-2],[-23,-24],[-40,3],[-29,94],[-19,1],[-20,40],[-42,-29],[-15,24],[-85,-10],[-65,49],[-41,-32],[-42,27],[-20,52],[23,5],[-8,36],[-84,32],[-36,44],[-7,56],[-88,20],[-27,-58],[-55,-13],[-55,-60],[-88,19],[-19,-12],[6,-103],[-33,-25],[-48,27],[-15,45],[-109,33],[-139,104],[-67,15],[-56,34],[0,36],[-29,44],[-118,83],[-30,43],[-11,60],[-84,86],[-8,60],[-68,59],[-44,118],[-79,-35],[-198,59],[-44,-3],[-47,63],[29,25],[7,25],[-9,-19],[-40,-13],[-36,44],[-31,-15],[-124,51],[-97,16],[-57,-23],[6,23],[-141,38],[-44,-16],[-24,12],[-32,31],[-42,107],[-82,130],[-89,107]],[[16921,12081],[64,-46],[75,21],[42,-39],[107,-48],[96,39],[202,-39],[110,-143],[228,-136],[27,-34],[58,-35],[77,-21],[94,-65],[91,-15],[68,-94],[29,-136],[50,-56],[79,55],[113,-46],[92,-107],[63,-146]],[[18686,10990],[-4,-24],[29,-19],[19,-63],[-18,-92],[102,-127],[17,-89],[-20,-96],[-44,-6],[-19,-24],[-73,-243],[26,-30],[-20,-36],[-180,-52],[-110,-5],[-12,8],[3,57],[-26,30],[-111,20],[-93,-16],[-56,-28],[-186,-41],[-131,-59],[-177,-10],[-20,-12],[14,-40],[-136,-95],[-197,-101],[-91,0],[-164,35],[-80,-32],[-116,11],[-35,-22],[3,-47]],[[19662,12620],[-38,-57],[22,-114],[-20,-37],[1,-68],[-50,-7],[-40,-33],[17,-34],[-43,-28],[-43,-4],[-135,55],[-29,34],[26,29],[-29,13],[-58,-12],[-107,59],[-46,-47],[-31,10],[-112,-39],[-17,-34],[-56,2],[-57,125],[-66,15],[-12,52],[-22,-28],[-34,24],[-22,-26],[-31,-7],[1,-65],[-30,-11],[-43,16],[-36,-7],[-14,37],[-51,48],[32,33],[-26,40],[-71,8],[-168,66],[-64,3],[-30,33],[-14,31],[14,120],[80,29],[-19,87],[-63,40],[-24,-15],[-30,-117],[-58,-71],[-90,-5],[-172,24],[-66,30],[-96,7],[-35,-20],[-66,10],[-6,-12]],[[16853,14156],[16,31],[36,16],[21,49],[7,60],[-18,138],[12,20],[122,18],[-2,52],[21,33],[-5,87],[-36,27],[29,52],[2,99],[43,17],[-3,64],[44,116],[96,106],[37,-16],[31,20],[57,-8],[25,50],[35,29],[-17,64],[127,50],[26,30],[4,73],[103,117],[34,14],[-13,-77],[64,2],[-3,-60],[86,-46],[38,-4],[24,-52],[122,-39],[50,33],[21,-7],[27,32],[47,-9],[126,55],[69,-15],[43,64],[33,17],[-5,80],[33,89],[17,-20],[116,5],[9,25],[37,-56],[15,-64],[41,-15],[-48,120],[34,-11],[45,-99],[30,-24],[-5,-54],[15,-50],[-35,-29],[-5,-43],[46,-5],[51,33],[40,-20],[61,13],[10,-83],[85,-21],[37,57],[43,7],[37,35],[41,-41],[1,-35],[48,3],[44,-62],[53,-34]],[[3063,13116],[29,-23]],[[3682,9807],[-171,-9],[-68,-27],[-134,-22],[-35,-65],[-10,-105],[31,-180],[-199,47],[-45,28],[-39,-19],[-387,95],[-25,-39],[-32,5],[-14,41],[-63,48],[-60,7],[-39,57],[-15,73],[-92,31],[-26,81],[9,31],[40,19],[-6,26],[-119,83],[-76,89],[2,45],[40,23],[52,62],[13,53],[-29,107],[1,135],[-12,30],[-80,74],[-8,101],[-82,107],[16,52],[-17,24],[-72,31],[-53,-34],[-31,34],[-44,11],[-16,25],[12,30],[-7,39],[-36,26],[-106,-4],[-99,35],[-59,0],[-105,50],[-107,6],[-20,39],[84,44],[17,43],[-33,36],[-112,14],[-35,32],[-30,96],[9,112],[-143,197],[-25,74],[-1,129],[48,54],[-52,104],[-150,60],[-169,24],[-87,91],[-7,94],[-26,58],[-119,-18],[-58,83],[-49,30],[-140,10],[-62,-27],[-120,25],[83,54],[54,94],[5,63],[33,63],[7,53],[114,259],[-13,77],[18,38],[-11,91],[87,67],[-1,33],[47,79],[-8,113],[-23,48],[-84,42],[-25,83],[147,134],[126,16],[41,44],[37,79],[56,23],[-44,48],[-18,83],[-51,53],[-3,46],[-97,38],[-64,-9],[3,168],[-58,2],[-45,107],[60,144],[-3,100],[19,39],[166,53],[448,88],[178,-8],[155,-54],[156,-22],[240,18],[203,-4],[107,-48],[77,-14],[173,32],[247,112],[78,-3],[262,52],[56,-28]],[[22349,19027],[29,-118],[90,-224],[-129,-183],[19,-32],[68,-40],[56,-110],[109,-103],[-46,-20],[-27,8],[-15,-22],[23,-70],[-28,-75],[-41,-52],[-83,-41],[-85,-129],[55,-44],[2,-87],[-14,2],[-16,-82],[-33,-8],[3,-32],[-40,-86],[5,-94],[53,-1],[-5,-55],[-26,-52],[-49,-27],[25,-57],[46,-46],[-1,-21],[-47,-14],[4,-54],[30,7],[23,-27],[46,14],[6,-16],[-36,-20],[23,2],[-4,-28],[19,-18],[-1,-92],[39,-79],[63,-77],[67,-44]],[[20043,15662],[56,217],[0,58],[22,10],[13,55],[44,57],[10,95],[57,101],[-3,67],[-31,3],[-10,39],[43,31],[-3,20],[28,39],[-20,57],[2,67],[45,52],[29,79],[0,15],[-32,-8],[-53,40],[-19,-7],[7,82],[88,23],[60,125],[45,49],[48,-16],[50,39],[99,-6],[4,27],[-24,-4],[3,32],[55,105],[-6,62],[-44,53],[-12,45],[48,111],[-37,62],[28,288],[-50,91],[13,106],[62,39],[99,195],[60,17],[52,39],[13,35],[58,34],[4,25],[121,-22],[32,81],[30,-2],[28,40],[44,-8],[62,-64],[113,-26],[22,61],[-11,87],[25,119],[30,21],[-6,42],[30,30],[14,59],[25,28],[-24,28],[35,111],[-6,49],[40,154],[38,-5],[0,-31],[132,-21],[80,-50],[39,104],[79,29],[85,-50],[11,-23],[37,-1],[208,-103],[63,-11],[5,-15],[24,9]],[[21055,12129],[72,-158],[38,-10],[41,41],[11,-22],[-4,-25],[32,-61],[-39,-39],[4,-70],[16,-16],[25,11],[48,-46],[74,-10],[1,-101],[-37,-28],[50,-208],[-21,1],[11,-51],[-38,-38],[-39,-10],[-42,-53],[-47,30],[13,11],[-18,72],[-24,35],[19,24],[-18,32],[-22,15],[-44,-58],[3,-188],[22,-15],[-15,-55],[49,-102],[-68,-77],[-73,-18],[-51,24],[-6,21],[30,70],[41,11],[24,51],[-74,27],[-30,-40],[-51,12],[-23,-40],[-20,8],[-42,-42],[-16,2],[1,33],[35,26],[2,21],[-45,17],[-36,-34],[-129,79],[-49,-13],[-48,28],[-41,-3],[-17,-26],[13,-68],[40,-30],[87,-119],[45,12],[22,-48],[-95,-148],[-51,33],[-30,-22],[-51,-8],[-75,24],[24,6],[7,28],[-19,4],[-35,-35],[-55,59],[-61,-25],[-63,41],[-85,23],[-121,121],[-65,22],[-110,71],[-118,22],[-71,53],[-39,-17],[-21,-75],[-24,-22],[-43,-18],[-37,12],[-59,53],[-7,71],[-93,80],[-64,3],[-56,-39],[-50,-65],[1,-29],[36,-5],[-11,-85],[41,-118],[-30,-46],[-28,-6],[-31,181],[-76,-27],[-14,-41],[-54,-63],[-128,-62],[-61,16],[-8,62],[-23,36],[-58,4]],[[12302,5680],[-37,14],[-140,-177],[13,-44],[108,-17],[-65,-59],[-60,-114],[-99,-28],[-11,114],[-59,-36],[-41,-50],[-39,14],[1,-16],[-20,-12],[11,-61],[-23,-51],[-28,-9],[-12,-75],[-33,-9],[11,-120]],[[9426,3540],[-44,83],[5,100],[-90,53],[7,57],[-28,81],[50,173],[-87,66],[-11,35],[54,164],[29,157],[-57,103],[-90,8],[-34,25],[-17,38],[-62,34],[-26,85],[-145,4]],[[8684,6141],[135,21],[89,96],[67,170],[3,75],[77,108],[86,34],[51,48],[59,282],[34,283],[199,116],[244,-9],[149,56],[138,94],[147,7],[105,-115],[236,-43],[36,-66],[151,-137],[49,-11],[50,24],[21,102],[41,4],[41,-69],[51,-34],[66,-17],[80,50],[106,-52],[27,-36],[184,-22],[82,18],[22,43],[4,91],[23,81],[103,34],[34,57],[15,87],[48,44],[99,1],[141,155],[170,-31],[-42,-122],[-106,-218],[-86,-330],[54,-176],[241,-84],[34,-63],[-70,-220],[-52,-84],[76,-250],[115,-165],[21,-100],[-30,-188]],[[8381,9364],[-4,-34],[48,-52],[73,-16],[44,-82],[55,-6],[66,-39],[7,-55],[29,-53],[-18,-63],[-52,-87],[-31,-22],[-25,-60],[-61,-57],[-57,-91],[-21,-61],[14,-60],[-66,-60],[44,-114],[-56,-62],[7,-18],[101,-49],[15,-126],[-50,-135]],[[13756,8893],[-40,-6],[-22,-28],[-35,-113],[7,-135]],[[13666,8611],[-39,-37],[-43,25],[-12,-7],[4,-26],[-23,-10],[-35,67],[-52,37],[3,46],[-18,25],[-56,20],[-61,0],[-15,-26],[-22,0],[-18,31],[-69,1],[-18,22],[-109,9],[-49,-13],[-14,-28],[-56,-29],[-29,28],[-67,-70],[-236,59],[-10,34],[-74,46],[-81,2],[-65,22],[-135,78],[-4,43],[-73,35],[-22,48],[-98,68],[-106,137],[-59,8],[-25,-10],[-15,-32],[-44,26],[-23,37],[45,107],[-34,94],[-91,-40],[52,-94],[4,-57],[-28,-19],[-46,18],[-44,-6],[-56,63],[26,52],[-85,50],[-12,-19],[6,-63],[-103,-48],[-130,29],[-77,40],[-20,-27],[-58,-3],[-44,34],[-30,-68],[-108,69],[-139,-19],[-103,66],[-284,61],[-23,41],[-106,54],[3,39],[-46,99],[-119,-1],[-28,15],[-25,67],[6,59],[45,70],[44,-1],[-3,65],[19,53],[68,46],[-7,23],[-56,-6],[-14,25],[17,53]],[[11445,10710],[204,98]],[[13666,8611],[11,-107],[50,-8],[11,11],[23,-14],[17,-25],[-23,-20],[40,-77],[-13,-37],[64,-8],[8,-54],[-56,19],[-103,-53],[2,-20],[34,-27],[-11,-25],[4,-132],[34,-38],[-52,-46],[-41,-6],[4,-68],[-120,-126],[-30,-8],[-39,-103],[23,-117],[1,-193],[15,-51],[-11,-40],[19,-18],[121,14],[106,-126],[0,-85],[64,-40]],[[13818,6983],[-37,4],[-23,-30],[-61,-27],[-13,-114],[-57,23],[-37,-60],[-48,-26],[-11,-52],[-63,-85],[-22,-5],[-63,-136],[-52,-11],[-31,-42],[7,-21],[40,-15],[103,-334],[36,-32],[79,-25],[29,-249],[56,10],[32,-68],[32,-28],[-34,-72],[2,-33],[-67,-69],[31,-78],[-23,-19],[-42,3],[-77,47],[-11,25],[10,48],[-43,-5],[-146,37],[-67,55],[-78,13],[-63,68],[-60,-5],[-57,41],[-55,16],[-143,10],[-64,-42],[-54,-12],[-159,14],[12,-58],[-19,-35],[-162,-29],[-36,39],[9,35],[-16,26]],[[9089,10128],[99,15]],[[22349,19027],[3,273],[80,124],[39,-13],[5,17],[-20,52],[13,24],[-37,13],[-33,103],[27,6],[20,53],[47,-76],[76,-1],[89,-74],[55,12],[-7,87],[49,204],[106,18],[23,38],[43,21],[3,26],[41,-46],[-38,-49],[3,-25],[139,-98],[36,24],[48,-28],[18,47],[32,-40],[107,-27],[38,14],[137,2],[-19,-34],[69,-7],[-11,-27],[18,-18],[-24,-25],[-7,-37],[102,-80],[-1,-88],[406,-60],[23,-152],[-15,-123],[-74,-279],[-10,-149],[19,-165],[20,-46],[126,-118],[297,-147],[118,-108],[20,-44],[122,-130],[16,-74],[323,-332],[19,-35],[18,-160],[-37,-89],[-162,-69],[-136,-81],[-119,-18],[47,-60],[-21,-80],[24,-27],[-64,-29],[-101,19],[-8,-12],[32,-53],[4,-39],[25,-25],[-15,-66],[-13,12],[-23,-28],[-15,-75],[-29,-14],[-52,-63],[-62,24],[-19,-13],[-7,67],[27,33],[-8,45],[-20,1],[-32,-94],[-53,-36],[-22,-74],[62,-7],[36,-39]],[[13818,6983],[61,-22],[78,-109],[15,9],[20,-30],[3,20],[20,8],[97,-7],[42,51],[102,11],[61,35],[112,1],[83,-33],[56,31],[46,-13],[62,-85],[-23,-102],[20,-19],[119,-42],[59,17],[58,-80],[70,-11],[59,28],[63,-27],[7,-20],[50,-31],[-24,-62],[6,-41],[74,-60],[8,-70],[20,-21],[35,10],[35,-71],[32,-23],[17,-59],[136,13],[18,-12],[-22,-20],[33,-93],[57,-14],[94,10]],[[14747,3429],[-20,29],[-106,60],[-108,-118],[53,-55],[-33,-81],[-36,23],[-84,-56],[-21,-35],[-82,4],[-62,-58],[-19,-57],[6,-47],[-32,-21]],[[9365,3013],[-60,5],[-76,-25],[-21,10],[-9,-41],[-168,-68],[-34,-1],[-183,-85],[-30,-29],[-12,3],[0,79],[-28,-10],[-85,-68],[-75,-31],[13,-49],[-19,-15],[-122,-32],[-73,-2],[10,51],[-30,99],[-28,-29],[-86,-37],[-75,17],[-48,-50],[-5,21],[-102,10],[-26,89],[-35,-18],[-262,-10],[-47,-161],[-96,11],[-186,-24],[-120,22],[-41,-14],[-160,86],[-198,-22],[-7,24],[-26,-21],[-246,-48],[-15,20],[-75,-4],[-31,-30],[-81,8],[-133,-62],[-24,1],[-12,-25],[6,-68],[25,-17],[-14,-21],[-119,-50],[-42,23],[-31,-36],[-81,-50],[24,-27],[-29,-66],[-37,12],[-133,-41],[-146,33],[-31,-6],[-14,-20],[-135,-13],[-54,-24],[-28,10],[-159,-19],[-23,28],[-102,34],[-79,133],[-26,19],[-283,-11],[-57,69],[-167,102],[-89,116],[-15,146],[24,69],[-1,59],[-13,23],[-23,-6],[-9,20],[-61,-12],[-62,14],[-22,21],[4,23],[-82,22],[-86,54],[-76,94],[-132,12],[-75,52],[-90,-1],[13,54],[-29,56],[30,177],[69,55],[19,49],[144,41],[174,250],[73,-23],[72,24],[230,-13],[80,64],[84,27],[89,82],[96,5],[70,73],[24,68],[-24,55],[9,43],[-22,177],[88,78],[68,86],[106,15],[40,-32],[34,64]]],"transform":{"scale":[0.0001855507865527431,0.00016946222534363408],"translate":[83.331271,21.970758]},"objects":{"jharkhand_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6]],"type":"Polygon","properties":{"cartodb_id":200,"censuscode":349,"dt_cen_cd":4,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Giridih"}},{"arcs":[[7,8,9,10,11,12]],"type":"Polygon","properties":{"cartodb_id":209,"censuscode":366,"dt_cen_cd":21,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Gumla"}},{"arcs":[[13,14,15,16,-13,17,18]],"type":"Polygon","properties":{"cartodb_id":336,"censuscode":359,"dt_cen_cd":14,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Latehar"}},{"arcs":[[19,20,21,-14,22,23,24,25]],"type":"Polygon","properties":{"cartodb_id":424,"censuscode":358,"dt_cen_cd":13,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Palamu"}},{"arcs":[[26,27,28,29]],"type":"Polygon","properties":{"cartodb_id":435,"censuscode":368,"dt_cen_cd":23,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Pashchimi Singhbhum"}},{"arcs":[[-4,30,31,32,33]],"type":"Polygon","properties":{"cartodb_id":90,"censuscode":355,"dt_cen_cd":10,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Bokaro"}},{"arcs":[[[34,35,36,37,38,-15,-22,39],[40]],[[-20,41]]],"type":"MultiPolygon","properties":{"cartodb_id":110,"censuscode":347,"dt_cen_cd":2,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Chatra"}},{"arcs":[[42,43,44,45,46,47]],"type":"Polygon","properties":{"cartodb_id":162,"censuscode":362,"dt_cen_cd":17,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Dumka"}},{"arcs":[[-5,-34,48,49,50,51,-36,52]],"type":"Polygon","properties":{"cartodb_id":226,"censuscode":360,"dt_cen_cd":15,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Hazaribagh"}},{"arcs":[[-53,-35,53,-6]],"type":"Polygon","properties":{"cartodb_id":308,"censuscode":348,"dt_cen_cd":3,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Koderma"}},{"arcs":[[54,-43,55,56]],"type":"Polygon","properties":{"cartodb_id":422,"censuscode":353,"dt_cen_cd":8,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Pakur"}},{"arcs":[[57,58]],"type":"Polygon","properties":{"cartodb_id":455,"censuscode":357,"dt_cen_cd":12,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Purbi Singhbhum"}},{"arcs":[[59,60,-31,-3]],"type":"Polygon","properties":{"cartodb_id":146,"censuscode":354,"dt_cen_cd":9,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Dhanbad"}},{"arcs":[[-46,61,-1,62]],"type":"Polygon","properties":{"cartodb_id":141,"censuscode":350,"dt_cen_cd":5,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Deoghar"}},{"arcs":[[63,-23,-19,64,-25]],"type":"Polygon","properties":{"cartodb_id":194,"censuscode":346,"dt_cen_cd":1,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Garhwa"}},{"arcs":[[65,-56,-48,66]],"type":"Polygon","properties":{"cartodb_id":202,"censuscode":351,"dt_cen_cd":6,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Godda"}},{"arcs":[[-45,67,-60,-2,-62]],"type":"Polygon","properties":{"cartodb_id":251,"censuscode":363,"dt_cen_cd":18,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Jamtara"}},{"arcs":[[68,-30,69,-10,70]],"type":"Polygon","properties":{"cartodb_id":301,"censuscode":365,"dt_cen_cd":20,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Khunti"}},{"arcs":[[71,-8,-17]],"type":"Polygon","properties":{"cartodb_id":340,"censuscode":356,"dt_cen_cd":11,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Lohardaga"}},{"arcs":[[72,73,-51,74,-49,-33]],"type":"Polygon","properties":{"cartodb_id":473,"censuscode":361,"dt_cen_cd":16,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Ramgarh"}},{"arcs":[[75,76,-71,-9,-72,-16,-39,77,-37,-52,-74]],"type":"Polygon","properties":{"cartodb_id":475,"censuscode":364,"dt_cen_cd":19,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Ranchi"}},{"arcs":[[-57,-66,78]],"type":"Polygon","properties":{"cartodb_id":492,"censuscode":352,"dt_cen_cd":7,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Sahibganj"}},{"arcs":[[79,-58,80,-27,-69,-77]],"type":"Polygon","properties":{"cartodb_id":503,"censuscode":369,"dt_cen_cd":24,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Saraikela Kharsawan"}},{"arcs":[[-70,-29,81,-11]],"type":"Polygon","properties":{"cartodb_id":527,"censuscode":367,"dt_cen_cd":22,"st_cen_cd":20,"st_nm":"Jharkhand","district":"Simdega"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [16853, 14156], + [8, -82], + [56, -27], + [-41, -82], + [6, -26], + [63, -29], + [-6, -86], + [25, -69], + [44, -34], + [20, -56], + [87, -25], + [54, -260], + [-25, -24], + [29, -66], + [-24, -43], + [-6, -55], + [-41, -46], + [4, -90], + [-86, -184], + [141, -26], + [67, 51], + [113, -32], + [31, 19], + [113, -82] + ], + [ + [17485, 12802], + [-28, -4], + [-14, -26], + [-2, -48], + [-18, -21], + [-32, -125], + [-34, -34], + [-25, -115], + [-47, -48], + [-30, -73], + [-139, -39], + [-43, -32], + [-83, -2], + [-19, -57], + [3, -50], + [32, 20], + [0, -35], + [-85, -32] + ], + [ + [16921, 12081], + [-72, 25], + [-62, 47], + [-120, -2], + [-135, 63], + [-62, 109], + [-53, -3], + [-47, -46], + [-105, 28], + [-68, -19], + [-1, -56], + [-80, -42], + [43, -35], + [69, -18], + [1, -33], + [-78, -46], + [-68, -92], + [-55, -43], + [-11, -38], + [10, -36], + [-81, -189], + [15, -187], + [-71, 111], + [-91, -17], + [-115, 78], + [-103, 17], + [-51, -7], + [-81, 20], + [-248, -80], + [-79, 10], + [-39, -104], + [8, -37], + [-16, -13], + [-7, -48], + [-43, -49] + ], + [ + [15025, 11349], + [-36, -19], + [-96, -9], + [-233, 85], + [-105, -29], + [-75, 75], + [-44, -2], + [-174, -76], + [-95, 3], + [-33, 51], + [-19, 132], + [-27, 17], + [-76, -39], + [-1, 98], + [-61, 78] + ], + [ + [13950, 11714], + [53, -3], + [26, 83], + [-39, 53], + [-28, -4], + [-7, 19], + [-119, 63], + [-16, 122], + [-65, 47], + [4, 33], + [40, 48], + [-55, 3], + [-12, 23], + [-27, 1], + [-4, 44], + [-16, 24], + [-25, 4], + [11, 19], + [-12, 13], + [-45, -17], + [-37, 17], + [-30, 38], + [16, 24], + [-14, 11], + [-35, -16], + [-43, 47], + [-56, 27], + [-57, -48], + [-65, 10], + [-13, 10], + [23, 51], + [-172, 81], + [28, 62], + [-40, 12], + [-45, -32], + [-89, 12], + [-40, -31], + [-35, 18], + [-102, 13] + ], + [ + [12808, 12595], + [25, 111], + [-58, 67], + [-172, 123], + [48, 158], + [253, 77], + [25, 13], + [8, 47], + [139, 27], + [38, 37], + [42, -18], + [58, 16], + [53, 25], + [42, 66], + [91, -86], + [55, 36], + [87, 2], + [51, -39], + [19, 12], + [-24, 29], + [16, 103], + [-27, 77], + [-9, 17], + [-77, 11], + [-7, 26], + [127, 113], + [18, 53], + [52, 16], + [8, 61], + [-25, 80], + [-3, 96], + [-80, 3], + [-36, 70], + [1, 32], + [42, 89], + [-7, 59], + [-19, 21], + [24, 116], + [-17, 59], + [21, 54], + [-82, 55], + [-32, 101], + [2, 19], + [115, 111], + [71, 203], + [-14, 59], + [21, 82], + [-149, 121], + [-164, 30], + [-9, 30], + [-19, 7], + [11, 103], + [-66, 93], + [12, 69], + [37, 53], + [-73, -30], + [-20, 7], + [-101, 45], + [-15, 56], + [110, 152], + [27, 81], + [59, 46], + [47, 4], + [98, -37], + [70, 17], + [-21, 85], + [-18, 5], + [-36, 152], + [-33, 27], + [7, 81], + [89, 45], + [87, 4], + [16, 26], + [40, -23], + [62, 9], + [89, -25], + [10, 33], + [-29, 40], + [5, 34], + [53, 0], + [58, 45] + ], + [ + [13905, 16469], + [124, -123], + [123, -49], + [85, 1], + [35, 24], + [25, 66], + [122, 23], + [33, 84], + [19, 13], + [54, -1], + [44, 15], + [36, 35], + [87, 20], + [13, -105], + [-62, -82], + [-30, -3], + [17, -36], + [115, 38], + [14, 23], + [126, -31], + [123, -83], + [9, -48], + [72, -111], + [50, -175], + [-42, -28], + [14, -29], + [-12, -69], + [-43, -72], + [39, -178], + [28, -17], + [13, -31], + [61, -3], + [42, -20], + [25, -62], + [47, -33], + [157, 10], + [112, 35], + [10, 121], + [114, -88], + [53, -68], + [49, -12], + [35, -43], + [12, 36], + [57, -46], + [-17, 50], + [101, 20], + [94, -26], + [12, 25], + [57, -11], + [-1, -20], + [-22, -10], + [5, -26], + [-61, -52], + [9, -15], + [-31, -28], + [31, -65], + [-46, -91], + [11, -25], + [23, -8], + [26, -105], + [-48, -60], + [-52, -129], + [-45, 2], + [-34, -87], + [117, -31], + [-7, -46], + [22, -25], + [64, -5], + [21, -22], + [153, 2], + [15, 19], + [121, -164], + [137, -92], + [91, -124], + [100, -14], + [65, -49], + [32, 1] + ], + [ + [5754, 9639], + [234, -91], + [19, 28], + [39, 12], + [-6, -62], + [60, -15], + [43, -39], + [-49, -246], + [41, -79], + [2, -134], + [26, -76], + [-58, -103], + [-86, -70], + [-31, -67], + [-99, -107], + [124, -136], + [26, -3], + [63, 30], + [65, -26], + [30, -51], + [-42, -45], + [-3, -102], + [36, -58], + [111, -46], + [13, 115], + [58, 72], + [36, -13], + [4, -71], + [30, -24], + [66, -102], + [37, -17], + [65, 14], + [51, -9], + [124, -144], + [98, -31], + [39, 27], + [73, -73], + [38, -10], + [48, 6], + [34, 22], + [44, -16], + [28, 37], + [36, 4], + [20, 23], + [56, -17], + [40, -45], + [101, 13], + [26, 52], + [106, 65], + [53, -2], + [45, -58], + [94, -12], + [85, 10], + [30, -53], + [-33, -171], + [13, -19], + [128, 20], + [25, 64], + [114, 18], + [71, 110], + [67, 1], + [56, -30], + [125, 53] + ], + [ + [8443, 7962], + [71, 40], + [50, -39], + [33, -55], + [-130, -150], + [-15, -144], + [85, -37], + [-15, -27], + [7, -38], + [200, -92], + [1, -51], + [-30, -57], + [-32, -7], + [-17, -36], + [-121, -46], + [4, -17], + [58, -28], + [-25, -110], + [-113, 23], + [-28, -19], + [-46, -172], + [25, -60], + [-2, -74], + [50, -49], + [-26, -60], + [-128, -6], + [-10, -23], + [38, -101], + [5, -54], + [144, -74], + [4, -42], + [38, -33], + [32, -81], + [64, -8], + [13, 10], + [-3, 29], + [22, -6], + [44, -48], + [-25, -55], + [19, -24] + ], + [ + [8684, 6141], + [19, -29], + [3, -41], + [-22, -28], + [23, -176], + [29, -14], + [112, 26], + [67, -16], + [32, -20], + [76, -94], + [51, 13], + [4, -24], + [-14, -59], + [17, -33], + [-26, -86], + [-10, -8], + [-1, 38], + [-43, 30], + [-30, 7], + [-28, -15], + [-47, -145], + [49, -9], + [-17, -158], + [80, -174], + [-2, -45], + [31, -90], + [-4, -77], + [-120, -24], + [-33, -84] + ], + [ + [8880, 4806], + [-55, -18], + [-59, -43], + [-31, 3], + [-102, 89], + [-54, -52], + [-17, -83], + [-38, -41], + [-60, -21], + [-21, -50], + [-77, -40], + [-32, 18], + [-16, 46], + [-60, 26], + [-16, 38], + [-71, 35], + [-19, -17], + [3, -87], + [73, -119], + [0, -51], + [-12, -20], + [-31, 9], + [-80, 61], + [-22, 60], + [-37, 31], + [-25, -9], + [-19, -34], + [23, -156], + [-30, -26], + [-78, 15], + [-17, 34], + [-43, 27], + [30, 191], + [-3, 102], + [-26, -3], + [-11, -18], + [-10, -55], + [-38, 25], + [-8, 107], + [26, 58], + [-88, -3], + [-177, 65], + [-38, -63], + [-35, -23], + [1, -26], + [20, 3], + [33, -57], + [-20, -51], + [-77, 8], + [-43, -19], + [-36, -122], + [-93, -35], + [-46, 11], + [-28, -54], + [-31, -4], + [-31, 26], + [-17, 39], + [-23, -37], + [-49, -16], + [-162, -1], + [-8, -46], + [-67, -58], + [-33, 8], + [-71, 72], + [-79, 18], + [49, 90], + [-32, 14], + [-77, 96], + [-41, -12], + [-15, -94], + [-35, -12], + [-3, -22], + [-74, 95], + [23, 28], + [32, 5], + [32, 27], + [89, 8], + [23, 21], + [19, 44], + [-9, 58], + [-28, 24], + [-97, -2], + [-26, 22], + [-131, 4], + [8, 153], + [-159, 66], + [-97, 16], + [-34, -24], + [1, -111], + [-59, -34], + [-58, 16], + [25, -60], + [-2, -42], + [-65, -80], + [-31, -93], + [-21, 3], + [-53, 61], + [-62, -9], + [9, -30], + [-60, -30], + [-40, -53], + [-113, 45], + [-12, -9], + [25, -53], + [-24, -24], + [-60, 1], + [-67, 95], + [-177, 62] + ], + [ + [5192, 4733], + [14, 95], + [71, 67], + [35, 3], + [14, 67], + [28, 40], + [14, 191], + [49, 59], + [69, -2], + [30, 23], + [54, -14], + [65, 23], + [8, 45], + [24, 8], + [13, 115], + [-9, 27], + [-31, 23], + [83, 90], + [19, 40], + [-4, 89], + [-53, 60], + [-15, 102], + [-31, 52], + [-121, 4], + [-25, -12], + [-63, 32], + [-36, 1], + [-99, -70], + [-94, -34], + [-58, -3], + [-52, 105], + [14, 58], + [-111, -103], + [-50, 8], + [-22, 44], + [-110, -23], + [-28, 59], + [-81, 104], + [16, 65], + [-9, 23], + [-44, 28], + [-72, -19], + [-22, -79], + [7, -40], + [-28, -32], + [14, -105], + [-18, -36], + [-72, -39], + [-35, -3], + [-24, 66], + [3, 77], + [-110, 285], + [6, 100], + [37, 82], + [-13, 83], + [-15, 21], + [-76, 12], + [-40, 71], + [-92, 61], + [-114, -15], + [-28, 17], + [-46, 86], + [-91, 62], + [-38, 111], + [55, 145], + [91, 106], + [12, 42], + [-32, 75], + [9, 105], + [-20, 40], + [47, 244], + [25, 59], + [-20, 93], + [55, 129] + ], + [ + [4021, 8026], + [109, -11], + [24, 47], + [75, 30], + [16, 48], + [52, -33], + [23, 2], + [47, -43], + [284, -78], + [41, 66], + [136, 27], + [90, 49], + [45, 122], + [46, 53], + [-43, 172], + [19, 85], + [-38, 107], + [15, 68], + [138, 91], + [40, 55], + [31, 99], + [78, -53], + [65, -5], + [2, 55], + [50, 12], + [-9, 135], + [18, 63], + [-12, 135], + [-39, 164], + [118, 39], + [17, 18], + [-16, 65], + [97, 56], + [92, -22], + [31, 15], + [61, -25], + [30, 5] + ], + [ + [3704, 10769], + [37, 19], + [43, -41], + [29, 13], + [12, 62], + [71, 53], + [-18, 95], + [47, 46], + [20, 72], + [37, 45], + [98, 23], + [143, 194], + [124, 37], + [41, 108], + [-30, 141], + [210, -51], + [86, -46], + [28, -61], + [70, 1], + [10, -59], + [45, -1], + [8, 34], + [36, 5], + [60, 70], + [59, 3], + [-7, -53], + [-53, -100], + [8, -80], + [49, 50], + [1, 23], + [172, 33], + [46, 72], + [116, -55], + [102, 24], + [-11, 57], + [17, 15], + [49, 170], + [89, -54], + [219, -51], + [88, 81], + [113, 6], + [47, 74], + [23, 4], + [42, -47], + [50, 7], + [1, -35], + [49, -65], + [6, -36], + [-6, -28], + [-37, -4], + [-8, -53], + [61, -53], + [19, -81], + [65, 30], + [-2, -36], + [67, 31], + [89, 11], + [-33, 119], + [60, 42], + [186, -2], + [41, 53], + [-16, 42], + [9, 79], + [84, 83], + [9, 47], + [-14, 43] + ], + [ + [6760, 11894], + [40, 2], + [31, -21], + [41, 38], + [50, -41], + [37, 5], + [37, -19], + [94, 147], + [44, 10], + [58, -34], + [27, 4], + [26, 16], + [71, 112], + [67, -5], + [57, 25], + [-11, 73], + [58, 31], + [49, -21], + [72, 42], + [20, -50], + [41, 10], + [-12, -54], + [36, -30], + [24, -63], + [37, -45], + [-54, -134], + [21, -48], + [27, -7], + [-52, -57], + [68, -7], + [43, 21], + [138, 2], + [53, 58], + [55, 22], + [-2, -72], + [28, -81], + [84, 45], + [97, -57], + [109, -19], + [28, -55], + [91, 43], + [91, 3], + [65, -93], + [-27, -45], + [-18, -91], + [43, -8], + [29, -28], + [51, -143], + [0, -42], + [-83, -46], + [-26, -48], + [74, -33], + [25, -62], + [0, -79], + [-17, -27], + [2, -128], + [-148, 10], + [-30, -15], + [-24, -30], + [-24, -128], + [134, -42], + [4, -99], + [53, -131], + [124, -45], + [-2, -55], + [14, 11] + ], + [ + [8798, 10286], + [10, -42], + [-19, -66], + [-69, 35], + [-77, -63], + [4, -56], + [-68, -71], + [7, -31], + [-27, -67], + [16, -38], + [106, -59], + [4, -23], + [15, -145], + [-67, -212], + [16, -54], + [-8, -74], + [-57, 15], + [-19, -41], + [-47, -16], + [-18, 210], + [-14, 17], + [-21, -19], + [-29, -115], + [-55, -7] + ], + [ + [8381, 9364], + [-52, 0], + [-21, -77], + [-35, -22], + [-32, 5], + [-36, -50], + [-172, 63], + [-6, 145], + [-95, -35], + [-15, 19], + [5, 63], + [-18, 5], + [-19, -38], + [-8, -152], + [-42, 3], + [-20, 50], + [20, 102], + [-61, 19], + [-4, 33], + [-29, 15], + [-24, 105], + [-26, 26], + [-71, 29], + [-7, 100], + [-45, 69], + [-41, 0], + [-9, -84], + [-31, -38], + [-214, -81], + [-8, 78], + [-82, 50], + [-27, 129], + [-96, 117], + [-151, -54], + [-63, 57], + [-60, -16], + [4, -63], + [-42, -223], + [-95, -14], + [-64, 84], + [6, 81], + [-89, 151], + [-59, 2], + [-120, 47], + [-47, -17], + [-33, -59], + [-79, -10], + [-31, -27], + [-50, -91], + [14, -82], + [-32, 2], + [-82, 51], + [-39, -27], + [-78, 8], + [-45, 38], + [-87, -13], + [7, -135], + [17, -34], + [-8, -29] + ], + [ + [4021, 8026], + [-52, 77], + [-57, 51], + [-35, 106], + [20, 9], + [-20, 16], + [-92, 17], + [-30, -8], + [-77, -134], + [-126, 40], + [-87, 86], + [4, 110], + [46, 86], + [17, 113], + [-52, 124], + [-1, 45], + [52, 31], + [29, 88], + [68, 104], + [62, 38], + [19, 50], + [3, 75], + [53, 138], + [8, 257], + [-9, 56], + [-53, 48], + [-58, 88], + [10, 35], + [22, 13], + [-3, 22] + ], + [ + [3682, 9807], + [126, 118], + [79, 40], + [44, 108], + [8, 33], + [-11, 21], + [51, 30], + [-62, 34], + [-37, -27], + [-64, 15], + [-69, -8], + [-89, 67], + [-87, 20], + [-48, 88], + [12, 45], + [36, 38], + [69, 26], + [7, 94], + [82, 104], + [2, 21], + [-34, 55], + [7, 40] + ], + [ + [6134, 13848], + [34, -73], + [55, -14] + ], + [ + [6223, 13761], + [46, 12], + [9, -16], + [-24, -31], + [50, -58] + ], + [ + [6304, 13668], + [-83, -64], + [17, -70], + [-122, -30], + [37, 39], + [-7, 12], + [-25, -15], + [-51, 14], + [-7, -39], + [-62, -103], + [20, -27], + [135, -61], + [-2, -109], + [83, -53], + [176, -10], + [42, 44], + [41, -23], + [4, -25], + [-48, -45], + [54, -121], + [36, -16], + [37, -88], + [152, -69], + [-43, -138], + [-40, -12], + [-59, -75], + [51, -151], + [62, -43], + [-58, -108], + [-57, -15], + [4, -36], + [55, -62], + [-42, -36], + [-14, -62], + [27, -81], + [62, -105], + [81, 9] + ], + [ + [3704, 10769], + [-89, -8], + [-16, 32], + [6, 85], + [-13, 31], + [-161, 132], + [-64, 78], + [-119, 46], + [4, 211], + [27, 124], + [-16, 17], + [-54, 0], + [-22, 74], + [-18, -12], + [-24, 16], + [9, 33], + [-51, 43], + [-12, 62], + [-50, 50], + [-4, 53], + [-27, 28], + [-65, 19], + [-39, -7], + [-30, -90], + [4, -89], + [-173, -29], + [-80, 52], + [-1, 23], + [60, 9], + [27, 20], + [29, 130], + [-46, 31], + [-23, 51], + [66, 83], + [38, 98], + [86, 58], + [24, 163], + [104, 57], + [47, 51], + [69, 10], + [19, 20], + [31, -1], + [16, -25], + [102, 68], + [71, -37], + [49, 103], + [98, -51], + [29, -3], + [32, 22], + [-7, 35], + [-65, 71], + [4, 66], + [-43, 99], + [-213, 93], + [-138, 129] + ], + [ + [3092, 13093], + [-29, 23] + ], + [ + [3063, 13116], + [-103, 97], + [-148, 248], + [-92, 132], + [-94, 101], + [4, 63], + [49, 52], + [24, 66], + [-18, 52], + [-85, 131], + [-2, 54], + [42, 94], + [130, 94], + [56, 81], + [13, 142], + [-21, 207], + [5, 154], + [112, 230] + ], + [ + [2935, 15114], + [326, 89], + [156, 167], + [80, 120], + [107, 244], + [121, -37], + [5, -24], + [46, 9], + [49, -60], + [27, 2], + [46, -41], + [-10, -32], + [16, -2], + [28, -70], + [-1, -40], + [45, 9], + [7, -33], + [-15, -40], + [68, -44], + [32, -144], + [61, -66], + [-17, -113], + [14, -62], + [63, -96], + [48, -38], + [69, 31], + [12, 68], + [82, 39], + [-20, 145], + [52, 64], + [79, -12], + [20, -27], + [-46, -55], + [-12, -40], + [41, -29], + [98, -13], + [38, 71], + [-22, 7], + [-51, 108], + [0, 30], + [76, 13], + [7, 35], + [63, 11], + [3, -45], + [31, -24], + [14, -48], + [46, -12], + [18, 89], + [77, 17], + [-4, -56], + [37, -2], + [38, -27], + [1, -42], + [47, -5], + [7, 41], + [23, -3], + [11, 20], + [25, 5], + [-4, 32], + [52, 4], + [10, 26], + [-45, 12], + [-14, 61], + [128, 10], + [24, -16], + [25, -95], + [40, -45], + [18, -75], + [34, -26], + [39, -116], + [-25, -76], + [-149, -53], + [-48, -88], + [43, -89], + [118, -19], + [82, -96], + [1, -16], + [-16, -5], + [-44, 9], + [-23, -34], + [17, -19], + [36, 20], + [15, -8], + [-10, -67], + [65, -57], + [-11, -32], + [104, -28], + [33, -25], + [32, 1], + [35, 24], + [45, -8], + [16, -60], + [37, -22], + [31, 10], + [11, -16], + [-26, -41], + [149, -50], + [-28, -164], + [148, 17], + [10, 32], + [42, -6], + [40, -124] + ], + [ + [11779, 4944], + [110, -9], + [22, 77], + [50, 17], + [45, -11], + [54, 63], + [218, -39], + [67, 133], + [145, 10], + [10, -29], + [41, -20], + [41, -66], + [62, -28], + [29, -44], + [62, -1], + [42, -60], + [-28, -114], + [14, -83], + [32, -70], + [72, -39], + [-14, -60], + [-26, -17], + [-100, 16], + [-29, -28], + [-21, -68], + [76, -98], + [36, -98], + [122, -62], + [40, 32], + [52, 13], + [19, 35], + [24, 11], + [127, -12], + [11, 61], + [61, -14], + [41, 19], + [-3, 21], + [-18, -1], + [6, 20], + [73, -22], + [96, 44], + [76, -66], + [30, 0], + [48, 84], + [64, -71], + [0, -29], + [-30, -37], + [31, -29], + [15, -48], + [-30, -148], + [71, -160], + [-45, -80], + [18, -23], + [68, 8], + [52, -53], + [91, -38], + [-42, -80], + [-10, -57], + [-128, -59], + [-9, -47], + [47, -36], + [32, 8], + [26, -12], + [69, -66], + [-44, -105], + [58, -38], + [9, -44], + [87, -75], + [209, -105] + ], + [ + [14203, 3017], + [-39, -134], + [42, -19], + [30, -68], + [140, -112], + [85, 13], + [26, -120], + [-7, -29], + [31, -34], + [-3, -42], + [22, -26], + [-2, -40], + [-15, -20], + [-13, 9], + [5, -64], + [-58, -79], + [-72, -62], + [30, -42], + [34, 27], + [50, -7], + [35, -30], + [-79, -80], + [14, -35], + [15, 4], + [35, -35], + [38, -3], + [19, 21], + [22, -15], + [37, 21], + [22, -15], + [-18, -16], + [-52, -3], + [-16, -21], + [-102, -40], + [-44, -49], + [10, -17], + [-25, -36], + [-66, -48], + [1, -57], + [-19, -32], + [-65, -51], + [8, -30], + [35, -16], + [81, -118], + [132, -99], + [50, -80], + [-64, -74], + [-18, -88], + [-65, -75], + [-1, -46], + [-25, -31], + [9, -66], + [34, -45], + [-11, -24], + [-115, -151], + [-20, -68], + [-177, -310], + [-21, -15], + [-53, 16], + [-89, -86], + [4, -48], + [-31, -91], + [11, -33], + [-26, -17], + [8, -27], + [-17, -9], + [-47, 69], + [-16, 1], + [-50, -21], + [-223, 9], + [-119, -38], + [-15, 8], + [-1, 51], + [-78, 10], + [-89, -18], + [-127, 65], + [-25, 110], + [14, 37], + [91, 80], + [18, 47], + [-46, 89], + [94, 152], + [143, -42], + [88, 41], + [-31, 60], + [-51, 33], + [-37, -5], + [35, 42], + [-2, 18], + [-68, 51], + [-124, -102], + [-115, -50], + [-63, -89], + [-128, -69], + [-95, -23], + [-90, 10], + [-35, -43], + [-51, 16], + [2, 49], + [-26, 8], + [-123, 172], + [-25, -1], + [-74, -62], + [-82, -16], + [-20, 29], + [-30, -32], + [-58, -12], + [-107, 69], + [-59, -7], + [-31, 35], + [-80, -25], + [-33, 60], + [-100, 67], + [-156, 49], + [-156, 114], + [-251, 119], + [-85, 15], + [-50, -37], + [-32, -4], + [-53, 21], + [-34, -4], + [-1, -48], + [-26, -50], + [18, -97], + [-43, -6], + [-44, 38], + [-120, -11], + [-42, -55], + [-82, -51], + [-140, -159], + [-178, -398], + [-54, -73], + [-47, 19], + [-40, 43], + [-1, 156], + [-21, 35], + [-147, 69], + [-23, 58], + [-36, 20], + [-44, -17], + [35, -101], + [-38, 28], + [-44, 103], + [-79, 19], + [-119, -42], + [-53, 80], + [-50, 26], + [-4, 68], + [-19, 20], + [-61, 6], + [-79, 39], + [-138, 21], + [-47, -15], + [-43, -41], + [-38, 13], + [-32, -57], + [-27, -18], + [-10, -45], + [-106, -37], + [-42, 47], + [4, 39], + [233, 122], + [40, 149], + [-31, 98], + [120, 120], + [10, 29], + [-14, 39], + [122, 264], + [-8, 75], + [34, 44], + [-24, 56], + [3, 70], + [187, 111], + [50, -3], + [2, 58], + [-15, 28], + [11, 53], + [-102, -10], + [-39, 10], + [-11, 17], + [25, 46], + [13, 96], + [-58, 1], + [-44, 43], + [5, 73], + [44, 103], + [-31, 176], + [-74, 87], + [-4, 76], + [-25, 21], + [-6, 30], + [75, 66], + [14, 64], + [-2, 36], + [-58, 33] + ], + [ + [9365, 3013], + [39, 61], + [27, 151], + [-14, 43], + [-63, 79], + [31, 44], + [-14, 88], + [55, 61] + ], + [ + [9426, 3540], + [65, 23], + [26, 124], + [-35, 58], + [-71, 51], + [-1, 16], + [80, 93], + [26, 106], + [102, 44], + [23, 153], + [21, 23], + [-6, 123], + [49, 47], + [-12, 114], + [70, 12], + [23, 41], + [-36, 40], + [3, 155], + [42, 167], + [62, 91], + [-20, 13], + [31, 50], + [34, 14], + [78, -58], + [61, -6], + [-24, -56], + [7, -14], + [26, 2], + [10, 32], + [14, -20], + [84, 57], + [67, 81], + [114, -18], + [50, 70], + [39, -5], + [14, 83], + [27, 13], + [12, -9], + [37, 58], + [19, -8], + [7, 19], + [10, -11], + [51, 28], + [36, -4], + [38, 59], + [46, -21], + [115, 25], + [6, -32], + [70, -6], + [7, -43], + [81, -54], + [68, 17], + [21, -11], + [12, -50], + [-19, -50], + [11, -29], + [96, 15], + [67, -72], + [64, 21], + [31, -36], + [13, -44], + [46, -20], + [48, -98], + [71, -11], + [61, 28], + [119, -24], + [66, 48] + ], + [ + [15025, 11349], + [-24, -31], + [18, -18], + [25, 10], + [-18, -41], + [17, -31], + [-9, -38], + [38, -13], + [19, -26], + [50, -9], + [-7, -39], + [23, -38], + [-29, -38], + [36, -63], + [98, -7], + [13, -95], + [-18, -64], + [19, -76], + [51, -34], + [3, -51], + [57, -41], + [-12, -29], + [26, -20], + [9, -71], + [-15, -28], + [3, -53], + [-43, -38], + [-46, 3], + [176, -93], + [108, -29], + [184, 3], + [220, -24], + [390, -11], + [80, -157], + [58, -44], + [135, -54], + [22, -109], + [98, -110] + ], + [ + [16780, 9742], + [4, -63], + [-67, 8], + [-14, -33], + [-77, -40], + [-22, -59], + [-91, 4], + [-13, -20], + [-33, -6], + [11, -72], + [-44, -21], + [-9, -42], + [-44, -25], + [-4, -34], + [-34, -49], + [14, -27], + [-5, -46], + [43, -48], + [-13, -42], + [-44, -15], + [-18, -97], + [27, -40], + [18, 13], + [46, -9], + [7, -45], + [-88, -7], + [-35, -53], + [15, -52], + [-75, -15], + [14, -51], + [-49, -31], + [-28, 61], + [-140, -82], + [30, -44], + [35, 7], + [11, -54], + [-77, -48], + [-95, 43], + [-21, 81], + [-60, -7], + [-19, -20], + [-61, 6], + [-31, -20], + [34, -55], + [-35, -33], + [-18, 2], + [-18, 18], + [-2, 53], + [-45, -12], + [-35, 36], + [15, 82], + [42, 38], + [19, 80], + [-72, 1], + [-7, -74], + [-16, -7], + [-96, 15], + [-20, 32], + [-42, 2], + [-27, 23], + [-43, -3], + [2, 43], + [-36, 20], + [-24, -14], + [-81, 5], + [-40, -23], + [-15, 25], + [13, 98], + [54, 60], + [-3, 88], + [-62, 49], + [7, 46], + [29, 35], + [19, 62], + [-38, 41], + [12, 31], + [-20, 23], + [-33, 13], + [-37, -22], + [-27, 3], + [-39, 42], + [-50, -19], + [-46, 19], + [-74, -37], + [-81, 4], + [-8, 60], + [-32, 13], + [-76, -11], + [-24, 30], + [-51, -3], + [-11, -49], + [-55, -16], + [-40, -52], + [-36, -14], + [-1, -56], + [55, -37], + [-14, -18], + [77, -144], + [0, -77], + [97, -19], + [-19, -47], + [-32, -20], + [-113, -14], + [-79, -31], + [-59, -42], + [-23, 5], + [-80, -33], + [-122, -66], + [-17, -25], + [-32, -4], + [-142, 45], + [-60, 56], + [-81, 24], + [-74, 0] + ], + [ + [13756, 8893], + [31, 41], + [-22, 8], + [7, 14], + [-49, 51], + [-40, 8], + [-14, 27], + [-36, 7], + [-66, -25], + [-50, 21], + [13, 103], + [-58, 23], + [-39, 61], + [16, 21], + [62, 20], + [12, 41], + [12, 2], + [-9, 25], + [-32, 47], + [-105, 6], + [-30, 158], + [-63, 104], + [-28, -9], + [6, 44], + [-26, 11], + [22, 39], + [-117, 109], + [9, 120], + [-29, 64], + [-21, 13], + [-17, -3], + [-49, -149], + [-59, -44], + [-68, -15], + [-49, -104], + [-42, -11], + [-62, 67], + [-40, -24], + [-45, 36], + [-20, -7], + [-8, -57], + [-26, -5], + [-24, -39], + [-19, 3], + [0, -51], + [-59, -84], + [-112, 54], + [-42, 68], + [-57, 25], + [-1, 302], + [13, 44], + [-42, 71], + [52, 56], + [8, 58], + [-4, 125], + [-24, 28], + [1, 104], + [72, 28], + [65, 86], + [41, 27], + [5, 102], + [24, 35], + [-8, 50], + [-66, 1], + [-35, -109], + [-71, -44], + [-48, 7], + [-14, 45], + [-69, 71], + [-13, 49], + [22, 38], + [-37, 100], + [-48, 21], + [34, 56], + [149, 65], + [7, 34], + [-31, 68], + [12, 84], + [252, 182], + [-25, 24], + [-1, 25], + [-53, 40] + ], + [ + [12481, 11580], + [13, 43], + [64, -6], + [56, 22], + [15, 49], + [-32, 38], + [42, 10], + [15, 53], + [31, -19], + [36, 7], + [53, -33], + [-5, -23], + [-46, -6], + [-24, -41], + [5, -30], + [87, -133], + [40, -34], + [32, 4], + [10, -63], + [19, -10], + [23, 67], + [36, 40], + [53, 27], + [0, 37], + [17, 6], + [31, -32], + [79, -12], + [12, -16], + [-12, -80], + [62, -58], + [40, 0], + [12, -83], + [80, -42], + [-15, -32], + [46, -84], + [-9, -78], + [54, -45], + [-6, -30], + [93, -9], + [24, -15], + [50, 64], + [88, 58], + [22, 92], + [110, 178], + [15, 91], + [-26, 14], + [-4, 19], + [15, 81], + [-22, 63], + [17, 47], + [32, 30], + [38, -5], + [75, -49], + [-4, 48], + [32, 14] + ], + [ + [9467, 14223], + [-21, -57], + [13, -67], + [67, -84], + [21, -57], + [37, 25], + [122, -23], + [39, 28], + [-9, 117], + [44, 7], + [42, -5], + [57, -34], + [17, -55], + [85, -12], + [70, -64], + [24, 4], + [37, 61], + [133, 40], + [273, -51], + [85, 21], + [168, -109], + [120, -38], + [-49, -50] + ], + [ + [10842, 13820], + [-21, -12], + [-19, 11], + [-14, 35], + [-42, 6], + [-13, -22], + [18, -72], + [-33, -12], + [-7, -161], + [-23, -33], + [10, -18], + [-16, -46], + [-62, -58], + [-10, -21], + [13, -55], + [-30, -22], + [27, -28], + [6, -41], + [-2, -47], + [-14, -9], + [-59, -1], + [-20, 41], + [-87, 51], + [-104, -4], + [-79, 45], + [-123, -12], + [-82, 41], + [-145, -2], + [-54, 21], + [-67, -88], + [-12, -62], + [-30, -31], + [44, -109], + [-29, -135], + [45, -4], + [43, -111], + [67, -88], + [-35, -35], + [18, -4], + [9, -14], + [-13, -13], + [21, -9], + [1, -64], + [100, -39], + [74, -60], + [124, -41], + [75, -55], + [31, -74], + [-13, -71], + [36, -152], + [-117, -39], + [-28, -118], + [-48, -32], + [-10, -54], + [-57, -79], + [3, -66], + [-84, -72], + [-86, 34], + [-106, 8], + [-32, -11], + [-56, 53], + [7, 24], + [-23, 26], + [-47, 27], + [-27, 6], + [-12, -13], + [-51, 28], + [-60, -6], + [-70, -96], + [-57, 13], + [31, 62], + [-1, 39], + [-21, 30], + [-152, 5], + [-59, -21], + [-15, -42], + [6, -57], + [105, -25], + [12, -34], + [-85, -83], + [24, -56], + [-22, -29], + [33, -31], + [-8, -34], + [-99, 2], + [-43, -94], + [23, -38], + [5, -58], + [60, -36], + [-32, -77], + [5, -30], + [124, -102], + [35, -62], + [-7, -26], + [-58, 7], + [1, -80], + [-16, -13], + [28, -174], + [-20, -53], + [16, -166], + [69, -58], + [12, -34], + [-18, -10], + [-47, 28], + [-31, -18], + [22, -15], + [4, -27], + [22, -9], + [-5, -66] + ], + [ + [9283, 10284], + [-67, -60], + [-28, -81] + ], + [ + [9188, 10143], + [-99, -15] + ], + [ + [9089, 10128], + [-32, 34], + [-25, -86], + [-52, 18], + [-53, 131], + [-63, 25], + [-19, 41], + [-47, -5] + ], + [ + [6304, 13668], + [18, 33], + [29, 11], + [5, 123], + [40, 11], + [37, 97], + [43, 34], + [-33, 38], + [-3, 43], + [49, 69], + [-34, 67], + [109, 3], + [22, -18], + [107, 60], + [-36, 78], + [34, 61], + [38, 29], + [41, -12], + [9, -53], + [44, 18], + [60, -20], + [118, 17], + [32, -22], + [158, -38], + [26, 100], + [26, 14], + [-9, 107], + [42, 59], + [27, 89], + [82, 33], + [67, 62], + [34, -22], + [65, 26], + [81, 90], + [11, 48], + [204, 50], + [20, 76], + [63, 69], + [34, -49], + [96, 22], + [71, -79], + [-30, -244], + [34, -3], + [-15, -61], + [20, -39], + [41, 17], + [30, 62], + [53, -31], + [-2, -18], + [15, -6], + [17, 6], + [24, 55], + [69, -24], + [-13, -237], + [76, -142], + [34, -28], + [12, -69], + [-33, -42], + [20, -17], + [147, 35], + [121, -37], + [112, 25], + [118, 214], + [109, 22], + [115, 55], + [40, -7], + [15, -34], + [59, -19], + [23, 8], + [38, 83], + [63, 55], + [-9, -185], + [-23, -19], + [3, -33], + [-29, -76], + [82, -35] + ], + [ + [6304, 13539], + [33, -11], + [21, 31], + [-33, 79], + [-20, 9], + [-24, -39], + [23, -69] + ], + [ + [6134, 13848], + [85, -9], + [72, 81], + [34, 26], + [18, -10], + [-10, -50], + [-99, -69], + [-11, -56] + ], + [ + [21958, 14960], + [65, 3], + [46, 45], + [119, 17], + [26, 26], + [38, -10], + [96, 27], + [35, 25], + [85, -19], + [199, -107], + [57, 63], + [92, 18], + [51, -93], + [-18, -28], + [-21, -136], + [16, -46], + [0, -304], + [20, -224], + [83, -328], + [-25, -390], + [106, -13], + [114, 11], + [116, -39] + ], + [ + [23258, 13458], + [-33, -44], + [40, -73], + [-29, -109], + [82, -32], + [97, -2], + [40, -86], + [57, -36], + [19, 6], + [23, -63], + [-2, -49], + [-17, -16], + [-20, -86], + [-50, -11], + [-125, 47], + [-60, -12], + [-99, 54], + [-61, 10], + [-64, -4], + [-47, -25], + [-85, 10], + [-56, -35], + [90, -48], + [116, -109], + [-39, -21], + [-101, -12], + [-21, -76], + [-46, -22], + [8, -67], + [29, -59], + [-32, 13], + [-75, -31], + [-92, 32], + [-44, 42], + [-6, 44], + [-46, 11], + [-24, 40], + [-34, -4], + [-91, 29], + [18, -94], + [-43, -65], + [6, -16], + [85, -20], + [-25, -52], + [-62, -1], + [-4, -21], + [28, -41], + [-16, -62], + [89, -38], + [15, -35], + [-46, -68], + [-3, -34], + [-55, 6], + [-46, -58], + [-61, -16], + [-123, 32], + [-79, -47], + [69, 0], + [-29, -30], + [92, -58], + [-2, -71], + [-49, 17], + [-53, -36], + [-53, 22], + [-16, 50], + [-41, -6], + [-99, 27], + [-56, 47], + [-179, 43], + [-46, -79], + [-130, 7], + [-46, 44], + [2, 16], + [26, 12], + [20, 48], + [44, 1], + [16, 37], + [-16, 42], + [-101, 8], + [-54, -17], + [-76, 5], + [-37, -20], + [-210, 90], + [-30, -5], + [-18, -23], + [-11, -76] + ], + [ + [21055, 12129], + [-86, -6], + [-279, 41], + [-87, 60], + [-95, 18], + [-107, 120], + [-62, 173], + [-31, 26], + [11, 39], + [-102, -1], + [-106, 73], + [-58, 89], + [-125, 62], + [-29, 29], + [17, -65], + [-27, -53], + [-131, -14], + [-66, 13], + [-17, -18], + [-13, -95] + ], + [ + [19662, 12620], + [-84, 35], + [-9, 80], + [-96, 49], + [-54, 9], + [38, 188], + [62, -6], + [58, 84], + [74, 15], + [3, 90], + [-29, 69], + [37, 40], + [227, -63], + [32, -34], + [53, -9], + [49, -39], + [47, 53], + [-28, 89], + [35, 51], + [18, 63], + [55, 53], + [6, 31], + [-142, 54], + [-24, 23], + [-32, 87], + [9, 173], + [-58, 93], + [-201, -115], + [-46, 24], + [-60, 8], + [-33, 31], + [7, 223], + [-55, 23], + [-88, 4], + [-38, 81], + [11, 34], + [-35, 25], + [-2, 59], + [61, 48], + [28, 107], + [-30, 11], + [-21, -23], + [-44, 10], + [-17, -36], + [-36, -23], + [-74, 29], + [-38, 59], + [24, 11], + [-23, 35], + [-44, -22], + [23, 156], + [52, 74], + [76, 163], + [-8, 159], + [27, 106] + ], + [ + [19325, 15159], + [-21, 28], + [-5, 118], + [-27, 20], + [10, 28], + [-28, 53], + [1, 35], + [59, 62], + [48, 81], + [5, 51], + [27, 29], + [55, 13], + [10, 23], + [-31, 73], + [100, 0], + [-17, -96], + [108, 31], + [30, -9], + [115, -65], + [95, -76], + [35, 68], + [41, 19], + [17, -69], + [40, 5], + [10, 18], + [42, -46], + [32, 8], + [-33, 101] + ], + [ + [20043, 15662], + [29, 12], + [28, 73], + [24, 19], + [31, -2], + [60, -31], + [55, 5], + [108, -50], + [106, -4], + [130, -87], + [84, 7], + [39, -42], + [49, -6], + [73, -61], + [95, -53], + [35, 28], + [125, -39], + [87, 31], + [86, 71], + [89, -43], + [90, 5], + [13, -44], + [86, -69], + [6, -62], + [49, -35], + [111, -150], + [64, -102], + [31, -83], + [128, -15], + [4, 25] + ], + [ + [12481, 11580], + [-53, 29], + [-314, -156], + [-156, -153], + [-130, -172], + [-179, -320] + ], + [ + [11649, 10808], + [-204, -98] + ], + [ + [11445, 10710], + [85, -76], + [44, -87], + [-109, -176], + [-46, -42], + [-4, -197], + [-219, -80], + [-60, 36], + [-153, 47], + [-160, 74], + [-88, -10], + [-165, -62], + [-134, 19], + [-87, 30], + [-135, 12] + ], + [ + [10214, 10198], + [-203, 64], + [-125, -256], + [-41, 47], + [-272, -61], + [-41, 21], + [-120, 8], + [9, 23], + [-77, 62], + [-37, 54], + [18, 30], + [54, 10], + [-6, 50], + [-11, 22], + [-57, -13], + [-22, 25] + ], + [ + [10842, 13820], + [55, -63], + [111, 76], + [11, 64], + [33, 34], + [9, 89], + [15, 16], + [157, 39], + [35, 53], + [48, -52], + [3, -87], + [94, 10], + [41, -13], + [22, -48], + [22, 1], + [41, 41], + [155, -47], + [59, -44], + [64, 95], + [71, -8], + [50, 93], + [102, -51], + [18, 11], + [7, 52], + [14, 8], + [21, -5], + [30, -80], + [41, -28], + [73, 39], + [19, -6], + [32, -66], + [97, -13], + [35, 35], + [0, -86], + [-31, -46], + [-17, -88], + [-36, -6], + [-25, 14], + [-33, -19], + [6, -33], + [-86, -173], + [-55, 7], + [-71, -26], + [-21, -29], + [-19, -97], + [-84, 17], + [-31, -49], + [-93, -2], + [-40, -136], + [48, -38], + [-11, -26], + [-52, -21], + [-53, 14], + [-56, -128], + [48, -44], + [35, -8], + [214, -21], + [120, -138], + [15, -65], + [113, 18], + [161, -24], + [48, 33], + [92, -64], + [48, -79], + [100, -79], + [88, 4], + [59, 48] + ], + [ + [9467, 14223], + [47, -9], + [16, 13], + [19, 55], + [72, 47], + [31, 61], + [30, -4], + [147, 58], + [40, -1], + [13, 36], + [62, 31], + [-57, 129], + [-47, 27], + [4, 41], + [68, 25], + [193, 2], + [22, 33], + [111, -11], + [26, 49], + [36, 3], + [22, 52], + [38, 39], + [43, 15], + [148, -4], + [-14, 129], + [17, 45], + [80, 11], + [114, -24], + [279, 30], + [67, 18], + [3, 15], + [126, 62], + [143, -56], + [49, 19], + [77, -1], + [84, 51], + [77, 17], + [59, -13], + [27, -33], + [0, -68], + [85, -40], + [86, 45], + [12, 23], + [21, 84], + [-19, 88], + [38, -5], + [58, -49], + [10, 27], + [63, 26], + [-13, 39], + [7, 39], + [-31, 31], + [8, 45], + [13, 32], + [61, 37], + [79, -34], + [38, 3], + [52, -40], + [3, -34], + [38, -13], + [35, 6], + [120, -33], + [110, 22], + [46, 65], + [-15, 38], + [9, 118], + [-59, 160], + [12, 107], + [-19, 59], + [-62, 41], + [7, 31], + [162, 40], + [91, 116], + [-1, 22], + [45, 68], + [18, 112], + [-24, 58], + [6, 67], + [28, 71], + [59, 36], + [11, 70], + [29, 10], + [46, 130], + [154, -60], + [21, -57], + [43, -23], + [10, 9], + [170, -35], + [40, 74], + [24, 11], + [223, -20], + [74, -31], + [64, -50], + [-13, -36], + [78, -93], + [15, -50] + ], + [ + [24285, 16380], + [41, -43], + [149, -52], + [19, 4], + [37, 53], + [25, -17], + [45, -80], + [54, -6], + [11, -69], + [-22, 0], + [-12, -114], + [-56, -73], + [2, -24], + [45, -33], + [27, 5], + [62, -42], + [10, -22], + [-24, -42], + [-6, -86], + [-19, -38], + [-83, 6], + [-23, -28], + [39, -18], + [56, 14], + [-3, -79], + [-72, -7], + [-61, 29], + [-23, -33], + [72, -33], + [14, 18], + [105, 0], + [10, -84], + [-25, -59], + [-75, -25], + [-22, -100], + [-116, -11], + [-11, -25], + [-40, -12], + [-32, 20], + [-12, -41], + [-128, 50], + [-6, 42], + [-77, 57], + [-127, 36], + [-86, -4], + [-10, -60], + [55, -1], + [74, -33], + [42, -40], + [37, -81], + [-14, -30], + [-21, 6], + [-12, -14], + [0, -83], + [20, -59], + [-15, -31], + [8, -31], + [-39, -41], + [13, -36], + [32, 22], + [30, 93], + [27, -68], + [-8, -41], + [46, 0], + [17, 25], + [5, -11], + [-14, -51], + [-39, -4], + [-21, -51], + [47, -47], + [-16, -102], + [-43, 8], + [-24, -14], + [-14, -38], + [-47, -35], + [-16, -34], + [22, -49], + [-40, -55], + [16, -17], + [58, -2], + [36, 41], + [26, -68], + [-82, -38], + [-13, -22], + [1, -20], + [30, -13], + [-4, -51], + [-40, -31], + [-41, -99], + [-114, -158], + [-4, -31], + [21, -31], + [-23, -20], + [-21, -93], + [-22, 6], + [-63, -70], + [-23, -5], + [1, -18], + [-50, -16], + [-90, 35], + [-42, -190], + [-75, -25], + [-40, -54], + [-40, 1], + [-28, -23], + [-36, 13], + [-26, -56], + [-54, 77], + [-29, 8] + ], + [ + [21958, 14960], + [-80, 75], + [7, 158], + [43, 6], + [34, -57], + [12, 1], + [6, 44], + [41, 9], + [36, 58], + [80, 23], + [11, 34], + [65, -8], + [71, 33], + [18, 50], + [-63, 45], + [-1, 60], + [47, 36], + [-24, 84], + [-62, 10], + [-6, 45], + [124, 152], + [8, 43], + [-22, 127], + [18, 35], + [-54, 226], + [-31, 7], + [14, 41], + [-82, 108], + [-36, 11], + [4, 51], + [97, 117], + [28, 68], + [186, -51], + [18, 12], + [-13, 16], + [74, 51] + ], + [ + [22526, 16680], + [137, 38], + [23, 35], + [9, 101], + [21, 1], + [152, -98], + [213, -40], + [4, -45], + [-17, -17], + [-114, 36], + [26, -73], + [73, -49], + [334, -136], + [175, -115], + [45, -10], + [46, 32], + [12, 142], + [18, 44], + [52, 20], + [47, -24], + [73, -112], + [54, -20], + [79, 18], + [30, -168], + [18, -24], + [45, -4], + [47, 21], + [60, 41], + [97, 106] + ], + [ + [14747, 3429], + [27, 67], + [162, 122], + [91, 130], + [103, 72], + [100, 109], + [3, 82], + [63, 118], + [-26, 37], + [-10, 240], + [18, 45], + [-36, 137], + [36, 78], + [29, 12], + [15, 126], + [-9, 52], + [-35, 7], + [-35, 38], + [-58, -22], + [-16, 48], + [16, 48], + [50, 40], + [18, 102], + [78, -27], + [34, -50], + [78, -38], + [-1, 56], + [25, 55], + [-5, 145], + [14, 31], + [48, 35], + [44, 102], + [-50, 13], + [-55, 38], + [-18, -10], + [-17, 10], + [-19, 139], + [22, 42], + [-15, 28], + [11, 66], + [-27, 12], + [47, 127], + [108, -5], + [18, 27], + [94, 0], + [18, 15], + [24, 76], + [-32, 46] + ], + [ + [15677, 6050], + [145, 13], + [97, 90], + [79, -16], + [23, 31], + [20, -59], + [42, -16], + [13, -31], + [107, -38], + [50, 26], + [27, -1], + [22, -23], + [6, 34], + [45, 10], + [18, -23], + [34, 9], + [58, -21], + [17, -62], + [51, -35], + [39, 53], + [56, 23], + [30, 45], + [131, -28], + [25, -29], + [31, 15], + [65, -14], + [17, 20], + [47, -18], + [24, 19], + [97, 6], + [0, -39], + [55, -61], + [-42, -25], + [67, -14], + [35, 11], + [21, 24], + [-10, 4], + [105, 85], + [10, -76], + [-19, -74], + [-64, -5], + [-18, -72], + [-27, -26], + [-117, 19], + [-5, -37], + [-34, 16], + [-26, -57], + [-4, 23], + [-56, 34], + [5, 28], + [-21, 4], + [-2, -16], + [-43, -15], + [-22, -32], + [1, -34], + [-114, -33], + [-23, -23], + [-2, -45], + [87, -82], + [74, -17], + [4, -14], + [-65, -81], + [-22, 3], + [13, -38], + [-13, -107], + [-76, 10], + [-8, -83], + [14, -105], + [-67, -117], + [-19, -112], + [-29, -20], + [19, -58], + [150, -105], + [54, 6], + [65, -78], + [3, -37], + [66, -105], + [15, 14], + [32, -9], + [102, -128], + [16, 5], + [2, 81], + [128, 3], + [30, 24], + [224, -186], + [56, -2], + [62, -52], + [81, -38], + [24, -42], + [44, -22], + [33, -44], + [1, -143], + [-24, -123], + [11, -75], + [75, -33], + [18, -93], + [31, -18], + [22, 10], + [61, -12], + [57, 25], + [122, 22], + [117, -34], + [173, -13], + [40, -68], + [-15, -60], + [36, -14], + [0, -15], + [27, 7], + [42, -16], + [11, -40], + [-18, -10], + [14, -20], + [-14, -47], + [37, -24], + [11, -41], + [-11, -34], + [48, -52], + [-41, -30], + [32, -29], + [6, -28], + [-47, -56], + [-36, 17], + [-70, -9], + [-88, 25], + [-27, -8], + [-17, -48], + [34, -117], + [33, -26], + [2, -63], + [32, -75], + [294, -62], + [137, -96], + [-2, -49], + [-29, -54], + [15, -56], + [-65, -162], + [1, -100], + [62, -64], + [36, -3], + [84, -56], + [28, 5], + [24, -34], + [68, -12], + [19, -124], + [-4, -36], + [-13, -4], + [1, -99], + [-148, 13], + [-41, 36], + [-51, -20], + [-27, 22], + [-42, -9], + [-30, 12], + [-13, -4], + [-22, -67], + [-24, 87], + [-16, -103], + [-50, -33], + [-15, 12], + [-2, 41], + [23, 71], + [-56, 5], + [14, -142], + [25, -28], + [21, 27], + [46, -3], + [-53, -144], + [-47, 23], + [-42, -34], + [-25, -1], + [-16, 13], + [35, 68], + [47, -30], + [5, 21], + [-29, 33], + [-59, 13], + [-20, -23], + [17, -77], + [-109, -39], + [-39, 0], + [-121, 32], + [-23, 20], + [-209, 16], + [-44, 32], + [-22, 30], + [0, 40], + [-26, 10], + [-26, -26], + [-49, -6], + [-16, 15], + [1, 103], + [-15, 48], + [-23, 17], + [-20, -6], + [-16, 35], + [-40, -13], + [-100, 70], + [-32, -2], + [-23, -24], + [-40, 3], + [-29, 94], + [-19, 1], + [-20, 40], + [-42, -29], + [-15, 24], + [-85, -10], + [-65, 49], + [-41, -32], + [-42, 27], + [-20, 52], + [23, 5], + [-8, 36], + [-84, 32], + [-36, 44], + [-7, 56], + [-88, 20], + [-27, -58], + [-55, -13], + [-55, -60], + [-88, 19], + [-19, -12], + [6, -103], + [-33, -25], + [-48, 27], + [-15, 45], + [-109, 33], + [-139, 104], + [-67, 15], + [-56, 34], + [0, 36], + [-29, 44], + [-118, 83], + [-30, 43], + [-11, 60], + [-84, 86], + [-8, 60], + [-68, 59], + [-44, 118], + [-79, -35], + [-198, 59], + [-44, -3], + [-47, 63], + [29, 25], + [7, 25], + [-9, -19], + [-40, -13], + [-36, 44], + [-31, -15], + [-124, 51], + [-97, 16], + [-57, -23], + [6, 23], + [-141, 38], + [-44, -16], + [-24, 12], + [-32, 31], + [-42, 107], + [-82, 130], + [-89, 107] + ], + [ + [16921, 12081], + [64, -46], + [75, 21], + [42, -39], + [107, -48], + [96, 39], + [202, -39], + [110, -143], + [228, -136], + [27, -34], + [58, -35], + [77, -21], + [94, -65], + [91, -15], + [68, -94], + [29, -136], + [50, -56], + [79, 55], + [113, -46], + [92, -107], + [63, -146] + ], + [ + [18686, 10990], + [-4, -24], + [29, -19], + [19, -63], + [-18, -92], + [102, -127], + [17, -89], + [-20, -96], + [-44, -6], + [-19, -24], + [-73, -243], + [26, -30], + [-20, -36], + [-180, -52], + [-110, -5], + [-12, 8], + [3, 57], + [-26, 30], + [-111, 20], + [-93, -16], + [-56, -28], + [-186, -41], + [-131, -59], + [-177, -10], + [-20, -12], + [14, -40], + [-136, -95], + [-197, -101], + [-91, 0], + [-164, 35], + [-80, -32], + [-116, 11], + [-35, -22], + [3, -47] + ], + [ + [19662, 12620], + [-38, -57], + [22, -114], + [-20, -37], + [1, -68], + [-50, -7], + [-40, -33], + [17, -34], + [-43, -28], + [-43, -4], + [-135, 55], + [-29, 34], + [26, 29], + [-29, 13], + [-58, -12], + [-107, 59], + [-46, -47], + [-31, 10], + [-112, -39], + [-17, -34], + [-56, 2], + [-57, 125], + [-66, 15], + [-12, 52], + [-22, -28], + [-34, 24], + [-22, -26], + [-31, -7], + [1, -65], + [-30, -11], + [-43, 16], + [-36, -7], + [-14, 37], + [-51, 48], + [32, 33], + [-26, 40], + [-71, 8], + [-168, 66], + [-64, 3], + [-30, 33], + [-14, 31], + [14, 120], + [80, 29], + [-19, 87], + [-63, 40], + [-24, -15], + [-30, -117], + [-58, -71], + [-90, -5], + [-172, 24], + [-66, 30], + [-96, 7], + [-35, -20], + [-66, 10], + [-6, -12] + ], + [ + [16853, 14156], + [16, 31], + [36, 16], + [21, 49], + [7, 60], + [-18, 138], + [12, 20], + [122, 18], + [-2, 52], + [21, 33], + [-5, 87], + [-36, 27], + [29, 52], + [2, 99], + [43, 17], + [-3, 64], + [44, 116], + [96, 106], + [37, -16], + [31, 20], + [57, -8], + [25, 50], + [35, 29], + [-17, 64], + [127, 50], + [26, 30], + [4, 73], + [103, 117], + [34, 14], + [-13, -77], + [64, 2], + [-3, -60], + [86, -46], + [38, -4], + [24, -52], + [122, -39], + [50, 33], + [21, -7], + [27, 32], + [47, -9], + [126, 55], + [69, -15], + [43, 64], + [33, 17], + [-5, 80], + [33, 89], + [17, -20], + [116, 5], + [9, 25], + [37, -56], + [15, -64], + [41, -15], + [-48, 120], + [34, -11], + [45, -99], + [30, -24], + [-5, -54], + [15, -50], + [-35, -29], + [-5, -43], + [46, -5], + [51, 33], + [40, -20], + [61, 13], + [10, -83], + [85, -21], + [37, 57], + [43, 7], + [37, 35], + [41, -41], + [1, -35], + [48, 3], + [44, -62], + [53, -34] + ], + [ + [3063, 13116], + [29, -23] + ], + [ + [3682, 9807], + [-171, -9], + [-68, -27], + [-134, -22], + [-35, -65], + [-10, -105], + [31, -180], + [-199, 47], + [-45, 28], + [-39, -19], + [-387, 95], + [-25, -39], + [-32, 5], + [-14, 41], + [-63, 48], + [-60, 7], + [-39, 57], + [-15, 73], + [-92, 31], + [-26, 81], + [9, 31], + [40, 19], + [-6, 26], + [-119, 83], + [-76, 89], + [2, 45], + [40, 23], + [52, 62], + [13, 53], + [-29, 107], + [1, 135], + [-12, 30], + [-80, 74], + [-8, 101], + [-82, 107], + [16, 52], + [-17, 24], + [-72, 31], + [-53, -34], + [-31, 34], + [-44, 11], + [-16, 25], + [12, 30], + [-7, 39], + [-36, 26], + [-106, -4], + [-99, 35], + [-59, 0], + [-105, 50], + [-107, 6], + [-20, 39], + [84, 44], + [17, 43], + [-33, 36], + [-112, 14], + [-35, 32], + [-30, 96], + [9, 112], + [-143, 197], + [-25, 74], + [-1, 129], + [48, 54], + [-52, 104], + [-150, 60], + [-169, 24], + [-87, 91], + [-7, 94], + [-26, 58], + [-119, -18], + [-58, 83], + [-49, 30], + [-140, 10], + [-62, -27], + [-120, 25], + [83, 54], + [54, 94], + [5, 63], + [33, 63], + [7, 53], + [114, 259], + [-13, 77], + [18, 38], + [-11, 91], + [87, 67], + [-1, 33], + [47, 79], + [-8, 113], + [-23, 48], + [-84, 42], + [-25, 83], + [147, 134], + [126, 16], + [41, 44], + [37, 79], + [56, 23], + [-44, 48], + [-18, 83], + [-51, 53], + [-3, 46], + [-97, 38], + [-64, -9], + [3, 168], + [-58, 2], + [-45, 107], + [60, 144], + [-3, 100], + [19, 39], + [166, 53], + [448, 88], + [178, -8], + [155, -54], + [156, -22], + [240, 18], + [203, -4], + [107, -48], + [77, -14], + [173, 32], + [247, 112], + [78, -3], + [262, 52], + [56, -28] + ], + [ + [22349, 19027], + [29, -118], + [90, -224], + [-129, -183], + [19, -32], + [68, -40], + [56, -110], + [109, -103], + [-46, -20], + [-27, 8], + [-15, -22], + [23, -70], + [-28, -75], + [-41, -52], + [-83, -41], + [-85, -129], + [55, -44], + [2, -87], + [-14, 2], + [-16, -82], + [-33, -8], + [3, -32], + [-40, -86], + [5, -94], + [53, -1], + [-5, -55], + [-26, -52], + [-49, -27], + [25, -57], + [46, -46], + [-1, -21], + [-47, -14], + [4, -54], + [30, 7], + [23, -27], + [46, 14], + [6, -16], + [-36, -20], + [23, 2], + [-4, -28], + [19, -18], + [-1, -92], + [39, -79], + [63, -77], + [67, -44] + ], + [ + [20043, 15662], + [56, 217], + [0, 58], + [22, 10], + [13, 55], + [44, 57], + [10, 95], + [57, 101], + [-3, 67], + [-31, 3], + [-10, 39], + [43, 31], + [-3, 20], + [28, 39], + [-20, 57], + [2, 67], + [45, 52], + [29, 79], + [0, 15], + [-32, -8], + [-53, 40], + [-19, -7], + [7, 82], + [88, 23], + [60, 125], + [45, 49], + [48, -16], + [50, 39], + [99, -6], + [4, 27], + [-24, -4], + [3, 32], + [55, 105], + [-6, 62], + [-44, 53], + [-12, 45], + [48, 111], + [-37, 62], + [28, 288], + [-50, 91], + [13, 106], + [62, 39], + [99, 195], + [60, 17], + [52, 39], + [13, 35], + [58, 34], + [4, 25], + [121, -22], + [32, 81], + [30, -2], + [28, 40], + [44, -8], + [62, -64], + [113, -26], + [22, 61], + [-11, 87], + [25, 119], + [30, 21], + [-6, 42], + [30, 30], + [14, 59], + [25, 28], + [-24, 28], + [35, 111], + [-6, 49], + [40, 154], + [38, -5], + [0, -31], + [132, -21], + [80, -50], + [39, 104], + [79, 29], + [85, -50], + [11, -23], + [37, -1], + [208, -103], + [63, -11], + [5, -15], + [24, 9] + ], + [ + [21055, 12129], + [72, -158], + [38, -10], + [41, 41], + [11, -22], + [-4, -25], + [32, -61], + [-39, -39], + [4, -70], + [16, -16], + [25, 11], + [48, -46], + [74, -10], + [1, -101], + [-37, -28], + [50, -208], + [-21, 1], + [11, -51], + [-38, -38], + [-39, -10], + [-42, -53], + [-47, 30], + [13, 11], + [-18, 72], + [-24, 35], + [19, 24], + [-18, 32], + [-22, 15], + [-44, -58], + [3, -188], + [22, -15], + [-15, -55], + [49, -102], + [-68, -77], + [-73, -18], + [-51, 24], + [-6, 21], + [30, 70], + [41, 11], + [24, 51], + [-74, 27], + [-30, -40], + [-51, 12], + [-23, -40], + [-20, 8], + [-42, -42], + [-16, 2], + [1, 33], + [35, 26], + [2, 21], + [-45, 17], + [-36, -34], + [-129, 79], + [-49, -13], + [-48, 28], + [-41, -3], + [-17, -26], + [13, -68], + [40, -30], + [87, -119], + [45, 12], + [22, -48], + [-95, -148], + [-51, 33], + [-30, -22], + [-51, -8], + [-75, 24], + [24, 6], + [7, 28], + [-19, 4], + [-35, -35], + [-55, 59], + [-61, -25], + [-63, 41], + [-85, 23], + [-121, 121], + [-65, 22], + [-110, 71], + [-118, 22], + [-71, 53], + [-39, -17], + [-21, -75], + [-24, -22], + [-43, -18], + [-37, 12], + [-59, 53], + [-7, 71], + [-93, 80], + [-64, 3], + [-56, -39], + [-50, -65], + [1, -29], + [36, -5], + [-11, -85], + [41, -118], + [-30, -46], + [-28, -6], + [-31, 181], + [-76, -27], + [-14, -41], + [-54, -63], + [-128, -62], + [-61, 16], + [-8, 62], + [-23, 36], + [-58, 4] + ], + [ + [12302, 5680], + [-37, 14], + [-140, -177], + [13, -44], + [108, -17], + [-65, -59], + [-60, -114], + [-99, -28], + [-11, 114], + [-59, -36], + [-41, -50], + [-39, 14], + [1, -16], + [-20, -12], + [11, -61], + [-23, -51], + [-28, -9], + [-12, -75], + [-33, -9], + [11, -120] + ], + [ + [9426, 3540], + [-44, 83], + [5, 100], + [-90, 53], + [7, 57], + [-28, 81], + [50, 173], + [-87, 66], + [-11, 35], + [54, 164], + [29, 157], + [-57, 103], + [-90, 8], + [-34, 25], + [-17, 38], + [-62, 34], + [-26, 85], + [-145, 4] + ], + [ + [8684, 6141], + [135, 21], + [89, 96], + [67, 170], + [3, 75], + [77, 108], + [86, 34], + [51, 48], + [59, 282], + [34, 283], + [199, 116], + [244, -9], + [149, 56], + [138, 94], + [147, 7], + [105, -115], + [236, -43], + [36, -66], + [151, -137], + [49, -11], + [50, 24], + [21, 102], + [41, 4], + [41, -69], + [51, -34], + [66, -17], + [80, 50], + [106, -52], + [27, -36], + [184, -22], + [82, 18], + [22, 43], + [4, 91], + [23, 81], + [103, 34], + [34, 57], + [15, 87], + [48, 44], + [99, 1], + [141, 155], + [170, -31], + [-42, -122], + [-106, -218], + [-86, -330], + [54, -176], + [241, -84], + [34, -63], + [-70, -220], + [-52, -84], + [76, -250], + [115, -165], + [21, -100], + [-30, -188] + ], + [ + [8381, 9364], + [-4, -34], + [48, -52], + [73, -16], + [44, -82], + [55, -6], + [66, -39], + [7, -55], + [29, -53], + [-18, -63], + [-52, -87], + [-31, -22], + [-25, -60], + [-61, -57], + [-57, -91], + [-21, -61], + [14, -60], + [-66, -60], + [44, -114], + [-56, -62], + [7, -18], + [101, -49], + [15, -126], + [-50, -135] + ], + [ + [13756, 8893], + [-40, -6], + [-22, -28], + [-35, -113], + [7, -135] + ], + [ + [13666, 8611], + [-39, -37], + [-43, 25], + [-12, -7], + [4, -26], + [-23, -10], + [-35, 67], + [-52, 37], + [3, 46], + [-18, 25], + [-56, 20], + [-61, 0], + [-15, -26], + [-22, 0], + [-18, 31], + [-69, 1], + [-18, 22], + [-109, 9], + [-49, -13], + [-14, -28], + [-56, -29], + [-29, 28], + [-67, -70], + [-236, 59], + [-10, 34], + [-74, 46], + [-81, 2], + [-65, 22], + [-135, 78], + [-4, 43], + [-73, 35], + [-22, 48], + [-98, 68], + [-106, 137], + [-59, 8], + [-25, -10], + [-15, -32], + [-44, 26], + [-23, 37], + [45, 107], + [-34, 94], + [-91, -40], + [52, -94], + [4, -57], + [-28, -19], + [-46, 18], + [-44, -6], + [-56, 63], + [26, 52], + [-85, 50], + [-12, -19], + [6, -63], + [-103, -48], + [-130, 29], + [-77, 40], + [-20, -27], + [-58, -3], + [-44, 34], + [-30, -68], + [-108, 69], + [-139, -19], + [-103, 66], + [-284, 61], + [-23, 41], + [-106, 54], + [3, 39], + [-46, 99], + [-119, -1], + [-28, 15], + [-25, 67], + [6, 59], + [45, 70], + [44, -1], + [-3, 65], + [19, 53], + [68, 46], + [-7, 23], + [-56, -6], + [-14, 25], + [17, 53] + ], + [ + [11445, 10710], + [204, 98] + ], + [ + [13666, 8611], + [11, -107], + [50, -8], + [11, 11], + [23, -14], + [17, -25], + [-23, -20], + [40, -77], + [-13, -37], + [64, -8], + [8, -54], + [-56, 19], + [-103, -53], + [2, -20], + [34, -27], + [-11, -25], + [4, -132], + [34, -38], + [-52, -46], + [-41, -6], + [4, -68], + [-120, -126], + [-30, -8], + [-39, -103], + [23, -117], + [1, -193], + [15, -51], + [-11, -40], + [19, -18], + [121, 14], + [106, -126], + [0, -85], + [64, -40] + ], + [ + [13818, 6983], + [-37, 4], + [-23, -30], + [-61, -27], + [-13, -114], + [-57, 23], + [-37, -60], + [-48, -26], + [-11, -52], + [-63, -85], + [-22, -5], + [-63, -136], + [-52, -11], + [-31, -42], + [7, -21], + [40, -15], + [103, -334], + [36, -32], + [79, -25], + [29, -249], + [56, 10], + [32, -68], + [32, -28], + [-34, -72], + [2, -33], + [-67, -69], + [31, -78], + [-23, -19], + [-42, 3], + [-77, 47], + [-11, 25], + [10, 48], + [-43, -5], + [-146, 37], + [-67, 55], + [-78, 13], + [-63, 68], + [-60, -5], + [-57, 41], + [-55, 16], + [-143, 10], + [-64, -42], + [-54, -12], + [-159, 14], + [12, -58], + [-19, -35], + [-162, -29], + [-36, 39], + [9, 35], + [-16, 26] + ], + [ + [9089, 10128], + [99, 15] + ], + [ + [22349, 19027], + [3, 273], + [80, 124], + [39, -13], + [5, 17], + [-20, 52], + [13, 24], + [-37, 13], + [-33, 103], + [27, 6], + [20, 53], + [47, -76], + [76, -1], + [89, -74], + [55, 12], + [-7, 87], + [49, 204], + [106, 18], + [23, 38], + [43, 21], + [3, 26], + [41, -46], + [-38, -49], + [3, -25], + [139, -98], + [36, 24], + [48, -28], + [18, 47], + [32, -40], + [107, -27], + [38, 14], + [137, 2], + [-19, -34], + [69, -7], + [-11, -27], + [18, -18], + [-24, -25], + [-7, -37], + [102, -80], + [-1, -88], + [406, -60], + [23, -152], + [-15, -123], + [-74, -279], + [-10, -149], + [19, -165], + [20, -46], + [126, -118], + [297, -147], + [118, -108], + [20, -44], + [122, -130], + [16, -74], + [323, -332], + [19, -35], + [18, -160], + [-37, -89], + [-162, -69], + [-136, -81], + [-119, -18], + [47, -60], + [-21, -80], + [24, -27], + [-64, -29], + [-101, 19], + [-8, -12], + [32, -53], + [4, -39], + [25, -25], + [-15, -66], + [-13, 12], + [-23, -28], + [-15, -75], + [-29, -14], + [-52, -63], + [-62, 24], + [-19, -13], + [-7, 67], + [27, 33], + [-8, 45], + [-20, 1], + [-32, -94], + [-53, -36], + [-22, -74], + [62, -7], + [36, -39] + ], + [ + [13818, 6983], + [61, -22], + [78, -109], + [15, 9], + [20, -30], + [3, 20], + [20, 8], + [97, -7], + [42, 51], + [102, 11], + [61, 35], + [112, 1], + [83, -33], + [56, 31], + [46, -13], + [62, -85], + [-23, -102], + [20, -19], + [119, -42], + [59, 17], + [58, -80], + [70, -11], + [59, 28], + [63, -27], + [7, -20], + [50, -31], + [-24, -62], + [6, -41], + [74, -60], + [8, -70], + [20, -21], + [35, 10], + [35, -71], + [32, -23], + [17, -59], + [136, 13], + [18, -12], + [-22, -20], + [33, -93], + [57, -14], + [94, 10] + ], + [ + [14747, 3429], + [-20, 29], + [-106, 60], + [-108, -118], + [53, -55], + [-33, -81], + [-36, 23], + [-84, -56], + [-21, -35], + [-82, 4], + [-62, -58], + [-19, -57], + [6, -47], + [-32, -21] + ], + [ + [9365, 3013], + [-60, 5], + [-76, -25], + [-21, 10], + [-9, -41], + [-168, -68], + [-34, -1], + [-183, -85], + [-30, -29], + [-12, 3], + [0, 79], + [-28, -10], + [-85, -68], + [-75, -31], + [13, -49], + [-19, -15], + [-122, -32], + [-73, -2], + [10, 51], + [-30, 99], + [-28, -29], + [-86, -37], + [-75, 17], + [-48, -50], + [-5, 21], + [-102, 10], + [-26, 89], + [-35, -18], + [-262, -10], + [-47, -161], + [-96, 11], + [-186, -24], + [-120, 22], + [-41, -14], + [-160, 86], + [-198, -22], + [-7, 24], + [-26, -21], + [-246, -48], + [-15, 20], + [-75, -4], + [-31, -30], + [-81, 8], + [-133, -62], + [-24, 1], + [-12, -25], + [6, -68], + [25, -17], + [-14, -21], + [-119, -50], + [-42, 23], + [-31, -36], + [-81, -50], + [24, -27], + [-29, -66], + [-37, 12], + [-133, -41], + [-146, 33], + [-31, -6], + [-14, -20], + [-135, -13], + [-54, -24], + [-28, 10], + [-159, -19], + [-23, 28], + [-102, 34], + [-79, 133], + [-26, 19], + [-283, -11], + [-57, 69], + [-167, 102], + [-89, 116], + [-15, 146], + [24, 69], + [-1, 59], + [-13, 23], + [-23, -6], + [-9, 20], + [-61, -12], + [-62, 14], + [-22, 21], + [4, 23], + [-82, 22], + [-86, 54], + [-76, 94], + [-132, 12], + [-75, 52], + [-90, -1], + [13, 54], + [-29, 56], + [30, 177], + [69, 55], + [19, 49], + [144, 41], + [174, 250], + [73, -23], + [72, 24], + [230, -13], + [80, 64], + [84, 27], + [89, 82], + [96, 5], + [70, 73], + [24, 68], + [-24, 55], + [9, 43], + [-22, 177], + [88, 78], + [68, 86], + [106, 15], + [40, -32], + [34, 64] + ] + ], + "transform": { + "scale": [0.0001855507865527431, 0.00016946222534363408], + "translate": [83.331271, 21.970758] + }, + "objects": { + "jharkhand_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5, 6]], + "type": "Polygon", + "properties": { + "cartodb_id": 200, + "censuscode": 349, + "dt_cen_cd": 4, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Giridih" + } + }, + { + "arcs": [[7, 8, 9, 10, 11, 12]], + "type": "Polygon", + "properties": { + "cartodb_id": 209, + "censuscode": 366, + "dt_cen_cd": 21, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Gumla" + } + }, + { + "arcs": [[13, 14, 15, 16, -13, 17, 18]], + "type": "Polygon", + "properties": { + "cartodb_id": 336, + "censuscode": 359, + "dt_cen_cd": 14, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Latehar" + } + }, + { + "arcs": [[19, 20, 21, -14, 22, 23, 24, 25]], + "type": "Polygon", + "properties": { + "cartodb_id": 424, + "censuscode": 358, + "dt_cen_cd": 13, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Palamu" + } + }, + { + "arcs": [[26, 27, 28, 29]], + "type": "Polygon", + "properties": { + "cartodb_id": 435, + "censuscode": 368, + "dt_cen_cd": 23, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Pashchimi Singhbhum" + } + }, + { + "arcs": [[-4, 30, 31, 32, 33]], + "type": "Polygon", + "properties": { + "cartodb_id": 90, + "censuscode": 355, + "dt_cen_cd": 10, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Bokaro" + } + }, + { + "arcs": [[[34, 35, 36, 37, 38, -15, -22, 39], [40]], [[-20, 41]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 110, + "censuscode": 347, + "dt_cen_cd": 2, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Chatra" + } + }, + { + "arcs": [[42, 43, 44, 45, 46, 47]], + "type": "Polygon", + "properties": { + "cartodb_id": 162, + "censuscode": 362, + "dt_cen_cd": 17, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Dumka" + } + }, + { + "arcs": [[-5, -34, 48, 49, 50, 51, -36, 52]], + "type": "Polygon", + "properties": { + "cartodb_id": 226, + "censuscode": 360, + "dt_cen_cd": 15, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Hazaribagh" + } + }, + { + "arcs": [[-53, -35, 53, -6]], + "type": "Polygon", + "properties": { + "cartodb_id": 308, + "censuscode": 348, + "dt_cen_cd": 3, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Koderma" + } + }, + { + "arcs": [[54, -43, 55, 56]], + "type": "Polygon", + "properties": { + "cartodb_id": 422, + "censuscode": 353, + "dt_cen_cd": 8, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Pakur" + } + }, + { + "arcs": [[57, 58]], + "type": "Polygon", + "properties": { + "cartodb_id": 455, + "censuscode": 357, + "dt_cen_cd": 12, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Purbi Singhbhum" + } + }, + { + "arcs": [[59, 60, -31, -3]], + "type": "Polygon", + "properties": { + "cartodb_id": 146, + "censuscode": 354, + "dt_cen_cd": 9, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Dhanbad" + } + }, + { + "arcs": [[-46, 61, -1, 62]], + "type": "Polygon", + "properties": { + "cartodb_id": 141, + "censuscode": 350, + "dt_cen_cd": 5, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Deoghar" + } + }, + { + "arcs": [[63, -23, -19, 64, -25]], + "type": "Polygon", + "properties": { + "cartodb_id": 194, + "censuscode": 346, + "dt_cen_cd": 1, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Garhwa" + } + }, + { + "arcs": [[65, -56, -48, 66]], + "type": "Polygon", + "properties": { + "cartodb_id": 202, + "censuscode": 351, + "dt_cen_cd": 6, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Godda" + } + }, + { + "arcs": [[-45, 67, -60, -2, -62]], + "type": "Polygon", + "properties": { + "cartodb_id": 251, + "censuscode": 363, + "dt_cen_cd": 18, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Jamtara" + } + }, + { + "arcs": [[68, -30, 69, -10, 70]], + "type": "Polygon", + "properties": { + "cartodb_id": 301, + "censuscode": 365, + "dt_cen_cd": 20, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Khunti" + } + }, + { + "arcs": [[71, -8, -17]], + "type": "Polygon", + "properties": { + "cartodb_id": 340, + "censuscode": 356, + "dt_cen_cd": 11, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Lohardaga" + } + }, + { + "arcs": [[72, 73, -51, 74, -49, -33]], + "type": "Polygon", + "properties": { + "cartodb_id": 473, + "censuscode": 361, + "dt_cen_cd": 16, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Ramgarh" + } + }, + { + "arcs": [[75, 76, -71, -9, -72, -16, -39, 77, -37, -52, -74]], + "type": "Polygon", + "properties": { + "cartodb_id": 475, + "censuscode": 364, + "dt_cen_cd": 19, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Ranchi" + } + }, + { + "arcs": [[-57, -66, 78]], + "type": "Polygon", + "properties": { + "cartodb_id": 492, + "censuscode": 352, + "dt_cen_cd": 7, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Sahibganj" + } + }, + { + "arcs": [[79, -58, 80, -27, -69, -77]], + "type": "Polygon", + "properties": { + "cartodb_id": 503, + "censuscode": 369, + "dt_cen_cd": 24, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Saraikela Kharsawan" + } + }, + { + "arcs": [[-70, -29, 81, -11]], + "type": "Polygon", + "properties": { + "cartodb_id": 527, + "censuscode": 367, + "dt_cen_cd": 22, + "st_cen_cd": 20, + "st_nm": "Jharkhand", + "district": "Simdega" + } + } + ] + } + } +} diff --git a/public/maps/karnataka.json b/public/maps/karnataka.json index 7c7a0693d8..fa9a02ff85 100644 --- a/public/maps/karnataka.json +++ b/public/maps/karnataka.json @@ -1 +1,1859 @@ -{"type":"Topology","arcs":[[[2898,2585],[12,-42]],[[2910,2543],[-92,-55],[-68,4],[-8,-53],[-86,4],[-28,-82],[-122,-43],[-6,-168],[-31,17],[-99,-6],[-50,12],[-110,-14],[-4,-50],[-65,-3],[-31,-42],[-3,-110],[16,-87],[-119,1],[-60,-115],[-53,-38]],[[1891,1715],[-2,39],[-49,45],[12,91],[-48,58],[-68,36],[-80,82],[-34,-2],[-37,-62],[-76,-7],[-68,66]],[[1441,2061],[-30,30],[-48,116],[-29,-7],[-44,79],[41,17],[48,83],[-13,55]],[[1366,2434],[37,57],[68,28],[-5,98],[63,-42],[91,22],[83,59],[-16,89],[77,32],[42,47],[66,-40],[86,41],[22,-76],[60,25],[-5,54],[79,8],[116,63],[69,-9]],[[2299,2890],[85,8],[106,69],[4,35]],[[2494,3002],[81,-43],[67,-175],[87,-24],[58,-84],[17,-55],[94,-36]],[[1891,1715],[8,-62],[76,-14],[-11,-77],[57,-63],[17,-65]],[[2038,1434],[-31,-45],[30,-147],[-69,-58],[-31,35],[-45,-47],[-67,-19],[-86,54],[-25,-34]],[[1714,1173],[-56,-18],[-83,18],[-43,74],[39,60],[-31,16],[-52,-65],[-28,15],[-16,68],[-74,10],[10,57],[-131,-22],[2,72],[-73,31],[17,62],[-65,-8],[-87,-41],[-27,7],[-71,179],[-31,179],[6,87]],[[920,1954],[50,41],[45,-3],[35,-40],[-8,-63],[65,-43],[80,1],[19,-41],[80,80],[63,114],[44,1],[48,60]],[[3092,3878],[32,-37],[-93,-45],[0,-66],[-96,-40],[-133,-19],[-21,47],[-72,20],[-84,-41],[23,-55],[1,-84],[-58,-6],[26,-79],[-65,-15],[-23,-31],[-1,-80],[-45,-60],[36,-62],[-10,-165],[-15,-58]],[[2299,2890],[-28,136],[-39,76],[-6,120],[-22,43],[-82,6],[-21,-35],[-70,-11],[-40,17],[-62,-29],[-89,52],[-81,-2],[-64,38],[75,65],[-9,40],[69,17],[35,80]],[[1865,3503],[55,-2],[54,80],[23,107],[-5,59],[99,11],[50,54],[52,-6],[31,76],[-19,43],[9,68],[-23,40],[-68,4],[21,70]],[[2144,4107],[100,79],[-41,99],[31,31],[75,-37],[106,50],[75,16],[62,-26],[-7,-41],[67,1],[79,-29],[-57,-49],[73,-78],[-20,-65],[56,-68],[28,64],[88,-7],[73,-41],[17,-44],[48,-11],[-10,-50],[105,-23]],[[2256,5550],[103,-59],[78,12],[64,-44],[8,-57],[-49,-11],[-51,-51],[-120,49],[1,-55],[34,-87],[-40,-16],[-10,-107],[-53,-7],[6,-73],[46,-10],[8,-49],[48,-7],[-17,-150],[45,-140],[31,-57]],[[2388,4631],[-57,-8],[-25,-45],[32,-28],[-46,-53],[-37,10],[-75,-57],[-53,-73],[-52,5]],[[2075,4382],[-40,51],[-49,-4],[-45,-36],[-65,29],[-7,64],[-51,26],[-100,19]],[[1718,4531],[20,58],[-42,90],[41,32],[-25,134],[46,1],[10,62],[43,31],[2,129],[-28,29],[17,50],[58,10],[4,68],[27,75],[-66,1],[-19,71],[-95,-61],[-171,44]],[[1540,5355],[45,55],[-13,104],[78,-8],[15,50],[63,0],[35,58]],[[1763,5614],[50,-17],[45,-51],[168,2],[104,-30],[41,48],[85,-16]],[[3324,7969],[100,-46],[83,6],[155,-19],[27,67],[136,-37],[35,33],[44,-70],[55,-20],[45,21],[59,-7],[30,-38],[98,-19],[82,1]],[[4273,7841],[274,-78],[40,-30],[-98,-38],[-48,-53],[-79,-3],[13,-85],[-82,-23],[-28,-74],[26,-16],[-93,-74],[-26,-76],[20,-31],[110,-45],[46,-126],[-44,-72],[-15,-93]],[[4289,6924],[-61,-5],[-92,65],[-78,-8],[-43,23],[-76,-11],[-95,-44],[-53,60],[-46,-64],[20,-24],[-135,-66],[-38,30],[-11,58],[-97,-35],[-80,-50],[-15,-64],[-61,5],[-77,-65],[-36,38],[-121,-32],[-62,-39]],[[3032,6696],[-32,67],[-80,6],[-21,68],[25,52],[80,11],[-11,305],[-39,-37],[-41,47],[3,75],[-57,5],[-104,-21],[-147,122],[-43,14],[9,46],[-31,57]],[[2543,7513],[61,44],[53,-33],[83,29],[60,-43],[134,-24],[33,76],[-58,7],[14,78],[-30,49],[-23,161],[106,12],[17,53],[71,33],[2,58],[47,2],[0,57],[102,-4],[109,-99]],[[3815,1493],[-8,-83],[30,-10],[21,-160],[55,-103],[65,13],[75,-26],[22,-95],[59,-51],[-14,-61]],[[4120,917],[-197,3],[4,-65],[-71,-22]],[[3856,833],[-99,-12],[-44,13],[-34,61],[5,82],[-48,2],[-3,62],[-127,1],[-31,-55],[-51,-13],[-17,-63],[-135,122],[-88,-61],[-30,56],[14,43],[-146,78],[-49,95],[-41,25],[-46,106]],[[2886,1375],[25,71],[-33,135],[65,43],[50,8],[51,-74],[31,-10],[35,70],[69,9],[25,95],[45,68],[-1,44]],[[3248,1834],[53,63],[112,-25],[82,-45],[15,-73],[61,-61],[5,-59],[52,-70],[48,3],[50,-50],[89,-24]],[[1366,2434],[-77,44],[-56,101],[31,25],[-54,58],[-25,137],[-66,30],[-38,122],[-65,10],[-52,58],[-58,10],[-74,-13],[-21,57],[-42,45]],[[769,3118],[12,71],[-47,77],[5,62],[29,57],[78,-12],[-14,73],[226,-16],[56,51],[-38,37],[53,119],[-40,69],[-44,-2],[25,129],[92,30],[18,-63],[63,-4],[12,40],[-36,43],[8,68],[26,42]],[[1253,3989],[92,-24],[111,-9],[-34,-49],[73,-37],[28,28],[104,-126],[2,-125],[194,-106],[42,-38]],[[4290,2723],[-93,-30],[-24,-51],[36,-117],[-8,-43]],[[4201,2482],[-46,-62],[-13,-161],[-40,-25],[-98,0],[-9,-56],[-43,5],[19,-115]],[[3971,2068],[-60,9],[-94,-78],[-12,-113],[56,-46],[65,-106],[-32,-19],[-13,-75],[30,-43],[-9,-55],[-62,-12],[-25,-37]],[[3248,1834],[-29,4],[4,78],[-179,29],[7,74],[-61,49],[-69,19],[-33,211],[45,5],[46,111],[-21,100],[-48,29]],[[2898,2585],[59,19],[68,-4],[8,36],[72,21],[70,105],[50,13],[97,-18],[10,79],[34,35],[49,-22],[4,74],[-55,78],[74,37],[41,-10],[44,61],[-31,42],[59,19],[30,56],[71,53]],[[3652,3259],[-19,-82],[80,-54],[-7,-33],[60,-40],[-38,-100],[-47,-46],[30,-95],[54,36],[32,-40],[44,29],[91,-8],[-7,79],[-28,58],[127,46],[14,-72],[71,24],[16,-42],[135,6],[46,-113],[-16,-89]],[[3745,3373],[-20,78]],[[3725,3451],[58,10],[32,-39],[44,16],[-4,52],[32,91],[81,-22],[107,23],[-1,-72],[100,-9],[-4,-52],[36,-50],[39,15],[-18,75],[-34,59],[27,31],[60,-25],[1,-42],[67,-8],[-8,-58],[26,-72],[-153,-10],[-16,-46],[23,-35],[-72,-65],[-15,-40],[72,-21],[47,-39],[-16,-54],[15,-54],[-90,2],[-6,71],[-38,97],[-44,-23],[-183,-12],[-17,57],[-56,-5],[-67,20],[-17,51],[12,105]],[[920,1954],[-26,-8],[-19,111],[-45,138],[-28,153],[26,29],[-39,91],[-25,186],[-18,42],[-28,157],[-56,188]],[[662,3041],[62,30],[45,47]],[[864,4990],[71,-45],[34,-44],[92,-58],[13,-64],[-41,-75],[-61,-78],[67,-65],[38,-61],[36,37],[178,9]],[[1291,4546],[-15,-75],[44,-117],[-42,-11],[0,-181],[-57,-74],[32,-99]],[[662,3041],[-85,84],[-64,273],[-20,23],[39,90],[-68,-4],[-36,174],[23,89],[-59,81],[-48,-38],[-75,148],[17,13],[-25,105],[-36,40],[-41,-19],[-120,68],[22,65],[-48,81],[120,77],[44,-14],[47,21],[18,69],[33,39],[-27,81],[52,108],[-19,52],[-55,24],[24,52],[65,2],[-7,111],[-53,20],[-5,79],[-33,61],[34,39]],[[276,5135],[80,-4],[44,-48],[57,-26],[8,-86],[67,-1],[69,31],[101,-80],[107,67],[55,2]],[[3032,6696],[-43,-21],[-27,-63],[16,-63],[25,-216],[-131,-14],[0,-45],[-40,-140],[58,-12],[8,-63],[-32,-46]],[[2866,6013],[-60,-54],[-51,20]],[[2755,5979],[-126,20],[-103,51],[9,52],[-67,56],[-69,-5],[-223,108],[-73,14],[-102,65],[-49,6],[-54,-40],[-12,55],[-68,-6],[-7,-42],[-54,-8],[-20,31],[66,94],[7,110],[-39,38],[-28,99],[65,1],[4,55],[-84,36],[-50,-7]],[[1678,6762],[-12,61],[21,69],[-76,10],[10,112]],[[1621,7014],[63,32],[46,-17],[47,28],[54,-49],[75,21],[0,56],[50,-4],[1,-44],[44,-24],[30,35],[16,122],[-9,56],[-54,61],[39,63],[-6,82],[-66,42],[13,116],[25,113],[57,-31],[13,-54],[58,12],[94,-68],[17,69],[89,-22],[-1,-68],[47,-39],[167,36],[13,-25]],[[3856,833],[23,-50],[-108,-47],[-13,-37],[-59,4],[-53,-60],[-87,47],[18,-99],[-10,-58],[-30,-23],[-86,16],[-108,-35],[-44,33],[-36,-33],[-82,3],[-23,-51],[20,-32],[-53,-66],[-55,-16],[2,-50],[-38,-40],[-48,13],[-11,-52]],[[2975,200],[-92,-30],[-80,95],[-68,-4],[-44,83],[-96,-17],[0,157]],[[2595,484],[95,99],[-23,87],[-48,97],[-34,3],[-56,72],[-49,3],[-29,96],[-49,26],[-63,71],[24,50],[56,14],[-17,53],[34,70],[41,33]],[[2477,1258],[34,10],[67,-60],[66,21],[53,59],[18,52],[129,-8],[42,43]],[[2755,5979],[6,-71],[72,-50],[12,-99],[-13,-37],[33,-50],[-54,-39]],[[2811,5633],[-72,50],[-91,-37],[-48,-34],[-73,25],[32,115],[-115,15],[-24,-28],[3,-151],[-42,-3],[-52,76],[-65,17],[-81,-18],[79,-80],[-6,-30]],[[1763,5614],[-37,45],[19,58],[-31,113],[-1,75],[-176,13],[19,67],[-59,48],[-35,81],[-114,26],[13,46],[-130,19],[5,73],[44,13],[6,43],[-66,-4],[-40,43],[19,95],[72,3],[54,-41],[63,27],[15,94],[123,46],[-5,56],[34,45],[92,1],[31,63]],[[3324,7969],[10,61],[114,131],[-64,40],[147,54],[35,-7],[40,58],[6,126],[39,17],[6,84],[-39,8],[40,90],[131,-43],[64,1],[-16,55],[68,29],[26,84],[46,-4],[42,172],[108,61],[56,-72],[39,-4],[10,-128],[72,-52],[60,29],[115,-5],[-39,-49],[-3,-68],[35,-49],[0,-88],[-39,-10],[-17,-55],[67,-22],[59,-63],[-86,-81],[-27,-87],[-67,-53],[65,-71],[-29,-28],[-112,-45],[3,-80],[-16,-64]],[[4120,917],[31,-37],[93,12],[66,-56]],[[4310,836],[4,-45],[57,-23],[118,15],[154,-37],[54,-80],[-67,-75],[-65,-126],[-92,-35],[-85,-6],[-50,14],[-11,-56],[-56,-155],[-96,9],[-37,-26],[-53,51],[-54,6],[-176,-52],[-36,-44],[-42,63],[-46,33],[-76,-29],[-57,3],[-24,-77],[-34,-34],[-32,-72],[29,-56],[-126,7],[-182,-9],[-69,16],[-17,76],[-46,36],[-67,-57],[-52,13],[11,68],[-14,48]],[[2477,1258],[-68,-11],[-30,58],[-5,55],[36,86],[-36,67],[40,46],[-133,32],[-17,-120],[45,-32],[-4,-41],[-57,-6],[-35,41],[-62,-33],[-70,44],[-43,-10]],[[2075,4382],[-7,-73],[47,-37],[-67,-30],[-20,-51],[69,-36],[-3,-74],[50,26]],[[1291,4546],[-1,48],[35,38],[60,9],[-17,-60],[107,-1],[141,80],[5,-124],[33,-23],[64,18]],[[2595,484],[-100,-50],[-67,-10],[-126,21],[-64,48],[-34,69],[-6,57],[-85,-13],[-56,50],[-27,-15],[-58,76],[-51,2],[-120,178],[-66,7],[-66,124],[-15,85],[73,20],[-13,40]],[[2811,5633],[149,-2],[60,-64],[-9,-151],[111,-48],[84,0],[2,-35],[117,-36],[-3,-67],[73,-5],[15,-33],[68,-24]],[[3478,5168],[-1,-42],[-40,-29],[-86,-4],[-55,-52],[-73,-11],[-26,-38],[-118,-88],[-170,-26],[-37,-83],[-29,-3],[-79,-90],[-76,57],[-37,-49],[-43,6],[-39,-52],[-82,-26],[-64,13],[-35,-20]],[[4201,2482],[74,-49],[76,-8],[63,-51],[75,4],[107,-112],[69,35],[93,-47],[-21,-85],[77,-38],[67,8]],[[4881,2139],[52,7],[-12,-156],[-69,-33],[-37,-149],[3,-57],[-26,-66],[18,-33]],[[4810,1652],[-43,1]],[[4767,1653],[-15,51],[-71,41],[23,113],[-55,128],[-16,87],[-137,22],[-63,-5],[-29,40],[-86,-14],[-22,-80],[-41,5],[-31,-66],[-31,-156],[-63,-28]],[[4130,1791],[-26,171],[-109,60],[-24,46]],[[4767,1653],[-84,-170],[-10,-55],[-70,-47],[-52,30],[-82,-35]],[[4469,1376],[24,64],[-177,64],[3,67],[-76,86],[-53,-23],[-37,19],[-5,91],[-18,47]],[[1540,5355],[-96,-10],[1,-42],[-121,29],[-11,-59],[-165,32],[-5,-34],[-93,6],[-61,-30],[-2,-43],[-53,-37],[15,-49],[-42,-65],[-41,3],[-2,-66]],[[276,5135],[-37,61],[18,57],[-30,74],[-130,-25],[-10,91],[105,82],[42,-49],[53,-3],[100,57],[4,59],[-26,27],[103,135],[42,125],[-35,14],[-79,-27],[4,55],[67,42],[70,-30],[1,78],[29,54],[-37,77],[-78,14],[-54,47],[-39,-3],[-33,44],[25,99],[-5,68],[-56,29],[16,72],[28,32],[71,-34],[23,67],[120,63],[67,9],[11,-97],[41,-5],[129,78],[-42,29],[45,49],[3,53],[48,1],[54,43],[90,15],[83,33],[-5,93],[47,31],[70,86],[115,-32],[98,-74],[73,-31],[71,50],[-2,98],[77,-2]],[[3411,4435],[-34,59],[-77,-19],[20,-51],[37,-10],[-50,-105],[45,-39],[-15,-61],[-65,-78],[2,-36],[-51,-55],[-11,-82],[-83,-77],[-37,-3]],[[3478,5168],[27,19],[-2,71],[118,157],[127,130]],[[3748,5545],[50,-9],[-21,-128],[37,-45],[7,-50],[-69,-31],[0,-169],[-64,-24],[65,-61],[13,-100],[40,-52],[51,11],[7,-49],[41,-6],[-8,-88],[29,-65],[-21,-81],[-25,-18],[-23,-85],[-39,-37],[-40,38],[-216,-1],[-20,37],[-81,44],[-32,-48],[17,-49],[-35,-44]],[[5227,2569],[-10,-75],[21,-36],[-30,-67],[-71,-40],[19,-62],[-32,-70],[-61,4],[-58,-18],[-43,25],[-56,-40],[-25,-51]],[[4290,2723],[91,16],[117,95],[44,21],[59,-19],[41,53],[126,77],[-24,81],[99,12],[41,-43],[53,68],[30,-116],[67,-11],[4,44],[82,-43],[16,-101],[-42,-57],[31,-30],[-38,-79],[96,-2],[49,-42],[-5,-78]],[[3411,4435],[8,-17],[128,-8],[-5,-95],[-34,-140],[-67,-7],[22,-59],[-34,-79],[-12,-102],[49,-90],[56,-24],[25,-45],[54,12],[85,-7],[-114,-116],[-6,-57],[26,-36],[60,-24],[-27,-37],[16,-43],[84,-10]],[[3745,3373],[-78,4],[-85,-22],[-9,-36],[75,-25],[4,-35]],[[5227,2569],[23,33],[52,-10],[165,10],[23,-20],[-39,-93],[5,-137],[-20,-47],[94,-49],[8,-25],[83,-28],[84,-6],[-10,-51],[12,-101],[-76,-48],[-5,-88],[-67,-28],[8,-89],[-72,-40],[-29,-50],[-41,44],[-54,-107],[-78,0],[-26,-124],[-126,23],[-71,78],[-54,15],[-26,-60],[-55,53],[-60,-22],[17,77],[-82,-27]],[[4077,6297],[161,-53],[88,20],[48,-10],[82,-55],[-64,-86],[-58,-17],[9,-82],[-10,-93],[21,-56],[-16,-56],[25,-37],[-1,-107],[-105,28],[-92,2],[-133,18],[-133,-23],[-84,-40],[-67,-105]],[[2866,6013],[98,58],[91,72],[46,12],[82,54],[32,-1],[179,95],[127,28],[22,63],[132,31],[3,63],[49,-10],[19,-57],[41,21],[71,-47],[46,-8],[25,-54],[148,-36]],[[4469,1376],[-24,-118],[10,-67],[60,-38],[-7,-91],[-20,-72],[-108,-110],[-61,-10],[-9,-34]],[[4289,6924],[5,-76],[-42,-143],[58,-8],[-5,-39],[-61,-21],[47,-64],[-48,-92],[-63,-78],[-145,-21],[42,-85]]],"transform":{"scale":[0.000792300742229924,0.0007621972666767362],"translate":[74.05831460784648,11.607814232709252]},"objects":{"karnataka_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6]],"type":"Polygon","properties":{"cartodb_id":115,"censuscode":570,"dt_cen_cd":16,"st_cen_cd":29,"st_nm":"Karnataka","district":"Chikmagalur"}},{"arcs":[[7,8,9,10,-3]],"type":"Polygon","properties":{"cartodb_id":130,"censuscode":575,"dt_cen_cd":21,"st_cen_cd":29,"st_nm":"Karnataka","district":"Dakshina Kannada"}},{"arcs":[[11,-6,12,13,14]],"type":"Polygon","properties":{"cartodb_id":138,"censuscode":567,"dt_cen_cd":13,"st_cen_cd":29,"st_nm":"Karnataka","district":"Davanagere"}},{"arcs":[[15,16,17,18,19,20]],"type":"Polygon","properties":{"cartodb_id":187,"censuscode":561,"dt_cen_cd":7,"st_cen_cd":29,"st_nm":"Karnataka","district":"Gadag"}},{"arcs":[[21,22,23,24,25]],"type":"Polygon","properties":{"cartodb_id":208,"censuscode":579,"dt_cen_cd":25,"st_cen_cd":29,"st_nm":"Karnataka","district":"Kalaburagi"}},{"arcs":[[26,27,28,29,30]],"type":"Polygon","properties":{"cartodb_id":366,"censuscode":573,"dt_cen_cd":19,"st_cen_cd":29,"st_nm":"Karnataka","district":"Mandya"}},{"arcs":[[-13,-5,31,32,33]],"type":"Polygon","properties":{"cartodb_id":519,"censuscode":568,"dt_cen_cd":14,"st_cen_cd":29,"st_nm":"Karnataka","district":"Shimoga"}},{"arcs":[[[34,35,36,-31,37,-1,38,39]],[[40,41]]],"type":"MultiPolygon","properties":{"cartodb_id":582,"censuscode":571,"dt_cen_cd":17,"st_cen_cd":29,"st_nm":"Karnataka","district":"Tumkur"}},{"arcs":[[-4,-11,42,43,-32]],"type":"Polygon","properties":{"cartodb_id":587,"censuscode":569,"dt_cen_cd":15,"st_cen_cd":29,"st_nm":"Karnataka","district":"Udupi"}},{"arcs":[[44,45,-33,-44,46,47]],"type":"Polygon","properties":{"cartodb_id":596,"censuscode":563,"dt_cen_cd":9,"st_cen_cd":29,"st_nm":"Karnataka","district":"Uttara Kannada"}},{"arcs":[[-25,48,49,50,51,52]],"type":"Polygon","properties":{"cartodb_id":83,"censuscode":557,"dt_cen_cd":3,"st_cen_cd":29,"st_nm":"Karnataka","district":"Bijapur"}},{"arcs":[[53,54,55,56,-29]],"type":"Polygon","properties":{"cartodb_id":388,"censuscode":577,"dt_cen_cd":23,"st_cen_cd":29,"st_nm":"Karnataka","district":"Mysuru"}},{"arcs":[[57,58,-21,59,-51]],"type":"Polygon","properties":{"cartodb_id":33,"censuscode":556,"dt_cen_cd":2,"st_cen_cd":29,"st_nm":"Karnataka","district":"Bagalkot"}},{"arcs":[[-22,60]],"type":"Polygon","properties":{"cartodb_id":81,"censuscode":558,"dt_cen_cd":4,"st_cen_cd":29,"st_nm":"Karnataka","district":"Bidar"}},{"arcs":[[61,62,-54,-28]],"type":"Polygon","properties":{"cartodb_id":104,"censuscode":578,"dt_cen_cd":24,"st_cen_cd":29,"st_nm":"Karnataka","district":"Chamrajnagar"}},{"arcs":[[-30,-57,63,-8,-2,-38]],"type":"Polygon","properties":{"cartodb_id":223,"censuscode":574,"dt_cen_cd":20,"st_cen_cd":29,"st_nm":"Karnataka","district":"Hassan"}},{"arcs":[[-18,64,-14,-34,-46,65]],"type":"Polygon","properties":{"cartodb_id":225,"censuscode":564,"dt_cen_cd":10,"st_cen_cd":29,"st_nm":"Karnataka","district":"Haveri"}},{"arcs":[[-56,66,-9,-64]],"type":"Polygon","properties":{"cartodb_id":307,"censuscode":576,"dt_cen_cd":22,"st_cen_cd":29,"st_nm":"Karnataka","district":"Kodagu"}},{"arcs":[[67,68,-16,-59]],"type":"Polygon","properties":{"cartodb_id":316,"censuscode":560,"dt_cen_cd":6,"st_cen_cd":29,"st_nm":"Karnataka","district":"Koppal"}},{"arcs":[[69,70,71,72,73,-36]],"type":"Polygon","properties":{"cartodb_id":46,"censuscode":583,"dt_cen_cd":29,"st_cen_cd":29,"st_nm":"Karnataka","district":"Bangalore Rural"}},{"arcs":[[74,75,-73]],"type":"Polygon","properties":{"cartodb_id":47,"censuscode":572,"dt_cen_cd":18,"st_cen_cd":29,"st_nm":"Karnataka","district":"Bengaluru"}},{"arcs":[[-52,-60,-20,76,-48,77]],"type":"Polygon","properties":{"cartodb_id":66,"censuscode":555,"dt_cen_cd":1,"st_cen_cd":29,"st_nm":"Karnataka","district":"Belgaum"}},{"arcs":[[78,-15,-65,-17,-69,79,80]],"type":"Polygon","properties":{"cartodb_id":67,"censuscode":565,"dt_cen_cd":11,"st_cen_cd":29,"st_nm":"Karnataka","district":"Bellary"}},{"arcs":[[81,-70,-35,82]],"type":"Polygon","properties":{"cartodb_id":114,"censuscode":582,"dt_cen_cd":28,"st_cen_cd":29,"st_nm":"Karnataka","district":"Chikkaballapura"}},{"arcs":[[83,-41,84,-39,-7,-12,-79]],"type":"Polygon","properties":{"cartodb_id":117,"censuscode":566,"dt_cen_cd":12,"st_cen_cd":29,"st_nm":"Karnataka","district":"Chitradurga"}},{"arcs":[[-66,-45,-77,-19]],"type":"Polygon","properties":{"cartodb_id":149,"censuscode":562,"dt_cen_cd":8,"st_cen_cd":29,"st_nm":"Karnataka","district":"Dharwad"}},{"arcs":[[-82,85,-71]],"type":"Polygon","properties":{"cartodb_id":311,"censuscode":581,"dt_cen_cd":27,"st_cen_cd":29,"st_nm":"Karnataka","district":"Kolar"}},{"arcs":[[86,-80,-68,-58,-50,87]],"type":"Polygon","properties":{"cartodb_id":460,"censuscode":559,"dt_cen_cd":5,"st_cen_cd":29,"st_nm":"Karnataka","district":"Raichur"}},{"arcs":[[-74,-76,88,-62,-27,-37]],"type":"Polygon","properties":{"cartodb_id":470,"censuscode":584,"dt_cen_cd":30,"st_cen_cd":29,"st_nm":"Karnataka","district":"Ramanagara"}},{"arcs":[[89,-88,-49,-24]],"type":"Polygon","properties":{"cartodb_id":622,"censuscode":580,"dt_cen_cd":26,"st_cen_cd":29,"st_nm":"Karnataka","district":"Yadgir"}}]}}} +{ + "type": "Topology", + "arcs": [ + [ + [2898, 2585], + [12, -42] + ], + [ + [2910, 2543], + [-92, -55], + [-68, 4], + [-8, -53], + [-86, 4], + [-28, -82], + [-122, -43], + [-6, -168], + [-31, 17], + [-99, -6], + [-50, 12], + [-110, -14], + [-4, -50], + [-65, -3], + [-31, -42], + [-3, -110], + [16, -87], + [-119, 1], + [-60, -115], + [-53, -38] + ], + [ + [1891, 1715], + [-2, 39], + [-49, 45], + [12, 91], + [-48, 58], + [-68, 36], + [-80, 82], + [-34, -2], + [-37, -62], + [-76, -7], + [-68, 66] + ], + [ + [1441, 2061], + [-30, 30], + [-48, 116], + [-29, -7], + [-44, 79], + [41, 17], + [48, 83], + [-13, 55] + ], + [ + [1366, 2434], + [37, 57], + [68, 28], + [-5, 98], + [63, -42], + [91, 22], + [83, 59], + [-16, 89], + [77, 32], + [42, 47], + [66, -40], + [86, 41], + [22, -76], + [60, 25], + [-5, 54], + [79, 8], + [116, 63], + [69, -9] + ], + [ + [2299, 2890], + [85, 8], + [106, 69], + [4, 35] + ], + [ + [2494, 3002], + [81, -43], + [67, -175], + [87, -24], + [58, -84], + [17, -55], + [94, -36] + ], + [ + [1891, 1715], + [8, -62], + [76, -14], + [-11, -77], + [57, -63], + [17, -65] + ], + [ + [2038, 1434], + [-31, -45], + [30, -147], + [-69, -58], + [-31, 35], + [-45, -47], + [-67, -19], + [-86, 54], + [-25, -34] + ], + [ + [1714, 1173], + [-56, -18], + [-83, 18], + [-43, 74], + [39, 60], + [-31, 16], + [-52, -65], + [-28, 15], + [-16, 68], + [-74, 10], + [10, 57], + [-131, -22], + [2, 72], + [-73, 31], + [17, 62], + [-65, -8], + [-87, -41], + [-27, 7], + [-71, 179], + [-31, 179], + [6, 87] + ], + [ + [920, 1954], + [50, 41], + [45, -3], + [35, -40], + [-8, -63], + [65, -43], + [80, 1], + [19, -41], + [80, 80], + [63, 114], + [44, 1], + [48, 60] + ], + [ + [3092, 3878], + [32, -37], + [-93, -45], + [0, -66], + [-96, -40], + [-133, -19], + [-21, 47], + [-72, 20], + [-84, -41], + [23, -55], + [1, -84], + [-58, -6], + [26, -79], + [-65, -15], + [-23, -31], + [-1, -80], + [-45, -60], + [36, -62], + [-10, -165], + [-15, -58] + ], + [ + [2299, 2890], + [-28, 136], + [-39, 76], + [-6, 120], + [-22, 43], + [-82, 6], + [-21, -35], + [-70, -11], + [-40, 17], + [-62, -29], + [-89, 52], + [-81, -2], + [-64, 38], + [75, 65], + [-9, 40], + [69, 17], + [35, 80] + ], + [ + [1865, 3503], + [55, -2], + [54, 80], + [23, 107], + [-5, 59], + [99, 11], + [50, 54], + [52, -6], + [31, 76], + [-19, 43], + [9, 68], + [-23, 40], + [-68, 4], + [21, 70] + ], + [ + [2144, 4107], + [100, 79], + [-41, 99], + [31, 31], + [75, -37], + [106, 50], + [75, 16], + [62, -26], + [-7, -41], + [67, 1], + [79, -29], + [-57, -49], + [73, -78], + [-20, -65], + [56, -68], + [28, 64], + [88, -7], + [73, -41], + [17, -44], + [48, -11], + [-10, -50], + [105, -23] + ], + [ + [2256, 5550], + [103, -59], + [78, 12], + [64, -44], + [8, -57], + [-49, -11], + [-51, -51], + [-120, 49], + [1, -55], + [34, -87], + [-40, -16], + [-10, -107], + [-53, -7], + [6, -73], + [46, -10], + [8, -49], + [48, -7], + [-17, -150], + [45, -140], + [31, -57] + ], + [ + [2388, 4631], + [-57, -8], + [-25, -45], + [32, -28], + [-46, -53], + [-37, 10], + [-75, -57], + [-53, -73], + [-52, 5] + ], + [ + [2075, 4382], + [-40, 51], + [-49, -4], + [-45, -36], + [-65, 29], + [-7, 64], + [-51, 26], + [-100, 19] + ], + [ + [1718, 4531], + [20, 58], + [-42, 90], + [41, 32], + [-25, 134], + [46, 1], + [10, 62], + [43, 31], + [2, 129], + [-28, 29], + [17, 50], + [58, 10], + [4, 68], + [27, 75], + [-66, 1], + [-19, 71], + [-95, -61], + [-171, 44] + ], + [ + [1540, 5355], + [45, 55], + [-13, 104], + [78, -8], + [15, 50], + [63, 0], + [35, 58] + ], + [ + [1763, 5614], + [50, -17], + [45, -51], + [168, 2], + [104, -30], + [41, 48], + [85, -16] + ], + [ + [3324, 7969], + [100, -46], + [83, 6], + [155, -19], + [27, 67], + [136, -37], + [35, 33], + [44, -70], + [55, -20], + [45, 21], + [59, -7], + [30, -38], + [98, -19], + [82, 1] + ], + [ + [4273, 7841], + [274, -78], + [40, -30], + [-98, -38], + [-48, -53], + [-79, -3], + [13, -85], + [-82, -23], + [-28, -74], + [26, -16], + [-93, -74], + [-26, -76], + [20, -31], + [110, -45], + [46, -126], + [-44, -72], + [-15, -93] + ], + [ + [4289, 6924], + [-61, -5], + [-92, 65], + [-78, -8], + [-43, 23], + [-76, -11], + [-95, -44], + [-53, 60], + [-46, -64], + [20, -24], + [-135, -66], + [-38, 30], + [-11, 58], + [-97, -35], + [-80, -50], + [-15, -64], + [-61, 5], + [-77, -65], + [-36, 38], + [-121, -32], + [-62, -39] + ], + [ + [3032, 6696], + [-32, 67], + [-80, 6], + [-21, 68], + [25, 52], + [80, 11], + [-11, 305], + [-39, -37], + [-41, 47], + [3, 75], + [-57, 5], + [-104, -21], + [-147, 122], + [-43, 14], + [9, 46], + [-31, 57] + ], + [ + [2543, 7513], + [61, 44], + [53, -33], + [83, 29], + [60, -43], + [134, -24], + [33, 76], + [-58, 7], + [14, 78], + [-30, 49], + [-23, 161], + [106, 12], + [17, 53], + [71, 33], + [2, 58], + [47, 2], + [0, 57], + [102, -4], + [109, -99] + ], + [ + [3815, 1493], + [-8, -83], + [30, -10], + [21, -160], + [55, -103], + [65, 13], + [75, -26], + [22, -95], + [59, -51], + [-14, -61] + ], + [ + [4120, 917], + [-197, 3], + [4, -65], + [-71, -22] + ], + [ + [3856, 833], + [-99, -12], + [-44, 13], + [-34, 61], + [5, 82], + [-48, 2], + [-3, 62], + [-127, 1], + [-31, -55], + [-51, -13], + [-17, -63], + [-135, 122], + [-88, -61], + [-30, 56], + [14, 43], + [-146, 78], + [-49, 95], + [-41, 25], + [-46, 106] + ], + [ + [2886, 1375], + [25, 71], + [-33, 135], + [65, 43], + [50, 8], + [51, -74], + [31, -10], + [35, 70], + [69, 9], + [25, 95], + [45, 68], + [-1, 44] + ], + [ + [3248, 1834], + [53, 63], + [112, -25], + [82, -45], + [15, -73], + [61, -61], + [5, -59], + [52, -70], + [48, 3], + [50, -50], + [89, -24] + ], + [ + [1366, 2434], + [-77, 44], + [-56, 101], + [31, 25], + [-54, 58], + [-25, 137], + [-66, 30], + [-38, 122], + [-65, 10], + [-52, 58], + [-58, 10], + [-74, -13], + [-21, 57], + [-42, 45] + ], + [ + [769, 3118], + [12, 71], + [-47, 77], + [5, 62], + [29, 57], + [78, -12], + [-14, 73], + [226, -16], + [56, 51], + [-38, 37], + [53, 119], + [-40, 69], + [-44, -2], + [25, 129], + [92, 30], + [18, -63], + [63, -4], + [12, 40], + [-36, 43], + [8, 68], + [26, 42] + ], + [ + [1253, 3989], + [92, -24], + [111, -9], + [-34, -49], + [73, -37], + [28, 28], + [104, -126], + [2, -125], + [194, -106], + [42, -38] + ], + [ + [4290, 2723], + [-93, -30], + [-24, -51], + [36, -117], + [-8, -43] + ], + [ + [4201, 2482], + [-46, -62], + [-13, -161], + [-40, -25], + [-98, 0], + [-9, -56], + [-43, 5], + [19, -115] + ], + [ + [3971, 2068], + [-60, 9], + [-94, -78], + [-12, -113], + [56, -46], + [65, -106], + [-32, -19], + [-13, -75], + [30, -43], + [-9, -55], + [-62, -12], + [-25, -37] + ], + [ + [3248, 1834], + [-29, 4], + [4, 78], + [-179, 29], + [7, 74], + [-61, 49], + [-69, 19], + [-33, 211], + [45, 5], + [46, 111], + [-21, 100], + [-48, 29] + ], + [ + [2898, 2585], + [59, 19], + [68, -4], + [8, 36], + [72, 21], + [70, 105], + [50, 13], + [97, -18], + [10, 79], + [34, 35], + [49, -22], + [4, 74], + [-55, 78], + [74, 37], + [41, -10], + [44, 61], + [-31, 42], + [59, 19], + [30, 56], + [71, 53] + ], + [ + [3652, 3259], + [-19, -82], + [80, -54], + [-7, -33], + [60, -40], + [-38, -100], + [-47, -46], + [30, -95], + [54, 36], + [32, -40], + [44, 29], + [91, -8], + [-7, 79], + [-28, 58], + [127, 46], + [14, -72], + [71, 24], + [16, -42], + [135, 6], + [46, -113], + [-16, -89] + ], + [ + [3745, 3373], + [-20, 78] + ], + [ + [3725, 3451], + [58, 10], + [32, -39], + [44, 16], + [-4, 52], + [32, 91], + [81, -22], + [107, 23], + [-1, -72], + [100, -9], + [-4, -52], + [36, -50], + [39, 15], + [-18, 75], + [-34, 59], + [27, 31], + [60, -25], + [1, -42], + [67, -8], + [-8, -58], + [26, -72], + [-153, -10], + [-16, -46], + [23, -35], + [-72, -65], + [-15, -40], + [72, -21], + [47, -39], + [-16, -54], + [15, -54], + [-90, 2], + [-6, 71], + [-38, 97], + [-44, -23], + [-183, -12], + [-17, 57], + [-56, -5], + [-67, 20], + [-17, 51], + [12, 105] + ], + [ + [920, 1954], + [-26, -8], + [-19, 111], + [-45, 138], + [-28, 153], + [26, 29], + [-39, 91], + [-25, 186], + [-18, 42], + [-28, 157], + [-56, 188] + ], + [ + [662, 3041], + [62, 30], + [45, 47] + ], + [ + [864, 4990], + [71, -45], + [34, -44], + [92, -58], + [13, -64], + [-41, -75], + [-61, -78], + [67, -65], + [38, -61], + [36, 37], + [178, 9] + ], + [ + [1291, 4546], + [-15, -75], + [44, -117], + [-42, -11], + [0, -181], + [-57, -74], + [32, -99] + ], + [ + [662, 3041], + [-85, 84], + [-64, 273], + [-20, 23], + [39, 90], + [-68, -4], + [-36, 174], + [23, 89], + [-59, 81], + [-48, -38], + [-75, 148], + [17, 13], + [-25, 105], + [-36, 40], + [-41, -19], + [-120, 68], + [22, 65], + [-48, 81], + [120, 77], + [44, -14], + [47, 21], + [18, 69], + [33, 39], + [-27, 81], + [52, 108], + [-19, 52], + [-55, 24], + [24, 52], + [65, 2], + [-7, 111], + [-53, 20], + [-5, 79], + [-33, 61], + [34, 39] + ], + [ + [276, 5135], + [80, -4], + [44, -48], + [57, -26], + [8, -86], + [67, -1], + [69, 31], + [101, -80], + [107, 67], + [55, 2] + ], + [ + [3032, 6696], + [-43, -21], + [-27, -63], + [16, -63], + [25, -216], + [-131, -14], + [0, -45], + [-40, -140], + [58, -12], + [8, -63], + [-32, -46] + ], + [ + [2866, 6013], + [-60, -54], + [-51, 20] + ], + [ + [2755, 5979], + [-126, 20], + [-103, 51], + [9, 52], + [-67, 56], + [-69, -5], + [-223, 108], + [-73, 14], + [-102, 65], + [-49, 6], + [-54, -40], + [-12, 55], + [-68, -6], + [-7, -42], + [-54, -8], + [-20, 31], + [66, 94], + [7, 110], + [-39, 38], + [-28, 99], + [65, 1], + [4, 55], + [-84, 36], + [-50, -7] + ], + [ + [1678, 6762], + [-12, 61], + [21, 69], + [-76, 10], + [10, 112] + ], + [ + [1621, 7014], + [63, 32], + [46, -17], + [47, 28], + [54, -49], + [75, 21], + [0, 56], + [50, -4], + [1, -44], + [44, -24], + [30, 35], + [16, 122], + [-9, 56], + [-54, 61], + [39, 63], + [-6, 82], + [-66, 42], + [13, 116], + [25, 113], + [57, -31], + [13, -54], + [58, 12], + [94, -68], + [17, 69], + [89, -22], + [-1, -68], + [47, -39], + [167, 36], + [13, -25] + ], + [ + [3856, 833], + [23, -50], + [-108, -47], + [-13, -37], + [-59, 4], + [-53, -60], + [-87, 47], + [18, -99], + [-10, -58], + [-30, -23], + [-86, 16], + [-108, -35], + [-44, 33], + [-36, -33], + [-82, 3], + [-23, -51], + [20, -32], + [-53, -66], + [-55, -16], + [2, -50], + [-38, -40], + [-48, 13], + [-11, -52] + ], + [ + [2975, 200], + [-92, -30], + [-80, 95], + [-68, -4], + [-44, 83], + [-96, -17], + [0, 157] + ], + [ + [2595, 484], + [95, 99], + [-23, 87], + [-48, 97], + [-34, 3], + [-56, 72], + [-49, 3], + [-29, 96], + [-49, 26], + [-63, 71], + [24, 50], + [56, 14], + [-17, 53], + [34, 70], + [41, 33] + ], + [ + [2477, 1258], + [34, 10], + [67, -60], + [66, 21], + [53, 59], + [18, 52], + [129, -8], + [42, 43] + ], + [ + [2755, 5979], + [6, -71], + [72, -50], + [12, -99], + [-13, -37], + [33, -50], + [-54, -39] + ], + [ + [2811, 5633], + [-72, 50], + [-91, -37], + [-48, -34], + [-73, 25], + [32, 115], + [-115, 15], + [-24, -28], + [3, -151], + [-42, -3], + [-52, 76], + [-65, 17], + [-81, -18], + [79, -80], + [-6, -30] + ], + [ + [1763, 5614], + [-37, 45], + [19, 58], + [-31, 113], + [-1, 75], + [-176, 13], + [19, 67], + [-59, 48], + [-35, 81], + [-114, 26], + [13, 46], + [-130, 19], + [5, 73], + [44, 13], + [6, 43], + [-66, -4], + [-40, 43], + [19, 95], + [72, 3], + [54, -41], + [63, 27], + [15, 94], + [123, 46], + [-5, 56], + [34, 45], + [92, 1], + [31, 63] + ], + [ + [3324, 7969], + [10, 61], + [114, 131], + [-64, 40], + [147, 54], + [35, -7], + [40, 58], + [6, 126], + [39, 17], + [6, 84], + [-39, 8], + [40, 90], + [131, -43], + [64, 1], + [-16, 55], + [68, 29], + [26, 84], + [46, -4], + [42, 172], + [108, 61], + [56, -72], + [39, -4], + [10, -128], + [72, -52], + [60, 29], + [115, -5], + [-39, -49], + [-3, -68], + [35, -49], + [0, -88], + [-39, -10], + [-17, -55], + [67, -22], + [59, -63], + [-86, -81], + [-27, -87], + [-67, -53], + [65, -71], + [-29, -28], + [-112, -45], + [3, -80], + [-16, -64] + ], + [ + [4120, 917], + [31, -37], + [93, 12], + [66, -56] + ], + [ + [4310, 836], + [4, -45], + [57, -23], + [118, 15], + [154, -37], + [54, -80], + [-67, -75], + [-65, -126], + [-92, -35], + [-85, -6], + [-50, 14], + [-11, -56], + [-56, -155], + [-96, 9], + [-37, -26], + [-53, 51], + [-54, 6], + [-176, -52], + [-36, -44], + [-42, 63], + [-46, 33], + [-76, -29], + [-57, 3], + [-24, -77], + [-34, -34], + [-32, -72], + [29, -56], + [-126, 7], + [-182, -9], + [-69, 16], + [-17, 76], + [-46, 36], + [-67, -57], + [-52, 13], + [11, 68], + [-14, 48] + ], + [ + [2477, 1258], + [-68, -11], + [-30, 58], + [-5, 55], + [36, 86], + [-36, 67], + [40, 46], + [-133, 32], + [-17, -120], + [45, -32], + [-4, -41], + [-57, -6], + [-35, 41], + [-62, -33], + [-70, 44], + [-43, -10] + ], + [ + [2075, 4382], + [-7, -73], + [47, -37], + [-67, -30], + [-20, -51], + [69, -36], + [-3, -74], + [50, 26] + ], + [ + [1291, 4546], + [-1, 48], + [35, 38], + [60, 9], + [-17, -60], + [107, -1], + [141, 80], + [5, -124], + [33, -23], + [64, 18] + ], + [ + [2595, 484], + [-100, -50], + [-67, -10], + [-126, 21], + [-64, 48], + [-34, 69], + [-6, 57], + [-85, -13], + [-56, 50], + [-27, -15], + [-58, 76], + [-51, 2], + [-120, 178], + [-66, 7], + [-66, 124], + [-15, 85], + [73, 20], + [-13, 40] + ], + [ + [2811, 5633], + [149, -2], + [60, -64], + [-9, -151], + [111, -48], + [84, 0], + [2, -35], + [117, -36], + [-3, -67], + [73, -5], + [15, -33], + [68, -24] + ], + [ + [3478, 5168], + [-1, -42], + [-40, -29], + [-86, -4], + [-55, -52], + [-73, -11], + [-26, -38], + [-118, -88], + [-170, -26], + [-37, -83], + [-29, -3], + [-79, -90], + [-76, 57], + [-37, -49], + [-43, 6], + [-39, -52], + [-82, -26], + [-64, 13], + [-35, -20] + ], + [ + [4201, 2482], + [74, -49], + [76, -8], + [63, -51], + [75, 4], + [107, -112], + [69, 35], + [93, -47], + [-21, -85], + [77, -38], + [67, 8] + ], + [ + [4881, 2139], + [52, 7], + [-12, -156], + [-69, -33], + [-37, -149], + [3, -57], + [-26, -66], + [18, -33] + ], + [ + [4810, 1652], + [-43, 1] + ], + [ + [4767, 1653], + [-15, 51], + [-71, 41], + [23, 113], + [-55, 128], + [-16, 87], + [-137, 22], + [-63, -5], + [-29, 40], + [-86, -14], + [-22, -80], + [-41, 5], + [-31, -66], + [-31, -156], + [-63, -28] + ], + [ + [4130, 1791], + [-26, 171], + [-109, 60], + [-24, 46] + ], + [ + [4767, 1653], + [-84, -170], + [-10, -55], + [-70, -47], + [-52, 30], + [-82, -35] + ], + [ + [4469, 1376], + [24, 64], + [-177, 64], + [3, 67], + [-76, 86], + [-53, -23], + [-37, 19], + [-5, 91], + [-18, 47] + ], + [ + [1540, 5355], + [-96, -10], + [1, -42], + [-121, 29], + [-11, -59], + [-165, 32], + [-5, -34], + [-93, 6], + [-61, -30], + [-2, -43], + [-53, -37], + [15, -49], + [-42, -65], + [-41, 3], + [-2, -66] + ], + [ + [276, 5135], + [-37, 61], + [18, 57], + [-30, 74], + [-130, -25], + [-10, 91], + [105, 82], + [42, -49], + [53, -3], + [100, 57], + [4, 59], + [-26, 27], + [103, 135], + [42, 125], + [-35, 14], + [-79, -27], + [4, 55], + [67, 42], + [70, -30], + [1, 78], + [29, 54], + [-37, 77], + [-78, 14], + [-54, 47], + [-39, -3], + [-33, 44], + [25, 99], + [-5, 68], + [-56, 29], + [16, 72], + [28, 32], + [71, -34], + [23, 67], + [120, 63], + [67, 9], + [11, -97], + [41, -5], + [129, 78], + [-42, 29], + [45, 49], + [3, 53], + [48, 1], + [54, 43], + [90, 15], + [83, 33], + [-5, 93], + [47, 31], + [70, 86], + [115, -32], + [98, -74], + [73, -31], + [71, 50], + [-2, 98], + [77, -2] + ], + [ + [3411, 4435], + [-34, 59], + [-77, -19], + [20, -51], + [37, -10], + [-50, -105], + [45, -39], + [-15, -61], + [-65, -78], + [2, -36], + [-51, -55], + [-11, -82], + [-83, -77], + [-37, -3] + ], + [ + [3478, 5168], + [27, 19], + [-2, 71], + [118, 157], + [127, 130] + ], + [ + [3748, 5545], + [50, -9], + [-21, -128], + [37, -45], + [7, -50], + [-69, -31], + [0, -169], + [-64, -24], + [65, -61], + [13, -100], + [40, -52], + [51, 11], + [7, -49], + [41, -6], + [-8, -88], + [29, -65], + [-21, -81], + [-25, -18], + [-23, -85], + [-39, -37], + [-40, 38], + [-216, -1], + [-20, 37], + [-81, 44], + [-32, -48], + [17, -49], + [-35, -44] + ], + [ + [5227, 2569], + [-10, -75], + [21, -36], + [-30, -67], + [-71, -40], + [19, -62], + [-32, -70], + [-61, 4], + [-58, -18], + [-43, 25], + [-56, -40], + [-25, -51] + ], + [ + [4290, 2723], + [91, 16], + [117, 95], + [44, 21], + [59, -19], + [41, 53], + [126, 77], + [-24, 81], + [99, 12], + [41, -43], + [53, 68], + [30, -116], + [67, -11], + [4, 44], + [82, -43], + [16, -101], + [-42, -57], + [31, -30], + [-38, -79], + [96, -2], + [49, -42], + [-5, -78] + ], + [ + [3411, 4435], + [8, -17], + [128, -8], + [-5, -95], + [-34, -140], + [-67, -7], + [22, -59], + [-34, -79], + [-12, -102], + [49, -90], + [56, -24], + [25, -45], + [54, 12], + [85, -7], + [-114, -116], + [-6, -57], + [26, -36], + [60, -24], + [-27, -37], + [16, -43], + [84, -10] + ], + [ + [3745, 3373], + [-78, 4], + [-85, -22], + [-9, -36], + [75, -25], + [4, -35] + ], + [ + [5227, 2569], + [23, 33], + [52, -10], + [165, 10], + [23, -20], + [-39, -93], + [5, -137], + [-20, -47], + [94, -49], + [8, -25], + [83, -28], + [84, -6], + [-10, -51], + [12, -101], + [-76, -48], + [-5, -88], + [-67, -28], + [8, -89], + [-72, -40], + [-29, -50], + [-41, 44], + [-54, -107], + [-78, 0], + [-26, -124], + [-126, 23], + [-71, 78], + [-54, 15], + [-26, -60], + [-55, 53], + [-60, -22], + [17, 77], + [-82, -27] + ], + [ + [4077, 6297], + [161, -53], + [88, 20], + [48, -10], + [82, -55], + [-64, -86], + [-58, -17], + [9, -82], + [-10, -93], + [21, -56], + [-16, -56], + [25, -37], + [-1, -107], + [-105, 28], + [-92, 2], + [-133, 18], + [-133, -23], + [-84, -40], + [-67, -105] + ], + [ + [2866, 6013], + [98, 58], + [91, 72], + [46, 12], + [82, 54], + [32, -1], + [179, 95], + [127, 28], + [22, 63], + [132, 31], + [3, 63], + [49, -10], + [19, -57], + [41, 21], + [71, -47], + [46, -8], + [25, -54], + [148, -36] + ], + [ + [4469, 1376], + [-24, -118], + [10, -67], + [60, -38], + [-7, -91], + [-20, -72], + [-108, -110], + [-61, -10], + [-9, -34] + ], + [ + [4289, 6924], + [5, -76], + [-42, -143], + [58, -8], + [-5, -39], + [-61, -21], + [47, -64], + [-48, -92], + [-63, -78], + [-145, -21], + [42, -85] + ] + ], + "transform": { + "scale": [0.000792300742229924, 0.0007621972666767362], + "translate": [74.05831460784648, 11.607814232709252] + }, + "objects": { + "karnataka_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5, 6]], + "type": "Polygon", + "properties": { + "cartodb_id": 115, + "censuscode": 570, + "dt_cen_cd": 16, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Chikmagalur" + } + }, + { + "arcs": [[7, 8, 9, 10, -3]], + "type": "Polygon", + "properties": { + "cartodb_id": 130, + "censuscode": 575, + "dt_cen_cd": 21, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Dakshina Kannada" + } + }, + { + "arcs": [[11, -6, 12, 13, 14]], + "type": "Polygon", + "properties": { + "cartodb_id": 138, + "censuscode": 567, + "dt_cen_cd": 13, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Davanagere" + } + }, + { + "arcs": [[15, 16, 17, 18, 19, 20]], + "type": "Polygon", + "properties": { + "cartodb_id": 187, + "censuscode": 561, + "dt_cen_cd": 7, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Gadag" + } + }, + { + "arcs": [[21, 22, 23, 24, 25]], + "type": "Polygon", + "properties": { + "cartodb_id": 208, + "censuscode": 579, + "dt_cen_cd": 25, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Kalaburagi" + } + }, + { + "arcs": [[26, 27, 28, 29, 30]], + "type": "Polygon", + "properties": { + "cartodb_id": 366, + "censuscode": 573, + "dt_cen_cd": 19, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Mandya" + } + }, + { + "arcs": [[-13, -5, 31, 32, 33]], + "type": "Polygon", + "properties": { + "cartodb_id": 519, + "censuscode": 568, + "dt_cen_cd": 14, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Shimoga" + } + }, + { + "arcs": [[[34, 35, 36, -31, 37, -1, 38, 39]], [[40, 41]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 582, + "censuscode": 571, + "dt_cen_cd": 17, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Tumkur" + } + }, + { + "arcs": [[-4, -11, 42, 43, -32]], + "type": "Polygon", + "properties": { + "cartodb_id": 587, + "censuscode": 569, + "dt_cen_cd": 15, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Udupi" + } + }, + { + "arcs": [[44, 45, -33, -44, 46, 47]], + "type": "Polygon", + "properties": { + "cartodb_id": 596, + "censuscode": 563, + "dt_cen_cd": 9, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Uttara Kannada" + } + }, + { + "arcs": [[-25, 48, 49, 50, 51, 52]], + "type": "Polygon", + "properties": { + "cartodb_id": 83, + "censuscode": 557, + "dt_cen_cd": 3, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Bijapur" + } + }, + { + "arcs": [[53, 54, 55, 56, -29]], + "type": "Polygon", + "properties": { + "cartodb_id": 388, + "censuscode": 577, + "dt_cen_cd": 23, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Mysuru" + } + }, + { + "arcs": [[57, 58, -21, 59, -51]], + "type": "Polygon", + "properties": { + "cartodb_id": 33, + "censuscode": 556, + "dt_cen_cd": 2, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Bagalkot" + } + }, + { + "arcs": [[-22, 60]], + "type": "Polygon", + "properties": { + "cartodb_id": 81, + "censuscode": 558, + "dt_cen_cd": 4, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Bidar" + } + }, + { + "arcs": [[61, 62, -54, -28]], + "type": "Polygon", + "properties": { + "cartodb_id": 104, + "censuscode": 578, + "dt_cen_cd": 24, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Chamrajnagar" + } + }, + { + "arcs": [[-30, -57, 63, -8, -2, -38]], + "type": "Polygon", + "properties": { + "cartodb_id": 223, + "censuscode": 574, + "dt_cen_cd": 20, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Hassan" + } + }, + { + "arcs": [[-18, 64, -14, -34, -46, 65]], + "type": "Polygon", + "properties": { + "cartodb_id": 225, + "censuscode": 564, + "dt_cen_cd": 10, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Haveri" + } + }, + { + "arcs": [[-56, 66, -9, -64]], + "type": "Polygon", + "properties": { + "cartodb_id": 307, + "censuscode": 576, + "dt_cen_cd": 22, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Kodagu" + } + }, + { + "arcs": [[67, 68, -16, -59]], + "type": "Polygon", + "properties": { + "cartodb_id": 316, + "censuscode": 560, + "dt_cen_cd": 6, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Koppal" + } + }, + { + "arcs": [[69, 70, 71, 72, 73, -36]], + "type": "Polygon", + "properties": { + "cartodb_id": 46, + "censuscode": 583, + "dt_cen_cd": 29, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Bangalore Rural" + } + }, + { + "arcs": [[74, 75, -73]], + "type": "Polygon", + "properties": { + "cartodb_id": 47, + "censuscode": 572, + "dt_cen_cd": 18, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Bengaluru" + } + }, + { + "arcs": [[-52, -60, -20, 76, -48, 77]], + "type": "Polygon", + "properties": { + "cartodb_id": 66, + "censuscode": 555, + "dt_cen_cd": 1, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Belgaum" + } + }, + { + "arcs": [[78, -15, -65, -17, -69, 79, 80]], + "type": "Polygon", + "properties": { + "cartodb_id": 67, + "censuscode": 565, + "dt_cen_cd": 11, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Bellary" + } + }, + { + "arcs": [[81, -70, -35, 82]], + "type": "Polygon", + "properties": { + "cartodb_id": 114, + "censuscode": 582, + "dt_cen_cd": 28, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Chikkaballapura" + } + }, + { + "arcs": [[83, -41, 84, -39, -7, -12, -79]], + "type": "Polygon", + "properties": { + "cartodb_id": 117, + "censuscode": 566, + "dt_cen_cd": 12, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Chitradurga" + } + }, + { + "arcs": [[-66, -45, -77, -19]], + "type": "Polygon", + "properties": { + "cartodb_id": 149, + "censuscode": 562, + "dt_cen_cd": 8, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Dharwad" + } + }, + { + "arcs": [[-82, 85, -71]], + "type": "Polygon", + "properties": { + "cartodb_id": 311, + "censuscode": 581, + "dt_cen_cd": 27, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Kolar" + } + }, + { + "arcs": [[86, -80, -68, -58, -50, 87]], + "type": "Polygon", + "properties": { + "cartodb_id": 460, + "censuscode": 559, + "dt_cen_cd": 5, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Raichur" + } + }, + { + "arcs": [[-74, -76, 88, -62, -27, -37]], + "type": "Polygon", + "properties": { + "cartodb_id": 470, + "censuscode": 584, + "dt_cen_cd": 30, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Ramanagara" + } + }, + { + "arcs": [[89, -88, -49, -24]], + "type": "Polygon", + "properties": { + "cartodb_id": 622, + "censuscode": 580, + "dt_cen_cd": 26, + "st_cen_cd": 29, + "st_nm": "Karnataka", + "district": "Yadgir" + } + } + ] + } + } +} diff --git a/public/maps/kerala.json b/public/maps/kerala.json index de84b64c64..7b0e835e4a 100644 --- a/public/maps/kerala.json +++ b/public/maps/kerala.json @@ -1 +1,2671 @@ -{"type":"Topology","arcs":[[[12932,12697],[-17,-112],[-29,-60],[0,-46],[68,-25],[13,-46],[43,-38],[13,38],[67,-5],[65,49],[24,-4],[-14,-47],[1,-96],[56,-18],[42,-48],[49,-8],[48,-74]],[[13361,12157],[-36,13],[-22,33],[-41,-9],[-18,22],[-41,15],[-8,35],[-50,21],[-27,-14],[-7,17],[-123,51],[-13,-5],[-29,25],[-49,-48],[-89,43],[-89,14],[-42,-51],[-17,0],[-13,17],[-32,-14],[-90,-4],[-3,-33],[-35,-10],[-63,-4],[-73,51],[-35,-18],[-96,-19],[-140,-13],[-63,-27],[-66,11]],[[11951,12256],[-126,28],[-40,43],[-34,11],[-79,4],[-19,-30],[-29,-11],[-108,1],[-27,31],[-94,14],[-73,51],[-16,51],[-75,21],[-77,-53],[38,-63],[-64,7],[-42,-11],[-102,36],[-98,-18],[-146,9],[-62,31],[-135,-1],[-81,28],[-73,-1],[-121,-36],[-95,34],[-11,-6],[6,-41],[-22,-5],[-3,-54],[-66,-14],[-38,-60],[-36,-23],[-5,-45],[-27,-13],[-37,2],[-14,-54],[-22,-22],[-206,-57],[-20,-13],[-37,-117],[-32,-19],[-112,-19],[-10,-22],[19,-132],[-53,25],[-57,-43],[-140,-23],[-8,32],[-40,51],[-39,6],[-10,41],[20,22],[-74,15],[-23,-7],[-60,26],[-27,-10],[-54,7],[-45,20],[-47,-35],[-6,-42],[-212,-29],[-79,-35]],[[8546,11739],[-14,33],[-30,12],[-47,51],[-99,207],[-2,155],[-39,39],[-84,317],[-170,478],[-139,267],[-64,168],[-94,113],[-42,86],[2,10],[11,-4],[55,-81],[33,-17],[-20,68],[-71,102],[-28,92],[9,18],[87,12],[90,-107],[-46,110],[35,16],[-8,34],[-83,36],[-32,61],[-7,44],[18,17],[-15,41],[-40,-11],[-24,-26],[-2,-22],[70,-154],[-84,-28],[-4,-58],[25,-85],[-9,-7],[-28,15],[-146,405],[-131,222],[-165,376],[-70,110]],[[7144,14854],[42,2],[11,17],[64,28],[8,-12],[43,0],[2,-33],[18,-4],[4,44],[62,7],[10,11],[5,-16],[27,0],[31,-29],[37,-11],[52,38],[107,33],[33,39],[47,-13],[18,13],[9,-12],[15,7],[15,56],[50,46],[36,10],[9,34]],[[7899,15109],[225,-30],[136,-79],[45,64],[40,-22],[45,1],[53,-36],[9,27],[30,-47],[28,-19],[47,47],[6,38],[56,56],[7,37],[41,30],[24,61],[34,25],[45,9],[6,90],[-94,81],[15,15],[136,-33],[52,23],[79,-55],[63,-3],[18,-28],[1,-101],[12,-18],[31,-10],[106,47],[81,-2],[50,16],[245,-77],[94,22],[109,-25],[15,16],[16,72],[25,33],[120,31],[30,-27],[52,-102],[47,-15],[46,14],[198,3],[199,21],[28,-23],[-31,-37],[5,-13],[36,-15],[21,-31],[-14,-28],[-69,-51],[-26,-93],[-25,-38],[-55,10],[-41,-22],[51,-122],[1,-109],[-62,24],[-11,-32],[-23,-20],[-4,-27],[-47,-1],[-31,-19],[2,-28],[-38,-89],[13,-14],[34,-2],[19,-65],[-28,-49],[-59,-22],[-6,-52],[-67,19],[-10,-27],[54,-134],[26,23],[45,-1],[8,-27],[23,-4],[9,-48],[24,-15],[1,-32],[48,-10],[-40,-103],[4,-34],[72,-67],[39,-4],[18,-15],[96,-104],[-4,-32],[55,-59],[21,-15],[44,1],[36,-33],[212,-79],[27,-20],[66,-95],[124,-28],[5,-60],[13,-12],[63,29],[104,-6],[97,-100],[44,-117],[90,-118],[26,-14],[35,9],[-3,-30],[18,-4],[26,24],[58,18],[72,-30],[15,49],[96,-87],[70,-21],[12,-27],[18,-6],[101,10],[20,45],[86,15],[173,-45],[66,-30],[55,7],[4,-26],[-24,-47],[-57,-24],[-7,-50],[13,-15],[114,-11],[26,14],[7,27],[66,-26],[119,6],[22,44],[61,18],[85,-70],[50,10]],[[6986,22624],[-37,-112],[63,-69],[17,-99],[-9,-37],[-43,-51],[-103,-42],[112,-75],[-24,-129],[-15,-2],[-23,34],[-130,-26],[-89,20],[-45,-3],[-33,19],[-53,-6],[-24,18],[-50,-10],[-39,12],[-36,32],[-99,-28],[-83,34],[-62,-3],[-47,-54],[-53,-2],[-9,-30],[-6,-33],[44,-42],[10,-31],[-10,-58],[-91,-39],[-36,-63]],[[5983,21749],[-31,20],[-124,14],[-25,-14],[5,-36],[35,-48],[-6,-18],[-96,10],[-13,-33],[-33,-8],[-32,20],[-26,44],[-48,30],[-126,24],[-22,-6],[-19,-14],[-36,-118],[-97,-57],[-20,-54],[-64,-27],[-148,-115],[-50,4],[-22,-44],[-95,-73],[-24,-9],[-27,7],[-21,-15],[-45,3],[-7,-9],[23,-36],[1,-44],[66,-37],[-11,-45],[-94,0],[-74,-70],[-46,-13],[-42,36],[-11,72],[-42,61],[-78,13]],[[4458,21164],[-27,37],[-23,2],[-49,-27],[-54,48],[-63,94],[-196,145],[-5,39],[-45,65],[-65,-25],[-37,10],[22,44],[-26,44],[-191,166],[-118,172],[-65,43],[-81,100],[-23,15],[-47,-3],[-75,-53],[-52,21],[-11,73],[-44,56],[-116,118],[-72,29],[-5,34],[26,24],[-85,132],[-10,72],[32,10],[55,-13],[129,-88],[37,-3],[16,22],[-4,22],[-79,74],[-95,50],[-18,32],[-13,93],[-26,20],[-21,-11],[-9,-46],[-22,9],[-89,127],[-14,10],[-17,-8],[10,-78],[74,-133],[2,-18],[-35,-1],[-52,36],[-81,92],[-69,123],[-104,143],[-39,31],[-48,15],[-37,-6],[-52,-61],[-98,-68],[-21,10],[-33,136],[-106,220]],[[2094,23380],[-76,201],[60,53],[39,-20],[37,11],[-13,106],[16,19],[-27,59],[17,58],[26,26],[-23,33],[-30,148],[-70,77],[-17,40],[149,20],[37,-14],[24,9],[125,103],[41,57],[78,-12],[87,12],[41,34],[101,24],[36,32],[49,4],[16,11],[5,34],[-27,98],[73,64],[133,26],[98,-34],[34,12],[45,-7],[108,55],[23,31],[81,12],[42,24],[8,45],[22,5],[12,-7],[-3,-39],[40,24],[145,-3]],[[3656,24811],[30,4],[46,31],[182,-21],[58,42],[102,-57],[26,-29],[38,-91],[75,-22],[0,-22],[48,-39],[54,-108],[-5,-33],[32,-11],[13,-57],[83,-53],[-7,-47],[-26,-27],[5,-19],[28,-4],[71,-43],[24,-76],[19,1],[29,-48],[70,-19],[43,-92],[68,-15],[28,-32],[41,21],[69,14],[21,-18],[38,20],[64,-24],[16,-22],[38,5],[17,-53],[20,-4],[21,-38],[-6,-44],[30,-32],[4,-57],[23,-10],[71,-79],[34,-7],[71,19],[38,57],[115,-12],[-6,-104],[108,-32],[-19,-57],[19,-44],[72,13],[71,50],[57,8],[29,25],[72,7],[213,-27],[42,-38],[-36,-115],[-19,-12],[30,-37],[2,-55],[12,-15],[79,-52],[0,-36],[97,-64],[5,-18],[-25,-51],[22,-103],[24,-21],[91,-27],[44,-82],[97,-70],[115,-42],[135,-25],[76,-5],[27,10],[37,-17]],[[4428,21360],[-11,-10],[-38,4],[-14,-14],[-11,-72],[80,-38],[111,26],[8,42],[-23,26],[-67,29],[7,147],[-16,10],[-52,-6],[-15,-16],[-2,-19],[49,-55],[-6,-54]],[[2094,23380],[-154,327],[-318,757],[-38,65],[-73,211],[-86,186],[-103,185],[-129,275],[-140,164],[-144,230],[-41,90],[-8,34],[9,58],[-35,92],[-18,8],[-28,-48],[-24,31],[-48,143],[-84,163],[-65,177],[-34,55],[-183,439],[-149,323],[-58,73],[-41,107],[-102,182],[79,7],[14,-31],[50,-9],[40,35],[40,6],[24,25],[43,19],[304,104],[39,-1],[21,-26],[26,12],[22,-26],[74,16],[70,52],[-25,35],[4,10],[19,-2],[53,-43],[32,12],[-7,-74],[30,-81],[-55,-55],[-56,-83],[-37,2],[-9,-54],[14,-6],[10,19],[31,7],[47,-35],[78,-28],[-8,-22],[-51,-35],[26,-28],[48,-9],[31,44],[43,-3],[82,27],[33,-19],[43,-5],[40,-70],[-23,-33],[30,-71],[-15,-19],[-15,21],[-49,3],[-11,-105],[11,-45],[20,-20],[69,-9],[17,18],[34,-22],[28,0],[32,46],[52,6],[24,28],[5,32],[-16,85],[-17,22],[24,28],[120,-39],[55,-96],[126,-32],[83,13],[40,22],[1,-47],[69,-19],[1,-10],[-64,-92],[-8,-46],[-60,-25],[11,-28],[107,-101],[71,-3],[83,68],[124,-15],[9,-12],[-27,-105],[71,-55],[-3,-36],[-29,-30],[-8,-38],[49,21],[21,-65],[59,-67],[55,-11],[33,6],[12,14],[3,52],[71,15],[5,27],[78,86],[38,78],[16,21],[42,17],[80,-44],[15,-50],[18,-6],[50,22],[27,-26],[18,-44],[67,-16],[61,0],[4,-50],[-14,-17],[-45,-4],[-21,-32],[-86,30],[-77,9],[-30,-62],[-66,-5],[-39,-66],[10,-85],[58,-134],[70,16],[54,-24],[31,3],[2,-128],[16,4],[45,-33],[135,-11],[5,-32],[23,-13],[-4,-60],[14,-54],[-25,-42],[27,-11],[97,13],[47,42],[61,25],[6,51],[-19,40],[62,27],[23,30],[58,-1],[20,31],[16,2],[24,-45],[22,-6],[67,44],[38,-106],[2,-50],[25,-33],[-12,-38],[-38,-7],[-13,-30],[-37,-27],[-113,-29],[-40,35],[-126,5],[-5,-16],[23,-21],[8,-104],[-32,-135],[85,-127],[80,-19],[42,-51],[27,3],[14,-20],[53,13],[66,-49],[-24,-113],[-50,-44],[28,-47],[13,-77],[23,-12],[21,-70],[45,-37],[4,-16],[-74,-82]],[[15845,6078],[-104,50],[-42,4],[-26,34],[-69,20],[-8,-42],[-28,19],[-14,-16],[-15,62],[-46,29],[-20,-7],[-4,109],[68,74],[-24,37],[43,49],[-22,60],[41,58],[7,68],[36,73],[-127,183],[16,34],[-11,22],[-29,-8],[-22,38],[9,51],[-65,36],[-18,26],[-27,-8],[16,28],[-32,31],[-83,-11],[-18,6],[-11,30],[-19,-6],[-16,20],[16,37],[-13,6],[-12,39],[-78,-60],[1,28],[-10,-6],[-7,33],[-74,-3],[-80,-53],[-12,59],[16,97],[-15,22],[-67,15],[-73,-85],[-104,2],[-108,-106],[-94,-39],[-23,-2],[-72,31],[-29,2],[-26,-22],[-14,-33],[126,-215],[-88,5],[-112,-30],[-48,-31],[-52,-5],[-51,14],[3,68],[-59,-7],[-37,27],[-142,11],[-96,28],[-152,3]],[[13595,7061],[35,27],[-38,38],[14,28],[49,8],[76,85],[155,44],[13,39],[0,25],[-18,24],[9,24],[-61,96],[-58,37],[-45,-38],[-32,-61],[-46,3],[-73,81],[-30,-9],[-170,130],[-24,77],[-86,6],[-9,190],[-24,67],[69,39],[-37,200],[39,28],[-7,27],[37,39],[33,6],[56,-48],[120,-67],[31,33],[-94,114],[-1,31],[45,32],[1,16],[-61,54],[-42,60],[-52,37],[-8,54],[-58,127],[-51,76],[-77,32],[-67,60],[-34,-17],[-40,30],[-121,151],[-40,29],[-3,26],[-102,103],[-200,132],[-96,25],[-73,37],[-71,-68],[-28,4],[-272,133],[-14,38],[-69,10],[-31,31],[-36,0],[-36,31],[-60,-28],[-183,46],[-29,19],[13,39]],[[11583,9703],[10,80],[29,39],[0,23],[-36,41],[-13,83],[2,67],[24,40],[19,13],[29,-4],[49,16],[88,-20],[107,16],[82,-71],[17,-3],[33,29],[3,21],[-63,42],[0,20],[30,29],[22,-9],[79,121],[-6,19],[54,44],[-8,64],[-42,116],[40,-12],[11,14],[54,-38],[36,23],[107,30],[114,-49],[-3,44],[39,8],[3,61],[-36,69],[117,147],[136,-50],[75,-48],[89,-34],[67,62],[-78,12],[-74,49],[-149,51],[-47,35],[7,27],[-37,51],[-81,12],[-106,66],[-74,81],[-102,55],[-354,289],[-47,3],[-29,-14],[-22,8],[-60,93],[-37,36],[57,185],[59,46],[96,116],[35,141],[-4,71],[57,97]],[[13361,12157],[11,-35],[-8,-30],[42,0],[45,-49],[25,-9],[72,14],[31,27],[18,-1],[75,-53],[44,11],[85,-25],[79,-62],[70,70],[38,0],[42,48],[37,13],[48,41],[56,8],[5,21],[17,5],[77,7],[54,33],[26,85],[-58,63],[81,14],[47,35],[-14,18],[5,16],[58,6],[83,59],[123,52],[56,2],[50,17],[169,103],[189,140],[121,-19],[50,19],[69,-26],[149,-10],[2,-73],[-27,-41],[-25,-100],[18,-48],[24,-13],[73,-116],[122,-145],[-34,-33],[-3,-21],[12,-152],[30,23],[20,-6],[9,14],[21,-11],[73,3],[32,-23],[37,-82],[-9,-21],[-34,-15],[-5,-23],[-22,-6],[11,-17],[-13,-44],[-32,-45],[-35,-152],[4,-87],[-15,-33],[2,-23],[22,-22],[-8,-60],[-31,-17],[-11,-30],[-88,16],[-62,37],[-35,-10],[-42,-45],[-101,-47],[-57,16],[-43,-66],[18,-90],[29,-47],[61,-31],[56,-62],[34,-10],[42,-70],[83,-64],[72,-93],[6,-27],[-54,-81],[1,-17],[45,-33],[-16,-53],[10,-29],[26,-1],[-13,-25],[8,-28],[76,-56],[-16,-65],[-59,-67],[-64,3],[-24,-10],[-12,9],[-2,-30],[-82,-95],[-33,-106],[-81,-71],[14,-103],[-25,-18],[-24,-55],[67,-75],[27,-11],[33,9],[35,-28],[0,-37],[-64,-28],[-3,-35],[11,-12],[-40,-102],[66,-8],[3,-27],[50,-16],[38,-55],[8,-55],[-48,-11],[-27,-31],[-84,-11],[6,-84],[52,-40],[-40,-29],[-7,-63],[-35,-48],[15,-98],[-55,-27],[-65,-11],[-6,-112],[18,-70],[-38,-50],[-41,-111],[-46,-26],[4,-27],[-28,-1],[-21,-21],[1,-64],[-34,-48],[11,-65],[-50,-36],[2,-35],[-20,-14],[24,-28],[77,-5],[48,-22],[30,27],[32,6],[13,22],[65,-11],[5,-53],[28,-20],[29,-1],[22,-21],[3,-27],[90,-73],[47,20],[59,-16],[77,-49],[29,-2],[19,19],[21,-9],[93,62],[-3,27],[31,-5],[45,45],[117,36],[31,-26],[31,8],[7,-10],[-27,-25],[0,-88],[68,-18],[25,-26],[105,198],[68,-44],[-13,-9],[-29,7],[-11,-18],[-15,-44],[29,-65],[-10,-21],[-21,1],[-30,-45],[14,-40],[56,-11],[15,-14],[12,-124],[68,-62],[35,-9],[29,-38],[105,50],[-2,-61],[56,-15],[9,-49],[-55,-34],[-15,-30],[-9,-102],[18,-15],[-30,-38],[-32,-16],[8,-49],[-42,-34],[-56,-13],[-79,40],[-41,-28],[-73,-88],[3,-44],[-18,-16],[-12,-38],[-55,-60],[-2,-24],[40,-48],[2,-26],[-18,-39],[6,-30],[-40,-16],[-1,-80],[23,-29],[-20,-23],[4,-23],[-71,-103],[11,-42],[-74,-18],[-104,15],[6,-38],[-18,-10],[29,-60],[-21,-56],[-38,-36],[-71,-27],[2,-57],[46,-115],[-43,-5]],[[7899,15109],[5,23],[-45,85],[-29,-16],[-72,4],[-14,65],[-36,-1],[16,248],[7,9],[30,-4],[7,20],[-19,24],[8,12],[-85,23],[8,39],[-63,53],[14,21],[29,3],[51,113],[27,14],[42,-8],[107,-48],[169,12],[34,15],[24,30],[-4,110],[21,30],[36,-21],[15,3],[16,24],[4,55],[17,10],[81,-10],[-19,60],[7,45],[21,6],[90,-50],[26,7],[51,57],[7,66],[27,26],[51,2],[26,-50],[52,27],[26,-15],[-3,-31],[15,-27],[70,-9],[42,4],[37,85],[22,12],[27,-7],[11,-57],[46,-44],[33,-62],[124,6],[91,168],[33,17],[121,-16],[61,30],[48,-39],[97,-4],[10,-31],[70,-8],[5,79],[-10,29],[-58,72],[0,123],[25,23],[19,126],[33,16],[22,-24],[163,-14],[35,67],[13,66],[-224,13],[-64,43],[24,103],[-135,26],[-81,-5],[-52,-29],[-19,21],[10,39],[-8,41],[60,40],[7,37],[85,-15],[25,28],[68,-18],[67,39],[-5,17],[20,24],[-12,65],[112,129],[74,28],[91,-3],[96,33],[26,42],[61,34],[50,1],[6,114],[25,50],[-34,77],[26,106],[-65,79],[34,88],[-3,50],[66,-1],[91,-27],[38,14],[38,-8]],[[10365,18052],[97,-89],[91,37],[-5,78],[143,26],[121,-5],[28,-42],[72,-31],[98,-5],[78,24],[297,27],[58,-12],[138,-61],[199,116],[97,40],[65,51],[8,51],[116,26],[168,-143],[20,5],[6,-15],[-56,-51],[0,-37],[21,-49],[-48,-40],[-48,10],[-64,-48],[-21,-32],[-30,-10],[-19,-46],[34,-82],[25,-27],[11,-46],[46,-4],[12,25],[-19,16],[2,19],[45,-9],[37,-74],[45,-36],[46,18],[37,-2],[25,-23],[13,-71],[-8,-39],[-29,-28],[-5,-36],[29,-58],[27,13],[20,-13],[15,-55],[-10,-26],[-78,-43],[17,-102],[20,-12],[72,8],[24,-47],[82,-43],[54,13],[95,95],[23,-16],[-7,-29],[-37,-63],[-32,-20],[-163,-28],[-295,48],[-37,-7],[-50,-54],[-55,-32],[-70,-112],[7,-42],[-20,-80],[-113,-120],[-7,-62],[-29,-51],[15,-22],[-11,-27],[-54,-33],[12,-30],[24,-26],[145,-84],[64,-24],[104,-10],[119,-68],[62,-19],[31,-36],[74,25],[34,-1],[84,-31],[73,12],[81,-63],[212,-60],[22,-17],[24,-53],[93,-79],[43,-69],[-53,-68],[22,-49],[80,5],[49,-53],[185,0],[61,-180],[-24,-63],[-4,-63],[-36,-46],[-6,-39],[-41,-66],[-7,-37],[29,-79],[-57,-5],[-88,-127],[2,-35],[-14,-21],[-28,-12],[-3,-18],[99,-51],[-4,-48],[18,-17],[16,-89],[-13,-61],[-132,-34],[-94,17],[-218,-3],[5,-34],[-16,-42],[42,-61],[-6,-61],[44,-38],[60,8],[25,-8],[9,-20],[-27,-146],[31,-53],[-37,-95],[49,-52],[-4,-29],[-72,-210],[-18,-324],[-66,-146],[31,-22],[20,-60],[42,10],[8,-58],[-46,-46],[59,-70],[40,-20],[57,-76],[-23,-83],[-66,-76],[7,-24]],[[9883,9579],[41,-42],[15,-83],[-88,-96],[-14,-53],[102,-258],[0,-147],[-26,-112],[-3,-80],[170,-68],[-41,-151],[15,-182],[-31,-419],[-19,-107],[84,36],[6,37],[35,21],[27,-7],[4,-25],[34,-3],[44,-48],[251,69],[1,-113],[87,-39],[4,-146],[11,-31],[158,-23],[13,-20],[-11,-190],[-45,-77],[-16,-100],[96,-41],[-34,-45],[15,-8],[14,-43],[-15,-18],[10,-79],[38,-11]],[[10815,6877],[-22,-42],[16,-41],[-16,-65],[-19,-3],[13,-32],[81,-34],[-3,-16],[-59,-2],[-12,-59],[-110,-37],[-39,-1],[-76,-81],[-11,-32],[25,-17],[56,1],[83,-32],[36,-1],[60,21],[96,-4],[40,-28],[86,17],[30,13],[1,67],[25,16],[9,31],[-40,8],[-16,22],[31,14],[20,-17],[90,44],[52,-37],[104,11],[55,-27],[126,-31],[115,14],[1,-42],[18,-29],[-39,-31],[104,-132],[6,-100],[25,-16],[58,-6],[50,22],[32,34],[28,-28],[15,28],[41,3],[-6,-75],[-66,-17],[-31,-67],[-90,-10],[-49,-58],[-17,-39],[31,-74],[-47,-40],[-71,-19],[21,-76],[-19,-20],[18,0],[-10,-37],[15,-41],[17,-4],[-3,35],[21,2],[27,-46],[92,-11],[118,-156],[-10,-23],[-57,7],[-12,-17],[-6,-100],[-39,-13],[-74,-2]],[[11734,5319],[-88,-5],[-53,-80],[-71,-9],[-63,-42],[-153,5],[-5,-49],[-24,-14],[-7,-25],[-56,9],[-46,-43],[-73,-9],[-48,19],[-26,81],[-25,23],[-1,56],[-187,2],[-40,-29],[-9,-24],[9,-40],[-66,13],[-89,-9],[-24,-13],[-10,-19],[79,-178],[-33,-19]],[[10625,4920],[-31,70],[-109,146],[-47,146],[-67,110],[-123,282],[-94,178],[-203,500],[-133,223],[-141,340],[-143,572],[-34,254],[-49,220],[-9,135],[-55,180],[-30,175],[-83,835]],[[9274,9286],[23,7],[9,18],[-11,67],[51,32],[-20,53],[-33,17],[-8,48],[33,130],[57,8],[18,17],[-33,222],[22,12],[38,-1],[39,-37],[163,-47],[142,33],[99,-143],[3,-109],[17,-34]],[[11583,9703],[-56,12],[-73,-54],[35,-41],[-30,-15],[-21,13],[-7,-15],[-34,28],[-54,11],[-60,-28],[-24,1],[2,-91],[-13,-25],[-34,-20],[-57,19],[-45,-44],[-13,-78],[-67,-20],[-13,32],[-15,6],[1,41],[-11,4],[-10,56],[-47,13],[-70,-1],[-56,159],[-31,9],[-68,1],[-77,-29],[-36,7],[-44,-23],[-89,25],[-108,-101],[-86,-40],[-95,-20],[-77,36],[-66,3],[-59,89],[-92,-44]],[[9274,9286],[-115,604],[-38,135],[-62,132],[-34,109],[7,142],[-149,203],[-36,126],[-82,165],[-150,584],[-63,134],[-6,119]],[[15349,4833],[-73,-107],[12,-51],[-78,-17],[-18,29],[-90,-12],[-36,-23],[-19,-35],[11,-35],[-42,-39],[-55,-22],[20,-40],[-6,-34],[59,-13],[24,-67],[76,-54],[32,-99],[76,-34],[3,-37],[32,-24],[8,-31],[-11,-28],[15,-53],[-17,-49],[8,-33],[28,-34],[33,15],[-20,19],[47,39],[71,-28],[18,-22],[-35,-45],[28,-83],[55,-7],[45,-24],[16,-19],[-5,-45],[26,-37],[84,-24],[22,-80],[-18,-23],[34,-39],[2,-13],[-20,-11],[28,-58],[-99,-115],[-2,-39],[-28,-41],[-65,-22],[-18,-132],[-61,-34],[-45,-5],[25,-54],[-29,-19],[-97,20]],[[15300,2965],[-82,34],[-222,129],[-32,34],[-94,35],[-78,68],[-81,40],[-21,29],[-59,7],[-108,44],[-193,45],[-53,0],[-67,-20],[-49,-74],[-17,-87],[-48,-13],[-24,-30],[40,-122],[66,-92],[-151,-22],[-68,69],[-98,24],[-22,-14],[-24,-65],[-93,-17],[-49,6],[-114,-63],[-126,110],[45,36],[-17,45],[-116,117],[-67,1],[-34,-34],[-170,72],[-39,4],[-22,47],[-20,13],[-2,48],[-89,51],[-45,-1],[-30,69],[-39,22],[-30,-22],[-31,4],[-15,-28],[-27,5],[-21,21],[-73,13],[-14,21],[-33,-4],[10,-42],[-20,-58],[106,-101],[-14,-38],[-45,-9],[0,-11],[32,-5],[20,-27],[-6,-25],[-123,-1],[-20,-30],[15,-15],[-29,-22],[-47,6],[-7,-23],[-111,4],[-137,37],[-99,-74],[-21,20],[-9,-12],[-56,1],[-3,-37],[-22,-44],[-45,-12],[-26,78],[-11,0],[-9,-42],[-27,-3]],[[11840,3035],[-4,60],[-106,76],[-66,96],[-276,309],[-161,103],[-60,-23],[-103,61],[-28,47],[-47,202],[-41,83],[-81,321],[-106,278],[-136,272]],[[11734,5319],[0,-167],[-43,-32],[45,-63],[3,-62],[22,-20],[88,-7],[337,-66],[30,15],[42,-17],[17,29],[15,1],[22,-22],[28,0],[46,38],[15,-10],[7,-88],[79,11],[0,64],[-25,77],[114,98],[189,-38],[27,-41],[74,-45],[54,2],[78,29],[11,87],[31,38],[32,-10],[19,48],[29,-10],[51,45],[96,-38],[46,38],[45,-90],[7,46],[59,6],[205,-49],[53,17],[80,52],[-104,31],[-53,33],[-83,8],[-19,107],[28,95],[47,-12],[69,-51],[165,-92],[134,-57],[40,-32],[66,42],[57,-52],[48,-23],[46,5],[20,-19],[45,-14],[75,26],[20,-42],[55,-21],[16,-24],[77,-13],[177,-90],[99,-18],[159,-57],[68,6],[-10,-32],[73,-24],[81,12],[56,-18],[31,12],[87,-47],[17,9]],[[13595,7061],[-6,-50],[-96,-24],[-14,51],[-76,9],[-167,105],[-78,10],[-121,68],[-30,-64],[-131,19],[-35,-26],[-26,38],[-31,17],[-93,-4],[-11,-20],[-19,11],[-22,-6],[-5,-43],[-68,9],[-82,-38],[-42,-5],[-31,71],[-56,19],[18,49],[-40,74],[-85,-4],[-20,-20],[5,-28],[-86,-37],[-29,-28],[-37,-2],[-49,58],[-10,75],[-89,10],[-45,27],[-44,-12],[-124,4],[-82,-29],[-5,-37],[-28,-41],[-29,40],[-17,2],[-21,-46],[8,-18],[-111,-7],[-8,-34],[-26,28],[-15,-4],[2,-51],[-76,-29],[12,-46],[-11,-60],[33,-59],[-19,-14],[-78,39],[-139,-67],[-23,4],[-24,55],[-58,5],[-27,-37],[-27,-6],[-14,14],[-67,-55],[-54,2],[-1,-46]],[[5983,21749],[100,-54],[9,-56],[-56,-131],[87,-69],[-20,-35],[47,2],[100,-47],[44,-67],[35,-7],[94,-67],[7,-44],[28,-15],[6,-20],[170,8],[15,-15],[45,-6],[69,8],[49,-16],[80,-51],[-92,-68],[11,-108],[-39,-249],[46,-33],[7,-55],[14,-16],[122,-76],[74,-15],[54,-35],[72,-18],[9,-113],[63,-66],[321,-223],[107,-39],[54,-44],[42,24],[32,-15],[34,38],[33,-7],[74,77],[18,1],[84,-92],[6,-47],[25,-30],[-31,-28],[32,-41],[63,-11],[107,-52],[139,-139]],[[8373,19587],[-16,-34],[30,-105],[-20,-48],[-56,37],[-96,-113],[-43,16],[-37,-6],[5,-46],[-36,-31],[-8,-75],[8,-88],[-50,-106],[32,-77],[90,-42],[25,22],[12,-6],[8,-81],[-21,-35],[-52,-22],[-114,-24],[-125,-99],[5,-58],[-61,-27],[-34,-42],[-80,-50],[-119,6],[-67,19],[-60,-61],[-92,-47],[-123,91],[-47,-31],[-61,-68],[-183,-23],[-79,-59],[-27,-6],[-78,43],[-25,-69],[-111,-44],[-68,-106],[-54,-31],[-18,-58],[116,-58],[38,12],[36,-5],[14,-12],[-10,-26],[-32,-45],[-121,-29],[-66,-70],[-8,-22],[30,-63],[-4,-50],[-66,43],[-94,-62],[-39,-44]],[[6321,17572],[-46,81],[-27,14],[-32,46],[-18,44],[12,33],[77,-2],[9,13],[-14,42],[-31,25],[-23,0],[-37,-34],[-15,2],[-38,32],[-220,608],[-124,290],[-58,69],[0,181],[-71,69],[-128,209],[-59,133],[-76,95],[-77,72],[-97,50],[-104,30],[-59,-18],[-25,11],[-82,94],[-107,343],[-122,254],[-78,242],[-175,394],[-66,104],[40,36],[8,30]],[[7144,14854],[-44,125],[-84,141],[-68,225],[-60,60],[-14,57],[-77,114],[-80,457],[-142,600],[-5,126],[-97,374],[-152,439]],[[8373,19587],[149,59],[26,41],[98,36],[14,32],[-23,36],[47,82],[78,70],[142,34],[58,78],[53,4]],[[9015,20059],[55,-86],[22,-65],[-26,-118],[-4,-97],[116,85],[54,-28],[79,36],[63,-53],[-24,-22],[33,-38],[59,16],[151,-87],[83,87],[36,-28],[147,-39],[191,-123],[131,35],[-15,-117],[67,-59],[138,-90],[60,-57],[161,-38],[244,-87],[-21,-84],[17,-6],[46,15],[89,-8],[54,24],[11,-190],[-61,-70],[-13,-39],[13,-47],[64,-21],[-120,-70],[-39,-54],[-16,-65],[-166,-62],[-274,-134],[-23,-189],[-32,-34]],[[15845,6078],[-12,-116],[-21,-17],[8,-56],[-27,-47],[12,-46],[36,-50],[-108,-116],[-69,-2],[-21,-67],[78,-21],[26,-67],[-18,-55],[15,-81],[-93,-81],[-49,-94],[-121,-53],[-15,-55],[-88,-57],[-40,-82],[20,-63],[-9,-19]],[[15300,2965],[-15,-22],[18,-26],[2,-32],[-47,-82],[-37,-10],[-54,11],[-36,35],[-12,-20],[50,-104],[-8,-35],[35,-47],[81,-49],[69,-138],[5,-39],[-22,-55],[21,-46],[54,-85],[91,-76],[42,-65],[63,-34],[1,-93],[153,-166],[54,-137],[35,-40],[1,-32],[-83,-126],[-32,-98],[-99,-34],[-65,-47],[-35,48],[-71,51],[-52,-3],[-79,-66],[29,-32],[25,-117],[28,-56],[67,-59],[4,-81],[-137,-19],[-39,-45],[-19,-114],[-83,-85],[-17,-47],[-71,-65],[-28,-12],[-23,38],[-34,7],[-38,-27],[6,-37],[36,-22],[13,-41],[-51,-66],[2,-38],[77,56],[30,1],[17,-21],[15,-38],[-39,-61],[1,-28],[57,-84],[0,-30],[-32,7],[-33,51],[-84,-11],[-42,25],[-57,-8],[-86,-63],[-52,-7],[25,-63],[-42,-1],[-11,-21],[-47,-5],[-56,-84],[-73,40],[-213,165],[-217,190],[-109,33],[-53,112],[-53,-19],[-49,31],[-63,73],[-14,129],[-203,194],[-315,348],[-191,235],[-44,78],[-211,241],[-186,245],[-165,159],[-179,234],[-152,170],[-77,113],[-164,186],[-3,20],[-65,58]],[[6986,22624],[39,-11],[114,18],[69,-33],[90,-6],[24,-16],[144,-8],[38,51],[95,19],[73,-13],[81,65],[38,7],[165,105],[121,2],[109,56],[3,-740],[55,-51],[60,11],[88,77],[68,24],[87,-6],[141,24],[111,-60],[41,-139],[-11,-75],[43,-33],[15,-62],[28,-26],[170,-29],[57,28],[81,4],[43,19],[77,-116],[107,-53],[70,-200],[91,-32],[70,-50],[74,-1],[64,59],[107,-23],[75,55],[46,-14],[111,65],[21,-42],[-28,-36],[-6,-45],[42,5],[35,-51],[10,-55],[-6,-22],[-45,-22],[-16,-36],[-15,-4],[-21,20],[-44,-36],[43,-9],[-5,-102],[35,-84],[18,-31],[49,-7],[38,-25],[28,-73],[46,-37],[-3,-50],[-23,-24],[-31,-4],[-7,-36],[-24,12],[-164,1],[-106,-19],[-22,-47],[1,-63],[-38,-24],[-2,-45],[-136,-67],[-95,-27],[-14,42],[-32,21],[-115,-69],[-12,-49],[-26,5],[-48,-38],[-27,5],[-21,96],[-84,18],[-12,40],[-33,18],[-75,-37],[-222,-140],[57,-111],[26,-82],[27,-28],[3,-28],[-64,-35]]],"transform":{"scale":[0.00015281084806712629,0.00016122155002684804],"translate":[74.863038,8.291356]},"objects":{"kerala_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"cartodb_id":572,"censuscode":594,"dt_cen_cd":7,"st_cen_cd":32,"st_nm":"Kerala","district":"Thrissur"}},{"arcs":[[6,7,8,9,10],[11]],"type":"Polygon","properties":{"cartodb_id":278,"censuscode":589,"dt_cen_cd":2,"st_cen_cd":32,"st_nm":"Kerala","district":"Kannur"}},{"arcs":[[-10,12]],"type":"Polygon","properties":{"cartodb_id":289,"censuscode":588,"dt_cen_cd":1,"st_cen_cd":32,"st_nm":"Kerala","district":"Kasaragod"}},{"arcs":[[13,14,15,-2,16]],"type":"Polygon","properties":{"cartodb_id":233,"censuscode":596,"dt_cen_cd":9,"st_cen_cd":32,"st_nm":"Kerala","district":"Idukki"}},{"arcs":[[-6,17,18]],"type":"Polygon","properties":{"cartodb_id":423,"censuscode":593,"dt_cen_cd":6,"st_cen_cd":32,"st_nm":"Kerala","district":"Palakkad"}},{"arcs":[[19,20,21,22,23]],"type":"Polygon","properties":{"cartodb_id":8,"censuscode":598,"dt_cen_cd":11,"st_cen_cd":32,"st_nm":"Kerala","district":"Alappuzha"}},{"arcs":[[-16,24,-24,25,-3]],"type":"Polygon","properties":{"cartodb_id":174,"censuscode":595,"dt_cen_cd":8,"st_cen_cd":32,"st_nm":"Kerala","district":"Ernakulam"}},{"arcs":[[26,27,28,-22,29]],"type":"Polygon","properties":{"cartodb_id":315,"censuscode":600,"dt_cen_cd":13,"st_cen_cd":32,"st_nm":"Kerala","district":"Kollam"}},{"arcs":[[-15,30,-20,-25]],"type":"Polygon","properties":{"cartodb_id":321,"censuscode":597,"dt_cen_cd":10,"st_cen_cd":32,"st_nm":"Kerala","district":"Kottayam"}},{"arcs":[[-8,31,32,33]],"type":"Polygon","properties":{"cartodb_id":322,"censuscode":591,"dt_cen_cd":4,"st_cen_cd":32,"st_nm":"Kerala","district":"Kozhikode"}},{"arcs":[[-18,-5,34,-33,35,36]],"type":"Polygon","properties":{"cartodb_id":359,"censuscode":592,"dt_cen_cd":5,"st_cen_cd":32,"st_nm":"Kerala","district":"Malappuram"}},{"arcs":[[37,-30,-21,-31,-14]],"type":"Polygon","properties":{"cartodb_id":437,"censuscode":599,"dt_cen_cd":12,"st_cen_cd":32,"st_nm":"Kerala","district":"Pathanamthitta"}},{"arcs":[[38,-28]],"type":"Polygon","properties":{"cartodb_id":568,"censuscode":601,"dt_cen_cd":14,"st_cen_cd":32,"st_nm":"Kerala","district":"Thiruvananthapuram"}},{"arcs":[[-36,-32,-7,39]],"type":"Polygon","properties":{"cartodb_id":611,"censuscode":590,"dt_cen_cd":3,"st_cen_cd":32,"st_nm":"Kerala","district":"Wayanad"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [12932, 12697], + [-17, -112], + [-29, -60], + [0, -46], + [68, -25], + [13, -46], + [43, -38], + [13, 38], + [67, -5], + [65, 49], + [24, -4], + [-14, -47], + [1, -96], + [56, -18], + [42, -48], + [49, -8], + [48, -74] + ], + [ + [13361, 12157], + [-36, 13], + [-22, 33], + [-41, -9], + [-18, 22], + [-41, 15], + [-8, 35], + [-50, 21], + [-27, -14], + [-7, 17], + [-123, 51], + [-13, -5], + [-29, 25], + [-49, -48], + [-89, 43], + [-89, 14], + [-42, -51], + [-17, 0], + [-13, 17], + [-32, -14], + [-90, -4], + [-3, -33], + [-35, -10], + [-63, -4], + [-73, 51], + [-35, -18], + [-96, -19], + [-140, -13], + [-63, -27], + [-66, 11] + ], + [ + [11951, 12256], + [-126, 28], + [-40, 43], + [-34, 11], + [-79, 4], + [-19, -30], + [-29, -11], + [-108, 1], + [-27, 31], + [-94, 14], + [-73, 51], + [-16, 51], + [-75, 21], + [-77, -53], + [38, -63], + [-64, 7], + [-42, -11], + [-102, 36], + [-98, -18], + [-146, 9], + [-62, 31], + [-135, -1], + [-81, 28], + [-73, -1], + [-121, -36], + [-95, 34], + [-11, -6], + [6, -41], + [-22, -5], + [-3, -54], + [-66, -14], + [-38, -60], + [-36, -23], + [-5, -45], + [-27, -13], + [-37, 2], + [-14, -54], + [-22, -22], + [-206, -57], + [-20, -13], + [-37, -117], + [-32, -19], + [-112, -19], + [-10, -22], + [19, -132], + [-53, 25], + [-57, -43], + [-140, -23], + [-8, 32], + [-40, 51], + [-39, 6], + [-10, 41], + [20, 22], + [-74, 15], + [-23, -7], + [-60, 26], + [-27, -10], + [-54, 7], + [-45, 20], + [-47, -35], + [-6, -42], + [-212, -29], + [-79, -35] + ], + [ + [8546, 11739], + [-14, 33], + [-30, 12], + [-47, 51], + [-99, 207], + [-2, 155], + [-39, 39], + [-84, 317], + [-170, 478], + [-139, 267], + [-64, 168], + [-94, 113], + [-42, 86], + [2, 10], + [11, -4], + [55, -81], + [33, -17], + [-20, 68], + [-71, 102], + [-28, 92], + [9, 18], + [87, 12], + [90, -107], + [-46, 110], + [35, 16], + [-8, 34], + [-83, 36], + [-32, 61], + [-7, 44], + [18, 17], + [-15, 41], + [-40, -11], + [-24, -26], + [-2, -22], + [70, -154], + [-84, -28], + [-4, -58], + [25, -85], + [-9, -7], + [-28, 15], + [-146, 405], + [-131, 222], + [-165, 376], + [-70, 110] + ], + [ + [7144, 14854], + [42, 2], + [11, 17], + [64, 28], + [8, -12], + [43, 0], + [2, -33], + [18, -4], + [4, 44], + [62, 7], + [10, 11], + [5, -16], + [27, 0], + [31, -29], + [37, -11], + [52, 38], + [107, 33], + [33, 39], + [47, -13], + [18, 13], + [9, -12], + [15, 7], + [15, 56], + [50, 46], + [36, 10], + [9, 34] + ], + [ + [7899, 15109], + [225, -30], + [136, -79], + [45, 64], + [40, -22], + [45, 1], + [53, -36], + [9, 27], + [30, -47], + [28, -19], + [47, 47], + [6, 38], + [56, 56], + [7, 37], + [41, 30], + [24, 61], + [34, 25], + [45, 9], + [6, 90], + [-94, 81], + [15, 15], + [136, -33], + [52, 23], + [79, -55], + [63, -3], + [18, -28], + [1, -101], + [12, -18], + [31, -10], + [106, 47], + [81, -2], + [50, 16], + [245, -77], + [94, 22], + [109, -25], + [15, 16], + [16, 72], + [25, 33], + [120, 31], + [30, -27], + [52, -102], + [47, -15], + [46, 14], + [198, 3], + [199, 21], + [28, -23], + [-31, -37], + [5, -13], + [36, -15], + [21, -31], + [-14, -28], + [-69, -51], + [-26, -93], + [-25, -38], + [-55, 10], + [-41, -22], + [51, -122], + [1, -109], + [-62, 24], + [-11, -32], + [-23, -20], + [-4, -27], + [-47, -1], + [-31, -19], + [2, -28], + [-38, -89], + [13, -14], + [34, -2], + [19, -65], + [-28, -49], + [-59, -22], + [-6, -52], + [-67, 19], + [-10, -27], + [54, -134], + [26, 23], + [45, -1], + [8, -27], + [23, -4], + [9, -48], + [24, -15], + [1, -32], + [48, -10], + [-40, -103], + [4, -34], + [72, -67], + [39, -4], + [18, -15], + [96, -104], + [-4, -32], + [55, -59], + [21, -15], + [44, 1], + [36, -33], + [212, -79], + [27, -20], + [66, -95], + [124, -28], + [5, -60], + [13, -12], + [63, 29], + [104, -6], + [97, -100], + [44, -117], + [90, -118], + [26, -14], + [35, 9], + [-3, -30], + [18, -4], + [26, 24], + [58, 18], + [72, -30], + [15, 49], + [96, -87], + [70, -21], + [12, -27], + [18, -6], + [101, 10], + [20, 45], + [86, 15], + [173, -45], + [66, -30], + [55, 7], + [4, -26], + [-24, -47], + [-57, -24], + [-7, -50], + [13, -15], + [114, -11], + [26, 14], + [7, 27], + [66, -26], + [119, 6], + [22, 44], + [61, 18], + [85, -70], + [50, 10] + ], + [ + [6986, 22624], + [-37, -112], + [63, -69], + [17, -99], + [-9, -37], + [-43, -51], + [-103, -42], + [112, -75], + [-24, -129], + [-15, -2], + [-23, 34], + [-130, -26], + [-89, 20], + [-45, -3], + [-33, 19], + [-53, -6], + [-24, 18], + [-50, -10], + [-39, 12], + [-36, 32], + [-99, -28], + [-83, 34], + [-62, -3], + [-47, -54], + [-53, -2], + [-9, -30], + [-6, -33], + [44, -42], + [10, -31], + [-10, -58], + [-91, -39], + [-36, -63] + ], + [ + [5983, 21749], + [-31, 20], + [-124, 14], + [-25, -14], + [5, -36], + [35, -48], + [-6, -18], + [-96, 10], + [-13, -33], + [-33, -8], + [-32, 20], + [-26, 44], + [-48, 30], + [-126, 24], + [-22, -6], + [-19, -14], + [-36, -118], + [-97, -57], + [-20, -54], + [-64, -27], + [-148, -115], + [-50, 4], + [-22, -44], + [-95, -73], + [-24, -9], + [-27, 7], + [-21, -15], + [-45, 3], + [-7, -9], + [23, -36], + [1, -44], + [66, -37], + [-11, -45], + [-94, 0], + [-74, -70], + [-46, -13], + [-42, 36], + [-11, 72], + [-42, 61], + [-78, 13] + ], + [ + [4458, 21164], + [-27, 37], + [-23, 2], + [-49, -27], + [-54, 48], + [-63, 94], + [-196, 145], + [-5, 39], + [-45, 65], + [-65, -25], + [-37, 10], + [22, 44], + [-26, 44], + [-191, 166], + [-118, 172], + [-65, 43], + [-81, 100], + [-23, 15], + [-47, -3], + [-75, -53], + [-52, 21], + [-11, 73], + [-44, 56], + [-116, 118], + [-72, 29], + [-5, 34], + [26, 24], + [-85, 132], + [-10, 72], + [32, 10], + [55, -13], + [129, -88], + [37, -3], + [16, 22], + [-4, 22], + [-79, 74], + [-95, 50], + [-18, 32], + [-13, 93], + [-26, 20], + [-21, -11], + [-9, -46], + [-22, 9], + [-89, 127], + [-14, 10], + [-17, -8], + [10, -78], + [74, -133], + [2, -18], + [-35, -1], + [-52, 36], + [-81, 92], + [-69, 123], + [-104, 143], + [-39, 31], + [-48, 15], + [-37, -6], + [-52, -61], + [-98, -68], + [-21, 10], + [-33, 136], + [-106, 220] + ], + [ + [2094, 23380], + [-76, 201], + [60, 53], + [39, -20], + [37, 11], + [-13, 106], + [16, 19], + [-27, 59], + [17, 58], + [26, 26], + [-23, 33], + [-30, 148], + [-70, 77], + [-17, 40], + [149, 20], + [37, -14], + [24, 9], + [125, 103], + [41, 57], + [78, -12], + [87, 12], + [41, 34], + [101, 24], + [36, 32], + [49, 4], + [16, 11], + [5, 34], + [-27, 98], + [73, 64], + [133, 26], + [98, -34], + [34, 12], + [45, -7], + [108, 55], + [23, 31], + [81, 12], + [42, 24], + [8, 45], + [22, 5], + [12, -7], + [-3, -39], + [40, 24], + [145, -3] + ], + [ + [3656, 24811], + [30, 4], + [46, 31], + [182, -21], + [58, 42], + [102, -57], + [26, -29], + [38, -91], + [75, -22], + [0, -22], + [48, -39], + [54, -108], + [-5, -33], + [32, -11], + [13, -57], + [83, -53], + [-7, -47], + [-26, -27], + [5, -19], + [28, -4], + [71, -43], + [24, -76], + [19, 1], + [29, -48], + [70, -19], + [43, -92], + [68, -15], + [28, -32], + [41, 21], + [69, 14], + [21, -18], + [38, 20], + [64, -24], + [16, -22], + [38, 5], + [17, -53], + [20, -4], + [21, -38], + [-6, -44], + [30, -32], + [4, -57], + [23, -10], + [71, -79], + [34, -7], + [71, 19], + [38, 57], + [115, -12], + [-6, -104], + [108, -32], + [-19, -57], + [19, -44], + [72, 13], + [71, 50], + [57, 8], + [29, 25], + [72, 7], + [213, -27], + [42, -38], + [-36, -115], + [-19, -12], + [30, -37], + [2, -55], + [12, -15], + [79, -52], + [0, -36], + [97, -64], + [5, -18], + [-25, -51], + [22, -103], + [24, -21], + [91, -27], + [44, -82], + [97, -70], + [115, -42], + [135, -25], + [76, -5], + [27, 10], + [37, -17] + ], + [ + [4428, 21360], + [-11, -10], + [-38, 4], + [-14, -14], + [-11, -72], + [80, -38], + [111, 26], + [8, 42], + [-23, 26], + [-67, 29], + [7, 147], + [-16, 10], + [-52, -6], + [-15, -16], + [-2, -19], + [49, -55], + [-6, -54] + ], + [ + [2094, 23380], + [-154, 327], + [-318, 757], + [-38, 65], + [-73, 211], + [-86, 186], + [-103, 185], + [-129, 275], + [-140, 164], + [-144, 230], + [-41, 90], + [-8, 34], + [9, 58], + [-35, 92], + [-18, 8], + [-28, -48], + [-24, 31], + [-48, 143], + [-84, 163], + [-65, 177], + [-34, 55], + [-183, 439], + [-149, 323], + [-58, 73], + [-41, 107], + [-102, 182], + [79, 7], + [14, -31], + [50, -9], + [40, 35], + [40, 6], + [24, 25], + [43, 19], + [304, 104], + [39, -1], + [21, -26], + [26, 12], + [22, -26], + [74, 16], + [70, 52], + [-25, 35], + [4, 10], + [19, -2], + [53, -43], + [32, 12], + [-7, -74], + [30, -81], + [-55, -55], + [-56, -83], + [-37, 2], + [-9, -54], + [14, -6], + [10, 19], + [31, 7], + [47, -35], + [78, -28], + [-8, -22], + [-51, -35], + [26, -28], + [48, -9], + [31, 44], + [43, -3], + [82, 27], + [33, -19], + [43, -5], + [40, -70], + [-23, -33], + [30, -71], + [-15, -19], + [-15, 21], + [-49, 3], + [-11, -105], + [11, -45], + [20, -20], + [69, -9], + [17, 18], + [34, -22], + [28, 0], + [32, 46], + [52, 6], + [24, 28], + [5, 32], + [-16, 85], + [-17, 22], + [24, 28], + [120, -39], + [55, -96], + [126, -32], + [83, 13], + [40, 22], + [1, -47], + [69, -19], + [1, -10], + [-64, -92], + [-8, -46], + [-60, -25], + [11, -28], + [107, -101], + [71, -3], + [83, 68], + [124, -15], + [9, -12], + [-27, -105], + [71, -55], + [-3, -36], + [-29, -30], + [-8, -38], + [49, 21], + [21, -65], + [59, -67], + [55, -11], + [33, 6], + [12, 14], + [3, 52], + [71, 15], + [5, 27], + [78, 86], + [38, 78], + [16, 21], + [42, 17], + [80, -44], + [15, -50], + [18, -6], + [50, 22], + [27, -26], + [18, -44], + [67, -16], + [61, 0], + [4, -50], + [-14, -17], + [-45, -4], + [-21, -32], + [-86, 30], + [-77, 9], + [-30, -62], + [-66, -5], + [-39, -66], + [10, -85], + [58, -134], + [70, 16], + [54, -24], + [31, 3], + [2, -128], + [16, 4], + [45, -33], + [135, -11], + [5, -32], + [23, -13], + [-4, -60], + [14, -54], + [-25, -42], + [27, -11], + [97, 13], + [47, 42], + [61, 25], + [6, 51], + [-19, 40], + [62, 27], + [23, 30], + [58, -1], + [20, 31], + [16, 2], + [24, -45], + [22, -6], + [67, 44], + [38, -106], + [2, -50], + [25, -33], + [-12, -38], + [-38, -7], + [-13, -30], + [-37, -27], + [-113, -29], + [-40, 35], + [-126, 5], + [-5, -16], + [23, -21], + [8, -104], + [-32, -135], + [85, -127], + [80, -19], + [42, -51], + [27, 3], + [14, -20], + [53, 13], + [66, -49], + [-24, -113], + [-50, -44], + [28, -47], + [13, -77], + [23, -12], + [21, -70], + [45, -37], + [4, -16], + [-74, -82] + ], + [ + [15845, 6078], + [-104, 50], + [-42, 4], + [-26, 34], + [-69, 20], + [-8, -42], + [-28, 19], + [-14, -16], + [-15, 62], + [-46, 29], + [-20, -7], + [-4, 109], + [68, 74], + [-24, 37], + [43, 49], + [-22, 60], + [41, 58], + [7, 68], + [36, 73], + [-127, 183], + [16, 34], + [-11, 22], + [-29, -8], + [-22, 38], + [9, 51], + [-65, 36], + [-18, 26], + [-27, -8], + [16, 28], + [-32, 31], + [-83, -11], + [-18, 6], + [-11, 30], + [-19, -6], + [-16, 20], + [16, 37], + [-13, 6], + [-12, 39], + [-78, -60], + [1, 28], + [-10, -6], + [-7, 33], + [-74, -3], + [-80, -53], + [-12, 59], + [16, 97], + [-15, 22], + [-67, 15], + [-73, -85], + [-104, 2], + [-108, -106], + [-94, -39], + [-23, -2], + [-72, 31], + [-29, 2], + [-26, -22], + [-14, -33], + [126, -215], + [-88, 5], + [-112, -30], + [-48, -31], + [-52, -5], + [-51, 14], + [3, 68], + [-59, -7], + [-37, 27], + [-142, 11], + [-96, 28], + [-152, 3] + ], + [ + [13595, 7061], + [35, 27], + [-38, 38], + [14, 28], + [49, 8], + [76, 85], + [155, 44], + [13, 39], + [0, 25], + [-18, 24], + [9, 24], + [-61, 96], + [-58, 37], + [-45, -38], + [-32, -61], + [-46, 3], + [-73, 81], + [-30, -9], + [-170, 130], + [-24, 77], + [-86, 6], + [-9, 190], + [-24, 67], + [69, 39], + [-37, 200], + [39, 28], + [-7, 27], + [37, 39], + [33, 6], + [56, -48], + [120, -67], + [31, 33], + [-94, 114], + [-1, 31], + [45, 32], + [1, 16], + [-61, 54], + [-42, 60], + [-52, 37], + [-8, 54], + [-58, 127], + [-51, 76], + [-77, 32], + [-67, 60], + [-34, -17], + [-40, 30], + [-121, 151], + [-40, 29], + [-3, 26], + [-102, 103], + [-200, 132], + [-96, 25], + [-73, 37], + [-71, -68], + [-28, 4], + [-272, 133], + [-14, 38], + [-69, 10], + [-31, 31], + [-36, 0], + [-36, 31], + [-60, -28], + [-183, 46], + [-29, 19], + [13, 39] + ], + [ + [11583, 9703], + [10, 80], + [29, 39], + [0, 23], + [-36, 41], + [-13, 83], + [2, 67], + [24, 40], + [19, 13], + [29, -4], + [49, 16], + [88, -20], + [107, 16], + [82, -71], + [17, -3], + [33, 29], + [3, 21], + [-63, 42], + [0, 20], + [30, 29], + [22, -9], + [79, 121], + [-6, 19], + [54, 44], + [-8, 64], + [-42, 116], + [40, -12], + [11, 14], + [54, -38], + [36, 23], + [107, 30], + [114, -49], + [-3, 44], + [39, 8], + [3, 61], + [-36, 69], + [117, 147], + [136, -50], + [75, -48], + [89, -34], + [67, 62], + [-78, 12], + [-74, 49], + [-149, 51], + [-47, 35], + [7, 27], + [-37, 51], + [-81, 12], + [-106, 66], + [-74, 81], + [-102, 55], + [-354, 289], + [-47, 3], + [-29, -14], + [-22, 8], + [-60, 93], + [-37, 36], + [57, 185], + [59, 46], + [96, 116], + [35, 141], + [-4, 71], + [57, 97] + ], + [ + [13361, 12157], + [11, -35], + [-8, -30], + [42, 0], + [45, -49], + [25, -9], + [72, 14], + [31, 27], + [18, -1], + [75, -53], + [44, 11], + [85, -25], + [79, -62], + [70, 70], + [38, 0], + [42, 48], + [37, 13], + [48, 41], + [56, 8], + [5, 21], + [17, 5], + [77, 7], + [54, 33], + [26, 85], + [-58, 63], + [81, 14], + [47, 35], + [-14, 18], + [5, 16], + [58, 6], + [83, 59], + [123, 52], + [56, 2], + [50, 17], + [169, 103], + [189, 140], + [121, -19], + [50, 19], + [69, -26], + [149, -10], + [2, -73], + [-27, -41], + [-25, -100], + [18, -48], + [24, -13], + [73, -116], + [122, -145], + [-34, -33], + [-3, -21], + [12, -152], + [30, 23], + [20, -6], + [9, 14], + [21, -11], + [73, 3], + [32, -23], + [37, -82], + [-9, -21], + [-34, -15], + [-5, -23], + [-22, -6], + [11, -17], + [-13, -44], + [-32, -45], + [-35, -152], + [4, -87], + [-15, -33], + [2, -23], + [22, -22], + [-8, -60], + [-31, -17], + [-11, -30], + [-88, 16], + [-62, 37], + [-35, -10], + [-42, -45], + [-101, -47], + [-57, 16], + [-43, -66], + [18, -90], + [29, -47], + [61, -31], + [56, -62], + [34, -10], + [42, -70], + [83, -64], + [72, -93], + [6, -27], + [-54, -81], + [1, -17], + [45, -33], + [-16, -53], + [10, -29], + [26, -1], + [-13, -25], + [8, -28], + [76, -56], + [-16, -65], + [-59, -67], + [-64, 3], + [-24, -10], + [-12, 9], + [-2, -30], + [-82, -95], + [-33, -106], + [-81, -71], + [14, -103], + [-25, -18], + [-24, -55], + [67, -75], + [27, -11], + [33, 9], + [35, -28], + [0, -37], + [-64, -28], + [-3, -35], + [11, -12], + [-40, -102], + [66, -8], + [3, -27], + [50, -16], + [38, -55], + [8, -55], + [-48, -11], + [-27, -31], + [-84, -11], + [6, -84], + [52, -40], + [-40, -29], + [-7, -63], + [-35, -48], + [15, -98], + [-55, -27], + [-65, -11], + [-6, -112], + [18, -70], + [-38, -50], + [-41, -111], + [-46, -26], + [4, -27], + [-28, -1], + [-21, -21], + [1, -64], + [-34, -48], + [11, -65], + [-50, -36], + [2, -35], + [-20, -14], + [24, -28], + [77, -5], + [48, -22], + [30, 27], + [32, 6], + [13, 22], + [65, -11], + [5, -53], + [28, -20], + [29, -1], + [22, -21], + [3, -27], + [90, -73], + [47, 20], + [59, -16], + [77, -49], + [29, -2], + [19, 19], + [21, -9], + [93, 62], + [-3, 27], + [31, -5], + [45, 45], + [117, 36], + [31, -26], + [31, 8], + [7, -10], + [-27, -25], + [0, -88], + [68, -18], + [25, -26], + [105, 198], + [68, -44], + [-13, -9], + [-29, 7], + [-11, -18], + [-15, -44], + [29, -65], + [-10, -21], + [-21, 1], + [-30, -45], + [14, -40], + [56, -11], + [15, -14], + [12, -124], + [68, -62], + [35, -9], + [29, -38], + [105, 50], + [-2, -61], + [56, -15], + [9, -49], + [-55, -34], + [-15, -30], + [-9, -102], + [18, -15], + [-30, -38], + [-32, -16], + [8, -49], + [-42, -34], + [-56, -13], + [-79, 40], + [-41, -28], + [-73, -88], + [3, -44], + [-18, -16], + [-12, -38], + [-55, -60], + [-2, -24], + [40, -48], + [2, -26], + [-18, -39], + [6, -30], + [-40, -16], + [-1, -80], + [23, -29], + [-20, -23], + [4, -23], + [-71, -103], + [11, -42], + [-74, -18], + [-104, 15], + [6, -38], + [-18, -10], + [29, -60], + [-21, -56], + [-38, -36], + [-71, -27], + [2, -57], + [46, -115], + [-43, -5] + ], + [ + [7899, 15109], + [5, 23], + [-45, 85], + [-29, -16], + [-72, 4], + [-14, 65], + [-36, -1], + [16, 248], + [7, 9], + [30, -4], + [7, 20], + [-19, 24], + [8, 12], + [-85, 23], + [8, 39], + [-63, 53], + [14, 21], + [29, 3], + [51, 113], + [27, 14], + [42, -8], + [107, -48], + [169, 12], + [34, 15], + [24, 30], + [-4, 110], + [21, 30], + [36, -21], + [15, 3], + [16, 24], + [4, 55], + [17, 10], + [81, -10], + [-19, 60], + [7, 45], + [21, 6], + [90, -50], + [26, 7], + [51, 57], + [7, 66], + [27, 26], + [51, 2], + [26, -50], + [52, 27], + [26, -15], + [-3, -31], + [15, -27], + [70, -9], + [42, 4], + [37, 85], + [22, 12], + [27, -7], + [11, -57], + [46, -44], + [33, -62], + [124, 6], + [91, 168], + [33, 17], + [121, -16], + [61, 30], + [48, -39], + [97, -4], + [10, -31], + [70, -8], + [5, 79], + [-10, 29], + [-58, 72], + [0, 123], + [25, 23], + [19, 126], + [33, 16], + [22, -24], + [163, -14], + [35, 67], + [13, 66], + [-224, 13], + [-64, 43], + [24, 103], + [-135, 26], + [-81, -5], + [-52, -29], + [-19, 21], + [10, 39], + [-8, 41], + [60, 40], + [7, 37], + [85, -15], + [25, 28], + [68, -18], + [67, 39], + [-5, 17], + [20, 24], + [-12, 65], + [112, 129], + [74, 28], + [91, -3], + [96, 33], + [26, 42], + [61, 34], + [50, 1], + [6, 114], + [25, 50], + [-34, 77], + [26, 106], + [-65, 79], + [34, 88], + [-3, 50], + [66, -1], + [91, -27], + [38, 14], + [38, -8] + ], + [ + [10365, 18052], + [97, -89], + [91, 37], + [-5, 78], + [143, 26], + [121, -5], + [28, -42], + [72, -31], + [98, -5], + [78, 24], + [297, 27], + [58, -12], + [138, -61], + [199, 116], + [97, 40], + [65, 51], + [8, 51], + [116, 26], + [168, -143], + [20, 5], + [6, -15], + [-56, -51], + [0, -37], + [21, -49], + [-48, -40], + [-48, 10], + [-64, -48], + [-21, -32], + [-30, -10], + [-19, -46], + [34, -82], + [25, -27], + [11, -46], + [46, -4], + [12, 25], + [-19, 16], + [2, 19], + [45, -9], + [37, -74], + [45, -36], + [46, 18], + [37, -2], + [25, -23], + [13, -71], + [-8, -39], + [-29, -28], + [-5, -36], + [29, -58], + [27, 13], + [20, -13], + [15, -55], + [-10, -26], + [-78, -43], + [17, -102], + [20, -12], + [72, 8], + [24, -47], + [82, -43], + [54, 13], + [95, 95], + [23, -16], + [-7, -29], + [-37, -63], + [-32, -20], + [-163, -28], + [-295, 48], + [-37, -7], + [-50, -54], + [-55, -32], + [-70, -112], + [7, -42], + [-20, -80], + [-113, -120], + [-7, -62], + [-29, -51], + [15, -22], + [-11, -27], + [-54, -33], + [12, -30], + [24, -26], + [145, -84], + [64, -24], + [104, -10], + [119, -68], + [62, -19], + [31, -36], + [74, 25], + [34, -1], + [84, -31], + [73, 12], + [81, -63], + [212, -60], + [22, -17], + [24, -53], + [93, -79], + [43, -69], + [-53, -68], + [22, -49], + [80, 5], + [49, -53], + [185, 0], + [61, -180], + [-24, -63], + [-4, -63], + [-36, -46], + [-6, -39], + [-41, -66], + [-7, -37], + [29, -79], + [-57, -5], + [-88, -127], + [2, -35], + [-14, -21], + [-28, -12], + [-3, -18], + [99, -51], + [-4, -48], + [18, -17], + [16, -89], + [-13, -61], + [-132, -34], + [-94, 17], + [-218, -3], + [5, -34], + [-16, -42], + [42, -61], + [-6, -61], + [44, -38], + [60, 8], + [25, -8], + [9, -20], + [-27, -146], + [31, -53], + [-37, -95], + [49, -52], + [-4, -29], + [-72, -210], + [-18, -324], + [-66, -146], + [31, -22], + [20, -60], + [42, 10], + [8, -58], + [-46, -46], + [59, -70], + [40, -20], + [57, -76], + [-23, -83], + [-66, -76], + [7, -24] + ], + [ + [9883, 9579], + [41, -42], + [15, -83], + [-88, -96], + [-14, -53], + [102, -258], + [0, -147], + [-26, -112], + [-3, -80], + [170, -68], + [-41, -151], + [15, -182], + [-31, -419], + [-19, -107], + [84, 36], + [6, 37], + [35, 21], + [27, -7], + [4, -25], + [34, -3], + [44, -48], + [251, 69], + [1, -113], + [87, -39], + [4, -146], + [11, -31], + [158, -23], + [13, -20], + [-11, -190], + [-45, -77], + [-16, -100], + [96, -41], + [-34, -45], + [15, -8], + [14, -43], + [-15, -18], + [10, -79], + [38, -11] + ], + [ + [10815, 6877], + [-22, -42], + [16, -41], + [-16, -65], + [-19, -3], + [13, -32], + [81, -34], + [-3, -16], + [-59, -2], + [-12, -59], + [-110, -37], + [-39, -1], + [-76, -81], + [-11, -32], + [25, -17], + [56, 1], + [83, -32], + [36, -1], + [60, 21], + [96, -4], + [40, -28], + [86, 17], + [30, 13], + [1, 67], + [25, 16], + [9, 31], + [-40, 8], + [-16, 22], + [31, 14], + [20, -17], + [90, 44], + [52, -37], + [104, 11], + [55, -27], + [126, -31], + [115, 14], + [1, -42], + [18, -29], + [-39, -31], + [104, -132], + [6, -100], + [25, -16], + [58, -6], + [50, 22], + [32, 34], + [28, -28], + [15, 28], + [41, 3], + [-6, -75], + [-66, -17], + [-31, -67], + [-90, -10], + [-49, -58], + [-17, -39], + [31, -74], + [-47, -40], + [-71, -19], + [21, -76], + [-19, -20], + [18, 0], + [-10, -37], + [15, -41], + [17, -4], + [-3, 35], + [21, 2], + [27, -46], + [92, -11], + [118, -156], + [-10, -23], + [-57, 7], + [-12, -17], + [-6, -100], + [-39, -13], + [-74, -2] + ], + [ + [11734, 5319], + [-88, -5], + [-53, -80], + [-71, -9], + [-63, -42], + [-153, 5], + [-5, -49], + [-24, -14], + [-7, -25], + [-56, 9], + [-46, -43], + [-73, -9], + [-48, 19], + [-26, 81], + [-25, 23], + [-1, 56], + [-187, 2], + [-40, -29], + [-9, -24], + [9, -40], + [-66, 13], + [-89, -9], + [-24, -13], + [-10, -19], + [79, -178], + [-33, -19] + ], + [ + [10625, 4920], + [-31, 70], + [-109, 146], + [-47, 146], + [-67, 110], + [-123, 282], + [-94, 178], + [-203, 500], + [-133, 223], + [-141, 340], + [-143, 572], + [-34, 254], + [-49, 220], + [-9, 135], + [-55, 180], + [-30, 175], + [-83, 835] + ], + [ + [9274, 9286], + [23, 7], + [9, 18], + [-11, 67], + [51, 32], + [-20, 53], + [-33, 17], + [-8, 48], + [33, 130], + [57, 8], + [18, 17], + [-33, 222], + [22, 12], + [38, -1], + [39, -37], + [163, -47], + [142, 33], + [99, -143], + [3, -109], + [17, -34] + ], + [ + [11583, 9703], + [-56, 12], + [-73, -54], + [35, -41], + [-30, -15], + [-21, 13], + [-7, -15], + [-34, 28], + [-54, 11], + [-60, -28], + [-24, 1], + [2, -91], + [-13, -25], + [-34, -20], + [-57, 19], + [-45, -44], + [-13, -78], + [-67, -20], + [-13, 32], + [-15, 6], + [1, 41], + [-11, 4], + [-10, 56], + [-47, 13], + [-70, -1], + [-56, 159], + [-31, 9], + [-68, 1], + [-77, -29], + [-36, 7], + [-44, -23], + [-89, 25], + [-108, -101], + [-86, -40], + [-95, -20], + [-77, 36], + [-66, 3], + [-59, 89], + [-92, -44] + ], + [ + [9274, 9286], + [-115, 604], + [-38, 135], + [-62, 132], + [-34, 109], + [7, 142], + [-149, 203], + [-36, 126], + [-82, 165], + [-150, 584], + [-63, 134], + [-6, 119] + ], + [ + [15349, 4833], + [-73, -107], + [12, -51], + [-78, -17], + [-18, 29], + [-90, -12], + [-36, -23], + [-19, -35], + [11, -35], + [-42, -39], + [-55, -22], + [20, -40], + [-6, -34], + [59, -13], + [24, -67], + [76, -54], + [32, -99], + [76, -34], + [3, -37], + [32, -24], + [8, -31], + [-11, -28], + [15, -53], + [-17, -49], + [8, -33], + [28, -34], + [33, 15], + [-20, 19], + [47, 39], + [71, -28], + [18, -22], + [-35, -45], + [28, -83], + [55, -7], + [45, -24], + [16, -19], + [-5, -45], + [26, -37], + [84, -24], + [22, -80], + [-18, -23], + [34, -39], + [2, -13], + [-20, -11], + [28, -58], + [-99, -115], + [-2, -39], + [-28, -41], + [-65, -22], + [-18, -132], + [-61, -34], + [-45, -5], + [25, -54], + [-29, -19], + [-97, 20] + ], + [ + [15300, 2965], + [-82, 34], + [-222, 129], + [-32, 34], + [-94, 35], + [-78, 68], + [-81, 40], + [-21, 29], + [-59, 7], + [-108, 44], + [-193, 45], + [-53, 0], + [-67, -20], + [-49, -74], + [-17, -87], + [-48, -13], + [-24, -30], + [40, -122], + [66, -92], + [-151, -22], + [-68, 69], + [-98, 24], + [-22, -14], + [-24, -65], + [-93, -17], + [-49, 6], + [-114, -63], + [-126, 110], + [45, 36], + [-17, 45], + [-116, 117], + [-67, 1], + [-34, -34], + [-170, 72], + [-39, 4], + [-22, 47], + [-20, 13], + [-2, 48], + [-89, 51], + [-45, -1], + [-30, 69], + [-39, 22], + [-30, -22], + [-31, 4], + [-15, -28], + [-27, 5], + [-21, 21], + [-73, 13], + [-14, 21], + [-33, -4], + [10, -42], + [-20, -58], + [106, -101], + [-14, -38], + [-45, -9], + [0, -11], + [32, -5], + [20, -27], + [-6, -25], + [-123, -1], + [-20, -30], + [15, -15], + [-29, -22], + [-47, 6], + [-7, -23], + [-111, 4], + [-137, 37], + [-99, -74], + [-21, 20], + [-9, -12], + [-56, 1], + [-3, -37], + [-22, -44], + [-45, -12], + [-26, 78], + [-11, 0], + [-9, -42], + [-27, -3] + ], + [ + [11840, 3035], + [-4, 60], + [-106, 76], + [-66, 96], + [-276, 309], + [-161, 103], + [-60, -23], + [-103, 61], + [-28, 47], + [-47, 202], + [-41, 83], + [-81, 321], + [-106, 278], + [-136, 272] + ], + [ + [11734, 5319], + [0, -167], + [-43, -32], + [45, -63], + [3, -62], + [22, -20], + [88, -7], + [337, -66], + [30, 15], + [42, -17], + [17, 29], + [15, 1], + [22, -22], + [28, 0], + [46, 38], + [15, -10], + [7, -88], + [79, 11], + [0, 64], + [-25, 77], + [114, 98], + [189, -38], + [27, -41], + [74, -45], + [54, 2], + [78, 29], + [11, 87], + [31, 38], + [32, -10], + [19, 48], + [29, -10], + [51, 45], + [96, -38], + [46, 38], + [45, -90], + [7, 46], + [59, 6], + [205, -49], + [53, 17], + [80, 52], + [-104, 31], + [-53, 33], + [-83, 8], + [-19, 107], + [28, 95], + [47, -12], + [69, -51], + [165, -92], + [134, -57], + [40, -32], + [66, 42], + [57, -52], + [48, -23], + [46, 5], + [20, -19], + [45, -14], + [75, 26], + [20, -42], + [55, -21], + [16, -24], + [77, -13], + [177, -90], + [99, -18], + [159, -57], + [68, 6], + [-10, -32], + [73, -24], + [81, 12], + [56, -18], + [31, 12], + [87, -47], + [17, 9] + ], + [ + [13595, 7061], + [-6, -50], + [-96, -24], + [-14, 51], + [-76, 9], + [-167, 105], + [-78, 10], + [-121, 68], + [-30, -64], + [-131, 19], + [-35, -26], + [-26, 38], + [-31, 17], + [-93, -4], + [-11, -20], + [-19, 11], + [-22, -6], + [-5, -43], + [-68, 9], + [-82, -38], + [-42, -5], + [-31, 71], + [-56, 19], + [18, 49], + [-40, 74], + [-85, -4], + [-20, -20], + [5, -28], + [-86, -37], + [-29, -28], + [-37, -2], + [-49, 58], + [-10, 75], + [-89, 10], + [-45, 27], + [-44, -12], + [-124, 4], + [-82, -29], + [-5, -37], + [-28, -41], + [-29, 40], + [-17, 2], + [-21, -46], + [8, -18], + [-111, -7], + [-8, -34], + [-26, 28], + [-15, -4], + [2, -51], + [-76, -29], + [12, -46], + [-11, -60], + [33, -59], + [-19, -14], + [-78, 39], + [-139, -67], + [-23, 4], + [-24, 55], + [-58, 5], + [-27, -37], + [-27, -6], + [-14, 14], + [-67, -55], + [-54, 2], + [-1, -46] + ], + [ + [5983, 21749], + [100, -54], + [9, -56], + [-56, -131], + [87, -69], + [-20, -35], + [47, 2], + [100, -47], + [44, -67], + [35, -7], + [94, -67], + [7, -44], + [28, -15], + [6, -20], + [170, 8], + [15, -15], + [45, -6], + [69, 8], + [49, -16], + [80, -51], + [-92, -68], + [11, -108], + [-39, -249], + [46, -33], + [7, -55], + [14, -16], + [122, -76], + [74, -15], + [54, -35], + [72, -18], + [9, -113], + [63, -66], + [321, -223], + [107, -39], + [54, -44], + [42, 24], + [32, -15], + [34, 38], + [33, -7], + [74, 77], + [18, 1], + [84, -92], + [6, -47], + [25, -30], + [-31, -28], + [32, -41], + [63, -11], + [107, -52], + [139, -139] + ], + [ + [8373, 19587], + [-16, -34], + [30, -105], + [-20, -48], + [-56, 37], + [-96, -113], + [-43, 16], + [-37, -6], + [5, -46], + [-36, -31], + [-8, -75], + [8, -88], + [-50, -106], + [32, -77], + [90, -42], + [25, 22], + [12, -6], + [8, -81], + [-21, -35], + [-52, -22], + [-114, -24], + [-125, -99], + [5, -58], + [-61, -27], + [-34, -42], + [-80, -50], + [-119, 6], + [-67, 19], + [-60, -61], + [-92, -47], + [-123, 91], + [-47, -31], + [-61, -68], + [-183, -23], + [-79, -59], + [-27, -6], + [-78, 43], + [-25, -69], + [-111, -44], + [-68, -106], + [-54, -31], + [-18, -58], + [116, -58], + [38, 12], + [36, -5], + [14, -12], + [-10, -26], + [-32, -45], + [-121, -29], + [-66, -70], + [-8, -22], + [30, -63], + [-4, -50], + [-66, 43], + [-94, -62], + [-39, -44] + ], + [ + [6321, 17572], + [-46, 81], + [-27, 14], + [-32, 46], + [-18, 44], + [12, 33], + [77, -2], + [9, 13], + [-14, 42], + [-31, 25], + [-23, 0], + [-37, -34], + [-15, 2], + [-38, 32], + [-220, 608], + [-124, 290], + [-58, 69], + [0, 181], + [-71, 69], + [-128, 209], + [-59, 133], + [-76, 95], + [-77, 72], + [-97, 50], + [-104, 30], + [-59, -18], + [-25, 11], + [-82, 94], + [-107, 343], + [-122, 254], + [-78, 242], + [-175, 394], + [-66, 104], + [40, 36], + [8, 30] + ], + [ + [7144, 14854], + [-44, 125], + [-84, 141], + [-68, 225], + [-60, 60], + [-14, 57], + [-77, 114], + [-80, 457], + [-142, 600], + [-5, 126], + [-97, 374], + [-152, 439] + ], + [ + [8373, 19587], + [149, 59], + [26, 41], + [98, 36], + [14, 32], + [-23, 36], + [47, 82], + [78, 70], + [142, 34], + [58, 78], + [53, 4] + ], + [ + [9015, 20059], + [55, -86], + [22, -65], + [-26, -118], + [-4, -97], + [116, 85], + [54, -28], + [79, 36], + [63, -53], + [-24, -22], + [33, -38], + [59, 16], + [151, -87], + [83, 87], + [36, -28], + [147, -39], + [191, -123], + [131, 35], + [-15, -117], + [67, -59], + [138, -90], + [60, -57], + [161, -38], + [244, -87], + [-21, -84], + [17, -6], + [46, 15], + [89, -8], + [54, 24], + [11, -190], + [-61, -70], + [-13, -39], + [13, -47], + [64, -21], + [-120, -70], + [-39, -54], + [-16, -65], + [-166, -62], + [-274, -134], + [-23, -189], + [-32, -34] + ], + [ + [15845, 6078], + [-12, -116], + [-21, -17], + [8, -56], + [-27, -47], + [12, -46], + [36, -50], + [-108, -116], + [-69, -2], + [-21, -67], + [78, -21], + [26, -67], + [-18, -55], + [15, -81], + [-93, -81], + [-49, -94], + [-121, -53], + [-15, -55], + [-88, -57], + [-40, -82], + [20, -63], + [-9, -19] + ], + [ + [15300, 2965], + [-15, -22], + [18, -26], + [2, -32], + [-47, -82], + [-37, -10], + [-54, 11], + [-36, 35], + [-12, -20], + [50, -104], + [-8, -35], + [35, -47], + [81, -49], + [69, -138], + [5, -39], + [-22, -55], + [21, -46], + [54, -85], + [91, -76], + [42, -65], + [63, -34], + [1, -93], + [153, -166], + [54, -137], + [35, -40], + [1, -32], + [-83, -126], + [-32, -98], + [-99, -34], + [-65, -47], + [-35, 48], + [-71, 51], + [-52, -3], + [-79, -66], + [29, -32], + [25, -117], + [28, -56], + [67, -59], + [4, -81], + [-137, -19], + [-39, -45], + [-19, -114], + [-83, -85], + [-17, -47], + [-71, -65], + [-28, -12], + [-23, 38], + [-34, 7], + [-38, -27], + [6, -37], + [36, -22], + [13, -41], + [-51, -66], + [2, -38], + [77, 56], + [30, 1], + [17, -21], + [15, -38], + [-39, -61], + [1, -28], + [57, -84], + [0, -30], + [-32, 7], + [-33, 51], + [-84, -11], + [-42, 25], + [-57, -8], + [-86, -63], + [-52, -7], + [25, -63], + [-42, -1], + [-11, -21], + [-47, -5], + [-56, -84], + [-73, 40], + [-213, 165], + [-217, 190], + [-109, 33], + [-53, 112], + [-53, -19], + [-49, 31], + [-63, 73], + [-14, 129], + [-203, 194], + [-315, 348], + [-191, 235], + [-44, 78], + [-211, 241], + [-186, 245], + [-165, 159], + [-179, 234], + [-152, 170], + [-77, 113], + [-164, 186], + [-3, 20], + [-65, 58] + ], + [ + [6986, 22624], + [39, -11], + [114, 18], + [69, -33], + [90, -6], + [24, -16], + [144, -8], + [38, 51], + [95, 19], + [73, -13], + [81, 65], + [38, 7], + [165, 105], + [121, 2], + [109, 56], + [3, -740], + [55, -51], + [60, 11], + [88, 77], + [68, 24], + [87, -6], + [141, 24], + [111, -60], + [41, -139], + [-11, -75], + [43, -33], + [15, -62], + [28, -26], + [170, -29], + [57, 28], + [81, 4], + [43, 19], + [77, -116], + [107, -53], + [70, -200], + [91, -32], + [70, -50], + [74, -1], + [64, 59], + [107, -23], + [75, 55], + [46, -14], + [111, 65], + [21, -42], + [-28, -36], + [-6, -45], + [42, 5], + [35, -51], + [10, -55], + [-6, -22], + [-45, -22], + [-16, -36], + [-15, -4], + [-21, 20], + [-44, -36], + [43, -9], + [-5, -102], + [35, -84], + [18, -31], + [49, -7], + [38, -25], + [28, -73], + [46, -37], + [-3, -50], + [-23, -24], + [-31, -4], + [-7, -36], + [-24, 12], + [-164, 1], + [-106, -19], + [-22, -47], + [1, -63], + [-38, -24], + [-2, -45], + [-136, -67], + [-95, -27], + [-14, 42], + [-32, 21], + [-115, -69], + [-12, -49], + [-26, 5], + [-48, -38], + [-27, 5], + [-21, 96], + [-84, 18], + [-12, 40], + [-33, 18], + [-75, -37], + [-222, -140], + [57, -111], + [26, -82], + [27, -28], + [3, -28], + [-64, -35] + ] + ], + "transform": { + "scale": [0.00015281084806712629, 0.00016122155002684804], + "translate": [74.863038, 8.291356] + }, + "objects": { + "kerala_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5]], + "type": "Polygon", + "properties": { + "cartodb_id": 572, + "censuscode": 594, + "dt_cen_cd": 7, + "st_cen_cd": 32, + "st_nm": "Kerala", + "district": "Thrissur" + } + }, + { + "arcs": [[6, 7, 8, 9, 10], [11]], + "type": "Polygon", + "properties": { + "cartodb_id": 278, + "censuscode": 589, + "dt_cen_cd": 2, + "st_cen_cd": 32, + "st_nm": "Kerala", + "district": "Kannur" + } + }, + { + "arcs": [[-10, 12]], + "type": "Polygon", + "properties": { + "cartodb_id": 289, + "censuscode": 588, + "dt_cen_cd": 1, + "st_cen_cd": 32, + "st_nm": "Kerala", + "district": "Kasaragod" + } + }, + { + "arcs": [[13, 14, 15, -2, 16]], + "type": "Polygon", + "properties": { + "cartodb_id": 233, + "censuscode": 596, + "dt_cen_cd": 9, + "st_cen_cd": 32, + "st_nm": "Kerala", + "district": "Idukki" + } + }, + { + "arcs": [[-6, 17, 18]], + "type": "Polygon", + "properties": { + "cartodb_id": 423, + "censuscode": 593, + "dt_cen_cd": 6, + "st_cen_cd": 32, + "st_nm": "Kerala", + "district": "Palakkad" + } + }, + { + "arcs": [[19, 20, 21, 22, 23]], + "type": "Polygon", + "properties": { + "cartodb_id": 8, + "censuscode": 598, + "dt_cen_cd": 11, + "st_cen_cd": 32, + "st_nm": "Kerala", + "district": "Alappuzha" + } + }, + { + "arcs": [[-16, 24, -24, 25, -3]], + "type": "Polygon", + "properties": { + "cartodb_id": 174, + "censuscode": 595, + "dt_cen_cd": 8, + "st_cen_cd": 32, + "st_nm": "Kerala", + "district": "Ernakulam" + } + }, + { + "arcs": [[26, 27, 28, -22, 29]], + "type": "Polygon", + "properties": { + "cartodb_id": 315, + "censuscode": 600, + "dt_cen_cd": 13, + "st_cen_cd": 32, + "st_nm": "Kerala", + "district": "Kollam" + } + }, + { + "arcs": [[-15, 30, -20, -25]], + "type": "Polygon", + "properties": { + "cartodb_id": 321, + "censuscode": 597, + "dt_cen_cd": 10, + "st_cen_cd": 32, + "st_nm": "Kerala", + "district": "Kottayam" + } + }, + { + "arcs": [[-8, 31, 32, 33]], + "type": "Polygon", + "properties": { + "cartodb_id": 322, + "censuscode": 591, + "dt_cen_cd": 4, + "st_cen_cd": 32, + "st_nm": "Kerala", + "district": "Kozhikode" + } + }, + { + "arcs": [[-18, -5, 34, -33, 35, 36]], + "type": "Polygon", + "properties": { + "cartodb_id": 359, + "censuscode": 592, + "dt_cen_cd": 5, + "st_cen_cd": 32, + "st_nm": "Kerala", + "district": "Malappuram" + } + }, + { + "arcs": [[37, -30, -21, -31, -14]], + "type": "Polygon", + "properties": { + "cartodb_id": 437, + "censuscode": 599, + "dt_cen_cd": 12, + "st_cen_cd": 32, + "st_nm": "Kerala", + "district": "Pathanamthitta" + } + }, + { + "arcs": [[38, -28]], + "type": "Polygon", + "properties": { + "cartodb_id": 568, + "censuscode": 601, + "dt_cen_cd": 14, + "st_cen_cd": 32, + "st_nm": "Kerala", + "district": "Thiruvananthapuram" + } + }, + { + "arcs": [[-36, -32, -7, 39]], + "type": "Polygon", + "properties": { + "cartodb_id": 611, + "censuscode": 590, + "dt_cen_cd": 3, + "st_cen_cd": 32, + "st_nm": "Kerala", + "district": "Wayanad" + } + } + ] + } + } +} diff --git a/public/maps/ladakh.json b/public/maps/ladakh.json index eb8adf8fa4..12a6897750 100644 --- a/public/maps/ladakh.json +++ b/public/maps/ladakh.json @@ -1 +1,801 @@ -{"type":"Topology","arcs":[[[7077,1102],[-61,198],[23,83],[33,-8],[3,21],[30,10],[4,73],[37,-14],[65,12],[15,99],[-23,71]],[[7203,1647],[25,53],[72,5],[103,-86]],[[7403,1619],[-25,122],[-66,112],[35,50],[-3,59],[15,27],[51,32],[-11,30],[-63,29],[9,45],[-29,17],[-54,143],[-68,-3],[-53,-32],[-35,32],[-55,-12],[-65,83],[-33,122],[7,23],[-44,40],[-2,34],[-85,79],[-30,12],[-42,-27],[-69,73],[-50,-8],[-53,43],[-29,-25],[-37,9],[-58,51],[18,33],[-35,44],[-45,-13],[-45,39],[-103,22],[-30,50],[-22,-16],[-28,60],[-87,107],[-36,-18],[-33,-57],[-39,-9],[-25,43],[-42,12],[-16,46],[18,38],[-21,21],[58,114],[44,8],[-6,76],[42,37],[78,-5],[40,36],[-39,130],[30,65],[-15,83],[6,35],[22,4],[16,32],[2,97],[30,39],[-145,104],[-52,75],[-39,20],[16,59],[-26,65],[-11,110],[17,53],[-46,8],[-7,40],[-73,-38],[-34,10],[30,105],[-36,49],[-5,54],[-37,69],[-209,-76],[-64,-44],[-29,32],[-122,-26],[-133,43],[-41,69],[-63,29],[-57,-218],[-60,-156],[-154,-90],[-281,4],[-64,-15],[-71,-74],[-21,-88],[-40,-57]],[[4341,4048],[-122,-52],[-10,60],[-18,10],[10,28],[-78,56],[56,188],[-83,117],[-67,34],[-25,43],[-159,37],[-79,-16],[-25,-24],[-60,-1],[-141,74],[-90,-1],[-23,23],[-23,-22],[-148,16],[-121,51],[-66,58],[-19,60],[-33,22],[-373,36],[114,35],[26,-9],[64,105],[71,22],[37,-13],[56,32],[13,74],[-8,109],[23,87],[-76,43],[9,70],[-64,79],[-87,23],[-88,-120],[-106,5],[-16,-31],[-42,-18],[-23,4],[-6,59],[-33,0],[-7,38],[-104,14],[-62,72],[5,43],[-111,-9],[-44,37],[-14,36],[-60,-20],[-62,75],[-77,-3],[-27,37],[-75,32],[-95,-56],[-23,17],[16,104],[-40,89],[0,69],[57,138],[83,64],[-15,129],[-73,22],[-22,33],[-71,-4],[-55,41],[-95,-34],[-132,44],[-111,-26],[-58,82],[-140,48],[-84,90],[-118,87],[0,148],[27,94],[-96,83],[-20,4],[-56,-61],[-56,18],[-104,-36],[-37,16],[-4,56],[-65,-8],[-41,19],[-7,-25],[-39,-14],[-1,-24],[-31,-23],[-59,29],[-68,-51],[-68,66],[-65,10],[-47,71],[-53,20],[-4,70],[26,20],[11,67],[25,0],[34,61],[-15,46],[-53,12],[-28,35],[8,79],[55,72],[-33,60],[13,62],[37,36],[15,63],[61,28],[85,-52],[-3,50],[128,68],[75,101],[80,52],[10,74],[-16,37],[63,39],[32,-9],[28,18],[43,-19],[18,36],[-20,8],[8,69],[97,45],[75,143],[-30,49],[-10,128],[61,-26],[93,70],[38,-43],[56,18],[91,-5],[68,17],[17,39],[41,-6],[62,26],[151,-71],[83,22],[11,-43],[38,-17],[32,12],[68,-22],[36,50],[86,-16],[38,29],[111,-35],[26,16],[-3,84],[-54,76],[-50,3],[-34,51],[-122,38],[-7,45],[-56,56],[13,53],[82,-32],[33,17],[62,-16],[12,-22],[46,28],[44,-11],[51,-45],[36,5],[84,-94],[47,0],[44,-40],[54,64],[42,-12],[32,15],[39,124],[136,-32],[159,143],[70,28],[21,34],[151,-7],[33,-65],[35,-10],[12,191],[107,25],[74,39],[38,-113],[26,-18],[39,36],[91,-14],[9,-64],[112,-166],[28,56],[115,83],[114,-67],[81,48],[86,138],[83,30],[116,1],[12,-141],[36,-41],[37,15],[32,-14],[6,-43],[-27,-44],[8,-49],[44,-10],[45,-151],[210,-97],[87,-130],[108,-213],[31,-30],[118,-57],[110,-83],[227,-56],[142,-166],[38,-6],[83,-78],[144,24],[118,-102],[26,-77],[-25,-36],[36,-21],[36,-58],[93,-37],[27,-39],[57,-15],[64,37],[87,-109],[24,-90],[121,-70],[9,-58],[-56,-18],[-70,-111],[84,-109],[48,-106],[68,-27],[55,-62],[59,-31],[127,-19],[88,45],[52,1],[41,-56],[31,-6],[4,-63],[80,-13],[10,-31],[59,-7],[14,23],[56,-42],[18,39],[46,-3],[64,-109],[43,-16],[9,-64],[-15,-23],[44,-33],[13,-40],[-7,-51],[38,-31],[-21,-22],[-30,11],[-24,-18],[-85,65],[-85,-35],[42,-77],[134,-63],[108,53],[83,-7],[67,-30],[45,38],[41,-37],[75,10],[2,79],[13,18],[58,-58],[68,35],[68,-63],[33,8],[21,-34],[31,53],[89,-77],[3,18],[-28,28],[-1,34],[-49,39],[52,110],[-21,70],[57,-49],[75,11],[53,-76],[22,14],[66,-34],[29,26],[-8,51],[22,70],[-6,32],[35,-11],[20,89],[82,-46],[25,46],[2,105],[97,-3],[70,30],[55,98],[145,-42],[58,56],[21,-5],[8,36],[58,18],[67,80],[153,24],[82,-27],[171,47],[31,25],[90,-86],[164,-25],[91,100],[-6,120],[38,62],[240,33],[13,-10],[24,-142],[28,-44],[142,-25],[62,-43],[225,-84],[37,-35],[198,-37],[87,88],[62,26],[40,-6],[58,-75],[29,-99],[45,-49],[29,-87],[191,-77],[80,-69],[54,-272],[-45,-18],[-24,-39],[3,-105],[-18,-86],[-52,-134],[-15,-112],[-63,-106],[4,-204],[-17,-121],[-75,-215],[-75,-129],[-6,-225],[-184,-67],[-124,16],[-65,-90],[-60,-31],[25,-76],[-32,-14],[-19,-55],[77,-46],[6,-62],[-30,-29],[-195,-11],[-102,42],[-33,-28],[-92,-25],[28,-57],[1,-54],[49,-16],[-11,-44],[8,-109],[48,-99],[-9,-76],[-20,-42],[-41,-31],[-37,11],[-18,-14],[-26,-96],[7,-42],[-110,-115],[-8,-46],[34,-52],[-16,-22],[-105,39],[-233,28],[-40,43],[-29,-9],[-23,-81],[-34,-15],[-75,18],[-59,43],[-104,-43],[-68,-104],[63,-110],[-7,-24],[84,-208],[28,-9],[-4,-40],[26,10],[19,-35],[19,28],[12,-47],[-37,-13],[-33,-87],[49,-55],[55,17],[-1,-59],[24,-79],[-87,21],[-86,-33],[-100,44],[-11,-11],[1,-105],[41,-129],[-17,-70],[3,-82],[24,-48],[6,-54],[22,-11],[30,-83],[43,4],[137,-86],[192,11],[111,-48],[80,18],[126,-47],[-13,-105],[-102,-239],[24,-96],[-91,-48],[77,-45],[2,-42],[54,-13],[216,-346],[28,-25],[24,6],[35,-75],[-165,-259],[-67,-63],[-32,-87],[-61,-5],[-19,84],[-109,40],[-38,-84],[-31,-35],[-34,3],[-19,-56],[-63,-45],[-86,-12],[-9,-21],[23,-46],[-3,-40],[-28,-18],[-16,-58],[-120,3],[-28,-17],[-49,-78],[-29,56],[-86,53],[-66,94],[-47,-3],[-75,236],[0,30],[30,49],[-51,113],[8,84],[-66,-72],[-90,-14],[-34,-88],[-27,-26],[-70,42],[-56,-18],[-53,-54],[-59,-3],[-34,-36],[-13,-59],[-42,-12],[-106,-106],[-47,63],[30,43],[-3,95],[52,15],[84,76],[-26,29],[-12,67],[22,94],[-10,82],[-46,1],[-77,-46],[12,-50],[-88,-36],[-10,-38],[-39,-14],[-114,34],[7,-54],[-54,16],[-27,-29],[9,-35],[-17,-12],[-39,4],[-21,37],[-45,-50],[-68,54],[1,16],[-36,13],[-41,58],[23,69],[-12,92],[-33,-1],[-29,32],[6,21],[-28,56],[-45,30],[-19,-11],[-67,58],[13,49],[32,32],[-104,123],[-31,0],[-10,27],[-45,12],[-13,-55],[-106,-35],[-9,-31],[-84,-80],[-39,-19],[-17,16],[-48,-53],[-25,11],[-11,31],[-58,6],[-46,-56],[-2,-62],[-50,-13],[-23,67],[-33,-2],[-40,48],[65,41]],[[7403,1619],[-124,95],[-52,-15],[-24,-52]],[[7077,1102],[-21,-23],[-73,-38],[-26,34],[10,23],[-66,33],[-16,39],[-26,-36],[-20,2],[10,50],[-4,32],[-18,6],[1,43],[-49,14],[-8,-19],[-37,-6],[-55,53],[-57,-20],[-26,25],[-31,-2],[-57,55],[-41,100],[6,30],[-36,54],[-44,-14],[-16,46],[-41,44],[1,68],[25,21],[-13,21],[26,62],[-18,5],[-16,-26],[-31,39],[-63,-15],[-28,25],[-29,134],[-32,-1],[-38,27],[-57,134],[-5,50],[-19,10],[-51,-27],[-18,79],[-29,-3],[-60,68],[-10,34],[-64,35],[9,23],[-22,35],[-21,-41],[-31,-6],[-52,27],[2,48],[-33,52],[-75,12],[-12,-22],[15,-53],[-74,-13],[-21,-39],[-31,4],[-29,43],[30,16],[9,19],[-11,27],[24,9],[-16,49],[61,27],[20,35],[-27,37],[-1,132],[-39,50],[-56,7],[-46,39],[-45,106],[-62,55],[-74,104],[-37,135],[-64,9],[2,-45],[-55,16],[-117,-17],[-11,-18],[8,95],[-63,55],[-29,-5],[-40,25],[-37,82],[-52,36],[-38,87],[18,111],[-11,32],[-24,-6],[-30,29],[-89,-88],[-22,32],[-37,-6],[-86,43],[-33,94],[-90,4],[-30,24],[6,51],[-30,55],[133,69]]],"transform":{"scale":[0.0006764971364109681,0.0005053664960545954],"translate":[72.530394,32.337631]},"objects":{"ladakh_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"dt_code":"003","district":"Leh","st_nm":"Ladakh","st_code":"38","year":"2011_c"}},{"arcs":[[4,-1,5,-3]],"type":"Polygon","properties":{"dt_code":"004","district":"Kargil","st_nm":"Ladakh","st_code":"38","year":"2011_c"}}]}},"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}}} +{ + "type": "Topology", + "arcs": [ + [ + [7077, 1102], + [-61, 198], + [23, 83], + [33, -8], + [3, 21], + [30, 10], + [4, 73], + [37, -14], + [65, 12], + [15, 99], + [-23, 71] + ], + [ + [7203, 1647], + [25, 53], + [72, 5], + [103, -86] + ], + [ + [7403, 1619], + [-25, 122], + [-66, 112], + [35, 50], + [-3, 59], + [15, 27], + [51, 32], + [-11, 30], + [-63, 29], + [9, 45], + [-29, 17], + [-54, 143], + [-68, -3], + [-53, -32], + [-35, 32], + [-55, -12], + [-65, 83], + [-33, 122], + [7, 23], + [-44, 40], + [-2, 34], + [-85, 79], + [-30, 12], + [-42, -27], + [-69, 73], + [-50, -8], + [-53, 43], + [-29, -25], + [-37, 9], + [-58, 51], + [18, 33], + [-35, 44], + [-45, -13], + [-45, 39], + [-103, 22], + [-30, 50], + [-22, -16], + [-28, 60], + [-87, 107], + [-36, -18], + [-33, -57], + [-39, -9], + [-25, 43], + [-42, 12], + [-16, 46], + [18, 38], + [-21, 21], + [58, 114], + [44, 8], + [-6, 76], + [42, 37], + [78, -5], + [40, 36], + [-39, 130], + [30, 65], + [-15, 83], + [6, 35], + [22, 4], + [16, 32], + [2, 97], + [30, 39], + [-145, 104], + [-52, 75], + [-39, 20], + [16, 59], + [-26, 65], + [-11, 110], + [17, 53], + [-46, 8], + [-7, 40], + [-73, -38], + [-34, 10], + [30, 105], + [-36, 49], + [-5, 54], + [-37, 69], + [-209, -76], + [-64, -44], + [-29, 32], + [-122, -26], + [-133, 43], + [-41, 69], + [-63, 29], + [-57, -218], + [-60, -156], + [-154, -90], + [-281, 4], + [-64, -15], + [-71, -74], + [-21, -88], + [-40, -57] + ], + [ + [4341, 4048], + [-122, -52], + [-10, 60], + [-18, 10], + [10, 28], + [-78, 56], + [56, 188], + [-83, 117], + [-67, 34], + [-25, 43], + [-159, 37], + [-79, -16], + [-25, -24], + [-60, -1], + [-141, 74], + [-90, -1], + [-23, 23], + [-23, -22], + [-148, 16], + [-121, 51], + [-66, 58], + [-19, 60], + [-33, 22], + [-373, 36], + [114, 35], + [26, -9], + [64, 105], + [71, 22], + [37, -13], + [56, 32], + [13, 74], + [-8, 109], + [23, 87], + [-76, 43], + [9, 70], + [-64, 79], + [-87, 23], + [-88, -120], + [-106, 5], + [-16, -31], + [-42, -18], + [-23, 4], + [-6, 59], + [-33, 0], + [-7, 38], + [-104, 14], + [-62, 72], + [5, 43], + [-111, -9], + [-44, 37], + [-14, 36], + [-60, -20], + [-62, 75], + [-77, -3], + [-27, 37], + [-75, 32], + [-95, -56], + [-23, 17], + [16, 104], + [-40, 89], + [0, 69], + [57, 138], + [83, 64], + [-15, 129], + [-73, 22], + [-22, 33], + [-71, -4], + [-55, 41], + [-95, -34], + [-132, 44], + [-111, -26], + [-58, 82], + [-140, 48], + [-84, 90], + [-118, 87], + [0, 148], + [27, 94], + [-96, 83], + [-20, 4], + [-56, -61], + [-56, 18], + [-104, -36], + [-37, 16], + [-4, 56], + [-65, -8], + [-41, 19], + [-7, -25], + [-39, -14], + [-1, -24], + [-31, -23], + [-59, 29], + [-68, -51], + [-68, 66], + [-65, 10], + [-47, 71], + [-53, 20], + [-4, 70], + [26, 20], + [11, 67], + [25, 0], + [34, 61], + [-15, 46], + [-53, 12], + [-28, 35], + [8, 79], + [55, 72], + [-33, 60], + [13, 62], + [37, 36], + [15, 63], + [61, 28], + [85, -52], + [-3, 50], + [128, 68], + [75, 101], + [80, 52], + [10, 74], + [-16, 37], + [63, 39], + [32, -9], + [28, 18], + [43, -19], + [18, 36], + [-20, 8], + [8, 69], + [97, 45], + [75, 143], + [-30, 49], + [-10, 128], + [61, -26], + [93, 70], + [38, -43], + [56, 18], + [91, -5], + [68, 17], + [17, 39], + [41, -6], + [62, 26], + [151, -71], + [83, 22], + [11, -43], + [38, -17], + [32, 12], + [68, -22], + [36, 50], + [86, -16], + [38, 29], + [111, -35], + [26, 16], + [-3, 84], + [-54, 76], + [-50, 3], + [-34, 51], + [-122, 38], + [-7, 45], + [-56, 56], + [13, 53], + [82, -32], + [33, 17], + [62, -16], + [12, -22], + [46, 28], + [44, -11], + [51, -45], + [36, 5], + [84, -94], + [47, 0], + [44, -40], + [54, 64], + [42, -12], + [32, 15], + [39, 124], + [136, -32], + [159, 143], + [70, 28], + [21, 34], + [151, -7], + [33, -65], + [35, -10], + [12, 191], + [107, 25], + [74, 39], + [38, -113], + [26, -18], + [39, 36], + [91, -14], + [9, -64], + [112, -166], + [28, 56], + [115, 83], + [114, -67], + [81, 48], + [86, 138], + [83, 30], + [116, 1], + [12, -141], + [36, -41], + [37, 15], + [32, -14], + [6, -43], + [-27, -44], + [8, -49], + [44, -10], + [45, -151], + [210, -97], + [87, -130], + [108, -213], + [31, -30], + [118, -57], + [110, -83], + [227, -56], + [142, -166], + [38, -6], + [83, -78], + [144, 24], + [118, -102], + [26, -77], + [-25, -36], + [36, -21], + [36, -58], + [93, -37], + [27, -39], + [57, -15], + [64, 37], + [87, -109], + [24, -90], + [121, -70], + [9, -58], + [-56, -18], + [-70, -111], + [84, -109], + [48, -106], + [68, -27], + [55, -62], + [59, -31], + [127, -19], + [88, 45], + [52, 1], + [41, -56], + [31, -6], + [4, -63], + [80, -13], + [10, -31], + [59, -7], + [14, 23], + [56, -42], + [18, 39], + [46, -3], + [64, -109], + [43, -16], + [9, -64], + [-15, -23], + [44, -33], + [13, -40], + [-7, -51], + [38, -31], + [-21, -22], + [-30, 11], + [-24, -18], + [-85, 65], + [-85, -35], + [42, -77], + [134, -63], + [108, 53], + [83, -7], + [67, -30], + [45, 38], + [41, -37], + [75, 10], + [2, 79], + [13, 18], + [58, -58], + [68, 35], + [68, -63], + [33, 8], + [21, -34], + [31, 53], + [89, -77], + [3, 18], + [-28, 28], + [-1, 34], + [-49, 39], + [52, 110], + [-21, 70], + [57, -49], + [75, 11], + [53, -76], + [22, 14], + [66, -34], + [29, 26], + [-8, 51], + [22, 70], + [-6, 32], + [35, -11], + [20, 89], + [82, -46], + [25, 46], + [2, 105], + [97, -3], + [70, 30], + [55, 98], + [145, -42], + [58, 56], + [21, -5], + [8, 36], + [58, 18], + [67, 80], + [153, 24], + [82, -27], + [171, 47], + [31, 25], + [90, -86], + [164, -25], + [91, 100], + [-6, 120], + [38, 62], + [240, 33], + [13, -10], + [24, -142], + [28, -44], + [142, -25], + [62, -43], + [225, -84], + [37, -35], + [198, -37], + [87, 88], + [62, 26], + [40, -6], + [58, -75], + [29, -99], + [45, -49], + [29, -87], + [191, -77], + [80, -69], + [54, -272], + [-45, -18], + [-24, -39], + [3, -105], + [-18, -86], + [-52, -134], + [-15, -112], + [-63, -106], + [4, -204], + [-17, -121], + [-75, -215], + [-75, -129], + [-6, -225], + [-184, -67], + [-124, 16], + [-65, -90], + [-60, -31], + [25, -76], + [-32, -14], + [-19, -55], + [77, -46], + [6, -62], + [-30, -29], + [-195, -11], + [-102, 42], + [-33, -28], + [-92, -25], + [28, -57], + [1, -54], + [49, -16], + [-11, -44], + [8, -109], + [48, -99], + [-9, -76], + [-20, -42], + [-41, -31], + [-37, 11], + [-18, -14], + [-26, -96], + [7, -42], + [-110, -115], + [-8, -46], + [34, -52], + [-16, -22], + [-105, 39], + [-233, 28], + [-40, 43], + [-29, -9], + [-23, -81], + [-34, -15], + [-75, 18], + [-59, 43], + [-104, -43], + [-68, -104], + [63, -110], + [-7, -24], + [84, -208], + [28, -9], + [-4, -40], + [26, 10], + [19, -35], + [19, 28], + [12, -47], + [-37, -13], + [-33, -87], + [49, -55], + [55, 17], + [-1, -59], + [24, -79], + [-87, 21], + [-86, -33], + [-100, 44], + [-11, -11], + [1, -105], + [41, -129], + [-17, -70], + [3, -82], + [24, -48], + [6, -54], + [22, -11], + [30, -83], + [43, 4], + [137, -86], + [192, 11], + [111, -48], + [80, 18], + [126, -47], + [-13, -105], + [-102, -239], + [24, -96], + [-91, -48], + [77, -45], + [2, -42], + [54, -13], + [216, -346], + [28, -25], + [24, 6], + [35, -75], + [-165, -259], + [-67, -63], + [-32, -87], + [-61, -5], + [-19, 84], + [-109, 40], + [-38, -84], + [-31, -35], + [-34, 3], + [-19, -56], + [-63, -45], + [-86, -12], + [-9, -21], + [23, -46], + [-3, -40], + [-28, -18], + [-16, -58], + [-120, 3], + [-28, -17], + [-49, -78], + [-29, 56], + [-86, 53], + [-66, 94], + [-47, -3], + [-75, 236], + [0, 30], + [30, 49], + [-51, 113], + [8, 84], + [-66, -72], + [-90, -14], + [-34, -88], + [-27, -26], + [-70, 42], + [-56, -18], + [-53, -54], + [-59, -3], + [-34, -36], + [-13, -59], + [-42, -12], + [-106, -106], + [-47, 63], + [30, 43], + [-3, 95], + [52, 15], + [84, 76], + [-26, 29], + [-12, 67], + [22, 94], + [-10, 82], + [-46, 1], + [-77, -46], + [12, -50], + [-88, -36], + [-10, -38], + [-39, -14], + [-114, 34], + [7, -54], + [-54, 16], + [-27, -29], + [9, -35], + [-17, -12], + [-39, 4], + [-21, 37], + [-45, -50], + [-68, 54], + [1, 16], + [-36, 13], + [-41, 58], + [23, 69], + [-12, 92], + [-33, -1], + [-29, 32], + [6, 21], + [-28, 56], + [-45, 30], + [-19, -11], + [-67, 58], + [13, 49], + [32, 32], + [-104, 123], + [-31, 0], + [-10, 27], + [-45, 12], + [-13, -55], + [-106, -35], + [-9, -31], + [-84, -80], + [-39, -19], + [-17, 16], + [-48, -53], + [-25, 11], + [-11, 31], + [-58, 6], + [-46, -56], + [-2, -62], + [-50, -13], + [-23, 67], + [-33, -2], + [-40, 48], + [65, 41] + ], + [ + [7403, 1619], + [-124, 95], + [-52, -15], + [-24, -52] + ], + [ + [7077, 1102], + [-21, -23], + [-73, -38], + [-26, 34], + [10, 23], + [-66, 33], + [-16, 39], + [-26, -36], + [-20, 2], + [10, 50], + [-4, 32], + [-18, 6], + [1, 43], + [-49, 14], + [-8, -19], + [-37, -6], + [-55, 53], + [-57, -20], + [-26, 25], + [-31, -2], + [-57, 55], + [-41, 100], + [6, 30], + [-36, 54], + [-44, -14], + [-16, 46], + [-41, 44], + [1, 68], + [25, 21], + [-13, 21], + [26, 62], + [-18, 5], + [-16, -26], + [-31, 39], + [-63, -15], + [-28, 25], + [-29, 134], + [-32, -1], + [-38, 27], + [-57, 134], + [-5, 50], + [-19, 10], + [-51, -27], + [-18, 79], + [-29, -3], + [-60, 68], + [-10, 34], + [-64, 35], + [9, 23], + [-22, 35], + [-21, -41], + [-31, -6], + [-52, 27], + [2, 48], + [-33, 52], + [-75, 12], + [-12, -22], + [15, -53], + [-74, -13], + [-21, -39], + [-31, 4], + [-29, 43], + [30, 16], + [9, 19], + [-11, 27], + [24, 9], + [-16, 49], + [61, 27], + [20, 35], + [-27, 37], + [-1, 132], + [-39, 50], + [-56, 7], + [-46, 39], + [-45, 106], + [-62, 55], + [-74, 104], + [-37, 135], + [-64, 9], + [2, -45], + [-55, 16], + [-117, -17], + [-11, -18], + [8, 95], + [-63, 55], + [-29, -5], + [-40, 25], + [-37, 82], + [-52, 36], + [-38, 87], + [18, 111], + [-11, 32], + [-24, -6], + [-30, 29], + [-89, -88], + [-22, 32], + [-37, -6], + [-86, 43], + [-33, 94], + [-90, 4], + [-30, 24], + [6, 51], + [-30, 55], + [133, 69] + ] + ], + "transform": { + "scale": [0.0006764971364109681, 0.0005053664960545954], + "translate": [72.530394, 32.337631] + }, + "objects": { + "ladakh_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3]], + "type": "Polygon", + "properties": { + "dt_code": "003", + "district": "Leh", + "st_nm": "Ladakh", + "st_code": "38", + "year": "2011_c" + } + }, + { + "arcs": [[4, -1, 5, -3]], + "type": "Polygon", + "properties": { + "dt_code": "004", + "district": "Kargil", + "st_nm": "Ladakh", + "st_code": "38", + "year": "2011_c" + } + } + ] + } + }, + "crs": { + "type": "name", + "properties": {"name": "urn:ogc:def:crs:OGC:1.3:CRS84"} + } +} diff --git a/public/maps/madhyapradesh.json b/public/maps/madhyapradesh.json index b1134b090f..0a899cd2a5 100644 --- a/public/maps/madhyapradesh.json +++ b/public/maps/madhyapradesh.json @@ -1 +1,4380 @@ -{"type":"Topology","arcs":[[[10958,8109],[-75,-109],[-40,-31]],[[10843,7969],[-25,-60]],[[10818,7909],[-96,-66],[-40,-42],[-60,-20],[-21,-51],[-166,3],[-34,-32],[48,-125],[49,-39],[4,-33],[-39,-72],[-126,-129],[-17,-70],[-49,-63],[-56,62],[-68,-4],[-23,-78],[-50,-68],[-2,-36],[55,-48],[10,-108],[-26,-19],[27,-61],[-26,-38],[26,-167],[-41,-48],[-31,47],[-55,23],[-22,-24]],[[9989,6603],[-35,17],[-35,62],[-51,-15],[-38,-51],[-65,6],[-14,-26],[-72,33],[21,35],[-103,84],[-43,-47],[28,-68],[-89,23],[-67,-26],[-23,40],[-111,-42],[27,-70],[-43,-225],[6,-46],[-45,-47],[-105,-18],[16,-84],[-100,16],[-121,-61],[-44,5],[-24,-40]],[[8859,6058],[-54,38],[-68,18],[-34,84],[-16,100],[28,11],[8,73],[44,-39],[33,40],[49,-20],[56,48],[-6,57],[26,39],[85,28],[25,73],[-6,70],[-132,38],[-57,-35],[-107,-19],[-33,-66],[-29,0],[-72,63],[-5,35]],[[8594,6694],[-8,48]],[[8586,6742],[47,141],[4,44],[42,38],[52,86],[-10,52],[44,14],[94,-12],[61,-29],[43,17],[3,60],[155,53],[42,131],[-23,131],[27,101],[42,72],[-28,308],[22,60],[-12,94],[-28,47]],[[9163,8150],[-52,77],[-10,42],[110,40],[5,67],[-44,-2],[-56,36],[-52,-4],[6,62],[60,60],[68,-15],[28,-88],[39,9],[51,-28],[-1,-33],[65,-29],[-95,-156],[9,-99],[51,26],[73,-75],[51,-27],[47,39],[-6,47],[64,88],[74,-46],[127,-39],[138,34],[41,-37],[100,-50],[58,111],[-26,161],[47,35],[37,-15],[69,33],[102,13],[36,65],[13,83],[86,0],[41,21],[58,-26],[56,74],[50,12],[1,45],[98,-3],[50,41],[61,-67],[-11,-67],[16,-48],[0,-104],[50,-7],[29,-55],[76,-60],[39,-94],[-64,-22],[-68,-66]],[[9280,8055],[-35,-106],[54,-30],[43,52],[-57,53],[-5,31]],[[9170,3086],[73,-19],[-29,-67],[-51,-67],[37,-66],[-1,-46],[-182,-20],[-57,-86],[43,-12],[13,45],[51,13],[86,-18],[37,-42],[-66,-17],[34,-43],[49,-20],[13,-67],[-84,-31],[-18,-34],[17,-55],[102,-52],[7,-72],[-73,-7],[30,-130],[26,-59],[61,-55],[-27,-37],[21,-83],[33,-4],[-20,-98],[-95,-78],[10,-57],[-35,-12],[-89,-174],[30,-43],[-30,-72],[-31,9],[-51,-46],[7,-69]],[[9011,1295],[-17,-81],[3,-61],[-125,20],[-12,-42],[-64,-61],[-164,-16],[-61,33],[-59,-48],[-48,-3],[0,-58],[33,-152],[-63,27],[-27,-32],[-63,10],[-144,0],[-64,-51],[-70,35],[-109,-9],[-63,19],[-43,55],[-89,28],[-44,-42],[-78,-8],[-28,120],[0,76],[-78,-12],[-29,-35],[-42,25]],[[7463,1032],[45,62],[40,92],[67,74],[57,40],[20,124],[-6,61],[53,37],[44,6],[36,60],[-12,65],[-33,20],[-13,53],[-69,45],[-93,-8],[-56,19],[26,83],[-96,99],[0,47],[-31,56],[-89,-30],[-24,202],[5,60],[48,62],[-49,27],[-30,113],[59,58],[-17,100]],[[7345,2659],[83,44],[102,-10],[79,-72],[107,7],[70,64],[59,9],[-18,68],[-64,46],[47,46],[6,79],[-76,100],[-2,83],[47,62],[157,-19],[34,56],[74,32]],[[8050,3254],[18,-92],[34,0],[55,-59],[74,14],[-7,34],[67,15],[38,54],[88,-8],[47,-25],[5,-40],[73,-52],[82,18],[13,78],[-19,52],[17,91],[48,39],[56,-31],[79,44],[26,45],[71,-4],[27,38],[62,20],[20,-32],[6,-156],[27,-61],[51,-3],[-2,-85],[18,-57],[46,-5]],[[9989,6603],[67,-108],[39,-41],[-24,-28],[-53,-2],[-8,-37],[52,-26],[5,-72],[-46,-33],[-6,-82],[-29,-19],[-15,-63],[-28,-17],[-12,-69],[-41,-6],[9,-55],[74,-27],[99,-18],[18,-58],[-29,-119],[46,-42],[9,-45],[-22,-63],[14,-59]],[[10108,5514],[-62,-124],[-18,-57],[24,-92],[57,1],[50,-27],[71,-3],[35,-44],[-45,-103]],[[10220,5065],[-84,-102],[-54,-97],[-39,14],[-47,-95],[-71,-65],[-40,-16],[-73,-137],[-61,-48],[-209,-141],[-49,7],[-132,-116],[-17,-29],[-93,-56]],[[9251,4184],[-67,-12],[-47,126],[-67,-11],[-4,49],[-41,19],[-26,-51],[-64,-9]],[[8935,4295],[-31,71],[73,9],[28,60],[-33,47],[44,51],[-75,50],[-18,134],[63,11],[9,38],[112,66],[18,50],[56,25],[-11,48],[-42,24],[0,152],[60,-16],[28,49],[-85,43],[-33,47],[3,91],[-111,80],[32,69],[-37,43],[-61,-14],[-56,28],[-67,64],[-32,78],[-14,88],[73,28],[93,63],[0,43],[-47,85],[-15,58]],[[2426,3594],[-26,-83],[31,-67],[-6,-42],[89,-23],[-16,-56],[51,-6],[-1,-73],[33,-125],[63,9],[39,44],[32,-51],[112,5],[78,-33],[-62,-77],[-80,-42],[-68,-7],[9,-66],[-77,-51],[31,-89],[-16,-61],[-30,-24],[24,-71]],[[2636,2605],[-39,-35],[-54,23],[17,-176],[32,-33],[3,-77],[-30,-107],[-23,-30],[-112,-14],[-64,-26],[-48,10],[-98,-18]],[[2220,2122],[-48,-19],[-81,-1],[-80,-38],[-86,-3],[-69,-19],[-78,0],[-83,-16],[-194,-7],[-130,-45],[-71,37],[-169,-64],[-27,-25],[-65,4],[-118,-32],[-61,58],[-56,-9]],[[804,1943],[-18,38],[38,52],[-63,10],[-12,32],[109,9],[-12,56],[-54,62],[33,53],[22,73],[107,10],[21,53],[79,8],[-8,62],[-33,52],[15,66],[106,11],[-4,92],[41,19],[34,59],[-46,49],[33,52],[-15,55],[43,55]],[[1220,2971],[69,42],[24,156],[-21,34],[-34,146],[49,26],[56,-22],[135,16],[7,31],[80,69],[14,74],[43,43],[30,92],[1,85],[17,179],[-13,43],[5,92]],[[1682,4077],[114,-15],[51,14],[227,-45],[11,96]],[[2085,4127],[105,-14],[64,-140],[-46,-26],[-16,-102],[37,-14],[-8,-117],[21,-181],[42,-9],[32,68],[110,2]],[[4758,2549],[32,-24],[82,-5],[81,-66],[-75,-78],[-22,-127],[11,-53],[-29,-18],[45,-108],[-14,-85],[42,-74],[27,-87],[41,43],[120,1],[37,-51],[49,21],[69,-20],[119,22],[49,-33],[14,-42],[58,-43],[22,-57]],[[5516,1665],[-51,-87],[-47,-25],[13,-83],[36,-45],[-86,-5],[-108,-27],[-35,-72],[10,-42]],[[5248,1279],[-48,-29]],[[5200,1250],[-28,-19]],[[5172,1231],[-36,-19],[-184,-161],[-69,28],[-32,-44],[-66,9],[-27,-70]],[[4758,974],[-31,-12],[-34,44],[-61,-33],[-44,19],[-49,-10],[-67,19],[-60,-16],[-132,-6],[-79,31],[-38,33],[-109,3],[-37,-60],[-185,30],[-60,-25],[-62,-56],[-36,16],[-11,57],[-33,23],[-91,-33]],[[3539,998],[4,73],[-13,105],[60,55],[45,1],[49,-32],[21,26],[-12,72],[-39,20],[-47,-23],[-38,97],[26,48],[-14,109],[81,72],[36,4],[-42,187],[39,46],[-16,44],[21,40],[50,-10],[21,54],[38,18],[-88,94],[-71,-49],[9,-82],[-73,-5],[-3,73],[68,29],[-28,62],[10,72],[40,10],[6,71],[-89,-1],[-17,-44],[-115,14],[4,52],[51,6],[69,46],[110,22],[33,35],[46,105]],[[3771,2514],[69,-74],[86,4],[72,21],[100,67],[81,17],[-4,77],[112,59],[80,-25],[85,11],[33,-63],[52,-23],[4,-61],[39,-55],[68,13],[44,-33],[46,48],[20,52]],[[5671,8015],[20,-82],[29,-28],[-4,-54],[41,-106],[39,-42],[41,48],[79,-38],[47,-103],[150,-11]],[[6113,7599],[-74,-80],[15,-88],[40,-44],[1,-86],[-69,-88],[-54,-92],[-11,-89],[28,-60],[4,-186],[-31,-64],[47,-13],[7,-41],[161,-55],[38,78],[104,-33],[74,41],[-5,-66],[-48,7],[-48,-54],[-72,-25],[-8,-41],[50,-33]],[[6262,6487],[-49,-36],[-39,1],[-7,-57],[-71,-41],[-85,10],[-22,45],[-70,-73],[-37,9],[-53,70],[-7,117],[-71,11],[-46,-84],[-4,-64],[45,-105],[-16,-72],[-68,-29],[18,-31],[-43,-52],[16,-73],[-66,-64],[34,-64],[43,0],[15,-80],[-11,-62],[21,-119]],[[5689,5644],[-84,-8],[-74,12]],[[5531,5648],[-72,4],[-7,75],[-28,15],[12,73],[27,51],[-15,91],[5,64],[-141,10],[-37,-17],[-89,7],[-47,-51],[-58,-11],[-18,44],[-77,55],[-40,7],[-15,53]],[[4931,6118],[38,-8],[28,115],[49,20],[-134,164],[-14,63],[-32,53],[20,63],[-16,77],[15,121],[-64,121],[42,37],[107,-1],[32,-24],[-7,-96],[79,-55],[57,26],[100,107],[20,56],[-4,175],[-69,145],[-82,34],[-15,56],[-73,-22],[-133,7],[3,35],[-77,114],[51,27],[110,-2],[55,21],[39,46],[-61,30],[18,45],[-91,89],[-7,93],[25,66],[48,3],[102,40],[26,43],[163,-39],[65,22],[23,40],[52,-1],[21,51],[89,-7],[72,18],[70,-71]],[[11256,4015],[17,-67],[37,-3],[9,-70],[44,-35],[-10,-79],[24,-23],[-43,-93],[1,-53],[32,-22],[86,-12],[72,-29],[62,50],[23,-98],[67,0],[97,40],[15,33],[64,-2],[-30,-79],[29,-8],[-1,-94],[99,-8],[-13,-73],[8,-73],[27,-10],[27,-72],[60,10],[25,-39],[-63,-29],[-57,-53],[19,-59],[38,-26],[85,29],[5,78],[109,28],[69,-36],[56,-66],[5,-37],[44,-50],[18,-53]],[[12412,2832],[-28,-2],[-39,-64],[-66,-30],[-16,-116],[25,-78],[-3,-99],[-50,-96],[-77,-12]],[[12158,2335],[-35,60],[-48,36],[-38,-15],[-107,-5],[-18,26],[2,100],[-43,-17],[-31,89],[-119,32],[-4,-134],[-68,-47],[-21,-39],[-63,-21],[-2,-44],[42,-60],[-31,-30],[-111,42],[-111,8],[-82,20],[-50,68],[-73,9],[-31,-63],[-50,-4],[2,70],[-38,50],[-97,-14],[6,60],[-67,24],[-60,-61],[-62,-19],[-13,26],[-103,27],[1,33],[-95,6],[-25,-13]],[[10515,2535],[-31,15],[-21,58],[37,61],[-36,90],[-29,11],[-33,141],[-46,48],[-61,-8],[15,56],[45,5],[48,57],[56,-2],[78,42],[68,-50],[70,3],[39,61],[-34,36],[28,40],[43,8],[6,81],[79,31],[-7,108],[-114,31],[-16,-42],[-48,-31],[-132,12],[-49,-25],[-93,71],[-28,64],[-40,10],[-31,43]],[[10278,3560],[15,135],[-23,66],[88,57],[-25,89],[67,20],[85,78],[43,2],[10,-49],[89,-9],[66,43],[-40,95],[115,64],[110,-102],[37,11],[49,73],[51,12],[44,52],[18,-56],[150,-71],[29,-55]],[[2460,5690],[-51,-17],[-24,-39],[-73,-39],[-49,-128],[-23,55],[-54,38],[-86,-18],[-27,38],[-73,-71],[-134,4],[-40,-28],[-72,18],[0,-65],[-45,-14],[-94,20],[-21,-57],[-32,-6]],[[1562,5381],[-21,66],[-31,5],[10,89],[-17,57],[15,77],[47,96],[38,26],[15,60],[37,52],[-58,161],[-41,27],[-15,67],[-47,35],[-35,84],[41,59]],[[1500,6342],[101,113],[-14,64],[34,71],[103,45],[51,-62],[81,31],[23,-38],[159,-53],[82,9],[152,48],[44,-41],[92,36],[5,43],[97,90],[22,58],[53,69],[90,56],[24,76],[-9,134],[-27,28],[0,90],[-41,71]],[[2622,7280],[58,14],[54,-68],[80,26],[37,52],[107,66],[77,10],[91,-72],[-18,-123],[27,2],[15,-110],[37,-14],[18,-51],[47,-9],[-7,-54],[31,-24],[-34,-66],[12,-40],[-24,-88],[-89,-45],[-61,36],[5,57],[-51,-14],[-51,-61],[-32,-65],[-1,-95],[48,-74],[56,7],[27,-27],[14,-119],[-83,-41],[-7,-46],[-45,-116],[57,-2],[23,-58],[80,-12],[-11,-64],[-87,-19],[1,-52],[-31,-77],[-108,-57],[-28,48],[3,49],[-29,32],[-48,-31],[-12,-37],[-113,-1],[4,37],[-69,28],[-31,34],[-44,-97],[-42,-39],[-15,-120]],[[7358,9420],[-24,-66],[-66,-45],[-23,-46],[59,-22],[18,55],[146,-117],[55,0],[28,-112],[0,-55],[39,-15],[52,50],[40,-20],[-40,-51]],[[7642,8976],[-50,-63],[19,-85],[-59,-72],[-88,-47],[-4,-53],[-67,-74],[50,-24],[14,-38],[-40,-51],[65,-26],[29,-65],[-13,-39],[71,-49],[-18,-52],[98,-76],[-30,-65],[-60,4],[-27,-37],[-85,-49],[22,-113],[-18,-56],[-66,-62],[-132,-106],[-25,-38],[-51,-22],[-8,-74]],[[7169,7544],[-104,-17],[-110,42],[-59,-39],[-71,17],[-5,70],[20,65],[51,55],[-10,44],[-75,6],[-9,38],[-77,-4],[-13,35],[-138,0],[-7,-43],[-63,-95],[-65,-128],[-73,-29],[-148,113],[-57,109],[-61,-65],[-7,-69],[25,-50]],[[5671,8015],[80,28],[66,48],[8,106],[46,36],[-20,67],[-99,91],[44,68],[-53,164],[30,50],[-97,47],[-148,-126],[-4,-84],[-48,-39],[-64,3],[-66,43],[-70,10]],[[5276,8527],[-119,37],[26,67],[109,-13],[27,60],[74,16],[-17,65],[60,69],[24,57],[62,3],[125,38],[-66,119],[44,73],[-43,26],[26,64],[39,-22],[47,27],[-78,84],[69,27],[16,106],[65,6],[63,-15],[17,59],[10,123],[46,38],[56,-62],[84,-21],[61,-73],[42,14],[0,80],[97,14],[23,77]],[[6265,9670],[9,10]],[[6274,9680],[36,10]],[[6310,9690],[62,-75],[57,7],[27,-60],[38,7],[35,-70],[109,-28],[17,-133],[73,27],[69,-10],[40,26],[26,-42],[109,-59],[141,24],[66,30],[63,1],[87,82],[29,3]],[[14178,5559],[53,77],[-12,56],[-31,15],[-40,112],[-45,23],[-128,-6],[-30,32],[-42,-6],[-55,55],[-26,-37],[-49,1],[-46,104],[-77,41],[-2,61],[-48,17],[33,87],[-1,40],[71,93],[107,8],[73,97],[130,82],[-1,66],[87,1],[23,44],[41,17],[-19,50],[76,54],[9,54],[75,52],[94,30],[70,96],[-126,80]],[[14342,7055],[-8,25]],[[14334,7080],[63,20],[53,-43],[84,-9],[-10,77],[15,43],[-18,52],[32,43],[116,-59],[55,5],[19,-52],[236,95],[53,-48],[-8,-54],[129,-14],[4,-88],[49,5],[7,-95],[-94,-22],[-52,31],[-1,-87],[36,-27],[-22,-47],[3,-100],[-32,-83],[19,-27],[74,3],[6,-161],[-24,-48],[-1,-64],[-40,-26],[16,-110],[-27,-59],[-56,11],[-54,-19],[76,-75],[13,-33],[100,-6],[-35,-129],[96,-24],[-19,-101],[-64,-29],[-9,-28],[-80,6],[-79,-34],[5,-67],[-52,-71],[-76,-33],[-65,9],[-7,-66],[-91,-17],[-55,52],[-125,-21],[-34,20],[-70,-15],[-126,36],[-42,-28],[-52,41],[5,49]],[[8586,6742],[-65,-8],[-55,41],[-21,49],[83,-4],[-15,96],[9,44],[-55,50],[-55,117],[-33,3],[-55,-65],[-51,-2],[-43,-29],[-47,24],[-17,109],[56,89],[-13,182],[29,31],[-29,101],[-118,67],[-49,15],[-25,84],[-55,41],[17,38],[17,155],[-37,60],[-40,13],[-6,119],[-56,140],[12,62],[-28,25],[-109,43],[-62,-44],[-42,53],[69,13],[40,41],[57,-35],[11,57],[78,34],[2,51],[30,63],[68,1],[-2,47],[35,22],[82,-36],[-73,-76],[90,-23],[-11,-35],[56,-19],[49,18],[-8,88],[10,55],[-70,67],[112,40],[70,-35],[48,3],[-40,97],[72,17],[17,73],[98,-19],[0,-40],[-44,-29],[32,-45],[-13,-57],[-42,-38],[45,-37],[54,21],[27,-100],[-48,-37],[-82,38],[-46,-3],[-64,-71],[13,-27],[-94,-91],[76,-120],[19,1],[28,99],[-10,67],[50,60],[80,-29],[68,-82],[-64,-55],[-43,21],[-21,-49],[-51,-35],[26,-43],[-26,-42],[17,-55],[82,97],[132,11],[-49,53],[36,70],[33,-57],[77,-47],[-55,-78],[68,-28],[46,7],[52,-24],[-22,-41],[53,-51],[72,-1],[32,21],[72,-21],[107,26],[22,41]],[[3598,4338],[-71,-8],[-40,-69],[67,-3],[62,17],[5,-68],[-69,-12],[-62,19],[-6,-73],[95,-101],[13,-64],[-57,-22],[-44,64],[8,39],[-41,80],[-5,79],[-45,54],[-18,124],[-55,105],[-23,-4],[-34,-93],[9,-98],[29,4],[6,-91],[-36,-92],[46,-17],[52,-79],[-18,-88],[-42,-39],[-90,5],[-6,-51]],[[3228,3856],[-46,76],[-50,-13],[-56,18],[-77,-24],[-53,13],[-45,-28],[-66,-7],[-69,13],[-25,67],[16,52],[-106,5],[5,-37],[-91,-89],[-27,-43],[-40,0],[-4,-124],[-64,-65],[-4,-76]],[[2085,4127],[-27,151],[64,76],[10,48],[68,0],[30,46],[-111,9],[-75,55],[-39,9],[-2,52],[-47,77],[-14,82],[31,59],[11,102],[33,30],[42,-21],[82,38],[10,91],[89,55],[4,-44],[113,18],[11,-42],[160,-110],[1,58],[30,67],[-19,62],[28,90],[77,-14],[100,8],[12,65],[29,28],[73,13],[6,65]],[[2865,5350],[65,22],[42,-65],[55,-4],[66,-52],[-14,-87],[33,-50],[12,-83],[66,-58],[132,20],[192,-13],[61,18],[22,-53],[56,58],[50,-46],[-37,-76],[71,-28],[33,57],[32,-2],[13,-64],[-39,-2],[-38,-59],[28,-25],[-22,-54],[19,-76],[58,7],[17,-34],[-15,-57],[-69,-5],[-24,-35],[-4,-66],[-33,-56],[-67,30],[-28,-74]],[[12522,4273],[-55,53],[8,41],[-48,46]],[[12427,4413],[-8,21]],[[12419,4434],[-33,46],[-71,15],[2,-155]],[[12317,4340],[-3,-14]],[[12314,4326],[-22,-38]],[[12292,4288],[-99,-44],[-59,25],[-68,51],[-91,113],[-47,-60],[-106,-77],[-35,40],[-70,19],[-7,-54],[-46,-6],[-32,64],[-47,57],[15,45],[50,35],[4,48],[-79,34],[-140,-2],[-63,-26],[-36,9]],[[11336,4559],[-51,83]],[[11285,4642],[-23,46],[51,49],[8,54],[-34,50],[10,101],[19,45],[104,54],[3,46],[48,43],[36,79],[-4,32],[34,84],[71,-11],[158,-119],[143,25],[4,39],[-25,129],[37,41],[-33,91],[0,57],[-56,41],[-34,53],[-12,92],[63,24],[12,51],[91,134],[47,17]],[[12003,5989],[32,3],[61,49]],[[12096,6041],[-16,-43],[101,-141],[16,-69],[106,2],[-5,-42],[31,-48],[54,-18],[-26,-44],[66,-13],[40,-60],[44,5],[32,-52],[-130,-21],[-18,-50],[56,-101],[49,-23],[9,-78],[-17,-124],[23,-107],[61,-15],[25,-28],[-13,-123],[41,-158],[29,-8],[25,-169],[-24,-64],[-59,-22],[-23,-37],[-6,-77],[-45,-40]],[[6262,6487],[116,-26],[123,31],[46,-19],[115,19],[31,-29],[-20,-47],[72,-23],[25,-74],[42,33],[54,-19],[33,17],[15,68],[38,7],[44,-56]],[[6996,6369],[-23,-55],[66,-39],[64,3],[-28,-169],[31,-21],[-29,-132],[-50,30],[-26,-42],[66,-33],[19,28],[101,-60],[17,78],[27,32],[75,-32],[47,-43],[22,-87],[-44,-79],[41,-39],[-24,-167],[20,-118],[-41,-34],[-5,-85],[56,-102]],[[7378,5203],[-42,-155],[-45,-30],[-36,-105],[-46,24],[-27,-30],[-73,-15],[-4,-69],[-85,-67],[-123,47],[-30,-23],[1,-86],[87,-36],[3,-67],[-49,-45],[-34,34],[-72,20],[0,80],[-47,27],[-32,53],[-71,-22],[-103,35],[-139,152],[-22,-26],[-69,-7],[-72,56],[-22,-41],[42,-48],[-3,-47],[-44,-29],[-43,45],[-133,35],[-3,28]],[[6042,4891],[-27,47],[4,70],[84,44],[32,97],[37,28],[64,8],[29,68],[-80,64],[16,39],[-69,37],[-42,-22],[-81,42],[-56,-36],[-93,89],[-74,158],[-97,20]],[[3539,998],[-88,-48],[-114,0],[-20,-25],[-5,-109],[72,8],[39,-36],[-3,-97],[-33,-90]],[[3387,601],[-40,36],[-91,-8],[-49,19],[-97,-32],[-54,14],[-74,-10],[-26,16],[-103,-22],[-96,-2],[-17,24]],[[2740,636],[-45,91],[32,39],[-49,38],[-147,28],[-56,55],[-7,53],[67,149],[-52,15],[-50,64],[-3,38],[-85,4],[-89,-23],[-58,-52],[-36,21],[-38,66],[-75,22],[-20,69],[95,32],[37,69],[-9,53],[52,65],[-51,65],[19,103],[44,-32],[35,9],[3,74],[42,78],[59,1],[40,80],[-7,60],[-31,61],[-66,30],[-71,61]],[[2636,2605],[62,-27],[16,-42],[127,11],[76,46],[90,-4],[113,71],[31,-44],[97,20],[10,61],[90,33],[68,-37],[13,41],[74,37],[-6,39],[-47,37],[5,65],[57,8],[40,30]],[[3552,2950],[26,-143],[104,-78],[93,-38],[39,-51],[-43,-126]],[[12419,4434],[8,-21]],[[12522,4273],[21,-41],[50,-23],[12,-47],[44,-8],[-21,-78],[99,-53],[27,-45],[87,-9],[100,25],[52,-35],[49,-61],[91,32],[4,69],[-101,35],[2,69],[25,50],[49,43],[8,45],[99,9],[24,32],[81,-20],[67,21],[17,64],[36,27],[69,-4],[75,-37],[9,47],[-72,76],[28,37],[36,-43],[53,76],[53,30],[17,72],[47,-31],[19,92]],[[13778,4689],[86,-15],[0,-53],[130,28],[11,-69],[58,-2],[34,-57],[49,-16],[-3,-101],[-25,-10],[-47,-85],[-10,-125],[24,-46],[-61,-76],[-94,24],[-58,-68],[-80,9],[-76,-18],[-34,-73],[32,-63],[6,-104],[-46,-18],[-92,-109],[-51,-22],[-108,-19],[-15,-78],[41,-135],[-66,-81],[34,-100],[-30,-60],[-45,60]],[[13342,3207],[1,43],[-63,31],[16,65],[-20,66],[-64,13],[-101,-55],[-66,5],[-50,-19],[-36,27],[-58,-10],[-33,27],[-31,97],[-57,59],[-79,-3],[-76,49],[-64,9],[-40,41],[-92,22],[-26,83],[37,130],[74,73],[6,60],[-42,52],[-64,43],[-13,77],[-73,19],[-36,77]],[[12314,4326],[3,14]],[[11285,4642],[-101,-31],[-34,-50],[-109,-21],[-80,-71],[-58,29],[-36,91],[10,98],[-72,71],[14,54],[-56,30],[-59,-25],[-17,86],[60,24],[1,56],[-49,39],[-49,-33],[-74,44],[-68,-1],[-85,-45],[-127,5],[-32,50],[-44,23]],[[10108,5514],[63,-19],[69,19],[50,67],[40,96],[38,134],[77,31],[72,-19],[31,-60],[53,-26],[26,39],[18,81],[54,-10],[51,-40],[-14,-50],[105,-45],[26,-26],[65,42],[29,62]],[[10961,5790],[52,-4],[57,41],[47,-2],[80,29],[68,62],[-28,39],[32,38],[76,-37],[142,85],[30,34],[104,52],[13,-37],[-79,-62],[25,-32],[76,-12],[74,7],[-2,-45],[-72,-31],[5,-79],[68,-33],[16,86],[53,19],[45,98],[56,-14],[104,-3]],[[11176,7810],[44,-169],[29,49],[37,-31],[62,-1],[93,-70],[-62,-46],[-7,-32],[-95,-36],[-172,-123],[-49,54],[-43,-127],[-33,-40],[94,-113],[-5,-42],[45,-13],[32,-45],[-42,-158],[-26,-127],[64,-12],[19,-40],[-1,-79],[53,-6],[51,-58],[15,-49],[66,-40],[-23,-65],[34,-12],[29,-104],[82,-37],[-45,-63],[-77,-72],[-117,-92],[-48,-17],[-45,37],[-24,-104],[-86,-24],[-7,-46],[-57,-67]],[[10818,7909],[84,-54],[39,36],[51,9],[46,93],[115,-5],[-42,-86],[65,-92]],[[10958,8109],[-5,-143],[-78,-21],[-32,24]],[[13124,5630],[31,-32],[-28,-38],[52,-39],[25,-60],[-6,-66],[60,-34],[23,-66],[-24,-56],[-42,-20],[-11,-46],[-51,1],[-19,-122],[-57,-22],[13,-68],[49,-8],[-1,-80],[41,-40],[33,24],[12,58],[67,-16],[74,88],[36,-30],[71,-7],[51,-75],[91,14],[64,27],[57,-70],[-2,-50],[41,-49],[4,-59]],[[12096,6041],[173,75],[81,13],[75,-53],[45,39],[-6,36],[107,85],[107,1],[45,49],[30,100]],[[12753,6386],[82,-12],[55,20],[23,-65],[-14,-130],[62,-114],[6,-68],[56,13],[-60,-125],[-15,-61],[64,-29],[9,-134],[33,2],[70,-53]],[[8272,4327],[13,-38],[-22,-63],[-1,-72],[-19,-43],[9,-72],[-77,-36],[-44,-59],[-100,-13],[-29,-25],[-50,11],[-56,-39],[-80,10],[-131,-21],[-47,-42]],[[7638,3825],[-79,-45],[-68,-81],[-53,-7],[-67,-90],[-86,-13],[-43,50],[-38,-9],[-114,-115],[0,-49],[-40,-31],[-54,43],[-75,-17]],[[6921,3461],[2,78],[-36,31],[37,55],[6,46],[-37,40],[-111,-52],[28,118],[-93,-9],[-117,-34],[-114,-85],[-42,11],[-121,-54],[-21,-65],[-75,-24],[-83,72],[-59,-27],[-97,63],[-54,50],[-42,-8],[4,75],[-34,48],[-93,68],[18,37],[-24,73],[38,66]],[[5801,4034],[213,34],[20,31],[87,46],[-2,70],[33,13],[23,117],[-10,122],[56,47],[4,50],[-77,-2],[-43,50],[1,91],[-116,7],[24,138],[28,43]],[[7378,5203],[55,37],[24,-64],[68,-13],[86,41],[-30,52],[-71,51],[56,34],[57,4],[24,-107],[37,-36],[16,-67],[64,19],[0,-74],[-25,-49],[10,-62],[107,19],[46,-39],[91,29],[60,2],[29,26],[70,2],[-5,-90],[-99,-74],[-43,-99],[-41,12],[-13,-65],[13,-109],[59,-61],[23,26],[71,10],[90,-113],[-23,-93],[88,-25]],[[14178,5559],[-60,-56],[-159,-16],[-57,7],[-17,44],[-60,41],[-87,-21],[-59,41],[-39,-58],[-143,-70],[-68,10],[-121,98],[-9,45],[-62,79],[-113,-73]],[[12753,6386],[-67,-21],[-79,136]],[[12607,6501],[116,78],[144,64],[79,58],[81,40],[160,57],[98,60],[68,23],[17,-32],[267,75],[-8,39],[96,41],[22,-40],[52,2],[38,30],[80,14],[15,49],[92,-17],[72,16],[60,30],[84,-16],[47,-29],[55,12]],[[587,3128],[19,-48],[58,-22],[43,-124],[99,76],[74,-43],[41,3],[41,-33],[29,31],[70,31],[14,56],[118,-37],[27,-47]],[[804,1943],[-123,-31]],[[681,1912],[-82,-21],[-68,-88],[-62,-7],[-40,-73],[-148,-21],[-31,6],[-77,88],[18,28],[-93,30],[-5,28],[70,76],[44,14],[13,82],[-66,-10],[-17,233],[-86,33],[9,78],[-33,35],[22,149],[70,22],[38,-78],[99,-21],[13,42],[73,68],[59,32],[-17,63],[-71,31],[-118,0],[-57,-38],[-31,25],[-3,69],[-44,-4],[13,85],[-73,17],[2,50],[69,16],[75,-51],[54,20],[96,66],[40,93],[73,67],[82,-18],[96,0]],[[12158,2335],[-37,-23],[12,-63],[-18,-130],[-76,-22],[55,-49],[-8,-71],[-62,-6],[4,47],[-26,62],[-69,12],[-34,-106],[-22,-11],[-74,-265],[-18,-83],[24,-22],[-14,-141],[-35,-115],[-49,-16],[-36,37],[-39,-3],[-23,-51],[-2,-65],[-31,-53],[26,-98],[-23,-37],[37,-131],[-16,-178],[-41,-45],[-24,-109],[-37,-70],[-78,-37],[-42,11],[-51,67],[-77,63],[-124,25],[-8,-52],[-70,0],[-25,62],[39,62],[-18,54],[-45,51],[-10,64],[-54,31],[-31,70],[-43,4],[-62,89],[-76,0],[-48,28],[-67,-54],[-61,-1],[-89,-105],[-61,6],[-55,-44],[-61,45],[-60,-8],[-20,-59],[-102,13],[-55,31],[-58,70],[-102,42],[-84,-44],[-46,-7],[-18,-40],[-68,-3],[-56,-25],[-69,2],[5,42],[-58,50]],[[9494,1033],[43,19],[7,54],[52,16],[64,84],[-11,64],[123,-29],[-25,81],[42,21],[18,110],[98,-2],[36,16],[54,103],[122,82],[37,59],[-93,21],[43,54],[105,10],[0,168],[29,31],[92,-2],[19,26],[113,-12],[-21,82],[-22,19],[-18,110],[38,58],[55,32],[15,36],[-25,108],[31,83]],[[2740,636],[-49,-3],[-75,-39],[-41,30],[-98,14],[-146,-17],[-141,19],[-3,39],[-83,-17],[-59,9],[-157,77],[-40,41],[-29,89],[-64,106],[-62,11],[-40,37],[-128,42],[-33,36],[-58,1],[-135,-40],[-152,38],[-70,47],[-127,23],[-12,41],[-46,-3],[-9,71],[-71,14],[12,78],[-25,85],[14,28],[12,138],[16,37],[-60,91],[-77,34],[-23,119]],[[7463,1032],[-64,-11],[-147,-63],[-60,9],[-20,-120],[-183,-119],[-35,-8],[-110,-64],[-141,-49],[-174,68],[-10,-44],[-82,-13],[-14,-35],[-57,-15],[-30,76],[-154,-9],[3,-54],[-67,16],[-7,49],[-55,46],[-29,-89],[-40,2],[-31,158],[-54,32],[-34,96],[23,51],[44,21],[82,-4],[109,-50],[69,26],[-60,90],[-24,162],[-44,88],[-63,73],[-82,28],[-84,-14],[-103,11],[-113,-4],[17,-47],[-50,-41],[-58,4],[-30,-48],[-150,63],[-103,-21]],[[5516,1665],[48,14],[50,103],[82,10],[125,55],[12,60],[95,-3],[73,17],[7,86],[-58,16],[-18,48],[13,118],[-87,15],[-34,58],[-59,29],[-11,62]],[[5754,2353],[51,-46],[100,-14],[13,50],[86,72],[0,54],[29,45],[121,26],[89,-65],[63,0],[17,26],[102,-10],[73,18],[124,57],[1,-150],[38,0],[29,39],[88,67],[72,-33],[35,30],[48,-5],[202,113],[68,23],[107,-3],[35,12]],[[5200,1250],[-28,-19]],[[8405,9679],[-37,-7],[-43,75],[-35,-11],[-58,43],[-17,110]],[[8215,9889],[70,113],[-24,27],[73,58],[-38,33],[-22,102],[49,29],[-78,59],[56,69],[-4,49],[-51,8],[-66,-50],[-22,-75],[-77,-23],[-5,-99],[-82,10],[-32,-27]],[[7962,10172],[-28,85],[-51,30],[-31,-45],[-80,72],[-43,73],[-57,-15],[-80,80],[8,66],[-153,34],[-82,-1],[-36,-17]],[[7329,10534],[-3,43],[42,62],[5,97],[-41,1],[-54,81],[-33,98],[42,31],[49,-18],[23,82],[53,-51],[68,19],[85,85],[19,-25],[89,147],[69,18],[62,122],[10,65]],[[7814,11391],[53,-28],[63,-3],[32,38],[67,-12],[32,46],[66,16],[44,-16],[44,-56],[78,2],[93,-121],[68,17],[77,-33],[-1,-69],[63,47],[30,-24],[-25,-53],[33,-74],[-41,-32],[27,-87],[61,-30],[48,-65],[-24,-84],[38,-30],[42,22],[58,-25],[-16,-55],[-63,-24],[14,-57],[48,-47],[17,-74],[-50,-4],[-35,-54],[-54,-34],[-11,-82],[-40,-11],[-26,-54],[-3,-84],[-61,2],[-40,-34],[51,-60],[55,-29],[-103,-115],[-2,-92],[-39,-80],[-77,-70]],[[3598,4338],[78,-39],[34,9],[120,-27],[60,29],[119,-8],[15,14],[87,-26],[9,-43],[76,-26],[88,-8],[51,-100]],[[4335,4113],[-76,-67],[38,-45],[-94,-3],[-23,-95],[42,-108],[-38,-80],[23,-57],[59,-18],[51,-103],[-14,-42],[67,-80],[39,-13],[78,50],[89,-28],[47,19],[30,50],[118,30],[45,62],[42,-1],[42,44],[156,-38],[78,9],[20,-151],[30,-58],[23,-191],[82,-37],[-6,-55],[65,-53],[2,-80]],[[5350,2974],[-62,-75],[-102,-45],[-153,-10],[-69,-16],[-80,-57],[-113,-59],[-13,-163]],[[3552,2950],[5,72],[64,23],[40,33],[87,27],[53,-16],[26,53],[-23,46],[-183,70],[-41,0],[-77,196],[-44,88],[-85,57],[-8,100],[-138,157]],[[13342,3207],[-41,-61],[-36,6],[-64,-83],[14,-63],[-70,-79],[-80,29],[-121,-62],[-23,-53],[-59,5],[-50,-45],[-6,-50],[-53,28],[-8,85],[-97,38],[-12,-69],[-62,18],[-98,-94],[-51,21],[-13,54]],[[11256,4015],[37,57],[55,46],[-49,72],[-47,-22],[-38,55],[-1,39],[36,108],[103,55],[-22,66],[6,68]],[[9251,4184],[-32,-53],[-4,-65],[50,10],[48,-24],[53,15],[32,-23],[109,94],[91,-21],[55,-84],[7,-50],[-24,-90],[79,-83],[-29,-45]],[[9686,3765],[-46,-22],[8,-62],[37,-21],[5,-58],[-41,-22],[-46,-61],[-53,-29],[-48,-84],[2,-101],[-109,8],[-73,-14],[-20,-78],[-38,-53],[-94,-82]],[[8050,3254],[-2,64],[32,65],[-37,26],[-74,-34],[-3,61],[-74,66],[13,62],[-28,69],[14,23],[-28,111],[-66,11],[-51,-11],[-72,15],[-36,43]],[[8272,4327],[26,31],[41,-49],[83,-28],[69,40],[82,-70],[23,29],[52,-34],[141,0],[26,-46],[51,0],[56,42],[13,53]],[[7962,10172],[-36,-115],[58,-31],[-15,-65],[-43,-8],[-44,-84],[-72,-62],[-98,-26],[-25,-107],[-143,-116],[4,-29],[-86,-3],[-39,-33],[6,-47],[-71,-26]],[[6310,9690],[-8,127],[56,63],[44,78],[54,-19],[26,27],[-26,64],[19,61],[-52,24],[4,70],[46,41],[18,75],[59,68],[38,-50],[111,5],[18,41],[83,13],[45,-16],[24,45],[6,95],[43,-20],[71,7],[18,31],[75,16],[137,-45],[13,-23],[89,17],[8,49]],[[8405,9679],[13,-79],[-45,-9],[-30,-102],[-35,-43],[-37,0],[-41,-76],[-53,-35],[27,-46],[53,-21],[35,-72],[-11,-100],[-126,-43],[-97,-18],[-49,-57],[-48,34]],[[7961,9012],[84,88],[19,61],[42,60],[7,103],[-61,36],[12,63],[-44,52],[-51,30],[-16,46],[7,106],[73,58],[38,-24],[61,56],[-4,40],[32,83],[55,19]],[[5495,2992],[73,-24],[15,-72],[34,-39],[-3,-53],[49,-75],[-14,-40],[31,-79],[-9,-39],[79,-88],[16,-56],[-12,-74]],[[5350,2974],[61,50],[84,-32]],[[5495,2992],[70,63],[42,7],[19,-60],[72,-21],[44,71],[146,55],[44,43],[54,-9],[54,44],[88,9],[82,145],[64,-24],[74,67],[70,-12],[67,65],[28,83],[89,61],[42,-29],[20,-55],[66,57],[20,-27],[-37,-57],[-1,-73],[34,-20],[18,80],[36,28],[68,9],[53,-31]],[[10278,3560],[-111,21],[-54,-17],[-28,-42],[-36,1],[-35,68],[-52,-46],[-37,24],[28,43],[-55,43],[7,35],[-169,16],[-50,59]],[[1500,6342],[-49,64],[-39,-16],[-66,14],[-74,-9],[-26,48],[45,41],[6,110],[45,75],[78,84],[-68,21],[-2,59],[-66,-16],[-111,50],[23,53],[49,40],[-15,84],[73,28],[-11,52],[58,70],[-6,29],[-66,3],[8,110],[67,45],[53,-113],[68,-102],[81,8],[52,65],[51,23],[-1,94],[47,0],[-13,82],[-74,-6],[-113,13],[-81,32],[-5,80],[-50,92],[-3,94],[13,43],[51,-4],[9,-58],[58,6],[21,-81],[56,-43],[118,-8],[53,-29],[53,56],[78,3],[-5,144],[7,29],[78,32],[-17,75],[33,49],[47,-38],[191,23],[68,-9],[3,-33],[-56,-37],[32,-87],[-123,-98],[-10,-49],[87,-41],[26,35],[79,-17],[91,29],[-12,-58],[-203,-97],[-29,70],[-73,21],[14,70],[-84,-23],[69,-130],[-41,3],[-44,-64],[6,-57],[49,-49],[75,-6],[65,-24],[256,-55],[55,8],[90,45],[23,-9]],[[5337,10298],[35,29],[62,10],[51,-17],[126,80],[72,78],[17,62],[84,50],[114,-13],[-8,84],[165,16],[50,52],[83,27],[48,57],[77,54],[42,-18],[55,29],[22,55],[48,21],[80,3],[13,90],[38,31],[64,10],[42,91],[63,-6],[50,27],[41,52],[167,-31],[1,102],[42,130],[110,-23],[-22,57],[103,35],[57,-34],[46,88],[120,20],[23,-11],[44,-88],[62,15],[44,-69],[112,-26],[34,-26]],[[6274,9680],[-99,14],[-67,-30],[-23,42],[92,72],[82,9],[2,88],[-59,43],[36,72]],[[6238,9990],[55,7]],[[6293,9997],[-1,49],[-44,1],[-52,-64],[3,-43],[-34,-50],[-71,16],[-72,61],[-73,94],[-74,46],[-40,57],[-153,-24],[-72,-35],[-39,-78],[-67,29],[-21,83],[-146,159]],[[5531,5648],[-10,-151],[-32,-83],[-33,-127],[-25,-58]],[[5431,5229],[-54,-90],[30,-61],[-11,-74],[-56,-49],[-15,-55],[-99,-83]],[[5226,4817],[-73,37],[-82,3],[-41,-58],[-50,53],[-101,-4],[-63,-35],[-32,-46],[-60,82],[-117,-20],[-64,30],[14,46],[-110,73],[-34,-26],[-91,49],[-29,-50],[-12,-65],[-119,62],[8,47],[-23,170],[-48,49],[18,80],[-26,86],[-33,14],[10,80],[-39,13],[-7,68],[-46,28],[-6,45],[-49,23],[26,48],[-20,81],[-82,38],[40,44],[-23,100],[-87,5],[-20,89],[76,75],[-36,31],[-15,120]],[[3780,6282],[63,16],[54,-19],[12,43],[65,33],[45,-9],[107,-83],[16,39],[69,4],[78,-58],[16,-67],[65,3],[43,25],[-14,66],[74,57],[4,41],[53,19],[83,-9],[-36,-149],[81,-63],[84,6],[38,-78],[64,0],[49,27],[38,-8]],[[2856,5370],[9,-20]],[[1682,4077],[-33,57],[-127,39],[-55,-48],[-66,14],[-48,-19],[-68,30],[-19,71],[28,26],[-4,83],[-75,-21]],[[1215,4309],[-69,85],[-49,6],[-71,-23],[-30,43],[-116,4],[-26,72],[22,82],[46,39],[3,78],[42,15],[26,63],[72,6],[26,39],[127,71],[55,48],[50,-19],[85,47],[60,98],[35,33],[58,15],[-26,76],[0,101],[28,32],[-1,61]],[[2460,5690],[54,-19],[127,-102],[3,-86],[35,-34],[121,3],[56,-82]],[[12607,6501],[-62,4],[23,65],[-25,48],[21,43],[-74,84],[-24,93],[-122,32],[16,264],[33,120],[-164,150],[-61,45],[38,75],[35,-3],[51,133]],[[12292,7654],[62,29],[12,77],[81,-31],[-7,112],[50,45],[55,110],[-29,65],[21,23],[19,96],[106,15],[107,-99],[49,26],[29,-79],[82,-43],[16,72],[-26,20],[25,56],[66,29],[-36,47],[85,5],[95,-38],[6,-95],[26,-39],[-65,-53],[48,-40],[43,37],[50,-18],[11,-45],[60,19],[126,-86],[70,19],[90,-40],[35,-33],[15,-125],[-13,-72],[90,-90],[87,23],[105,-55],[29,-2],[52,-60],[35,25],[47,-25],[86,11],[-23,-68],[74,-18],[8,-105],[85,-74],[3,-102]],[[6996,6369],[37,2],[-15,75],[14,49],[61,40],[55,59],[2,39],[85,36],[80,52],[19,34]],[[7334,6755],[176,-151],[-63,-97],[28,-49],[75,-64],[86,49],[9,56],[48,27],[13,56],[43,54],[91,-67],[45,-7],[68,-122],[64,-45],[26,-57],[51,-21],[94,18],[55,-117],[37,-2],[57,61],[70,17],[0,62],[54,38],[-4,56],[103,105],[0,40],[34,99]],[[11176,7810],[44,57],[75,-5],[-3,59],[-60,17],[-32,95],[97,-49],[62,42],[32,79],[28,-43],[101,-78],[96,9],[85,-20],[0,45],[-99,39],[-3,50],[58,26],[85,9],[56,-10],[18,60],[47,35],[63,-48],[-71,-82],[10,-105],[-51,-40],[-21,-43],[37,-53],[-55,-59],[-29,-58],[33,-16],[94,8],[107,64],[27,-59],[83,-6],[12,25],[120,0],[23,-56],[47,-45]],[[4335,4113],[89,-38],[66,55],[7,117],[45,-20],[53,13],[22,-71],[58,-30],[71,60],[57,-95],[97,-38],[61,55],[-9,147],[27,49],[76,22],[70,87],[-12,50],[20,101],[-2,76],[38,17],[19,92],[38,55]],[[5431,5229],[58,-55],[32,14],[20,-85],[74,-26],[31,-129],[-12,-192],[20,-37],[-30,-46],[-63,-5],[7,-54],[-58,-104],[-45,65],[-12,-98],[66,-24],[-6,-81],[-50,-35],[50,-75],[41,-18],[31,-100],[37,-16],[11,-68],[71,12],[15,-27],[82,-11]],[[9494,1033],[-8,111],[-22,56],[-52,27],[-82,7],[-29,-33],[-191,38],[-35,42],[-64,14]],[[6293,9997],[-55,-7]],[[6274,9680],[-9,-10]],[[5276,8527],[-62,-29],[-27,-49],[-114,-7],[-10,-38],[-103,88],[-88,17],[-121,-30],[-160,60],[-78,70],[-58,17],[-24,85],[-43,22],[-8,61],[-68,114],[-18,99],[9,108],[-27,30],[20,49],[-57,44],[8,46],[77,26],[-8,71],[13,63],[118,157],[60,-3],[25,68],[49,5],[102,-18],[51,39],[-3,41],[59,3],[42,54],[37,80],[-17,37],[70,54],[30,73],[88,26],[97,63],[51,77],[106,22],[43,76]],[[7169,7544],[37,-11],[67,-133],[-12,-45],[86,-169],[-20,-41],[23,-67],[-26,-126],[-54,-22],[27,-104],[52,-32],[-15,-39]],[[4758,974],[13,-45],[-43,-34],[50,-66],[-13,-47],[-71,-47],[-20,-68],[-110,-79],[-77,-69],[64,-105],[-5,-69],[-46,-38],[-15,-72],[-111,26],[-52,-33],[-67,17],[-24,-85],[-42,-81],[-72,-15],[-61,-60],[-165,-4],[-21,35],[-149,-6],[-84,73],[7,27],[-45,50],[24,26],[69,-14],[-5,106],[-35,37],[26,34],[-52,76],[-53,153],[-80,-42],[-106,46]],[[7961,9012],[-27,13],[-42,-49],[-69,2],[-96,34],[-85,-36]],[[587,3128],[39,184],[63,110],[0,47],[45,12],[24,87],[-28,109],[-77,10],[-32,-38],[-32,21],[-70,110],[51,31],[-37,100],[-46,65],[64,36],[55,63],[73,-13],[59,-41],[79,7],[40,25],[18,62],[108,25],[82,74],[25,39],[80,-14],[53,35],[-8,35]],[[2856,5370],[50,111],[26,97],[-52,25],[8,54],[50,-5],[48,-41],[31,-55],[133,81],[44,-20],[74,40],[104,77],[-1,63],[-35,46],[0,56],[52,9],[64,41],[35,51],[65,12],[42,30],[45,-3],[4,72],[-23,148],[54,77],[-21,74],[47,30],[28,71],[36,-41],[-20,-52],[36,-136]]],"transform":{"scale":[0.0005764103923814968,0.0004997654363573647],"translate":[74.03963333601295,21.073255]},"objects":{"madhyapradesh_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6,7],[8]],"type":"Polygon","properties":{"cartodb_id":112,"censuscode":425,"dt_cen_cd":8,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Chhatarpur"}},{"arcs":[[9,10,11,12,13]],"type":"Polygon","properties":{"cartodb_id":113,"censuscode":455,"dt_cen_cd":38,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Chhindwara"}},{"arcs":[[14,15,16,17,18,-4]],"type":"Polygon","properties":{"cartodb_id":132,"censuscode":428,"dt_cen_cd":11,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Damoh"}},{"arcs":[[19,20,21,22,23,24,25]],"type":"Polygon","properties":{"cartodb_id":147,"censuscode":438,"dt_cen_cd":21,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Dhar"}},{"arcs":[[26,27,28,29,30,31,32,33]],"type":"Polygon","properties":{"cartodb_id":172,"censuscode":466,"dt_cen_cd":49,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"East Nimar"}},{"arcs":[[34,35,36,37,38,39]],"type":"Polygon","properties":{"cartodb_id":210,"censuscode":458,"dt_cen_cd":41,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Guna"}},{"arcs":[[40,41,42,43,44]],"type":"Polygon","properties":{"cartodb_id":364,"censuscode":454,"dt_cen_cd":37,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Mandla"}},{"arcs":[[45,46,47,48]],"type":"Polygon","properties":{"cartodb_id":365,"censuscode":433,"dt_cen_cd":16,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Mandsaur"}},{"arcs":[[49,50,51,-35,52,53,54,55,56]],"type":"Polygon","properties":{"cartodb_id":520,"censuscode":423,"dt_cen_cd":6,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Shivpuri"}},{"arcs":[[57,58,59]],"type":"Polygon","properties":{"cartodb_id":529,"censuscode":463,"dt_cen_cd":46,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Singrauli"}},{"arcs":[[-7,60]],"type":"Polygon","properties":{"cartodb_id":573,"censuscode":424,"dt_cen_cd":7,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Tikamgarh"}},{"arcs":[[61,62,-26,63,64]],"type":"Polygon","properties":{"cartodb_id":588,"censuscode":435,"dt_cen_cd":18,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Ujjain"}},{"arcs":[[65,66,67,68,69,70,71,72,73,74]],"type":"Polygon","properties":{"cartodb_id":590,"censuscode":431,"dt_cen_cd":14,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Umaria"}},{"arcs":[[75,76,77,78,-37]],"type":"Polygon","properties":{"cartodb_id":603,"censuscode":443,"dt_cen_cd":26,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Vidisha"}},{"arcs":[[-33,79,80,81,-21,82,83]],"type":"Polygon","properties":{"cartodb_id":618,"censuscode":440,"dt_cen_cd":23,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"West Nimar"}},{"arcs":[[84,-66,85,86,87,-70,88,-68]],"type":"Polygon","properties":{"cartodb_id":24,"censuscode":461,"dt_cen_cd":44,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Anuppur"}},{"arcs":[[-73,89,-16,90,91]],"type":"Polygon","properties":{"cartodb_id":292,"censuscode":450,"dt_cen_cd":33,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Katni"}},{"arcs":[[[92,-91,-15,-3,93]],[[-1,94]]],"type":"MultiPolygon","properties":{"cartodb_id":430,"censuscode":426,"dt_cen_cd":9,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Panna"}},{"arcs":[[95,-86,-75,96,97]],"type":"Polygon","properties":{"cartodb_id":511,"censuscode":460,"dt_cen_cd":43,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Shahdol"}},{"arcs":[[98,99,100,101,-78,102]],"type":"Polygon","properties":{"cartodb_id":464,"censuscode":446,"dt_cen_cd":29,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Raisen"}},{"arcs":[[-58,103,-98,104,105]],"type":"Polygon","properties":{"cartodb_id":525,"censuscode":462,"dt_cen_cd":45,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Sidhi"}},{"arcs":[[106,-23,107,108]],"type":"Polygon","properties":{"cartodb_id":10,"censuscode":465,"dt_cen_cd":48,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Alirajpur"}},{"arcs":[[109,110,-43]],"type":"Polygon","properties":{"cartodb_id":38,"censuscode":457,"dt_cen_cd":40,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Balaghat"}},{"arcs":[[111,-108,-22,-82]],"type":"Polygon","properties":{"cartodb_id":60,"censuscode":441,"dt_cen_cd":24,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Barwani"}},{"arcs":[[112,-28,113,114,-12]],"type":"Polygon","properties":{"cartodb_id":68,"censuscode":447,"dt_cen_cd":30,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Betul"}},{"arcs":[[116,117,118,119,120]],"type":"Polygon","properties":{"cartodb_id":76,"censuscode":420,"dt_cen_cd":3,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Bhind"}},{"arcs":[[121,122,123,-34,-84,124,-62]],"type":"Polygon","properties":{"cartodb_id":143,"censuscode":437,"dt_cen_cd":20,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Dewas"}},{"arcs":[[-88,125,-41,126,-71]],"type":"Polygon","properties":{"cartodb_id":158,"censuscode":453,"dt_cen_cd":36,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Dindori"}},{"arcs":[[-18,127,128,-14,129,-99,130]],"type":"Polygon","properties":{"cartodb_id":403,"censuscode":452,"dt_cen_cd":35,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Narsinghpur"}},{"arcs":[[[131,-57,132,-119]],[[-117,133,134]]],"type":"MultiPolygon","properties":{"cartodb_id":214,"censuscode":421,"dt_cen_cd":4,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Gwalior"}},{"arcs":[[135,-114,-27,-124,136]],"type":"Polygon","properties":{"cartodb_id":220,"censuscode":448,"dt_cen_cd":31,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Harda"}},{"arcs":[[-13,-115,-136,137,-100,-130]],"type":"Polygon","properties":{"cartodb_id":229,"censuscode":449,"dt_cen_cd":32,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Hoshangabad"}},{"arcs":[[-125,-83,-20,-63]],"type":"Polygon","properties":{"cartodb_id":236,"censuscode":439,"dt_cen_cd":22,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Indore"}},{"arcs":[[-72,-127,-45,138,-128,-17,-90]],"type":"Polygon","properties":{"cartodb_id":237,"censuscode":451,"dt_cen_cd":34,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Jabalpur"}},{"arcs":[[-48,139]],"type":"Polygon","properties":{"cartodb_id":408,"censuscode":432,"dt_cen_cd":15,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Neemuch"}},{"arcs":[[140,-120,-133,-56,141,142,143]],"type":"Polygon","properties":{"cartodb_id":380,"censuscode":419,"dt_cen_cd":2,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Morena"}},{"arcs":[[-39,144,145,146,147]],"type":"Polygon","properties":{"cartodb_id":466,"censuscode":442,"dt_cen_cd":25,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Rajgarh"}},{"arcs":[[148,-64,-25,149,150,-46,151]],"type":"Polygon","properties":{"cartodb_id":477,"censuscode":434,"dt_cen_cd":17,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Ratlam"}},{"arcs":[[-59,-106,152,153]],"type":"Polygon","properties":{"cartodb_id":481,"censuscode":430,"dt_cen_cd":13,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Rewa"}},{"arcs":[[-5,-19,-131,-103,-77,154,155]],"type":"Polygon","properties":{"cartodb_id":489,"censuscode":427,"dt_cen_cd":10,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Sagar"}},{"arcs":[[-153,-105,-97,-74,-92,-93,156]],"type":"Polygon","properties":{"cartodb_id":506,"censuscode":429,"dt_cen_cd":12,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Satna"}},{"arcs":[[-101,-138,-137,-123,157,-146,158]],"type":"Polygon","properties":{"cartodb_id":507,"censuscode":445,"dt_cen_cd":28,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Sehore"}},{"arcs":[[-44,-111,159,-10,-129,-139]],"type":"Polygon","properties":{"cartodb_id":509,"censuscode":456,"dt_cen_cd":39,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Seoni"}},{"arcs":[[160,-142,161,-54,162,-144]],"type":"Polygon","properties":{"cartodb_id":517,"censuscode":418,"dt_cen_cd":1,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Sheopur"}},{"arcs":[[163,-155,-76,-36,-52]],"type":"Polygon","properties":{"cartodb_id":27,"censuscode":459,"dt_cen_cd":42,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Ashoknagar"}},{"arcs":[[-79,-102,-159,-145,-38]],"type":"Polygon","properties":{"cartodb_id":79,"censuscode":444,"dt_cen_cd":27,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Bhopal"}},{"arcs":[[164,-80,-32]],"type":"Polygon","properties":{"cartodb_id":96,"censuscode":467,"dt_cen_cd":50,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Burhanpur"}},{"arcs":[[-135,165,-50,-132,-118]],"type":"Polygon","properties":{"cartodb_id":137,"censuscode":422,"dt_cen_cd":5,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Datia"}},{"arcs":[[-24,-107,166,-150]],"type":"Polygon","properties":{"cartodb_id":256,"censuscode":464,"dt_cen_cd":47,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Jhabua"}},{"arcs":[[-147,-158,-122,-65,-149,167]],"type":"Polygon","properties":{"cartodb_id":514,"censuscode":436,"dt_cen_cd":19,"st_cen_cd":23,"st_nm":"Madhya Pradesh","district":"Shajapur"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [10958, 8109], + [-75, -109], + [-40, -31] + ], + [ + [10843, 7969], + [-25, -60] + ], + [ + [10818, 7909], + [-96, -66], + [-40, -42], + [-60, -20], + [-21, -51], + [-166, 3], + [-34, -32], + [48, -125], + [49, -39], + [4, -33], + [-39, -72], + [-126, -129], + [-17, -70], + [-49, -63], + [-56, 62], + [-68, -4], + [-23, -78], + [-50, -68], + [-2, -36], + [55, -48], + [10, -108], + [-26, -19], + [27, -61], + [-26, -38], + [26, -167], + [-41, -48], + [-31, 47], + [-55, 23], + [-22, -24] + ], + [ + [9989, 6603], + [-35, 17], + [-35, 62], + [-51, -15], + [-38, -51], + [-65, 6], + [-14, -26], + [-72, 33], + [21, 35], + [-103, 84], + [-43, -47], + [28, -68], + [-89, 23], + [-67, -26], + [-23, 40], + [-111, -42], + [27, -70], + [-43, -225], + [6, -46], + [-45, -47], + [-105, -18], + [16, -84], + [-100, 16], + [-121, -61], + [-44, 5], + [-24, -40] + ], + [ + [8859, 6058], + [-54, 38], + [-68, 18], + [-34, 84], + [-16, 100], + [28, 11], + [8, 73], + [44, -39], + [33, 40], + [49, -20], + [56, 48], + [-6, 57], + [26, 39], + [85, 28], + [25, 73], + [-6, 70], + [-132, 38], + [-57, -35], + [-107, -19], + [-33, -66], + [-29, 0], + [-72, 63], + [-5, 35] + ], + [ + [8594, 6694], + [-8, 48] + ], + [ + [8586, 6742], + [47, 141], + [4, 44], + [42, 38], + [52, 86], + [-10, 52], + [44, 14], + [94, -12], + [61, -29], + [43, 17], + [3, 60], + [155, 53], + [42, 131], + [-23, 131], + [27, 101], + [42, 72], + [-28, 308], + [22, 60], + [-12, 94], + [-28, 47] + ], + [ + [9163, 8150], + [-52, 77], + [-10, 42], + [110, 40], + [5, 67], + [-44, -2], + [-56, 36], + [-52, -4], + [6, 62], + [60, 60], + [68, -15], + [28, -88], + [39, 9], + [51, -28], + [-1, -33], + [65, -29], + [-95, -156], + [9, -99], + [51, 26], + [73, -75], + [51, -27], + [47, 39], + [-6, 47], + [64, 88], + [74, -46], + [127, -39], + [138, 34], + [41, -37], + [100, -50], + [58, 111], + [-26, 161], + [47, 35], + [37, -15], + [69, 33], + [102, 13], + [36, 65], + [13, 83], + [86, 0], + [41, 21], + [58, -26], + [56, 74], + [50, 12], + [1, 45], + [98, -3], + [50, 41], + [61, -67], + [-11, -67], + [16, -48], + [0, -104], + [50, -7], + [29, -55], + [76, -60], + [39, -94], + [-64, -22], + [-68, -66] + ], + [ + [9280, 8055], + [-35, -106], + [54, -30], + [43, 52], + [-57, 53], + [-5, 31] + ], + [ + [9170, 3086], + [73, -19], + [-29, -67], + [-51, -67], + [37, -66], + [-1, -46], + [-182, -20], + [-57, -86], + [43, -12], + [13, 45], + [51, 13], + [86, -18], + [37, -42], + [-66, -17], + [34, -43], + [49, -20], + [13, -67], + [-84, -31], + [-18, -34], + [17, -55], + [102, -52], + [7, -72], + [-73, -7], + [30, -130], + [26, -59], + [61, -55], + [-27, -37], + [21, -83], + [33, -4], + [-20, -98], + [-95, -78], + [10, -57], + [-35, -12], + [-89, -174], + [30, -43], + [-30, -72], + [-31, 9], + [-51, -46], + [7, -69] + ], + [ + [9011, 1295], + [-17, -81], + [3, -61], + [-125, 20], + [-12, -42], + [-64, -61], + [-164, -16], + [-61, 33], + [-59, -48], + [-48, -3], + [0, -58], + [33, -152], + [-63, 27], + [-27, -32], + [-63, 10], + [-144, 0], + [-64, -51], + [-70, 35], + [-109, -9], + [-63, 19], + [-43, 55], + [-89, 28], + [-44, -42], + [-78, -8], + [-28, 120], + [0, 76], + [-78, -12], + [-29, -35], + [-42, 25] + ], + [ + [7463, 1032], + [45, 62], + [40, 92], + [67, 74], + [57, 40], + [20, 124], + [-6, 61], + [53, 37], + [44, 6], + [36, 60], + [-12, 65], + [-33, 20], + [-13, 53], + [-69, 45], + [-93, -8], + [-56, 19], + [26, 83], + [-96, 99], + [0, 47], + [-31, 56], + [-89, -30], + [-24, 202], + [5, 60], + [48, 62], + [-49, 27], + [-30, 113], + [59, 58], + [-17, 100] + ], + [ + [7345, 2659], + [83, 44], + [102, -10], + [79, -72], + [107, 7], + [70, 64], + [59, 9], + [-18, 68], + [-64, 46], + [47, 46], + [6, 79], + [-76, 100], + [-2, 83], + [47, 62], + [157, -19], + [34, 56], + [74, 32] + ], + [ + [8050, 3254], + [18, -92], + [34, 0], + [55, -59], + [74, 14], + [-7, 34], + [67, 15], + [38, 54], + [88, -8], + [47, -25], + [5, -40], + [73, -52], + [82, 18], + [13, 78], + [-19, 52], + [17, 91], + [48, 39], + [56, -31], + [79, 44], + [26, 45], + [71, -4], + [27, 38], + [62, 20], + [20, -32], + [6, -156], + [27, -61], + [51, -3], + [-2, -85], + [18, -57], + [46, -5] + ], + [ + [9989, 6603], + [67, -108], + [39, -41], + [-24, -28], + [-53, -2], + [-8, -37], + [52, -26], + [5, -72], + [-46, -33], + [-6, -82], + [-29, -19], + [-15, -63], + [-28, -17], + [-12, -69], + [-41, -6], + [9, -55], + [74, -27], + [99, -18], + [18, -58], + [-29, -119], + [46, -42], + [9, -45], + [-22, -63], + [14, -59] + ], + [ + [10108, 5514], + [-62, -124], + [-18, -57], + [24, -92], + [57, 1], + [50, -27], + [71, -3], + [35, -44], + [-45, -103] + ], + [ + [10220, 5065], + [-84, -102], + [-54, -97], + [-39, 14], + [-47, -95], + [-71, -65], + [-40, -16], + [-73, -137], + [-61, -48], + [-209, -141], + [-49, 7], + [-132, -116], + [-17, -29], + [-93, -56] + ], + [ + [9251, 4184], + [-67, -12], + [-47, 126], + [-67, -11], + [-4, 49], + [-41, 19], + [-26, -51], + [-64, -9] + ], + [ + [8935, 4295], + [-31, 71], + [73, 9], + [28, 60], + [-33, 47], + [44, 51], + [-75, 50], + [-18, 134], + [63, 11], + [9, 38], + [112, 66], + [18, 50], + [56, 25], + [-11, 48], + [-42, 24], + [0, 152], + [60, -16], + [28, 49], + [-85, 43], + [-33, 47], + [3, 91], + [-111, 80], + [32, 69], + [-37, 43], + [-61, -14], + [-56, 28], + [-67, 64], + [-32, 78], + [-14, 88], + [73, 28], + [93, 63], + [0, 43], + [-47, 85], + [-15, 58] + ], + [ + [2426, 3594], + [-26, -83], + [31, -67], + [-6, -42], + [89, -23], + [-16, -56], + [51, -6], + [-1, -73], + [33, -125], + [63, 9], + [39, 44], + [32, -51], + [112, 5], + [78, -33], + [-62, -77], + [-80, -42], + [-68, -7], + [9, -66], + [-77, -51], + [31, -89], + [-16, -61], + [-30, -24], + [24, -71] + ], + [ + [2636, 2605], + [-39, -35], + [-54, 23], + [17, -176], + [32, -33], + [3, -77], + [-30, -107], + [-23, -30], + [-112, -14], + [-64, -26], + [-48, 10], + [-98, -18] + ], + [ + [2220, 2122], + [-48, -19], + [-81, -1], + [-80, -38], + [-86, -3], + [-69, -19], + [-78, 0], + [-83, -16], + [-194, -7], + [-130, -45], + [-71, 37], + [-169, -64], + [-27, -25], + [-65, 4], + [-118, -32], + [-61, 58], + [-56, -9] + ], + [ + [804, 1943], + [-18, 38], + [38, 52], + [-63, 10], + [-12, 32], + [109, 9], + [-12, 56], + [-54, 62], + [33, 53], + [22, 73], + [107, 10], + [21, 53], + [79, 8], + [-8, 62], + [-33, 52], + [15, 66], + [106, 11], + [-4, 92], + [41, 19], + [34, 59], + [-46, 49], + [33, 52], + [-15, 55], + [43, 55] + ], + [ + [1220, 2971], + [69, 42], + [24, 156], + [-21, 34], + [-34, 146], + [49, 26], + [56, -22], + [135, 16], + [7, 31], + [80, 69], + [14, 74], + [43, 43], + [30, 92], + [1, 85], + [17, 179], + [-13, 43], + [5, 92] + ], + [ + [1682, 4077], + [114, -15], + [51, 14], + [227, -45], + [11, 96] + ], + [ + [2085, 4127], + [105, -14], + [64, -140], + [-46, -26], + [-16, -102], + [37, -14], + [-8, -117], + [21, -181], + [42, -9], + [32, 68], + [110, 2] + ], + [ + [4758, 2549], + [32, -24], + [82, -5], + [81, -66], + [-75, -78], + [-22, -127], + [11, -53], + [-29, -18], + [45, -108], + [-14, -85], + [42, -74], + [27, -87], + [41, 43], + [120, 1], + [37, -51], + [49, 21], + [69, -20], + [119, 22], + [49, -33], + [14, -42], + [58, -43], + [22, -57] + ], + [ + [5516, 1665], + [-51, -87], + [-47, -25], + [13, -83], + [36, -45], + [-86, -5], + [-108, -27], + [-35, -72], + [10, -42] + ], + [ + [5248, 1279], + [-48, -29] + ], + [ + [5200, 1250], + [-28, -19] + ], + [ + [5172, 1231], + [-36, -19], + [-184, -161], + [-69, 28], + [-32, -44], + [-66, 9], + [-27, -70] + ], + [ + [4758, 974], + [-31, -12], + [-34, 44], + [-61, -33], + [-44, 19], + [-49, -10], + [-67, 19], + [-60, -16], + [-132, -6], + [-79, 31], + [-38, 33], + [-109, 3], + [-37, -60], + [-185, 30], + [-60, -25], + [-62, -56], + [-36, 16], + [-11, 57], + [-33, 23], + [-91, -33] + ], + [ + [3539, 998], + [4, 73], + [-13, 105], + [60, 55], + [45, 1], + [49, -32], + [21, 26], + [-12, 72], + [-39, 20], + [-47, -23], + [-38, 97], + [26, 48], + [-14, 109], + [81, 72], + [36, 4], + [-42, 187], + [39, 46], + [-16, 44], + [21, 40], + [50, -10], + [21, 54], + [38, 18], + [-88, 94], + [-71, -49], + [9, -82], + [-73, -5], + [-3, 73], + [68, 29], + [-28, 62], + [10, 72], + [40, 10], + [6, 71], + [-89, -1], + [-17, -44], + [-115, 14], + [4, 52], + [51, 6], + [69, 46], + [110, 22], + [33, 35], + [46, 105] + ], + [ + [3771, 2514], + [69, -74], + [86, 4], + [72, 21], + [100, 67], + [81, 17], + [-4, 77], + [112, 59], + [80, -25], + [85, 11], + [33, -63], + [52, -23], + [4, -61], + [39, -55], + [68, 13], + [44, -33], + [46, 48], + [20, 52] + ], + [ + [5671, 8015], + [20, -82], + [29, -28], + [-4, -54], + [41, -106], + [39, -42], + [41, 48], + [79, -38], + [47, -103], + [150, -11] + ], + [ + [6113, 7599], + [-74, -80], + [15, -88], + [40, -44], + [1, -86], + [-69, -88], + [-54, -92], + [-11, -89], + [28, -60], + [4, -186], + [-31, -64], + [47, -13], + [7, -41], + [161, -55], + [38, 78], + [104, -33], + [74, 41], + [-5, -66], + [-48, 7], + [-48, -54], + [-72, -25], + [-8, -41], + [50, -33] + ], + [ + [6262, 6487], + [-49, -36], + [-39, 1], + [-7, -57], + [-71, -41], + [-85, 10], + [-22, 45], + [-70, -73], + [-37, 9], + [-53, 70], + [-7, 117], + [-71, 11], + [-46, -84], + [-4, -64], + [45, -105], + [-16, -72], + [-68, -29], + [18, -31], + [-43, -52], + [16, -73], + [-66, -64], + [34, -64], + [43, 0], + [15, -80], + [-11, -62], + [21, -119] + ], + [ + [5689, 5644], + [-84, -8], + [-74, 12] + ], + [ + [5531, 5648], + [-72, 4], + [-7, 75], + [-28, 15], + [12, 73], + [27, 51], + [-15, 91], + [5, 64], + [-141, 10], + [-37, -17], + [-89, 7], + [-47, -51], + [-58, -11], + [-18, 44], + [-77, 55], + [-40, 7], + [-15, 53] + ], + [ + [4931, 6118], + [38, -8], + [28, 115], + [49, 20], + [-134, 164], + [-14, 63], + [-32, 53], + [20, 63], + [-16, 77], + [15, 121], + [-64, 121], + [42, 37], + [107, -1], + [32, -24], + [-7, -96], + [79, -55], + [57, 26], + [100, 107], + [20, 56], + [-4, 175], + [-69, 145], + [-82, 34], + [-15, 56], + [-73, -22], + [-133, 7], + [3, 35], + [-77, 114], + [51, 27], + [110, -2], + [55, 21], + [39, 46], + [-61, 30], + [18, 45], + [-91, 89], + [-7, 93], + [25, 66], + [48, 3], + [102, 40], + [26, 43], + [163, -39], + [65, 22], + [23, 40], + [52, -1], + [21, 51], + [89, -7], + [72, 18], + [70, -71] + ], + [ + [11256, 4015], + [17, -67], + [37, -3], + [9, -70], + [44, -35], + [-10, -79], + [24, -23], + [-43, -93], + [1, -53], + [32, -22], + [86, -12], + [72, -29], + [62, 50], + [23, -98], + [67, 0], + [97, 40], + [15, 33], + [64, -2], + [-30, -79], + [29, -8], + [-1, -94], + [99, -8], + [-13, -73], + [8, -73], + [27, -10], + [27, -72], + [60, 10], + [25, -39], + [-63, -29], + [-57, -53], + [19, -59], + [38, -26], + [85, 29], + [5, 78], + [109, 28], + [69, -36], + [56, -66], + [5, -37], + [44, -50], + [18, -53] + ], + [ + [12412, 2832], + [-28, -2], + [-39, -64], + [-66, -30], + [-16, -116], + [25, -78], + [-3, -99], + [-50, -96], + [-77, -12] + ], + [ + [12158, 2335], + [-35, 60], + [-48, 36], + [-38, -15], + [-107, -5], + [-18, 26], + [2, 100], + [-43, -17], + [-31, 89], + [-119, 32], + [-4, -134], + [-68, -47], + [-21, -39], + [-63, -21], + [-2, -44], + [42, -60], + [-31, -30], + [-111, 42], + [-111, 8], + [-82, 20], + [-50, 68], + [-73, 9], + [-31, -63], + [-50, -4], + [2, 70], + [-38, 50], + [-97, -14], + [6, 60], + [-67, 24], + [-60, -61], + [-62, -19], + [-13, 26], + [-103, 27], + [1, 33], + [-95, 6], + [-25, -13] + ], + [ + [10515, 2535], + [-31, 15], + [-21, 58], + [37, 61], + [-36, 90], + [-29, 11], + [-33, 141], + [-46, 48], + [-61, -8], + [15, 56], + [45, 5], + [48, 57], + [56, -2], + [78, 42], + [68, -50], + [70, 3], + [39, 61], + [-34, 36], + [28, 40], + [43, 8], + [6, 81], + [79, 31], + [-7, 108], + [-114, 31], + [-16, -42], + [-48, -31], + [-132, 12], + [-49, -25], + [-93, 71], + [-28, 64], + [-40, 10], + [-31, 43] + ], + [ + [10278, 3560], + [15, 135], + [-23, 66], + [88, 57], + [-25, 89], + [67, 20], + [85, 78], + [43, 2], + [10, -49], + [89, -9], + [66, 43], + [-40, 95], + [115, 64], + [110, -102], + [37, 11], + [49, 73], + [51, 12], + [44, 52], + [18, -56], + [150, -71], + [29, -55] + ], + [ + [2460, 5690], + [-51, -17], + [-24, -39], + [-73, -39], + [-49, -128], + [-23, 55], + [-54, 38], + [-86, -18], + [-27, 38], + [-73, -71], + [-134, 4], + [-40, -28], + [-72, 18], + [0, -65], + [-45, -14], + [-94, 20], + [-21, -57], + [-32, -6] + ], + [ + [1562, 5381], + [-21, 66], + [-31, 5], + [10, 89], + [-17, 57], + [15, 77], + [47, 96], + [38, 26], + [15, 60], + [37, 52], + [-58, 161], + [-41, 27], + [-15, 67], + [-47, 35], + [-35, 84], + [41, 59] + ], + [ + [1500, 6342], + [101, 113], + [-14, 64], + [34, 71], + [103, 45], + [51, -62], + [81, 31], + [23, -38], + [159, -53], + [82, 9], + [152, 48], + [44, -41], + [92, 36], + [5, 43], + [97, 90], + [22, 58], + [53, 69], + [90, 56], + [24, 76], + [-9, 134], + [-27, 28], + [0, 90], + [-41, 71] + ], + [ + [2622, 7280], + [58, 14], + [54, -68], + [80, 26], + [37, 52], + [107, 66], + [77, 10], + [91, -72], + [-18, -123], + [27, 2], + [15, -110], + [37, -14], + [18, -51], + [47, -9], + [-7, -54], + [31, -24], + [-34, -66], + [12, -40], + [-24, -88], + [-89, -45], + [-61, 36], + [5, 57], + [-51, -14], + [-51, -61], + [-32, -65], + [-1, -95], + [48, -74], + [56, 7], + [27, -27], + [14, -119], + [-83, -41], + [-7, -46], + [-45, -116], + [57, -2], + [23, -58], + [80, -12], + [-11, -64], + [-87, -19], + [1, -52], + [-31, -77], + [-108, -57], + [-28, 48], + [3, 49], + [-29, 32], + [-48, -31], + [-12, -37], + [-113, -1], + [4, 37], + [-69, 28], + [-31, 34], + [-44, -97], + [-42, -39], + [-15, -120] + ], + [ + [7358, 9420], + [-24, -66], + [-66, -45], + [-23, -46], + [59, -22], + [18, 55], + [146, -117], + [55, 0], + [28, -112], + [0, -55], + [39, -15], + [52, 50], + [40, -20], + [-40, -51] + ], + [ + [7642, 8976], + [-50, -63], + [19, -85], + [-59, -72], + [-88, -47], + [-4, -53], + [-67, -74], + [50, -24], + [14, -38], + [-40, -51], + [65, -26], + [29, -65], + [-13, -39], + [71, -49], + [-18, -52], + [98, -76], + [-30, -65], + [-60, 4], + [-27, -37], + [-85, -49], + [22, -113], + [-18, -56], + [-66, -62], + [-132, -106], + [-25, -38], + [-51, -22], + [-8, -74] + ], + [ + [7169, 7544], + [-104, -17], + [-110, 42], + [-59, -39], + [-71, 17], + [-5, 70], + [20, 65], + [51, 55], + [-10, 44], + [-75, 6], + [-9, 38], + [-77, -4], + [-13, 35], + [-138, 0], + [-7, -43], + [-63, -95], + [-65, -128], + [-73, -29], + [-148, 113], + [-57, 109], + [-61, -65], + [-7, -69], + [25, -50] + ], + [ + [5671, 8015], + [80, 28], + [66, 48], + [8, 106], + [46, 36], + [-20, 67], + [-99, 91], + [44, 68], + [-53, 164], + [30, 50], + [-97, 47], + [-148, -126], + [-4, -84], + [-48, -39], + [-64, 3], + [-66, 43], + [-70, 10] + ], + [ + [5276, 8527], + [-119, 37], + [26, 67], + [109, -13], + [27, 60], + [74, 16], + [-17, 65], + [60, 69], + [24, 57], + [62, 3], + [125, 38], + [-66, 119], + [44, 73], + [-43, 26], + [26, 64], + [39, -22], + [47, 27], + [-78, 84], + [69, 27], + [16, 106], + [65, 6], + [63, -15], + [17, 59], + [10, 123], + [46, 38], + [56, -62], + [84, -21], + [61, -73], + [42, 14], + [0, 80], + [97, 14], + [23, 77] + ], + [ + [6265, 9670], + [9, 10] + ], + [ + [6274, 9680], + [36, 10] + ], + [ + [6310, 9690], + [62, -75], + [57, 7], + [27, -60], + [38, 7], + [35, -70], + [109, -28], + [17, -133], + [73, 27], + [69, -10], + [40, 26], + [26, -42], + [109, -59], + [141, 24], + [66, 30], + [63, 1], + [87, 82], + [29, 3] + ], + [ + [14178, 5559], + [53, 77], + [-12, 56], + [-31, 15], + [-40, 112], + [-45, 23], + [-128, -6], + [-30, 32], + [-42, -6], + [-55, 55], + [-26, -37], + [-49, 1], + [-46, 104], + [-77, 41], + [-2, 61], + [-48, 17], + [33, 87], + [-1, 40], + [71, 93], + [107, 8], + [73, 97], + [130, 82], + [-1, 66], + [87, 1], + [23, 44], + [41, 17], + [-19, 50], + [76, 54], + [9, 54], + [75, 52], + [94, 30], + [70, 96], + [-126, 80] + ], + [ + [14342, 7055], + [-8, 25] + ], + [ + [14334, 7080], + [63, 20], + [53, -43], + [84, -9], + [-10, 77], + [15, 43], + [-18, 52], + [32, 43], + [116, -59], + [55, 5], + [19, -52], + [236, 95], + [53, -48], + [-8, -54], + [129, -14], + [4, -88], + [49, 5], + [7, -95], + [-94, -22], + [-52, 31], + [-1, -87], + [36, -27], + [-22, -47], + [3, -100], + [-32, -83], + [19, -27], + [74, 3], + [6, -161], + [-24, -48], + [-1, -64], + [-40, -26], + [16, -110], + [-27, -59], + [-56, 11], + [-54, -19], + [76, -75], + [13, -33], + [100, -6], + [-35, -129], + [96, -24], + [-19, -101], + [-64, -29], + [-9, -28], + [-80, 6], + [-79, -34], + [5, -67], + [-52, -71], + [-76, -33], + [-65, 9], + [-7, -66], + [-91, -17], + [-55, 52], + [-125, -21], + [-34, 20], + [-70, -15], + [-126, 36], + [-42, -28], + [-52, 41], + [5, 49] + ], + [ + [8586, 6742], + [-65, -8], + [-55, 41], + [-21, 49], + [83, -4], + [-15, 96], + [9, 44], + [-55, 50], + [-55, 117], + [-33, 3], + [-55, -65], + [-51, -2], + [-43, -29], + [-47, 24], + [-17, 109], + [56, 89], + [-13, 182], + [29, 31], + [-29, 101], + [-118, 67], + [-49, 15], + [-25, 84], + [-55, 41], + [17, 38], + [17, 155], + [-37, 60], + [-40, 13], + [-6, 119], + [-56, 140], + [12, 62], + [-28, 25], + [-109, 43], + [-62, -44], + [-42, 53], + [69, 13], + [40, 41], + [57, -35], + [11, 57], + [78, 34], + [2, 51], + [30, 63], + [68, 1], + [-2, 47], + [35, 22], + [82, -36], + [-73, -76], + [90, -23], + [-11, -35], + [56, -19], + [49, 18], + [-8, 88], + [10, 55], + [-70, 67], + [112, 40], + [70, -35], + [48, 3], + [-40, 97], + [72, 17], + [17, 73], + [98, -19], + [0, -40], + [-44, -29], + [32, -45], + [-13, -57], + [-42, -38], + [45, -37], + [54, 21], + [27, -100], + [-48, -37], + [-82, 38], + [-46, -3], + [-64, -71], + [13, -27], + [-94, -91], + [76, -120], + [19, 1], + [28, 99], + [-10, 67], + [50, 60], + [80, -29], + [68, -82], + [-64, -55], + [-43, 21], + [-21, -49], + [-51, -35], + [26, -43], + [-26, -42], + [17, -55], + [82, 97], + [132, 11], + [-49, 53], + [36, 70], + [33, -57], + [77, -47], + [-55, -78], + [68, -28], + [46, 7], + [52, -24], + [-22, -41], + [53, -51], + [72, -1], + [32, 21], + [72, -21], + [107, 26], + [22, 41] + ], + [ + [3598, 4338], + [-71, -8], + [-40, -69], + [67, -3], + [62, 17], + [5, -68], + [-69, -12], + [-62, 19], + [-6, -73], + [95, -101], + [13, -64], + [-57, -22], + [-44, 64], + [8, 39], + [-41, 80], + [-5, 79], + [-45, 54], + [-18, 124], + [-55, 105], + [-23, -4], + [-34, -93], + [9, -98], + [29, 4], + [6, -91], + [-36, -92], + [46, -17], + [52, -79], + [-18, -88], + [-42, -39], + [-90, 5], + [-6, -51] + ], + [ + [3228, 3856], + [-46, 76], + [-50, -13], + [-56, 18], + [-77, -24], + [-53, 13], + [-45, -28], + [-66, -7], + [-69, 13], + [-25, 67], + [16, 52], + [-106, 5], + [5, -37], + [-91, -89], + [-27, -43], + [-40, 0], + [-4, -124], + [-64, -65], + [-4, -76] + ], + [ + [2085, 4127], + [-27, 151], + [64, 76], + [10, 48], + [68, 0], + [30, 46], + [-111, 9], + [-75, 55], + [-39, 9], + [-2, 52], + [-47, 77], + [-14, 82], + [31, 59], + [11, 102], + [33, 30], + [42, -21], + [82, 38], + [10, 91], + [89, 55], + [4, -44], + [113, 18], + [11, -42], + [160, -110], + [1, 58], + [30, 67], + [-19, 62], + [28, 90], + [77, -14], + [100, 8], + [12, 65], + [29, 28], + [73, 13], + [6, 65] + ], + [ + [2865, 5350], + [65, 22], + [42, -65], + [55, -4], + [66, -52], + [-14, -87], + [33, -50], + [12, -83], + [66, -58], + [132, 20], + [192, -13], + [61, 18], + [22, -53], + [56, 58], + [50, -46], + [-37, -76], + [71, -28], + [33, 57], + [32, -2], + [13, -64], + [-39, -2], + [-38, -59], + [28, -25], + [-22, -54], + [19, -76], + [58, 7], + [17, -34], + [-15, -57], + [-69, -5], + [-24, -35], + [-4, -66], + [-33, -56], + [-67, 30], + [-28, -74] + ], + [ + [12522, 4273], + [-55, 53], + [8, 41], + [-48, 46] + ], + [ + [12427, 4413], + [-8, 21] + ], + [ + [12419, 4434], + [-33, 46], + [-71, 15], + [2, -155] + ], + [ + [12317, 4340], + [-3, -14] + ], + [ + [12314, 4326], + [-22, -38] + ], + [ + [12292, 4288], + [-99, -44], + [-59, 25], + [-68, 51], + [-91, 113], + [-47, -60], + [-106, -77], + [-35, 40], + [-70, 19], + [-7, -54], + [-46, -6], + [-32, 64], + [-47, 57], + [15, 45], + [50, 35], + [4, 48], + [-79, 34], + [-140, -2], + [-63, -26], + [-36, 9] + ], + [ + [11336, 4559], + [-51, 83] + ], + [ + [11285, 4642], + [-23, 46], + [51, 49], + [8, 54], + [-34, 50], + [10, 101], + [19, 45], + [104, 54], + [3, 46], + [48, 43], + [36, 79], + [-4, 32], + [34, 84], + [71, -11], + [158, -119], + [143, 25], + [4, 39], + [-25, 129], + [37, 41], + [-33, 91], + [0, 57], + [-56, 41], + [-34, 53], + [-12, 92], + [63, 24], + [12, 51], + [91, 134], + [47, 17] + ], + [ + [12003, 5989], + [32, 3], + [61, 49] + ], + [ + [12096, 6041], + [-16, -43], + [101, -141], + [16, -69], + [106, 2], + [-5, -42], + [31, -48], + [54, -18], + [-26, -44], + [66, -13], + [40, -60], + [44, 5], + [32, -52], + [-130, -21], + [-18, -50], + [56, -101], + [49, -23], + [9, -78], + [-17, -124], + [23, -107], + [61, -15], + [25, -28], + [-13, -123], + [41, -158], + [29, -8], + [25, -169], + [-24, -64], + [-59, -22], + [-23, -37], + [-6, -77], + [-45, -40] + ], + [ + [6262, 6487], + [116, -26], + [123, 31], + [46, -19], + [115, 19], + [31, -29], + [-20, -47], + [72, -23], + [25, -74], + [42, 33], + [54, -19], + [33, 17], + [15, 68], + [38, 7], + [44, -56] + ], + [ + [6996, 6369], + [-23, -55], + [66, -39], + [64, 3], + [-28, -169], + [31, -21], + [-29, -132], + [-50, 30], + [-26, -42], + [66, -33], + [19, 28], + [101, -60], + [17, 78], + [27, 32], + [75, -32], + [47, -43], + [22, -87], + [-44, -79], + [41, -39], + [-24, -167], + [20, -118], + [-41, -34], + [-5, -85], + [56, -102] + ], + [ + [7378, 5203], + [-42, -155], + [-45, -30], + [-36, -105], + [-46, 24], + [-27, -30], + [-73, -15], + [-4, -69], + [-85, -67], + [-123, 47], + [-30, -23], + [1, -86], + [87, -36], + [3, -67], + [-49, -45], + [-34, 34], + [-72, 20], + [0, 80], + [-47, 27], + [-32, 53], + [-71, -22], + [-103, 35], + [-139, 152], + [-22, -26], + [-69, -7], + [-72, 56], + [-22, -41], + [42, -48], + [-3, -47], + [-44, -29], + [-43, 45], + [-133, 35], + [-3, 28] + ], + [ + [6042, 4891], + [-27, 47], + [4, 70], + [84, 44], + [32, 97], + [37, 28], + [64, 8], + [29, 68], + [-80, 64], + [16, 39], + [-69, 37], + [-42, -22], + [-81, 42], + [-56, -36], + [-93, 89], + [-74, 158], + [-97, 20] + ], + [ + [3539, 998], + [-88, -48], + [-114, 0], + [-20, -25], + [-5, -109], + [72, 8], + [39, -36], + [-3, -97], + [-33, -90] + ], + [ + [3387, 601], + [-40, 36], + [-91, -8], + [-49, 19], + [-97, -32], + [-54, 14], + [-74, -10], + [-26, 16], + [-103, -22], + [-96, -2], + [-17, 24] + ], + [ + [2740, 636], + [-45, 91], + [32, 39], + [-49, 38], + [-147, 28], + [-56, 55], + [-7, 53], + [67, 149], + [-52, 15], + [-50, 64], + [-3, 38], + [-85, 4], + [-89, -23], + [-58, -52], + [-36, 21], + [-38, 66], + [-75, 22], + [-20, 69], + [95, 32], + [37, 69], + [-9, 53], + [52, 65], + [-51, 65], + [19, 103], + [44, -32], + [35, 9], + [3, 74], + [42, 78], + [59, 1], + [40, 80], + [-7, 60], + [-31, 61], + [-66, 30], + [-71, 61] + ], + [ + [2636, 2605], + [62, -27], + [16, -42], + [127, 11], + [76, 46], + [90, -4], + [113, 71], + [31, -44], + [97, 20], + [10, 61], + [90, 33], + [68, -37], + [13, 41], + [74, 37], + [-6, 39], + [-47, 37], + [5, 65], + [57, 8], + [40, 30] + ], + [ + [3552, 2950], + [26, -143], + [104, -78], + [93, -38], + [39, -51], + [-43, -126] + ], + [ + [12419, 4434], + [8, -21] + ], + [ + [12522, 4273], + [21, -41], + [50, -23], + [12, -47], + [44, -8], + [-21, -78], + [99, -53], + [27, -45], + [87, -9], + [100, 25], + [52, -35], + [49, -61], + [91, 32], + [4, 69], + [-101, 35], + [2, 69], + [25, 50], + [49, 43], + [8, 45], + [99, 9], + [24, 32], + [81, -20], + [67, 21], + [17, 64], + [36, 27], + [69, -4], + [75, -37], + [9, 47], + [-72, 76], + [28, 37], + [36, -43], + [53, 76], + [53, 30], + [17, 72], + [47, -31], + [19, 92] + ], + [ + [13778, 4689], + [86, -15], + [0, -53], + [130, 28], + [11, -69], + [58, -2], + [34, -57], + [49, -16], + [-3, -101], + [-25, -10], + [-47, -85], + [-10, -125], + [24, -46], + [-61, -76], + [-94, 24], + [-58, -68], + [-80, 9], + [-76, -18], + [-34, -73], + [32, -63], + [6, -104], + [-46, -18], + [-92, -109], + [-51, -22], + [-108, -19], + [-15, -78], + [41, -135], + [-66, -81], + [34, -100], + [-30, -60], + [-45, 60] + ], + [ + [13342, 3207], + [1, 43], + [-63, 31], + [16, 65], + [-20, 66], + [-64, 13], + [-101, -55], + [-66, 5], + [-50, -19], + [-36, 27], + [-58, -10], + [-33, 27], + [-31, 97], + [-57, 59], + [-79, -3], + [-76, 49], + [-64, 9], + [-40, 41], + [-92, 22], + [-26, 83], + [37, 130], + [74, 73], + [6, 60], + [-42, 52], + [-64, 43], + [-13, 77], + [-73, 19], + [-36, 77] + ], + [ + [12314, 4326], + [3, 14] + ], + [ + [11285, 4642], + [-101, -31], + [-34, -50], + [-109, -21], + [-80, -71], + [-58, 29], + [-36, 91], + [10, 98], + [-72, 71], + [14, 54], + [-56, 30], + [-59, -25], + [-17, 86], + [60, 24], + [1, 56], + [-49, 39], + [-49, -33], + [-74, 44], + [-68, -1], + [-85, -45], + [-127, 5], + [-32, 50], + [-44, 23] + ], + [ + [10108, 5514], + [63, -19], + [69, 19], + [50, 67], + [40, 96], + [38, 134], + [77, 31], + [72, -19], + [31, -60], + [53, -26], + [26, 39], + [18, 81], + [54, -10], + [51, -40], + [-14, -50], + [105, -45], + [26, -26], + [65, 42], + [29, 62] + ], + [ + [10961, 5790], + [52, -4], + [57, 41], + [47, -2], + [80, 29], + [68, 62], + [-28, 39], + [32, 38], + [76, -37], + [142, 85], + [30, 34], + [104, 52], + [13, -37], + [-79, -62], + [25, -32], + [76, -12], + [74, 7], + [-2, -45], + [-72, -31], + [5, -79], + [68, -33], + [16, 86], + [53, 19], + [45, 98], + [56, -14], + [104, -3] + ], + [ + [11176, 7810], + [44, -169], + [29, 49], + [37, -31], + [62, -1], + [93, -70], + [-62, -46], + [-7, -32], + [-95, -36], + [-172, -123], + [-49, 54], + [-43, -127], + [-33, -40], + [94, -113], + [-5, -42], + [45, -13], + [32, -45], + [-42, -158], + [-26, -127], + [64, -12], + [19, -40], + [-1, -79], + [53, -6], + [51, -58], + [15, -49], + [66, -40], + [-23, -65], + [34, -12], + [29, -104], + [82, -37], + [-45, -63], + [-77, -72], + [-117, -92], + [-48, -17], + [-45, 37], + [-24, -104], + [-86, -24], + [-7, -46], + [-57, -67] + ], + [ + [10818, 7909], + [84, -54], + [39, 36], + [51, 9], + [46, 93], + [115, -5], + [-42, -86], + [65, -92] + ], + [ + [10958, 8109], + [-5, -143], + [-78, -21], + [-32, 24] + ], + [ + [13124, 5630], + [31, -32], + [-28, -38], + [52, -39], + [25, -60], + [-6, -66], + [60, -34], + [23, -66], + [-24, -56], + [-42, -20], + [-11, -46], + [-51, 1], + [-19, -122], + [-57, -22], + [13, -68], + [49, -8], + [-1, -80], + [41, -40], + [33, 24], + [12, 58], + [67, -16], + [74, 88], + [36, -30], + [71, -7], + [51, -75], + [91, 14], + [64, 27], + [57, -70], + [-2, -50], + [41, -49], + [4, -59] + ], + [ + [12096, 6041], + [173, 75], + [81, 13], + [75, -53], + [45, 39], + [-6, 36], + [107, 85], + [107, 1], + [45, 49], + [30, 100] + ], + [ + [12753, 6386], + [82, -12], + [55, 20], + [23, -65], + [-14, -130], + [62, -114], + [6, -68], + [56, 13], + [-60, -125], + [-15, -61], + [64, -29], + [9, -134], + [33, 2], + [70, -53] + ], + [ + [8272, 4327], + [13, -38], + [-22, -63], + [-1, -72], + [-19, -43], + [9, -72], + [-77, -36], + [-44, -59], + [-100, -13], + [-29, -25], + [-50, 11], + [-56, -39], + [-80, 10], + [-131, -21], + [-47, -42] + ], + [ + [7638, 3825], + [-79, -45], + [-68, -81], + [-53, -7], + [-67, -90], + [-86, -13], + [-43, 50], + [-38, -9], + [-114, -115], + [0, -49], + [-40, -31], + [-54, 43], + [-75, -17] + ], + [ + [6921, 3461], + [2, 78], + [-36, 31], + [37, 55], + [6, 46], + [-37, 40], + [-111, -52], + [28, 118], + [-93, -9], + [-117, -34], + [-114, -85], + [-42, 11], + [-121, -54], + [-21, -65], + [-75, -24], + [-83, 72], + [-59, -27], + [-97, 63], + [-54, 50], + [-42, -8], + [4, 75], + [-34, 48], + [-93, 68], + [18, 37], + [-24, 73], + [38, 66] + ], + [ + [5801, 4034], + [213, 34], + [20, 31], + [87, 46], + [-2, 70], + [33, 13], + [23, 117], + [-10, 122], + [56, 47], + [4, 50], + [-77, -2], + [-43, 50], + [1, 91], + [-116, 7], + [24, 138], + [28, 43] + ], + [ + [7378, 5203], + [55, 37], + [24, -64], + [68, -13], + [86, 41], + [-30, 52], + [-71, 51], + [56, 34], + [57, 4], + [24, -107], + [37, -36], + [16, -67], + [64, 19], + [0, -74], + [-25, -49], + [10, -62], + [107, 19], + [46, -39], + [91, 29], + [60, 2], + [29, 26], + [70, 2], + [-5, -90], + [-99, -74], + [-43, -99], + [-41, 12], + [-13, -65], + [13, -109], + [59, -61], + [23, 26], + [71, 10], + [90, -113], + [-23, -93], + [88, -25] + ], + [ + [14178, 5559], + [-60, -56], + [-159, -16], + [-57, 7], + [-17, 44], + [-60, 41], + [-87, -21], + [-59, 41], + [-39, -58], + [-143, -70], + [-68, 10], + [-121, 98], + [-9, 45], + [-62, 79], + [-113, -73] + ], + [ + [12753, 6386], + [-67, -21], + [-79, 136] + ], + [ + [12607, 6501], + [116, 78], + [144, 64], + [79, 58], + [81, 40], + [160, 57], + [98, 60], + [68, 23], + [17, -32], + [267, 75], + [-8, 39], + [96, 41], + [22, -40], + [52, 2], + [38, 30], + [80, 14], + [15, 49], + [92, -17], + [72, 16], + [60, 30], + [84, -16], + [47, -29], + [55, 12] + ], + [ + [587, 3128], + [19, -48], + [58, -22], + [43, -124], + [99, 76], + [74, -43], + [41, 3], + [41, -33], + [29, 31], + [70, 31], + [14, 56], + [118, -37], + [27, -47] + ], + [ + [804, 1943], + [-123, -31] + ], + [ + [681, 1912], + [-82, -21], + [-68, -88], + [-62, -7], + [-40, -73], + [-148, -21], + [-31, 6], + [-77, 88], + [18, 28], + [-93, 30], + [-5, 28], + [70, 76], + [44, 14], + [13, 82], + [-66, -10], + [-17, 233], + [-86, 33], + [9, 78], + [-33, 35], + [22, 149], + [70, 22], + [38, -78], + [99, -21], + [13, 42], + [73, 68], + [59, 32], + [-17, 63], + [-71, 31], + [-118, 0], + [-57, -38], + [-31, 25], + [-3, 69], + [-44, -4], + [13, 85], + [-73, 17], + [2, 50], + [69, 16], + [75, -51], + [54, 20], + [96, 66], + [40, 93], + [73, 67], + [82, -18], + [96, 0] + ], + [ + [12158, 2335], + [-37, -23], + [12, -63], + [-18, -130], + [-76, -22], + [55, -49], + [-8, -71], + [-62, -6], + [4, 47], + [-26, 62], + [-69, 12], + [-34, -106], + [-22, -11], + [-74, -265], + [-18, -83], + [24, -22], + [-14, -141], + [-35, -115], + [-49, -16], + [-36, 37], + [-39, -3], + [-23, -51], + [-2, -65], + [-31, -53], + [26, -98], + [-23, -37], + [37, -131], + [-16, -178], + [-41, -45], + [-24, -109], + [-37, -70], + [-78, -37], + [-42, 11], + [-51, 67], + [-77, 63], + [-124, 25], + [-8, -52], + [-70, 0], + [-25, 62], + [39, 62], + [-18, 54], + [-45, 51], + [-10, 64], + [-54, 31], + [-31, 70], + [-43, 4], + [-62, 89], + [-76, 0], + [-48, 28], + [-67, -54], + [-61, -1], + [-89, -105], + [-61, 6], + [-55, -44], + [-61, 45], + [-60, -8], + [-20, -59], + [-102, 13], + [-55, 31], + [-58, 70], + [-102, 42], + [-84, -44], + [-46, -7], + [-18, -40], + [-68, -3], + [-56, -25], + [-69, 2], + [5, 42], + [-58, 50] + ], + [ + [9494, 1033], + [43, 19], + [7, 54], + [52, 16], + [64, 84], + [-11, 64], + [123, -29], + [-25, 81], + [42, 21], + [18, 110], + [98, -2], + [36, 16], + [54, 103], + [122, 82], + [37, 59], + [-93, 21], + [43, 54], + [105, 10], + [0, 168], + [29, 31], + [92, -2], + [19, 26], + [113, -12], + [-21, 82], + [-22, 19], + [-18, 110], + [38, 58], + [55, 32], + [15, 36], + [-25, 108], + [31, 83] + ], + [ + [2740, 636], + [-49, -3], + [-75, -39], + [-41, 30], + [-98, 14], + [-146, -17], + [-141, 19], + [-3, 39], + [-83, -17], + [-59, 9], + [-157, 77], + [-40, 41], + [-29, 89], + [-64, 106], + [-62, 11], + [-40, 37], + [-128, 42], + [-33, 36], + [-58, 1], + [-135, -40], + [-152, 38], + [-70, 47], + [-127, 23], + [-12, 41], + [-46, -3], + [-9, 71], + [-71, 14], + [12, 78], + [-25, 85], + [14, 28], + [12, 138], + [16, 37], + [-60, 91], + [-77, 34], + [-23, 119] + ], + [ + [7463, 1032], + [-64, -11], + [-147, -63], + [-60, 9], + [-20, -120], + [-183, -119], + [-35, -8], + [-110, -64], + [-141, -49], + [-174, 68], + [-10, -44], + [-82, -13], + [-14, -35], + [-57, -15], + [-30, 76], + [-154, -9], + [3, -54], + [-67, 16], + [-7, 49], + [-55, 46], + [-29, -89], + [-40, 2], + [-31, 158], + [-54, 32], + [-34, 96], + [23, 51], + [44, 21], + [82, -4], + [109, -50], + [69, 26], + [-60, 90], + [-24, 162], + [-44, 88], + [-63, 73], + [-82, 28], + [-84, -14], + [-103, 11], + [-113, -4], + [17, -47], + [-50, -41], + [-58, 4], + [-30, -48], + [-150, 63], + [-103, -21] + ], + [ + [5516, 1665], + [48, 14], + [50, 103], + [82, 10], + [125, 55], + [12, 60], + [95, -3], + [73, 17], + [7, 86], + [-58, 16], + [-18, 48], + [13, 118], + [-87, 15], + [-34, 58], + [-59, 29], + [-11, 62] + ], + [ + [5754, 2353], + [51, -46], + [100, -14], + [13, 50], + [86, 72], + [0, 54], + [29, 45], + [121, 26], + [89, -65], + [63, 0], + [17, 26], + [102, -10], + [73, 18], + [124, 57], + [1, -150], + [38, 0], + [29, 39], + [88, 67], + [72, -33], + [35, 30], + [48, -5], + [202, 113], + [68, 23], + [107, -3], + [35, 12] + ], + [ + [5200, 1250], + [-28, -19] + ], + [ + [8405, 9679], + [-37, -7], + [-43, 75], + [-35, -11], + [-58, 43], + [-17, 110] + ], + [ + [8215, 9889], + [70, 113], + [-24, 27], + [73, 58], + [-38, 33], + [-22, 102], + [49, 29], + [-78, 59], + [56, 69], + [-4, 49], + [-51, 8], + [-66, -50], + [-22, -75], + [-77, -23], + [-5, -99], + [-82, 10], + [-32, -27] + ], + [ + [7962, 10172], + [-28, 85], + [-51, 30], + [-31, -45], + [-80, 72], + [-43, 73], + [-57, -15], + [-80, 80], + [8, 66], + [-153, 34], + [-82, -1], + [-36, -17] + ], + [ + [7329, 10534], + [-3, 43], + [42, 62], + [5, 97], + [-41, 1], + [-54, 81], + [-33, 98], + [42, 31], + [49, -18], + [23, 82], + [53, -51], + [68, 19], + [85, 85], + [19, -25], + [89, 147], + [69, 18], + [62, 122], + [10, 65] + ], + [ + [7814, 11391], + [53, -28], + [63, -3], + [32, 38], + [67, -12], + [32, 46], + [66, 16], + [44, -16], + [44, -56], + [78, 2], + [93, -121], + [68, 17], + [77, -33], + [-1, -69], + [63, 47], + [30, -24], + [-25, -53], + [33, -74], + [-41, -32], + [27, -87], + [61, -30], + [48, -65], + [-24, -84], + [38, -30], + [42, 22], + [58, -25], + [-16, -55], + [-63, -24], + [14, -57], + [48, -47], + [17, -74], + [-50, -4], + [-35, -54], + [-54, -34], + [-11, -82], + [-40, -11], + [-26, -54], + [-3, -84], + [-61, 2], + [-40, -34], + [51, -60], + [55, -29], + [-103, -115], + [-2, -92], + [-39, -80], + [-77, -70] + ], + [ + [3598, 4338], + [78, -39], + [34, 9], + [120, -27], + [60, 29], + [119, -8], + [15, 14], + [87, -26], + [9, -43], + [76, -26], + [88, -8], + [51, -100] + ], + [ + [4335, 4113], + [-76, -67], + [38, -45], + [-94, -3], + [-23, -95], + [42, -108], + [-38, -80], + [23, -57], + [59, -18], + [51, -103], + [-14, -42], + [67, -80], + [39, -13], + [78, 50], + [89, -28], + [47, 19], + [30, 50], + [118, 30], + [45, 62], + [42, -1], + [42, 44], + [156, -38], + [78, 9], + [20, -151], + [30, -58], + [23, -191], + [82, -37], + [-6, -55], + [65, -53], + [2, -80] + ], + [ + [5350, 2974], + [-62, -75], + [-102, -45], + [-153, -10], + [-69, -16], + [-80, -57], + [-113, -59], + [-13, -163] + ], + [ + [3552, 2950], + [5, 72], + [64, 23], + [40, 33], + [87, 27], + [53, -16], + [26, 53], + [-23, 46], + [-183, 70], + [-41, 0], + [-77, 196], + [-44, 88], + [-85, 57], + [-8, 100], + [-138, 157] + ], + [ + [13342, 3207], + [-41, -61], + [-36, 6], + [-64, -83], + [14, -63], + [-70, -79], + [-80, 29], + [-121, -62], + [-23, -53], + [-59, 5], + [-50, -45], + [-6, -50], + [-53, 28], + [-8, 85], + [-97, 38], + [-12, -69], + [-62, 18], + [-98, -94], + [-51, 21], + [-13, 54] + ], + [ + [11256, 4015], + [37, 57], + [55, 46], + [-49, 72], + [-47, -22], + [-38, 55], + [-1, 39], + [36, 108], + [103, 55], + [-22, 66], + [6, 68] + ], + [ + [9251, 4184], + [-32, -53], + [-4, -65], + [50, 10], + [48, -24], + [53, 15], + [32, -23], + [109, 94], + [91, -21], + [55, -84], + [7, -50], + [-24, -90], + [79, -83], + [-29, -45] + ], + [ + [9686, 3765], + [-46, -22], + [8, -62], + [37, -21], + [5, -58], + [-41, -22], + [-46, -61], + [-53, -29], + [-48, -84], + [2, -101], + [-109, 8], + [-73, -14], + [-20, -78], + [-38, -53], + [-94, -82] + ], + [ + [8050, 3254], + [-2, 64], + [32, 65], + [-37, 26], + [-74, -34], + [-3, 61], + [-74, 66], + [13, 62], + [-28, 69], + [14, 23], + [-28, 111], + [-66, 11], + [-51, -11], + [-72, 15], + [-36, 43] + ], + [ + [8272, 4327], + [26, 31], + [41, -49], + [83, -28], + [69, 40], + [82, -70], + [23, 29], + [52, -34], + [141, 0], + [26, -46], + [51, 0], + [56, 42], + [13, 53] + ], + [ + [7962, 10172], + [-36, -115], + [58, -31], + [-15, -65], + [-43, -8], + [-44, -84], + [-72, -62], + [-98, -26], + [-25, -107], + [-143, -116], + [4, -29], + [-86, -3], + [-39, -33], + [6, -47], + [-71, -26] + ], + [ + [6310, 9690], + [-8, 127], + [56, 63], + [44, 78], + [54, -19], + [26, 27], + [-26, 64], + [19, 61], + [-52, 24], + [4, 70], + [46, 41], + [18, 75], + [59, 68], + [38, -50], + [111, 5], + [18, 41], + [83, 13], + [45, -16], + [24, 45], + [6, 95], + [43, -20], + [71, 7], + [18, 31], + [75, 16], + [137, -45], + [13, -23], + [89, 17], + [8, 49] + ], + [ + [8405, 9679], + [13, -79], + [-45, -9], + [-30, -102], + [-35, -43], + [-37, 0], + [-41, -76], + [-53, -35], + [27, -46], + [53, -21], + [35, -72], + [-11, -100], + [-126, -43], + [-97, -18], + [-49, -57], + [-48, 34] + ], + [ + [7961, 9012], + [84, 88], + [19, 61], + [42, 60], + [7, 103], + [-61, 36], + [12, 63], + [-44, 52], + [-51, 30], + [-16, 46], + [7, 106], + [73, 58], + [38, -24], + [61, 56], + [-4, 40], + [32, 83], + [55, 19] + ], + [ + [5495, 2992], + [73, -24], + [15, -72], + [34, -39], + [-3, -53], + [49, -75], + [-14, -40], + [31, -79], + [-9, -39], + [79, -88], + [16, -56], + [-12, -74] + ], + [ + [5350, 2974], + [61, 50], + [84, -32] + ], + [ + [5495, 2992], + [70, 63], + [42, 7], + [19, -60], + [72, -21], + [44, 71], + [146, 55], + [44, 43], + [54, -9], + [54, 44], + [88, 9], + [82, 145], + [64, -24], + [74, 67], + [70, -12], + [67, 65], + [28, 83], + [89, 61], + [42, -29], + [20, -55], + [66, 57], + [20, -27], + [-37, -57], + [-1, -73], + [34, -20], + [18, 80], + [36, 28], + [68, 9], + [53, -31] + ], + [ + [10278, 3560], + [-111, 21], + [-54, -17], + [-28, -42], + [-36, 1], + [-35, 68], + [-52, -46], + [-37, 24], + [28, 43], + [-55, 43], + [7, 35], + [-169, 16], + [-50, 59] + ], + [ + [1500, 6342], + [-49, 64], + [-39, -16], + [-66, 14], + [-74, -9], + [-26, 48], + [45, 41], + [6, 110], + [45, 75], + [78, 84], + [-68, 21], + [-2, 59], + [-66, -16], + [-111, 50], + [23, 53], + [49, 40], + [-15, 84], + [73, 28], + [-11, 52], + [58, 70], + [-6, 29], + [-66, 3], + [8, 110], + [67, 45], + [53, -113], + [68, -102], + [81, 8], + [52, 65], + [51, 23], + [-1, 94], + [47, 0], + [-13, 82], + [-74, -6], + [-113, 13], + [-81, 32], + [-5, 80], + [-50, 92], + [-3, 94], + [13, 43], + [51, -4], + [9, -58], + [58, 6], + [21, -81], + [56, -43], + [118, -8], + [53, -29], + [53, 56], + [78, 3], + [-5, 144], + [7, 29], + [78, 32], + [-17, 75], + [33, 49], + [47, -38], + [191, 23], + [68, -9], + [3, -33], + [-56, -37], + [32, -87], + [-123, -98], + [-10, -49], + [87, -41], + [26, 35], + [79, -17], + [91, 29], + [-12, -58], + [-203, -97], + [-29, 70], + [-73, 21], + [14, 70], + [-84, -23], + [69, -130], + [-41, 3], + [-44, -64], + [6, -57], + [49, -49], + [75, -6], + [65, -24], + [256, -55], + [55, 8], + [90, 45], + [23, -9] + ], + [ + [5337, 10298], + [35, 29], + [62, 10], + [51, -17], + [126, 80], + [72, 78], + [17, 62], + [84, 50], + [114, -13], + [-8, 84], + [165, 16], + [50, 52], + [83, 27], + [48, 57], + [77, 54], + [42, -18], + [55, 29], + [22, 55], + [48, 21], + [80, 3], + [13, 90], + [38, 31], + [64, 10], + [42, 91], + [63, -6], + [50, 27], + [41, 52], + [167, -31], + [1, 102], + [42, 130], + [110, -23], + [-22, 57], + [103, 35], + [57, -34], + [46, 88], + [120, 20], + [23, -11], + [44, -88], + [62, 15], + [44, -69], + [112, -26], + [34, -26] + ], + [ + [6274, 9680], + [-99, 14], + [-67, -30], + [-23, 42], + [92, 72], + [82, 9], + [2, 88], + [-59, 43], + [36, 72] + ], + [ + [6238, 9990], + [55, 7] + ], + [ + [6293, 9997], + [-1, 49], + [-44, 1], + [-52, -64], + [3, -43], + [-34, -50], + [-71, 16], + [-72, 61], + [-73, 94], + [-74, 46], + [-40, 57], + [-153, -24], + [-72, -35], + [-39, -78], + [-67, 29], + [-21, 83], + [-146, 159] + ], + [ + [5531, 5648], + [-10, -151], + [-32, -83], + [-33, -127], + [-25, -58] + ], + [ + [5431, 5229], + [-54, -90], + [30, -61], + [-11, -74], + [-56, -49], + [-15, -55], + [-99, -83] + ], + [ + [5226, 4817], + [-73, 37], + [-82, 3], + [-41, -58], + [-50, 53], + [-101, -4], + [-63, -35], + [-32, -46], + [-60, 82], + [-117, -20], + [-64, 30], + [14, 46], + [-110, 73], + [-34, -26], + [-91, 49], + [-29, -50], + [-12, -65], + [-119, 62], + [8, 47], + [-23, 170], + [-48, 49], + [18, 80], + [-26, 86], + [-33, 14], + [10, 80], + [-39, 13], + [-7, 68], + [-46, 28], + [-6, 45], + [-49, 23], + [26, 48], + [-20, 81], + [-82, 38], + [40, 44], + [-23, 100], + [-87, 5], + [-20, 89], + [76, 75], + [-36, 31], + [-15, 120] + ], + [ + [3780, 6282], + [63, 16], + [54, -19], + [12, 43], + [65, 33], + [45, -9], + [107, -83], + [16, 39], + [69, 4], + [78, -58], + [16, -67], + [65, 3], + [43, 25], + [-14, 66], + [74, 57], + [4, 41], + [53, 19], + [83, -9], + [-36, -149], + [81, -63], + [84, 6], + [38, -78], + [64, 0], + [49, 27], + [38, -8] + ], + [ + [2856, 5370], + [9, -20] + ], + [ + [1682, 4077], + [-33, 57], + [-127, 39], + [-55, -48], + [-66, 14], + [-48, -19], + [-68, 30], + [-19, 71], + [28, 26], + [-4, 83], + [-75, -21] + ], + [ + [1215, 4309], + [-69, 85], + [-49, 6], + [-71, -23], + [-30, 43], + [-116, 4], + [-26, 72], + [22, 82], + [46, 39], + [3, 78], + [42, 15], + [26, 63], + [72, 6], + [26, 39], + [127, 71], + [55, 48], + [50, -19], + [85, 47], + [60, 98], + [35, 33], + [58, 15], + [-26, 76], + [0, 101], + [28, 32], + [-1, 61] + ], + [ + [2460, 5690], + [54, -19], + [127, -102], + [3, -86], + [35, -34], + [121, 3], + [56, -82] + ], + [ + [12607, 6501], + [-62, 4], + [23, 65], + [-25, 48], + [21, 43], + [-74, 84], + [-24, 93], + [-122, 32], + [16, 264], + [33, 120], + [-164, 150], + [-61, 45], + [38, 75], + [35, -3], + [51, 133] + ], + [ + [12292, 7654], + [62, 29], + [12, 77], + [81, -31], + [-7, 112], + [50, 45], + [55, 110], + [-29, 65], + [21, 23], + [19, 96], + [106, 15], + [107, -99], + [49, 26], + [29, -79], + [82, -43], + [16, 72], + [-26, 20], + [25, 56], + [66, 29], + [-36, 47], + [85, 5], + [95, -38], + [6, -95], + [26, -39], + [-65, -53], + [48, -40], + [43, 37], + [50, -18], + [11, -45], + [60, 19], + [126, -86], + [70, 19], + [90, -40], + [35, -33], + [15, -125], + [-13, -72], + [90, -90], + [87, 23], + [105, -55], + [29, -2], + [52, -60], + [35, 25], + [47, -25], + [86, 11], + [-23, -68], + [74, -18], + [8, -105], + [85, -74], + [3, -102] + ], + [ + [6996, 6369], + [37, 2], + [-15, 75], + [14, 49], + [61, 40], + [55, 59], + [2, 39], + [85, 36], + [80, 52], + [19, 34] + ], + [ + [7334, 6755], + [176, -151], + [-63, -97], + [28, -49], + [75, -64], + [86, 49], + [9, 56], + [48, 27], + [13, 56], + [43, 54], + [91, -67], + [45, -7], + [68, -122], + [64, -45], + [26, -57], + [51, -21], + [94, 18], + [55, -117], + [37, -2], + [57, 61], + [70, 17], + [0, 62], + [54, 38], + [-4, 56], + [103, 105], + [0, 40], + [34, 99] + ], + [ + [11176, 7810], + [44, 57], + [75, -5], + [-3, 59], + [-60, 17], + [-32, 95], + [97, -49], + [62, 42], + [32, 79], + [28, -43], + [101, -78], + [96, 9], + [85, -20], + [0, 45], + [-99, 39], + [-3, 50], + [58, 26], + [85, 9], + [56, -10], + [18, 60], + [47, 35], + [63, -48], + [-71, -82], + [10, -105], + [-51, -40], + [-21, -43], + [37, -53], + [-55, -59], + [-29, -58], + [33, -16], + [94, 8], + [107, 64], + [27, -59], + [83, -6], + [12, 25], + [120, 0], + [23, -56], + [47, -45] + ], + [ + [4335, 4113], + [89, -38], + [66, 55], + [7, 117], + [45, -20], + [53, 13], + [22, -71], + [58, -30], + [71, 60], + [57, -95], + [97, -38], + [61, 55], + [-9, 147], + [27, 49], + [76, 22], + [70, 87], + [-12, 50], + [20, 101], + [-2, 76], + [38, 17], + [19, 92], + [38, 55] + ], + [ + [5431, 5229], + [58, -55], + [32, 14], + [20, -85], + [74, -26], + [31, -129], + [-12, -192], + [20, -37], + [-30, -46], + [-63, -5], + [7, -54], + [-58, -104], + [-45, 65], + [-12, -98], + [66, -24], + [-6, -81], + [-50, -35], + [50, -75], + [41, -18], + [31, -100], + [37, -16], + [11, -68], + [71, 12], + [15, -27], + [82, -11] + ], + [ + [9494, 1033], + [-8, 111], + [-22, 56], + [-52, 27], + [-82, 7], + [-29, -33], + [-191, 38], + [-35, 42], + [-64, 14] + ], + [ + [6293, 9997], + [-55, -7] + ], + [ + [6274, 9680], + [-9, -10] + ], + [ + [5276, 8527], + [-62, -29], + [-27, -49], + [-114, -7], + [-10, -38], + [-103, 88], + [-88, 17], + [-121, -30], + [-160, 60], + [-78, 70], + [-58, 17], + [-24, 85], + [-43, 22], + [-8, 61], + [-68, 114], + [-18, 99], + [9, 108], + [-27, 30], + [20, 49], + [-57, 44], + [8, 46], + [77, 26], + [-8, 71], + [13, 63], + [118, 157], + [60, -3], + [25, 68], + [49, 5], + [102, -18], + [51, 39], + [-3, 41], + [59, 3], + [42, 54], + [37, 80], + [-17, 37], + [70, 54], + [30, 73], + [88, 26], + [97, 63], + [51, 77], + [106, 22], + [43, 76] + ], + [ + [7169, 7544], + [37, -11], + [67, -133], + [-12, -45], + [86, -169], + [-20, -41], + [23, -67], + [-26, -126], + [-54, -22], + [27, -104], + [52, -32], + [-15, -39] + ], + [ + [4758, 974], + [13, -45], + [-43, -34], + [50, -66], + [-13, -47], + [-71, -47], + [-20, -68], + [-110, -79], + [-77, -69], + [64, -105], + [-5, -69], + [-46, -38], + [-15, -72], + [-111, 26], + [-52, -33], + [-67, 17], + [-24, -85], + [-42, -81], + [-72, -15], + [-61, -60], + [-165, -4], + [-21, 35], + [-149, -6], + [-84, 73], + [7, 27], + [-45, 50], + [24, 26], + [69, -14], + [-5, 106], + [-35, 37], + [26, 34], + [-52, 76], + [-53, 153], + [-80, -42], + [-106, 46] + ], + [ + [7961, 9012], + [-27, 13], + [-42, -49], + [-69, 2], + [-96, 34], + [-85, -36] + ], + [ + [587, 3128], + [39, 184], + [63, 110], + [0, 47], + [45, 12], + [24, 87], + [-28, 109], + [-77, 10], + [-32, -38], + [-32, 21], + [-70, 110], + [51, 31], + [-37, 100], + [-46, 65], + [64, 36], + [55, 63], + [73, -13], + [59, -41], + [79, 7], + [40, 25], + [18, 62], + [108, 25], + [82, 74], + [25, 39], + [80, -14], + [53, 35], + [-8, 35] + ], + [ + [2856, 5370], + [50, 111], + [26, 97], + [-52, 25], + [8, 54], + [50, -5], + [48, -41], + [31, -55], + [133, 81], + [44, -20], + [74, 40], + [104, 77], + [-1, 63], + [-35, 46], + [0, 56], + [52, 9], + [64, 41], + [35, 51], + [65, 12], + [42, 30], + [45, -3], + [4, 72], + [-23, 148], + [54, 77], + [-21, 74], + [47, 30], + [28, 71], + [36, -41], + [-20, -52], + [36, -136] + ] + ], + "transform": { + "scale": [0.0005764103923814968, 0.0004997654363573647], + "translate": [74.03963333601295, 21.073255] + }, + "objects": { + "madhyapradesh_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5, 6, 7], [8]], + "type": "Polygon", + "properties": { + "cartodb_id": 112, + "censuscode": 425, + "dt_cen_cd": 8, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Chhatarpur" + } + }, + { + "arcs": [[9, 10, 11, 12, 13]], + "type": "Polygon", + "properties": { + "cartodb_id": 113, + "censuscode": 455, + "dt_cen_cd": 38, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Chhindwara" + } + }, + { + "arcs": [[14, 15, 16, 17, 18, -4]], + "type": "Polygon", + "properties": { + "cartodb_id": 132, + "censuscode": 428, + "dt_cen_cd": 11, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Damoh" + } + }, + { + "arcs": [[19, 20, 21, 22, 23, 24, 25]], + "type": "Polygon", + "properties": { + "cartodb_id": 147, + "censuscode": 438, + "dt_cen_cd": 21, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Dhar" + } + }, + { + "arcs": [[26, 27, 28, 29, 30, 31, 32, 33]], + "type": "Polygon", + "properties": { + "cartodb_id": 172, + "censuscode": 466, + "dt_cen_cd": 49, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "East Nimar" + } + }, + { + "arcs": [[34, 35, 36, 37, 38, 39]], + "type": "Polygon", + "properties": { + "cartodb_id": 210, + "censuscode": 458, + "dt_cen_cd": 41, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Guna" + } + }, + { + "arcs": [[40, 41, 42, 43, 44]], + "type": "Polygon", + "properties": { + "cartodb_id": 364, + "censuscode": 454, + "dt_cen_cd": 37, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Mandla" + } + }, + { + "arcs": [[45, 46, 47, 48]], + "type": "Polygon", + "properties": { + "cartodb_id": 365, + "censuscode": 433, + "dt_cen_cd": 16, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Mandsaur" + } + }, + { + "arcs": [[49, 50, 51, -35, 52, 53, 54, 55, 56]], + "type": "Polygon", + "properties": { + "cartodb_id": 520, + "censuscode": 423, + "dt_cen_cd": 6, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Shivpuri" + } + }, + { + "arcs": [[57, 58, 59]], + "type": "Polygon", + "properties": { + "cartodb_id": 529, + "censuscode": 463, + "dt_cen_cd": 46, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Singrauli" + } + }, + { + "arcs": [[-7, 60]], + "type": "Polygon", + "properties": { + "cartodb_id": 573, + "censuscode": 424, + "dt_cen_cd": 7, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Tikamgarh" + } + }, + { + "arcs": [[61, 62, -26, 63, 64]], + "type": "Polygon", + "properties": { + "cartodb_id": 588, + "censuscode": 435, + "dt_cen_cd": 18, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Ujjain" + } + }, + { + "arcs": [[65, 66, 67, 68, 69, 70, 71, 72, 73, 74]], + "type": "Polygon", + "properties": { + "cartodb_id": 590, + "censuscode": 431, + "dt_cen_cd": 14, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Umaria" + } + }, + { + "arcs": [[75, 76, 77, 78, -37]], + "type": "Polygon", + "properties": { + "cartodb_id": 603, + "censuscode": 443, + "dt_cen_cd": 26, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Vidisha" + } + }, + { + "arcs": [[-33, 79, 80, 81, -21, 82, 83]], + "type": "Polygon", + "properties": { + "cartodb_id": 618, + "censuscode": 440, + "dt_cen_cd": 23, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "West Nimar" + } + }, + { + "arcs": [[84, -66, 85, 86, 87, -70, 88, -68]], + "type": "Polygon", + "properties": { + "cartodb_id": 24, + "censuscode": 461, + "dt_cen_cd": 44, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Anuppur" + } + }, + { + "arcs": [[-73, 89, -16, 90, 91]], + "type": "Polygon", + "properties": { + "cartodb_id": 292, + "censuscode": 450, + "dt_cen_cd": 33, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Katni" + } + }, + { + "arcs": [[[92, -91, -15, -3, 93]], [[-1, 94]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 430, + "censuscode": 426, + "dt_cen_cd": 9, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Panna" + } + }, + { + "arcs": [[95, -86, -75, 96, 97]], + "type": "Polygon", + "properties": { + "cartodb_id": 511, + "censuscode": 460, + "dt_cen_cd": 43, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Shahdol" + } + }, + { + "arcs": [[98, 99, 100, 101, -78, 102]], + "type": "Polygon", + "properties": { + "cartodb_id": 464, + "censuscode": 446, + "dt_cen_cd": 29, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Raisen" + } + }, + { + "arcs": [[-58, 103, -98, 104, 105]], + "type": "Polygon", + "properties": { + "cartodb_id": 525, + "censuscode": 462, + "dt_cen_cd": 45, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Sidhi" + } + }, + { + "arcs": [[106, -23, 107, 108]], + "type": "Polygon", + "properties": { + "cartodb_id": 10, + "censuscode": 465, + "dt_cen_cd": 48, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Alirajpur" + } + }, + { + "arcs": [[109, 110, -43]], + "type": "Polygon", + "properties": { + "cartodb_id": 38, + "censuscode": 457, + "dt_cen_cd": 40, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Balaghat" + } + }, + { + "arcs": [[111, -108, -22, -82]], + "type": "Polygon", + "properties": { + "cartodb_id": 60, + "censuscode": 441, + "dt_cen_cd": 24, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Barwani" + } + }, + { + "arcs": [[112, -28, 113, 114, -12]], + "type": "Polygon", + "properties": { + "cartodb_id": 68, + "censuscode": 447, + "dt_cen_cd": 30, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Betul" + } + }, + { + "arcs": [[116, 117, 118, 119, 120]], + "type": "Polygon", + "properties": { + "cartodb_id": 76, + "censuscode": 420, + "dt_cen_cd": 3, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Bhind" + } + }, + { + "arcs": [[121, 122, 123, -34, -84, 124, -62]], + "type": "Polygon", + "properties": { + "cartodb_id": 143, + "censuscode": 437, + "dt_cen_cd": 20, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Dewas" + } + }, + { + "arcs": [[-88, 125, -41, 126, -71]], + "type": "Polygon", + "properties": { + "cartodb_id": 158, + "censuscode": 453, + "dt_cen_cd": 36, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Dindori" + } + }, + { + "arcs": [[-18, 127, 128, -14, 129, -99, 130]], + "type": "Polygon", + "properties": { + "cartodb_id": 403, + "censuscode": 452, + "dt_cen_cd": 35, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Narsinghpur" + } + }, + { + "arcs": [[[131, -57, 132, -119]], [[-117, 133, 134]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 214, + "censuscode": 421, + "dt_cen_cd": 4, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Gwalior" + } + }, + { + "arcs": [[135, -114, -27, -124, 136]], + "type": "Polygon", + "properties": { + "cartodb_id": 220, + "censuscode": 448, + "dt_cen_cd": 31, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Harda" + } + }, + { + "arcs": [[-13, -115, -136, 137, -100, -130]], + "type": "Polygon", + "properties": { + "cartodb_id": 229, + "censuscode": 449, + "dt_cen_cd": 32, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Hoshangabad" + } + }, + { + "arcs": [[-125, -83, -20, -63]], + "type": "Polygon", + "properties": { + "cartodb_id": 236, + "censuscode": 439, + "dt_cen_cd": 22, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Indore" + } + }, + { + "arcs": [[-72, -127, -45, 138, -128, -17, -90]], + "type": "Polygon", + "properties": { + "cartodb_id": 237, + "censuscode": 451, + "dt_cen_cd": 34, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Jabalpur" + } + }, + { + "arcs": [[-48, 139]], + "type": "Polygon", + "properties": { + "cartodb_id": 408, + "censuscode": 432, + "dt_cen_cd": 15, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Neemuch" + } + }, + { + "arcs": [[140, -120, -133, -56, 141, 142, 143]], + "type": "Polygon", + "properties": { + "cartodb_id": 380, + "censuscode": 419, + "dt_cen_cd": 2, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Morena" + } + }, + { + "arcs": [[-39, 144, 145, 146, 147]], + "type": "Polygon", + "properties": { + "cartodb_id": 466, + "censuscode": 442, + "dt_cen_cd": 25, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Rajgarh" + } + }, + { + "arcs": [[148, -64, -25, 149, 150, -46, 151]], + "type": "Polygon", + "properties": { + "cartodb_id": 477, + "censuscode": 434, + "dt_cen_cd": 17, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Ratlam" + } + }, + { + "arcs": [[-59, -106, 152, 153]], + "type": "Polygon", + "properties": { + "cartodb_id": 481, + "censuscode": 430, + "dt_cen_cd": 13, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Rewa" + } + }, + { + "arcs": [[-5, -19, -131, -103, -77, 154, 155]], + "type": "Polygon", + "properties": { + "cartodb_id": 489, + "censuscode": 427, + "dt_cen_cd": 10, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Sagar" + } + }, + { + "arcs": [[-153, -105, -97, -74, -92, -93, 156]], + "type": "Polygon", + "properties": { + "cartodb_id": 506, + "censuscode": 429, + "dt_cen_cd": 12, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Satna" + } + }, + { + "arcs": [[-101, -138, -137, -123, 157, -146, 158]], + "type": "Polygon", + "properties": { + "cartodb_id": 507, + "censuscode": 445, + "dt_cen_cd": 28, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Sehore" + } + }, + { + "arcs": [[-44, -111, 159, -10, -129, -139]], + "type": "Polygon", + "properties": { + "cartodb_id": 509, + "censuscode": 456, + "dt_cen_cd": 39, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Seoni" + } + }, + { + "arcs": [[160, -142, 161, -54, 162, -144]], + "type": "Polygon", + "properties": { + "cartodb_id": 517, + "censuscode": 418, + "dt_cen_cd": 1, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Sheopur" + } + }, + { + "arcs": [[163, -155, -76, -36, -52]], + "type": "Polygon", + "properties": { + "cartodb_id": 27, + "censuscode": 459, + "dt_cen_cd": 42, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Ashoknagar" + } + }, + { + "arcs": [[-79, -102, -159, -145, -38]], + "type": "Polygon", + "properties": { + "cartodb_id": 79, + "censuscode": 444, + "dt_cen_cd": 27, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Bhopal" + } + }, + { + "arcs": [[164, -80, -32]], + "type": "Polygon", + "properties": { + "cartodb_id": 96, + "censuscode": 467, + "dt_cen_cd": 50, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Burhanpur" + } + }, + { + "arcs": [[-135, 165, -50, -132, -118]], + "type": "Polygon", + "properties": { + "cartodb_id": 137, + "censuscode": 422, + "dt_cen_cd": 5, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Datia" + } + }, + { + "arcs": [[-24, -107, 166, -150]], + "type": "Polygon", + "properties": { + "cartodb_id": 256, + "censuscode": 464, + "dt_cen_cd": 47, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Jhabua" + } + }, + { + "arcs": [[-147, -158, -122, -65, -149, 167]], + "type": "Polygon", + "properties": { + "cartodb_id": 514, + "censuscode": 436, + "dt_cen_cd": 19, + "st_cen_cd": 23, + "st_nm": "Madhya Pradesh", + "district": "Shajapur" + } + } + ] + } + } +} diff --git a/public/maps/maharashtra.json b/public/maps/maharashtra.json index 3534c50e19..334ce49bed 100644 --- a/public/maps/maharashtra.json +++ b/public/maps/maharashtra.json @@ -1 +1,2672 @@ -{"type":"Topology","arcs":[[[10621,7685],[-17,-41],[40,-173],[-72,-19],[-46,-39],[20,-71],[124,39],[37,-68],[-17,-80],[-5,-117],[-23,-55],[41,-103],[-100,-28],[-42,-55],[-61,3],[-111,-45],[41,-79],[-26,-64],[44,-21],[33,22],[97,-30],[30,-87],[-18,-90],[16,-33],[-32,-75],[-68,4],[-35,28],[-50,-30],[-5,-34],[119,-27],[-42,-93],[77,2],[36,-26],[-6,-54],[57,-54],[69,-29],[43,-38],[-5,-123],[79,-1],[87,-70],[46,7],[44,-60],[44,-22],[9,-64],[-33,-33],[-107,-25],[34,-65],[43,-32],[-106,-77],[-23,-32],[-88,0],[-34,55],[-64,-25],[-36,103],[-33,30],[-61,-73],[-51,-19],[-40,-96],[-84,-46],[5,-74],[-55,-38],[-34,-57],[15,-34],[-51,-117],[-35,-51],[0,-86],[92,-107],[14,-66],[-70,-31],[-72,-61],[36,-45],[-28,-25],[-119,-8],[-69,-28],[-81,64],[-45,68],[-108,26],[-52,68],[61,41],[2,116],[-20,155],[-87,25],[-4,65],[113,106],[-29,74],[33,85],[37,173],[-37,85],[-46,49],[-44,12],[-67,54],[-16,47],[-42,36]],[[9587,5878],[-6,179],[-53,91],[-5,55],[82,114],[-38,83],[5,74],[45,43],[47,5],[30,-72],[55,-24],[51,25],[55,90],[-35,112],[-71,36],[29,61],[75,29],[7,33],[-67,96],[38,98],[-15,80],[-28,47],[15,120],[-34,36],[21,106],[-13,62]],[[9777,7457],[42,35]],[[9819,7492],[72,-35],[54,61],[38,-28],[100,-3],[91,-50],[59,28],[65,119],[14,99],[65,-22],[47,28],[54,-6],[67,18],[76,-16]],[[9819,7492],[-40,32],[-10,84],[-76,17],[-7,141],[59,16],[51,58],[-8,49],[15,79],[127,-14],[53,66],[-31,78],[27,63],[-46,98],[-36,23],[-69,4],[-39,35],[-49,-17],[-107,44],[-36,157],[113,70],[54,85],[-2,62]],[[9762,8722],[15,43],[53,5],[37,-33],[46,34],[48,-4],[77,80],[36,-4],[54,41],[97,-20],[86,-105],[62,-41],[6,-44],[48,-78],[-29,-46],[19,-45],[54,0],[6,38],[95,-19],[99,-95],[85,9],[24,-32],[-47,-80],[-54,-44],[-123,-63],[-67,-14],[-32,-112],[20,-66],[-33,-62],[56,-122],[97,-1],[24,-157]],[[5836,4744],[17,-89],[66,-2],[-14,-122],[148,27],[-1,-81],[58,1],[20,-33],[75,-20],[-5,-67],[40,-27],[-66,-71],[37,-36]],[[6211,4224],[-9,-32]],[[6202,4192],[-1,-49]],[[6201,4143],[-33,-14],[-45,-193],[-52,-7],[-38,-97],[-59,-18],[18,-63],[-69,0],[-139,47],[-42,-101],[41,-9],[-2,-106],[-46,-7],[-6,-141],[-43,-66],[-37,8],[-106,-31],[-46,31]],[[5497,3376],[-24,27],[-66,5],[-6,114],[-61,2],[-39,48],[-65,-13],[-160,10],[-63,87],[-67,-23],[-73,96],[33,134],[23,146],[-45,17],[6,57],[-55,-6],[-55,19],[24,60],[61,-13],[-22,146],[30,56]],[[4873,4345],[4,26],[96,-15],[48,-33],[49,16],[59,-83],[58,-40],[120,-20],[132,66],[9,69],[-97,6],[39,59],[30,82],[1,66],[68,12],[-13,73]],[[5476,4629],[25,37],[49,3],[138,86],[148,-11]],[[2937,4024],[17,-58],[-57,2],[-10,-32],[61,-54],[146,30],[57,-33],[38,-79],[108,49],[16,-31],[-27,-114],[86,-2],[-37,-67],[-52,-14],[-53,-67],[-41,-86],[50,-16],[15,36],[79,5],[2,-37],[-79,-59],[-73,-10],[-74,11],[-31,37],[-93,16],[-7,58],[-56,35],[-61,-5],[-90,28]],[[2771,3567],[-60,58],[-33,-36],[-97,18],[-101,3],[-39,-16],[-42,26],[-71,8],[-30,37],[-73,-40],[-88,44],[-100,12],[-61,35],[-27,-15],[-88,17],[-115,72],[-59,-29],[-38,-160],[-21,-31],[-60,7],[-29,-21],[-115,39],[-63,-29]],[[1361,3566],[-62,43],[-21,72],[76,97],[-73,25],[-24,-15],[-53,39],[-13,62],[-70,35],[-6,43],[-72,38],[30,50],[-57,59],[-7,79],[18,66],[-34,8],[-84,98],[46,88],[44,36],[-19,79],[-35,-16],[26,139],[93,134],[-9,47],[37,23],[5,53],[67,10],[61,64],[-53,49],[12,118]],[[1184,5189],[15,67],[95,22],[72,74],[37,7],[-22,86],[57,35],[108,7],[-21,81]],[[1525,5568],[43,10],[59,-50],[36,26],[63,-53],[92,25],[38,-69],[-2,-62],[46,-36],[91,-36],[54,0],[71,-27],[58,33],[4,-58],[-43,-90],[-34,2],[-48,-123],[53,-51],[12,-46],[95,-107],[23,-73],[105,-27],[13,-139],[34,11],[68,-88],[49,-32],[-44,-49],[96,-30],[-9,-45],[39,-75],[-31,-27],[41,-60],[85,-35],[21,53],[55,30],[35,-39],[-16,-73],[27,-47],[66,12],[33,-30],[-17,-51],[51,-18]],[[1623,1533],[13,-55],[-51,-103],[24,-54],[60,-73],[-68,-80],[35,-54],[-38,-30],[18,-48],[125,-158],[9,-41],[-136,-70],[7,-49],[128,1],[66,-15],[6,-75],[63,-5],[47,-45],[-46,-80],[42,-24],[16,-65],[-30,-83],[119,-17],[-5,-50],[74,-10]],[[2101,250],[-28,-42],[-39,-1],[-45,-40],[6,-53],[-79,-89],[-105,-25],[-36,29],[-6,86],[-35,80],[-85,12],[-23,71],[-43,-88],[-124,-28],[-76,10],[-57,182],[-55,84],[-62,41],[-45,5],[-33,53],[-1,92],[-38,29],[21,57],[-27,55],[-57,218],[-52,121],[-38,165],[-40,94],[36,32]],[[935,1400],[45,-71],[56,1],[65,-29],[48,40],[56,-8],[97,87],[62,3],[38,71],[48,-31],[54,-2],[4,86],[115,-14]],[[812,6658],[30,-29],[-9,-65],[33,-4],[100,-55],[55,-6],[28,-48],[35,-3],[-39,-99],[26,-133],[1,-61],[25,-36],[52,-1],[3,-40],[84,-170],[73,-43]],[[1309,5865],[8,-65],[98,-56],[-32,-63],[21,-34],[121,-79]],[[1184,5189],[-167,8],[-70,-8],[-139,-96],[-65,90],[-29,-23],[-174,-17],[-1,-119],[-50,-45],[-67,1]],[[422,4980],[26,67],[-11,117],[18,58],[-62,57],[-35,65],[-74,52],[-51,-35],[-49,26]],[[184,5387],[25,99],[-60,71],[-9,159],[-25,21],[-27,78],[15,93],[-35,60],[25,54],[-51,30],[14,116],[-56,69],[38,50],[-13,66],[29,63],[115,-32],[-14,63],[-54,-4],[3,92],[-24,59],[34,82],[82,-17],[32,32],[33,91],[46,27],[114,-23],[48,-137],[36,-50],[39,22],[103,-21],[60,-50],[51,68],[54,40]],[[7521,8434],[100,-85],[9,-30],[147,-24],[102,-88],[54,-89],[42,0],[23,-67],[59,-26],[107,-69],[6,-85],[93,-104],[81,-8],[-1,-43],[69,-10],[40,-101],[144,-48],[73,-72],[48,-14],[61,-108],[49,-30]],[[8827,7333],[-14,-53],[-64,-61],[-49,-75],[-143,36],[-29,-46],[-45,16],[-24,-44],[-69,13],[-107,-66],[14,-109],[-38,-31]],[[8259,6913],[-85,-7],[-40,24],[-21,70],[-60,111],[-95,-4],[-53,50],[-38,84],[-130,-13],[-178,76],[-21,25],[-17,100],[38,72]],[[7559,7501],[42,62],[-22,59],[20,83],[-40,14],[-32,62],[-96,28],[-51,70],[10,180],[-29,57],[18,36],[-68,58],[5,33],[-58,73],[47,159],[91,-40],[125,-1]],[[6718,7306],[-11,-51],[32,-21],[-28,-98],[-62,-6],[-35,-77],[-10,-87],[22,-12],[37,-91],[76,-24],[-29,-85],[46,-31],[-13,-95],[-61,-93],[-60,-17],[-74,94],[-81,-33],[-119,33],[-29,-38],[25,-32],[-66,-133],[-50,-30],[-2,-37]],[[6226,6342],[-50,-7],[-13,48],[-40,13],[-7,65],[-137,-86],[-55,93],[-33,21],[-85,-24],[-96,-46],[-86,-3],[-18,-50],[-68,9],[-36,-39],[-9,-51],[-64,1],[-18,-39]],[[5411,6247],[-42,29]],[[5369,6276],[15,31],[-58,30],[26,68],[34,34],[4,106],[-51,2],[62,113],[118,7],[-11,115],[49,-9],[53,64],[-7,51]],[[5603,6888],[21,28],[64,-3],[21,63],[106,47],[60,115],[41,-2],[104,-72],[81,10],[-8,62],[51,-1],[95,-42],[7,41],[64,26],[-26,50],[15,115],[97,15],[7,32],[66,2],[-45,75],[106,33],[16,71],[55,-15],[34,53],[34,4]],[[6669,7595],[22,-32],[6,-119],[25,-15],[-33,-119],[29,-4]],[[8259,6913],[25,-75],[54,8],[82,-22],[52,-45],[-7,-57],[155,-154],[60,-111],[-29,-63],[1,-46],[77,-32],[-22,-40],[-94,-75],[-48,-20],[-95,3],[-13,-81],[-62,-17],[-30,39],[-41,-5]],[[8324,6120],[-50,-1],[-30,30],[-112,10],[-111,34],[-125,19],[-43,-42],[-24,34],[-106,29],[-18,63],[-64,6],[-35,44]],[[7606,6346],[-46,-41],[-51,3],[-135,41],[-85,-22],[-34,45],[-46,-23],[-87,-6],[-75,-49],[-66,-114],[16,-84],[47,-27],[77,6],[47,-72],[70,29],[56,-77],[66,28],[64,-18],[22,-54],[-15,-81],[-49,-16],[-45,-90],[-62,-36],[-56,45],[-17,-48],[-73,68],[-131,12],[-25,-14],[6,-80],[-66,-8],[-66,-28],[-67,11],[0,31],[55,34],[13,58],[-139,37],[-2,89],[-37,45],[-83,38],[-128,27]],[[6459,6005],[-32,70],[-76,24],[15,111],[-58,6],[25,49],[-107,77]],[[6718,7306],[19,24],[101,-28],[39,-32],[48,40],[41,-2],[75,86],[54,-69],[54,19],[62,57],[25,56],[33,9],[128,-20],[73,45],[89,10]],[[2748,1631],[-3,-60],[-48,-54],[41,-49],[-133,-73],[-43,6],[-11,109],[-72,-10],[-35,-32],[-93,-38],[-24,-76],[-76,38],[-30,-36],[-48,14],[32,-94],[59,-33],[5,-76],[-14,-64],[22,-97],[43,3],[57,-53],[83,-16],[33,-35],[-15,-61],[-11,-139],[-74,34],[-72,-47],[-3,-62],[83,31],[37,-16],[-44,-140],[-109,-153],[28,-30],[-5,-67],[-106,-63],[-57,3],[-44,55]],[[1623,1533],[16,29],[-52,40],[18,58],[-29,42],[-37,-3],[-72,85],[42,49],[-28,75],[56,5],[7,33],[-40,47],[41,45],[51,-3],[-23,107],[-144,157]],[[1429,2299],[90,-27],[5,42],[63,-19],[118,-137],[59,-29],[32,-39],[-16,-52],[69,-12],[22,-90],[52,-28],[58,10],[36,-41],[39,22],[98,-18],[64,8],[55,-21],[35,-37],[42,36],[24,-52],[110,21],[53,-15],[32,-58],[97,-30],[82,-102]],[[9253,8751],[-76,-62],[-47,-98],[43,-11],[114,-190],[5,-76],[-25,-61],[-2,-72],[-55,8],[4,-61],[133,-122],[63,-102],[-21,-78],[-37,-21],[-45,-88],[-55,8],[25,-67],[-33,-44],[-1,-48],[-35,-54]],[[9208,7512],[-99,-66],[-80,27],[-72,-139],[-130,-1]],[[7521,8434],[133,77],[69,4],[63,31],[-19,141]],[[7767,8687],[68,6],[38,33],[69,-20],[33,-41],[48,-14],[85,7],[54,-26],[50,38],[229,-4],[6,47],[-32,65],[84,80],[46,-24],[90,10],[69,30],[27,48],[97,-15],[20,95],[67,-31],[148,-28],[22,24],[104,-25],[23,-124],[41,-67]],[[5411,6247],[37,-15],[-25,-81],[39,-19],[48,-110],[133,16],[4,-84],[66,-5],[53,-32],[35,-114],[-27,-98],[-37,-48],[1,-42],[-35,-58],[9,-119],[25,-62],[123,-6],[51,-31],[59,-109],[12,-78]],[[5982,5152],[-55,-54],[-11,-117],[-38,-71],[-101,-49],[8,-47],[75,5],[8,-52],[-32,-23]],[[5476,4629],[-68,18],[-12,85],[-59,74],[-52,20],[-1,91],[-59,7],[-39,-32],[-43,43],[0,65],[-30,10],[-23,119],[-37,6],[-44,57],[-31,-42],[-46,17],[54,62],[-12,54],[15,66],[-69,35],[-115,-29],[-23,53]],[[4782,5408],[5,60],[70,23],[27,48],[7,97],[33,47],[67,7],[41,92],[63,14],[15,186],[46,15],[8,123],[52,133]],[[5216,6253],[104,-18],[49,41]],[[2722,6395],[-33,-54],[-1,-72],[-56,-17],[-7,-71],[121,-49],[29,21],[22,-87],[29,-48],[49,38],[1,-99],[49,33],[38,-35],[50,11],[107,-14],[40,-36],[51,3],[32,-30],[41,9],[50,-26],[87,2],[49,-79],[111,-67],[56,9],[-32,-94],[46,-58],[61,30],[90,5]],[[3802,5620],[12,-51],[64,-17],[-22,-67],[30,-31],[-32,-47],[-78,-42],[-72,-86],[58,-29],[6,-66],[45,-32],[-103,-37],[-61,-4],[-59,25],[-32,-13],[-13,-77],[80,-13],[-7,-49],[-70,-15],[-22,18],[-13,115],[-31,-12],[-29,73],[-38,-27],[-2,-64],[-27,-20],[-125,25],[46,104],[-74,-36],[-99,18],[-51,27],[-28,-61],[-7,-71],[48,-11],[11,-54],[-58,-53],[-53,34],[-47,-22],[-19,-44],[93,-88],[1,-46],[33,-29],[59,-5],[66,-79],[27,-11],[55,-73],[109,-95],[20,127],[54,3],[54,-25],[98,114],[79,-38],[16,86],[57,-58],[6,-45],[79,-56],[71,27],[8,-58],[33,-7]],[[3948,4552],[-52,-22],[-1,-60],[-77,-23],[-51,-55],[-45,-82],[-98,42],[-43,-63]],[[3581,4289],[-71,-15],[-28,51],[-108,-34],[-33,9],[-40,-54],[-17,-82],[-45,-21],[-57,25],[-17,-50],[-118,-38],[-11,-31],[-99,-25]],[[1309,5865],[58,-1],[79,48],[75,19],[7,43],[40,36],[39,82],[79,8],[-6,-40],[25,-56],[208,-31],[68,-25],[62,125],[105,23],[44,51],[54,-16],[20,46],[43,5],[-1,101],[-117,56],[-37,42],[93,71],[215,-28],[69,14],[57,-31],[134,-12]],[[5603,6888],[-38,51],[-125,56],[37,79],[-45,76],[24,73],[78,8],[9,60],[-18,72],[12,36],[-44,56],[-6,74],[34,11],[14,95],[-34,17],[23,87],[-90,73],[2,21],[102,1],[21,59],[-14,61],[15,42],[-20,84],[19,32],[-22,104],[15,12]],[[5552,8228],[97,2],[88,17],[114,7],[23,58],[55,-33],[69,-7],[65,27],[25,-49],[-24,-31],[14,-160],[-33,-56],[30,-20],[-38,-145],[-15,-90],[53,-13],[186,2],[89,-20],[132,29],[71,-21],[55,-59],[54,-15],[7,-56]],[[4353,7305],[-79,-134],[-76,-24],[-31,-116],[7,-74],[-50,6],[-45,-33],[15,-34],[-27,-68],[10,-53],[-47,-19],[-29,-127],[-51,-5],[6,-109],[49,-40],[14,-59],[37,-31],[-19,-43],[-9,-111],[-26,-88],[11,-61],[-3,-116],[-57,-27],[13,-52],[68,-11],[7,-41],[-16,-101],[-35,-45],[-12,-127]],[[3978,5562],[-51,-3],[-125,61]],[[2722,6395],[16,63],[71,137],[-31,78],[12,82],[89,26],[35,53],[56,-25],[-3,-74],[102,6],[4,131]],[[3073,6872],[87,99],[65,-43],[15,39],[88,22],[-23,85],[71,44],[3,58],[102,67],[21,72],[51,-1],[38,33],[97,-26],[5,-74],[56,21],[32,-25],[85,58],[-5,44],[48,34],[43,-16],[46,33],[50,5],[10,62],[49,-13],[0,-68],[71,-2],[1,-51],[89,-28],[20,82],[38,11],[27,-89]],[[3978,5562],[42,-1],[63,-38],[89,5],[5,45],[51,11],[58,-38],[112,8],[-21,-84],[35,-38],[50,8],[56,55],[36,-74],[59,-10],[20,41],[88,-36],[61,-8]],[[4873,4345],[-31,30],[-209,16],[-65,-18],[-123,46],[-23,56],[-110,10],[-45,28],[-39,-22],[-59,36],[-107,15],[-8,-60],[-61,17],[-45,53]],[[5216,6253],[-44,49],[-9,49],[-168,13],[-20,-47],[-74,-35],[-56,5],[-110,-35],[-60,20],[-40,-10],[-77,139],[-38,4],[-64,61],[78,42],[-6,53],[50,7],[0,51],[54,-1],[12,82],[22,10],[36,110],[22,3],[39,94],[-46,-4],[-43,64],[-61,35],[-45,-43],[-25,-70],[-75,42],[-65,10],[24,42],[-3,109],[20,46],[-9,92],[65,16],[55,37],[-10,123],[-29,6]],[[4516,7422],[-18,36],[20,105],[-34,30],[84,79],[88,120],[-47,21],[16,53],[90,84],[6,48],[83,-31],[73,-80],[54,-11],[84,40],[20,81],[-19,66]],[[5016,8063],[39,41],[55,11],[52,123],[51,-13],[40,24],[87,-19],[11,54],[36,27],[3,51]],[[5390,8362],[82,14],[34,-53],[25,-91],[21,-4]],[[9587,5878],[-60,14],[-37,-29],[-123,-27],[-27,-84],[-118,14],[-57,-30],[-40,53],[-37,0],[-57,41],[-171,75],[9,-51],[-18,-75],[-64,-101],[-116,102],[-114,18],[-34,32],[-40,82],[8,47],[-71,27],[-77,-17],[6,60],[-25,91]],[[9208,7512],[140,-19],[13,-26],[94,-7],[80,25],[12,67],[37,-20],[18,-49],[102,1],[73,-27]],[[3436,8559],[-60,-16],[-48,-94],[19,-67],[-47,-85],[-84,-36],[-12,-29],[-93,0],[-95,-60],[-8,-56],[-39,-74],[45,-15],[40,-62],[-9,-124],[28,-1],[47,-72],[21,-81],[-32,-26],[43,-83],[-55,-54],[-32,-80],[-98,-33],[-56,-2]],[[2911,7409],[-12,34],[-91,16],[-37,32],[-80,8],[14,62],[-52,91],[-64,37],[-204,-27],[-85,59],[-91,14],[-63,-6],[-158,21],[-105,-43],[-65,0],[-42,23],[-40,-18]],[[1736,7712],[-19,12],[-10,87],[-36,38],[14,74],[-67,21]],[[1618,7944],[45,46],[102,24],[-12,62],[69,50],[109,31],[-35,45],[84,62],[57,19],[65,-6],[14,27],[67,13],[113,-25],[-1,28],[103,17],[8,-38],[72,3],[8,75],[-25,93],[37,47],[19,65],[70,-38],[48,18],[40,-24],[63,5],[17,100],[72,23],[7,132],[20,56]],[[2854,8854],[73,-8],[54,30],[169,-58],[79,-36],[40,-61],[31,-82],[31,-30],[105,-50]],[[7606,6346],[-22,-93],[61,-15],[0,-38],[38,-48],[-30,-100],[-80,-35],[3,-52],[31,-74],[-19,-67],[20,-137],[-117,-47],[-50,-56],[-10,-63],[23,-31],[-18,-133],[-45,-17],[-31,24],[-109,36],[-130,103],[-119,-57],[9,-69],[-31,-99],[1,-109],[-60,-23],[-4,-70],[-48,16],[8,-119],[67,2],[-6,-49],[55,4],[-18,-60],[55,-4],[24,-60],[61,-38],[-144,-51],[-68,-167],[-72,-27],[-5,-49],[24,-79],[-47,-51],[-74,-40],[-22,39],[-59,-9],[6,-108],[-55,-58],[-15,-70],[-38,-34],[9,-37],[57,-46],[-27,-25],[-114,-46],[-77,58],[-61,13],[41,48],[10,84],[-49,47],[-68,14],[-66,-31]],[[6202,4192],[9,32]],[[5982,5152],[-23,-42],[73,-8],[34,68],[33,21],[-17,58],[8,89],[72,65],[8,69],[48,-9],[45,58],[68,-22],[117,74],[-19,26],[76,88],[-32,47],[-14,271]],[[1618,7944],[-73,71],[-6,33],[-141,49],[-77,47],[142,50],[109,7],[-3,74],[16,67],[80,-7],[77,51],[18,141],[72,37],[44,2],[40,56],[111,-6],[84,8],[112,30],[29,24],[11,66],[-58,27],[-30,-34],[-42,22],[-45,-31],[-32,47],[-35,-14],[-116,11],[-116,-25],[-59,-47],[-106,-21],[-21,38],[-30,116],[8,58],[77,8],[16,32],[-10,64],[-59,47],[-25,103],[19,39],[51,0],[193,99],[32,25],[123,45],[84,-41],[121,15],[12,42],[68,18],[52,64],[63,16],[18,-88],[60,-25],[46,-67],[-13,-28],[-17,-158],[9,-87],[53,-7],[52,-81],[99,-17],[56,-35],[93,-20]],[[2911,7409],[-25,-139],[-46,-2],[16,-100],[86,-78],[39,-150],[5,-57],[87,-11]],[[812,6658],[46,43],[24,79],[85,-22],[71,13],[-9,60],[8,109],[-15,97],[46,125],[36,42],[7,130],[-54,17],[-50,85],[49,18],[48,84],[29,-60],[56,-11],[118,-78],[14,-61],[39,-25],[48,23],[63,-16],[53,51],[79,32],[-5,115],[58,41],[48,-9],[38,28],[-12,39],[6,105]],[[5497,3376],[-4,-61],[68,-45],[-16,-40],[-50,-30],[-55,-78],[-11,-68],[-116,112],[-23,-71],[-36,82],[-49,-7],[0,-64],[-50,-2],[-2,-65],[-76,-37]],[[5077,3002],[-64,20],[-3,38],[-81,17],[-27,47],[-37,-2],[-43,-44],[-66,-23],[-54,25],[-6,81],[-66,36],[-125,-37],[21,112],[-106,33],[-27,-29],[-58,21],[-41,67],[-8,128],[40,51],[51,-13],[7,-38],[65,2],[50,22],[24,66],[-73,74],[-25,58],[23,44],[-29,78],[-19,134],[-50,90],[-119,30],[-47,83],[-47,-9],[-27,-56],[31,-53],[-56,-53],[-46,13],[-49,-87],[8,-44],[-67,-6],[-56,-156],[-57,59],[-81,5],[-2,127],[-37,50],[-55,106],[-72,33],[-10,157],[20,30]],[[1361,3566],[-44,-65],[13,-24],[-134,-105],[46,-30]],[[1242,3342],[-48,8],[-54,-26],[-71,-9],[-4,63],[-53,-28],[-49,107],[-24,25],[24,49],[-20,29],[-57,-2],[-11,51],[-41,17],[-57,-22],[-62,9],[-57,-66],[-26,-55],[-62,12],[-55,-34]],[[515,3470],[-28,75],[5,47],[-54,122],[20,43],[-13,61],[-35,28],[-23,92],[40,52],[-66,64],[-29,147],[40,132],[-26,57],[-48,52],[-18,104],[17,94],[-1,70],[-34,61]],[[262,4771],[40,96],[60,59],[-23,42]],[[339,4968],[83,12]],[[1242,3342],[35,-43],[-18,-31],[26,-47],[-48,-108],[65,-13],[103,-57],[74,-174],[-7,-37],[-48,-36],[-1,-123],[-55,-64],[31,-51],[-9,-71],[21,-51]],[[1411,2436],[30,-89],[-12,-48]],[[935,1400],[-14,63],[30,26],[-68,197],[20,63],[-32,55],[-15,87],[16,121],[-26,70],[24,85],[-98,287],[31,66],[-32,77],[-42,18],[9,118],[-16,68],[-56,69],[5,69],[-37,132],[28,38],[-54,132],[-29,102],[-64,127]],[[5077,3002],[-17,-60],[-113,-14],[25,-180],[-22,-59],[53,3],[-15,-87],[62,-9],[3,-32],[-39,-53],[-86,26],[-56,2],[-8,38],[-55,10],[-89,-33],[-56,37],[-256,-62],[-50,44],[1,77],[-94,25],[-18,-78],[-100,76],[-62,-14],[-14,61],[-61,35],[-26,-126],[-51,-14],[9,-48],[38,-11],[-10,-58]],[[3970,2498],[-63,-29],[-56,-67],[-125,37],[-25,-79],[-48,-30],[-8,66],[-98,-30],[-26,-47],[-59,0],[30,106],[-75,17],[-16,-45],[-133,17],[-1,-38],[-84,4],[-69,-45],[1,-100],[-50,6],[-14,46],[-70,49],[57,117],[71,28],[18,81],[42,29],[-9,58],[46,19],[-3,110],[-78,-39],[-40,74],[60,34],[-112,126]],[[3033,2973],[-22,71],[-93,106],[-85,49],[-57,5],[-38,40],[-9,58],[-59,33],[45,152],[-5,38],[61,42]],[[3970,2498],[36,-46],[34,-2],[8,-84],[-44,-40],[1,-39],[57,-69],[10,-62],[-17,-129],[-32,-48],[-46,27],[-2,50],[-53,4],[1,-62],[-51,4],[-30,-29],[-57,57],[-50,-33],[-49,19],[-66,-35],[-77,3],[-4,-112],[-57,-21],[-18,-35],[-63,2],[-15,33],[-104,84],[0,38],[-62,-13],[-60,11],[-75,-97],[-49,-36],[6,-103],[-89,-38],[-96,-17],[-57,-48],[-52,-1]],[[1411,2436],[71,14],[30,-36],[82,-31],[53,-55],[20,-52],[127,-37],[73,-56],[81,15],[120,70],[83,-13],[41,48],[14,95],[-32,28],[-11,55],[50,33],[-43,101],[48,55],[264,-56],[54,48],[59,-8],[42,47],[46,-69],[67,-6],[-11,47],[19,47],[-14,44],[88,-16],[73,-33],[69,81],[-4,73],[63,104]],[[5390,8362],[-49,78],[145,109],[15,50],[55,35],[10,34],[-39,49],[44,110],[51,-7],[25,33],[53,-21],[142,119],[116,54],[51,10],[116,-46],[23,35],[45,-3],[25,65],[167,-5],[65,11],[63,-21],[50,-54],[34,-65],[18,-119],[47,-66],[-54,-20],[-85,37],[-62,3],[-55,-35],[29,-89],[41,-23],[24,-117],[32,-1],[22,65],[43,-33],[117,-8],[124,-39],[15,28],[59,8],[8,32],[134,-50],[109,36],[112,53],[142,88],[16,88],[46,-7],[72,25],[194,11],[22,-112]],[[9253,8751],[149,19],[114,67],[80,-31],[87,-74],[79,-10]],[[339,4968],[-24,18],[-27,94],[-55,-33]],[[233,5047],[0,133],[-51,49],[19,51],[-20,38],[3,69]],[[4516,7422],[-72,-26],[-32,-37],[-3,-72],[-56,18]],[[3436,8559],[238,-44],[63,12],[125,-10],[32,-22],[58,29],[51,-16],[154,18],[120,-15],[74,24],[96,-5],[34,-28],[91,-36],[62,31],[41,-112],[40,-57],[11,-130],[-53,10],[11,-76],[65,-53],[105,7],[26,-29],[136,6]],[[262,4771],[-46,87],[22,44],[-19,68],[14,77]]],"transform":{"scale":[0.0007455174425404626,0.0006779128097498489],"translate":[72.64435308093887,15.61122743009818]},"objects":{"maharashtra_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"cartodb_id":193,"censuscode":508,"dt_cen_cd":12,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Garhchiroli"}},{"arcs":[[-4,4,5]],"type":"Polygon","properties":{"cartodb_id":205,"censuscode":507,"dt_cen_cd":11,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Gondiya"}},{"arcs":[[6,7,8,9,10,11,12]],"type":"Polygon","properties":{"cartodb_id":337,"censuscode":524,"dt_cen_cd":28,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Latur"}},{"arcs":[[13,14,15,16,17]],"type":"Polygon","properties":{"cartodb_id":452,"censuscode":521,"dt_cen_cd":25,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Pune"}},{"arcs":[[18,19,20]],"type":"Polygon","properties":{"cartodb_id":528,"censuscode":529,"dt_cen_cd":33,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Sindhudurg"}},{"arcs":[[21,22,-17,23,24,25]],"type":"Polygon","properties":{"cartodb_id":562,"censuscode":517,"dt_cen_cd":21,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Thane"}},{"arcs":[[26,27,28,29]],"type":"Polygon","properties":{"cartodb_id":609,"censuscode":504,"dt_cen_cd":8,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Wardha"}},{"arcs":[[30,31,32,33,34,35]],"type":"Polygon","properties":{"cartodb_id":610,"censuscode":502,"dt_cen_cd":6,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Washim"}},{"arcs":[[-29,36,37,38,39,-31,40]],"type":"Polygon","properties":{"cartodb_id":623,"censuscode":510,"dt_cen_cd":14,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Yavatmal"}},{"arcs":[[41,-19,42,43]],"type":"Polygon","properties":{"cartodb_id":313,"censuscode":530,"dt_cen_cd":34,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Kolhapur"}},{"arcs":[[44,45,-27,46,47]],"type":"Polygon","properties":{"cartodb_id":393,"censuscode":505,"dt_cen_cd":9,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Nagpur"}},{"arcs":[[-33,48,49,-13,50,51,52]],"type":"Polygon","properties":{"cartodb_id":432,"censuscode":513,"dt_cen_cd":17,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Parbhani"}},{"arcs":[[53,54,55,56,-18,-23,57]],"type":"Polygon","properties":{"cartodb_id":4,"censuscode":522,"dt_cen_cd":26,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Ahmednagar"}},{"arcs":[[-35,58,59]],"type":"Polygon","properties":{"cartodb_id":7,"censuscode":501,"dt_cen_cd":5,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Akola"}},{"arcs":[[60,61,-54,62,63]],"type":"Polygon","properties":{"cartodb_id":30,"censuscode":515,"dt_cen_cd":19,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Aurangabad"}},{"arcs":[[64,-51,-12,65,-55,-62]],"type":"Polygon","properties":{"cartodb_id":80,"censuscode":523,"dt_cen_cd":27,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Bid"}},{"arcs":[[-59,-34,-53,66,67,68,69]],"type":"Polygon","properties":{"cartodb_id":94,"censuscode":500,"dt_cen_cd":4,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Buldana"}},{"arcs":[[-2,70,-37,-28,-46,71]],"type":"Polygon","properties":{"cartodb_id":108,"censuscode":509,"dt_cen_cd":13,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Chandrapur"}},{"arcs":[[72,73,74,75,76]],"type":"Polygon","properties":{"cartodb_id":154,"censuscode":498,"dt_cen_cd":2,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Dhule"}},{"arcs":[[77,-9,78,-7,-50,79,-39]],"type":"Polygon","properties":{"cartodb_id":399,"censuscode":511,"dt_cen_cd":15,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Nanded"}},{"arcs":[[-76,80]],"type":"Polygon","properties":{"cartodb_id":400,"censuscode":497,"dt_cen_cd":1,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Nandurbar"}},{"arcs":[[-40,-80,-49,-32]],"type":"Polygon","properties":{"cartodb_id":227,"censuscode":512,"dt_cen_cd":16,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Hingoli"}},{"arcs":[[81,-63,-58,-22,82,-74]],"type":"Polygon","properties":{"cartodb_id":404,"censuscode":516,"dt_cen_cd":20,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Nashik"}},{"arcs":[[-11,83,84,-56,-66]],"type":"Polygon","properties":{"cartodb_id":421,"censuscode":525,"dt_cen_cd":29,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Osmanabad"}},{"arcs":[[-16,85,86,87,88,89,-24]],"type":"Polygon","properties":{"cartodb_id":462,"censuscode":520,"dt_cen_cd":24,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Raigarh"}},{"arcs":[[90,91,-43,-21,92,-87]],"type":"Polygon","properties":{"cartodb_id":478,"censuscode":528,"dt_cen_cd":32,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Ratnagiri"}},{"arcs":[[-85,93,94,95,-14,-57]],"type":"Polygon","properties":{"cartodb_id":538,"censuscode":526,"dt_cen_cd":30,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Solapur"}},{"arcs":[[96,-44,-92,97,-95]],"type":"Polygon","properties":{"cartodb_id":499,"censuscode":531,"dt_cen_cd":35,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Sangli"}},{"arcs":[[-96,-98,-91,-86,-15]],"type":"Polygon","properties":{"cartodb_id":505,"censuscode":527,"dt_cen_cd":31,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Satara"}},{"arcs":[[-47,-30,-41,-36,-60,-70,98]],"type":"Polygon","properties":{"cartodb_id":16,"censuscode":503,"dt_cen_cd":7,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Amravati"}},{"arcs":[[-5,-3,-72,-45,99]],"type":"Polygon","properties":{"cartodb_id":71,"censuscode":506,"dt_cen_cd":10,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Bhandara"}},{"arcs":[[-90,100,101,-25]],"type":"Polygon","properties":{"cartodb_id":383,"censuscode":518,"dt_cen_cd":22,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Mumbai Suburban"}},{"arcs":[[-68,102,-64,-82,-73,103]],"type":"Polygon","properties":{"cartodb_id":245,"censuscode":499,"dt_cen_cd":3,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Jalgaon"}},{"arcs":[[-52,-65,-61,-103,-67]],"type":"Polygon","properties":{"cartodb_id":246,"censuscode":514,"dt_cen_cd":18,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Jalna"}},{"arcs":[[-89,104,-101]],"type":"Polygon","properties":{"cartodb_id":382,"censuscode":519,"dt_cen_cd":23,"st_cen_cd":27,"st_nm":"Maharashtra","district":"Mumbai"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [10621, 7685], + [-17, -41], + [40, -173], + [-72, -19], + [-46, -39], + [20, -71], + [124, 39], + [37, -68], + [-17, -80], + [-5, -117], + [-23, -55], + [41, -103], + [-100, -28], + [-42, -55], + [-61, 3], + [-111, -45], + [41, -79], + [-26, -64], + [44, -21], + [33, 22], + [97, -30], + [30, -87], + [-18, -90], + [16, -33], + [-32, -75], + [-68, 4], + [-35, 28], + [-50, -30], + [-5, -34], + [119, -27], + [-42, -93], + [77, 2], + [36, -26], + [-6, -54], + [57, -54], + [69, -29], + [43, -38], + [-5, -123], + [79, -1], + [87, -70], + [46, 7], + [44, -60], + [44, -22], + [9, -64], + [-33, -33], + [-107, -25], + [34, -65], + [43, -32], + [-106, -77], + [-23, -32], + [-88, 0], + [-34, 55], + [-64, -25], + [-36, 103], + [-33, 30], + [-61, -73], + [-51, -19], + [-40, -96], + [-84, -46], + [5, -74], + [-55, -38], + [-34, -57], + [15, -34], + [-51, -117], + [-35, -51], + [0, -86], + [92, -107], + [14, -66], + [-70, -31], + [-72, -61], + [36, -45], + [-28, -25], + [-119, -8], + [-69, -28], + [-81, 64], + [-45, 68], + [-108, 26], + [-52, 68], + [61, 41], + [2, 116], + [-20, 155], + [-87, 25], + [-4, 65], + [113, 106], + [-29, 74], + [33, 85], + [37, 173], + [-37, 85], + [-46, 49], + [-44, 12], + [-67, 54], + [-16, 47], + [-42, 36] + ], + [ + [9587, 5878], + [-6, 179], + [-53, 91], + [-5, 55], + [82, 114], + [-38, 83], + [5, 74], + [45, 43], + [47, 5], + [30, -72], + [55, -24], + [51, 25], + [55, 90], + [-35, 112], + [-71, 36], + [29, 61], + [75, 29], + [7, 33], + [-67, 96], + [38, 98], + [-15, 80], + [-28, 47], + [15, 120], + [-34, 36], + [21, 106], + [-13, 62] + ], + [ + [9777, 7457], + [42, 35] + ], + [ + [9819, 7492], + [72, -35], + [54, 61], + [38, -28], + [100, -3], + [91, -50], + [59, 28], + [65, 119], + [14, 99], + [65, -22], + [47, 28], + [54, -6], + [67, 18], + [76, -16] + ], + [ + [9819, 7492], + [-40, 32], + [-10, 84], + [-76, 17], + [-7, 141], + [59, 16], + [51, 58], + [-8, 49], + [15, 79], + [127, -14], + [53, 66], + [-31, 78], + [27, 63], + [-46, 98], + [-36, 23], + [-69, 4], + [-39, 35], + [-49, -17], + [-107, 44], + [-36, 157], + [113, 70], + [54, 85], + [-2, 62] + ], + [ + [9762, 8722], + [15, 43], + [53, 5], + [37, -33], + [46, 34], + [48, -4], + [77, 80], + [36, -4], + [54, 41], + [97, -20], + [86, -105], + [62, -41], + [6, -44], + [48, -78], + [-29, -46], + [19, -45], + [54, 0], + [6, 38], + [95, -19], + [99, -95], + [85, 9], + [24, -32], + [-47, -80], + [-54, -44], + [-123, -63], + [-67, -14], + [-32, -112], + [20, -66], + [-33, -62], + [56, -122], + [97, -1], + [24, -157] + ], + [ + [5836, 4744], + [17, -89], + [66, -2], + [-14, -122], + [148, 27], + [-1, -81], + [58, 1], + [20, -33], + [75, -20], + [-5, -67], + [40, -27], + [-66, -71], + [37, -36] + ], + [ + [6211, 4224], + [-9, -32] + ], + [ + [6202, 4192], + [-1, -49] + ], + [ + [6201, 4143], + [-33, -14], + [-45, -193], + [-52, -7], + [-38, -97], + [-59, -18], + [18, -63], + [-69, 0], + [-139, 47], + [-42, -101], + [41, -9], + [-2, -106], + [-46, -7], + [-6, -141], + [-43, -66], + [-37, 8], + [-106, -31], + [-46, 31] + ], + [ + [5497, 3376], + [-24, 27], + [-66, 5], + [-6, 114], + [-61, 2], + [-39, 48], + [-65, -13], + [-160, 10], + [-63, 87], + [-67, -23], + [-73, 96], + [33, 134], + [23, 146], + [-45, 17], + [6, 57], + [-55, -6], + [-55, 19], + [24, 60], + [61, -13], + [-22, 146], + [30, 56] + ], + [ + [4873, 4345], + [4, 26], + [96, -15], + [48, -33], + [49, 16], + [59, -83], + [58, -40], + [120, -20], + [132, 66], + [9, 69], + [-97, 6], + [39, 59], + [30, 82], + [1, 66], + [68, 12], + [-13, 73] + ], + [ + [5476, 4629], + [25, 37], + [49, 3], + [138, 86], + [148, -11] + ], + [ + [2937, 4024], + [17, -58], + [-57, 2], + [-10, -32], + [61, -54], + [146, 30], + [57, -33], + [38, -79], + [108, 49], + [16, -31], + [-27, -114], + [86, -2], + [-37, -67], + [-52, -14], + [-53, -67], + [-41, -86], + [50, -16], + [15, 36], + [79, 5], + [2, -37], + [-79, -59], + [-73, -10], + [-74, 11], + [-31, 37], + [-93, 16], + [-7, 58], + [-56, 35], + [-61, -5], + [-90, 28] + ], + [ + [2771, 3567], + [-60, 58], + [-33, -36], + [-97, 18], + [-101, 3], + [-39, -16], + [-42, 26], + [-71, 8], + [-30, 37], + [-73, -40], + [-88, 44], + [-100, 12], + [-61, 35], + [-27, -15], + [-88, 17], + [-115, 72], + [-59, -29], + [-38, -160], + [-21, -31], + [-60, 7], + [-29, -21], + [-115, 39], + [-63, -29] + ], + [ + [1361, 3566], + [-62, 43], + [-21, 72], + [76, 97], + [-73, 25], + [-24, -15], + [-53, 39], + [-13, 62], + [-70, 35], + [-6, 43], + [-72, 38], + [30, 50], + [-57, 59], + [-7, 79], + [18, 66], + [-34, 8], + [-84, 98], + [46, 88], + [44, 36], + [-19, 79], + [-35, -16], + [26, 139], + [93, 134], + [-9, 47], + [37, 23], + [5, 53], + [67, 10], + [61, 64], + [-53, 49], + [12, 118] + ], + [ + [1184, 5189], + [15, 67], + [95, 22], + [72, 74], + [37, 7], + [-22, 86], + [57, 35], + [108, 7], + [-21, 81] + ], + [ + [1525, 5568], + [43, 10], + [59, -50], + [36, 26], + [63, -53], + [92, 25], + [38, -69], + [-2, -62], + [46, -36], + [91, -36], + [54, 0], + [71, -27], + [58, 33], + [4, -58], + [-43, -90], + [-34, 2], + [-48, -123], + [53, -51], + [12, -46], + [95, -107], + [23, -73], + [105, -27], + [13, -139], + [34, 11], + [68, -88], + [49, -32], + [-44, -49], + [96, -30], + [-9, -45], + [39, -75], + [-31, -27], + [41, -60], + [85, -35], + [21, 53], + [55, 30], + [35, -39], + [-16, -73], + [27, -47], + [66, 12], + [33, -30], + [-17, -51], + [51, -18] + ], + [ + [1623, 1533], + [13, -55], + [-51, -103], + [24, -54], + [60, -73], + [-68, -80], + [35, -54], + [-38, -30], + [18, -48], + [125, -158], + [9, -41], + [-136, -70], + [7, -49], + [128, 1], + [66, -15], + [6, -75], + [63, -5], + [47, -45], + [-46, -80], + [42, -24], + [16, -65], + [-30, -83], + [119, -17], + [-5, -50], + [74, -10] + ], + [ + [2101, 250], + [-28, -42], + [-39, -1], + [-45, -40], + [6, -53], + [-79, -89], + [-105, -25], + [-36, 29], + [-6, 86], + [-35, 80], + [-85, 12], + [-23, 71], + [-43, -88], + [-124, -28], + [-76, 10], + [-57, 182], + [-55, 84], + [-62, 41], + [-45, 5], + [-33, 53], + [-1, 92], + [-38, 29], + [21, 57], + [-27, 55], + [-57, 218], + [-52, 121], + [-38, 165], + [-40, 94], + [36, 32] + ], + [ + [935, 1400], + [45, -71], + [56, 1], + [65, -29], + [48, 40], + [56, -8], + [97, 87], + [62, 3], + [38, 71], + [48, -31], + [54, -2], + [4, 86], + [115, -14] + ], + [ + [812, 6658], + [30, -29], + [-9, -65], + [33, -4], + [100, -55], + [55, -6], + [28, -48], + [35, -3], + [-39, -99], + [26, -133], + [1, -61], + [25, -36], + [52, -1], + [3, -40], + [84, -170], + [73, -43] + ], + [ + [1309, 5865], + [8, -65], + [98, -56], + [-32, -63], + [21, -34], + [121, -79] + ], + [ + [1184, 5189], + [-167, 8], + [-70, -8], + [-139, -96], + [-65, 90], + [-29, -23], + [-174, -17], + [-1, -119], + [-50, -45], + [-67, 1] + ], + [ + [422, 4980], + [26, 67], + [-11, 117], + [18, 58], + [-62, 57], + [-35, 65], + [-74, 52], + [-51, -35], + [-49, 26] + ], + [ + [184, 5387], + [25, 99], + [-60, 71], + [-9, 159], + [-25, 21], + [-27, 78], + [15, 93], + [-35, 60], + [25, 54], + [-51, 30], + [14, 116], + [-56, 69], + [38, 50], + [-13, 66], + [29, 63], + [115, -32], + [-14, 63], + [-54, -4], + [3, 92], + [-24, 59], + [34, 82], + [82, -17], + [32, 32], + [33, 91], + [46, 27], + [114, -23], + [48, -137], + [36, -50], + [39, 22], + [103, -21], + [60, -50], + [51, 68], + [54, 40] + ], + [ + [7521, 8434], + [100, -85], + [9, -30], + [147, -24], + [102, -88], + [54, -89], + [42, 0], + [23, -67], + [59, -26], + [107, -69], + [6, -85], + [93, -104], + [81, -8], + [-1, -43], + [69, -10], + [40, -101], + [144, -48], + [73, -72], + [48, -14], + [61, -108], + [49, -30] + ], + [ + [8827, 7333], + [-14, -53], + [-64, -61], + [-49, -75], + [-143, 36], + [-29, -46], + [-45, 16], + [-24, -44], + [-69, 13], + [-107, -66], + [14, -109], + [-38, -31] + ], + [ + [8259, 6913], + [-85, -7], + [-40, 24], + [-21, 70], + [-60, 111], + [-95, -4], + [-53, 50], + [-38, 84], + [-130, -13], + [-178, 76], + [-21, 25], + [-17, 100], + [38, 72] + ], + [ + [7559, 7501], + [42, 62], + [-22, 59], + [20, 83], + [-40, 14], + [-32, 62], + [-96, 28], + [-51, 70], + [10, 180], + [-29, 57], + [18, 36], + [-68, 58], + [5, 33], + [-58, 73], + [47, 159], + [91, -40], + [125, -1] + ], + [ + [6718, 7306], + [-11, -51], + [32, -21], + [-28, -98], + [-62, -6], + [-35, -77], + [-10, -87], + [22, -12], + [37, -91], + [76, -24], + [-29, -85], + [46, -31], + [-13, -95], + [-61, -93], + [-60, -17], + [-74, 94], + [-81, -33], + [-119, 33], + [-29, -38], + [25, -32], + [-66, -133], + [-50, -30], + [-2, -37] + ], + [ + [6226, 6342], + [-50, -7], + [-13, 48], + [-40, 13], + [-7, 65], + [-137, -86], + [-55, 93], + [-33, 21], + [-85, -24], + [-96, -46], + [-86, -3], + [-18, -50], + [-68, 9], + [-36, -39], + [-9, -51], + [-64, 1], + [-18, -39] + ], + [ + [5411, 6247], + [-42, 29] + ], + [ + [5369, 6276], + [15, 31], + [-58, 30], + [26, 68], + [34, 34], + [4, 106], + [-51, 2], + [62, 113], + [118, 7], + [-11, 115], + [49, -9], + [53, 64], + [-7, 51] + ], + [ + [5603, 6888], + [21, 28], + [64, -3], + [21, 63], + [106, 47], + [60, 115], + [41, -2], + [104, -72], + [81, 10], + [-8, 62], + [51, -1], + [95, -42], + [7, 41], + [64, 26], + [-26, 50], + [15, 115], + [97, 15], + [7, 32], + [66, 2], + [-45, 75], + [106, 33], + [16, 71], + [55, -15], + [34, 53], + [34, 4] + ], + [ + [6669, 7595], + [22, -32], + [6, -119], + [25, -15], + [-33, -119], + [29, -4] + ], + [ + [8259, 6913], + [25, -75], + [54, 8], + [82, -22], + [52, -45], + [-7, -57], + [155, -154], + [60, -111], + [-29, -63], + [1, -46], + [77, -32], + [-22, -40], + [-94, -75], + [-48, -20], + [-95, 3], + [-13, -81], + [-62, -17], + [-30, 39], + [-41, -5] + ], + [ + [8324, 6120], + [-50, -1], + [-30, 30], + [-112, 10], + [-111, 34], + [-125, 19], + [-43, -42], + [-24, 34], + [-106, 29], + [-18, 63], + [-64, 6], + [-35, 44] + ], + [ + [7606, 6346], + [-46, -41], + [-51, 3], + [-135, 41], + [-85, -22], + [-34, 45], + [-46, -23], + [-87, -6], + [-75, -49], + [-66, -114], + [16, -84], + [47, -27], + [77, 6], + [47, -72], + [70, 29], + [56, -77], + [66, 28], + [64, -18], + [22, -54], + [-15, -81], + [-49, -16], + [-45, -90], + [-62, -36], + [-56, 45], + [-17, -48], + [-73, 68], + [-131, 12], + [-25, -14], + [6, -80], + [-66, -8], + [-66, -28], + [-67, 11], + [0, 31], + [55, 34], + [13, 58], + [-139, 37], + [-2, 89], + [-37, 45], + [-83, 38], + [-128, 27] + ], + [ + [6459, 6005], + [-32, 70], + [-76, 24], + [15, 111], + [-58, 6], + [25, 49], + [-107, 77] + ], + [ + [6718, 7306], + [19, 24], + [101, -28], + [39, -32], + [48, 40], + [41, -2], + [75, 86], + [54, -69], + [54, 19], + [62, 57], + [25, 56], + [33, 9], + [128, -20], + [73, 45], + [89, 10] + ], + [ + [2748, 1631], + [-3, -60], + [-48, -54], + [41, -49], + [-133, -73], + [-43, 6], + [-11, 109], + [-72, -10], + [-35, -32], + [-93, -38], + [-24, -76], + [-76, 38], + [-30, -36], + [-48, 14], + [32, -94], + [59, -33], + [5, -76], + [-14, -64], + [22, -97], + [43, 3], + [57, -53], + [83, -16], + [33, -35], + [-15, -61], + [-11, -139], + [-74, 34], + [-72, -47], + [-3, -62], + [83, 31], + [37, -16], + [-44, -140], + [-109, -153], + [28, -30], + [-5, -67], + [-106, -63], + [-57, 3], + [-44, 55] + ], + [ + [1623, 1533], + [16, 29], + [-52, 40], + [18, 58], + [-29, 42], + [-37, -3], + [-72, 85], + [42, 49], + [-28, 75], + [56, 5], + [7, 33], + [-40, 47], + [41, 45], + [51, -3], + [-23, 107], + [-144, 157] + ], + [ + [1429, 2299], + [90, -27], + [5, 42], + [63, -19], + [118, -137], + [59, -29], + [32, -39], + [-16, -52], + [69, -12], + [22, -90], + [52, -28], + [58, 10], + [36, -41], + [39, 22], + [98, -18], + [64, 8], + [55, -21], + [35, -37], + [42, 36], + [24, -52], + [110, 21], + [53, -15], + [32, -58], + [97, -30], + [82, -102] + ], + [ + [9253, 8751], + [-76, -62], + [-47, -98], + [43, -11], + [114, -190], + [5, -76], + [-25, -61], + [-2, -72], + [-55, 8], + [4, -61], + [133, -122], + [63, -102], + [-21, -78], + [-37, -21], + [-45, -88], + [-55, 8], + [25, -67], + [-33, -44], + [-1, -48], + [-35, -54] + ], + [ + [9208, 7512], + [-99, -66], + [-80, 27], + [-72, -139], + [-130, -1] + ], + [ + [7521, 8434], + [133, 77], + [69, 4], + [63, 31], + [-19, 141] + ], + [ + [7767, 8687], + [68, 6], + [38, 33], + [69, -20], + [33, -41], + [48, -14], + [85, 7], + [54, -26], + [50, 38], + [229, -4], + [6, 47], + [-32, 65], + [84, 80], + [46, -24], + [90, 10], + [69, 30], + [27, 48], + [97, -15], + [20, 95], + [67, -31], + [148, -28], + [22, 24], + [104, -25], + [23, -124], + [41, -67] + ], + [ + [5411, 6247], + [37, -15], + [-25, -81], + [39, -19], + [48, -110], + [133, 16], + [4, -84], + [66, -5], + [53, -32], + [35, -114], + [-27, -98], + [-37, -48], + [1, -42], + [-35, -58], + [9, -119], + [25, -62], + [123, -6], + [51, -31], + [59, -109], + [12, -78] + ], + [ + [5982, 5152], + [-55, -54], + [-11, -117], + [-38, -71], + [-101, -49], + [8, -47], + [75, 5], + [8, -52], + [-32, -23] + ], + [ + [5476, 4629], + [-68, 18], + [-12, 85], + [-59, 74], + [-52, 20], + [-1, 91], + [-59, 7], + [-39, -32], + [-43, 43], + [0, 65], + [-30, 10], + [-23, 119], + [-37, 6], + [-44, 57], + [-31, -42], + [-46, 17], + [54, 62], + [-12, 54], + [15, 66], + [-69, 35], + [-115, -29], + [-23, 53] + ], + [ + [4782, 5408], + [5, 60], + [70, 23], + [27, 48], + [7, 97], + [33, 47], + [67, 7], + [41, 92], + [63, 14], + [15, 186], + [46, 15], + [8, 123], + [52, 133] + ], + [ + [5216, 6253], + [104, -18], + [49, 41] + ], + [ + [2722, 6395], + [-33, -54], + [-1, -72], + [-56, -17], + [-7, -71], + [121, -49], + [29, 21], + [22, -87], + [29, -48], + [49, 38], + [1, -99], + [49, 33], + [38, -35], + [50, 11], + [107, -14], + [40, -36], + [51, 3], + [32, -30], + [41, 9], + [50, -26], + [87, 2], + [49, -79], + [111, -67], + [56, 9], + [-32, -94], + [46, -58], + [61, 30], + [90, 5] + ], + [ + [3802, 5620], + [12, -51], + [64, -17], + [-22, -67], + [30, -31], + [-32, -47], + [-78, -42], + [-72, -86], + [58, -29], + [6, -66], + [45, -32], + [-103, -37], + [-61, -4], + [-59, 25], + [-32, -13], + [-13, -77], + [80, -13], + [-7, -49], + [-70, -15], + [-22, 18], + [-13, 115], + [-31, -12], + [-29, 73], + [-38, -27], + [-2, -64], + [-27, -20], + [-125, 25], + [46, 104], + [-74, -36], + [-99, 18], + [-51, 27], + [-28, -61], + [-7, -71], + [48, -11], + [11, -54], + [-58, -53], + [-53, 34], + [-47, -22], + [-19, -44], + [93, -88], + [1, -46], + [33, -29], + [59, -5], + [66, -79], + [27, -11], + [55, -73], + [109, -95], + [20, 127], + [54, 3], + [54, -25], + [98, 114], + [79, -38], + [16, 86], + [57, -58], + [6, -45], + [79, -56], + [71, 27], + [8, -58], + [33, -7] + ], + [ + [3948, 4552], + [-52, -22], + [-1, -60], + [-77, -23], + [-51, -55], + [-45, -82], + [-98, 42], + [-43, -63] + ], + [ + [3581, 4289], + [-71, -15], + [-28, 51], + [-108, -34], + [-33, 9], + [-40, -54], + [-17, -82], + [-45, -21], + [-57, 25], + [-17, -50], + [-118, -38], + [-11, -31], + [-99, -25] + ], + [ + [1309, 5865], + [58, -1], + [79, 48], + [75, 19], + [7, 43], + [40, 36], + [39, 82], + [79, 8], + [-6, -40], + [25, -56], + [208, -31], + [68, -25], + [62, 125], + [105, 23], + [44, 51], + [54, -16], + [20, 46], + [43, 5], + [-1, 101], + [-117, 56], + [-37, 42], + [93, 71], + [215, -28], + [69, 14], + [57, -31], + [134, -12] + ], + [ + [5603, 6888], + [-38, 51], + [-125, 56], + [37, 79], + [-45, 76], + [24, 73], + [78, 8], + [9, 60], + [-18, 72], + [12, 36], + [-44, 56], + [-6, 74], + [34, 11], + [14, 95], + [-34, 17], + [23, 87], + [-90, 73], + [2, 21], + [102, 1], + [21, 59], + [-14, 61], + [15, 42], + [-20, 84], + [19, 32], + [-22, 104], + [15, 12] + ], + [ + [5552, 8228], + [97, 2], + [88, 17], + [114, 7], + [23, 58], + [55, -33], + [69, -7], + [65, 27], + [25, -49], + [-24, -31], + [14, -160], + [-33, -56], + [30, -20], + [-38, -145], + [-15, -90], + [53, -13], + [186, 2], + [89, -20], + [132, 29], + [71, -21], + [55, -59], + [54, -15], + [7, -56] + ], + [ + [4353, 7305], + [-79, -134], + [-76, -24], + [-31, -116], + [7, -74], + [-50, 6], + [-45, -33], + [15, -34], + [-27, -68], + [10, -53], + [-47, -19], + [-29, -127], + [-51, -5], + [6, -109], + [49, -40], + [14, -59], + [37, -31], + [-19, -43], + [-9, -111], + [-26, -88], + [11, -61], + [-3, -116], + [-57, -27], + [13, -52], + [68, -11], + [7, -41], + [-16, -101], + [-35, -45], + [-12, -127] + ], + [ + [3978, 5562], + [-51, -3], + [-125, 61] + ], + [ + [2722, 6395], + [16, 63], + [71, 137], + [-31, 78], + [12, 82], + [89, 26], + [35, 53], + [56, -25], + [-3, -74], + [102, 6], + [4, 131] + ], + [ + [3073, 6872], + [87, 99], + [65, -43], + [15, 39], + [88, 22], + [-23, 85], + [71, 44], + [3, 58], + [102, 67], + [21, 72], + [51, -1], + [38, 33], + [97, -26], + [5, -74], + [56, 21], + [32, -25], + [85, 58], + [-5, 44], + [48, 34], + [43, -16], + [46, 33], + [50, 5], + [10, 62], + [49, -13], + [0, -68], + [71, -2], + [1, -51], + [89, -28], + [20, 82], + [38, 11], + [27, -89] + ], + [ + [3978, 5562], + [42, -1], + [63, -38], + [89, 5], + [5, 45], + [51, 11], + [58, -38], + [112, 8], + [-21, -84], + [35, -38], + [50, 8], + [56, 55], + [36, -74], + [59, -10], + [20, 41], + [88, -36], + [61, -8] + ], + [ + [4873, 4345], + [-31, 30], + [-209, 16], + [-65, -18], + [-123, 46], + [-23, 56], + [-110, 10], + [-45, 28], + [-39, -22], + [-59, 36], + [-107, 15], + [-8, -60], + [-61, 17], + [-45, 53] + ], + [ + [5216, 6253], + [-44, 49], + [-9, 49], + [-168, 13], + [-20, -47], + [-74, -35], + [-56, 5], + [-110, -35], + [-60, 20], + [-40, -10], + [-77, 139], + [-38, 4], + [-64, 61], + [78, 42], + [-6, 53], + [50, 7], + [0, 51], + [54, -1], + [12, 82], + [22, 10], + [36, 110], + [22, 3], + [39, 94], + [-46, -4], + [-43, 64], + [-61, 35], + [-45, -43], + [-25, -70], + [-75, 42], + [-65, 10], + [24, 42], + [-3, 109], + [20, 46], + [-9, 92], + [65, 16], + [55, 37], + [-10, 123], + [-29, 6] + ], + [ + [4516, 7422], + [-18, 36], + [20, 105], + [-34, 30], + [84, 79], + [88, 120], + [-47, 21], + [16, 53], + [90, 84], + [6, 48], + [83, -31], + [73, -80], + [54, -11], + [84, 40], + [20, 81], + [-19, 66] + ], + [ + [5016, 8063], + [39, 41], + [55, 11], + [52, 123], + [51, -13], + [40, 24], + [87, -19], + [11, 54], + [36, 27], + [3, 51] + ], + [ + [5390, 8362], + [82, 14], + [34, -53], + [25, -91], + [21, -4] + ], + [ + [9587, 5878], + [-60, 14], + [-37, -29], + [-123, -27], + [-27, -84], + [-118, 14], + [-57, -30], + [-40, 53], + [-37, 0], + [-57, 41], + [-171, 75], + [9, -51], + [-18, -75], + [-64, -101], + [-116, 102], + [-114, 18], + [-34, 32], + [-40, 82], + [8, 47], + [-71, 27], + [-77, -17], + [6, 60], + [-25, 91] + ], + [ + [9208, 7512], + [140, -19], + [13, -26], + [94, -7], + [80, 25], + [12, 67], + [37, -20], + [18, -49], + [102, 1], + [73, -27] + ], + [ + [3436, 8559], + [-60, -16], + [-48, -94], + [19, -67], + [-47, -85], + [-84, -36], + [-12, -29], + [-93, 0], + [-95, -60], + [-8, -56], + [-39, -74], + [45, -15], + [40, -62], + [-9, -124], + [28, -1], + [47, -72], + [21, -81], + [-32, -26], + [43, -83], + [-55, -54], + [-32, -80], + [-98, -33], + [-56, -2] + ], + [ + [2911, 7409], + [-12, 34], + [-91, 16], + [-37, 32], + [-80, 8], + [14, 62], + [-52, 91], + [-64, 37], + [-204, -27], + [-85, 59], + [-91, 14], + [-63, -6], + [-158, 21], + [-105, -43], + [-65, 0], + [-42, 23], + [-40, -18] + ], + [ + [1736, 7712], + [-19, 12], + [-10, 87], + [-36, 38], + [14, 74], + [-67, 21] + ], + [ + [1618, 7944], + [45, 46], + [102, 24], + [-12, 62], + [69, 50], + [109, 31], + [-35, 45], + [84, 62], + [57, 19], + [65, -6], + [14, 27], + [67, 13], + [113, -25], + [-1, 28], + [103, 17], + [8, -38], + [72, 3], + [8, 75], + [-25, 93], + [37, 47], + [19, 65], + [70, -38], + [48, 18], + [40, -24], + [63, 5], + [17, 100], + [72, 23], + [7, 132], + [20, 56] + ], + [ + [2854, 8854], + [73, -8], + [54, 30], + [169, -58], + [79, -36], + [40, -61], + [31, -82], + [31, -30], + [105, -50] + ], + [ + [7606, 6346], + [-22, -93], + [61, -15], + [0, -38], + [38, -48], + [-30, -100], + [-80, -35], + [3, -52], + [31, -74], + [-19, -67], + [20, -137], + [-117, -47], + [-50, -56], + [-10, -63], + [23, -31], + [-18, -133], + [-45, -17], + [-31, 24], + [-109, 36], + [-130, 103], + [-119, -57], + [9, -69], + [-31, -99], + [1, -109], + [-60, -23], + [-4, -70], + [-48, 16], + [8, -119], + [67, 2], + [-6, -49], + [55, 4], + [-18, -60], + [55, -4], + [24, -60], + [61, -38], + [-144, -51], + [-68, -167], + [-72, -27], + [-5, -49], + [24, -79], + [-47, -51], + [-74, -40], + [-22, 39], + [-59, -9], + [6, -108], + [-55, -58], + [-15, -70], + [-38, -34], + [9, -37], + [57, -46], + [-27, -25], + [-114, -46], + [-77, 58], + [-61, 13], + [41, 48], + [10, 84], + [-49, 47], + [-68, 14], + [-66, -31] + ], + [ + [6202, 4192], + [9, 32] + ], + [ + [5982, 5152], + [-23, -42], + [73, -8], + [34, 68], + [33, 21], + [-17, 58], + [8, 89], + [72, 65], + [8, 69], + [48, -9], + [45, 58], + [68, -22], + [117, 74], + [-19, 26], + [76, 88], + [-32, 47], + [-14, 271] + ], + [ + [1618, 7944], + [-73, 71], + [-6, 33], + [-141, 49], + [-77, 47], + [142, 50], + [109, 7], + [-3, 74], + [16, 67], + [80, -7], + [77, 51], + [18, 141], + [72, 37], + [44, 2], + [40, 56], + [111, -6], + [84, 8], + [112, 30], + [29, 24], + [11, 66], + [-58, 27], + [-30, -34], + [-42, 22], + [-45, -31], + [-32, 47], + [-35, -14], + [-116, 11], + [-116, -25], + [-59, -47], + [-106, -21], + [-21, 38], + [-30, 116], + [8, 58], + [77, 8], + [16, 32], + [-10, 64], + [-59, 47], + [-25, 103], + [19, 39], + [51, 0], + [193, 99], + [32, 25], + [123, 45], + [84, -41], + [121, 15], + [12, 42], + [68, 18], + [52, 64], + [63, 16], + [18, -88], + [60, -25], + [46, -67], + [-13, -28], + [-17, -158], + [9, -87], + [53, -7], + [52, -81], + [99, -17], + [56, -35], + [93, -20] + ], + [ + [2911, 7409], + [-25, -139], + [-46, -2], + [16, -100], + [86, -78], + [39, -150], + [5, -57], + [87, -11] + ], + [ + [812, 6658], + [46, 43], + [24, 79], + [85, -22], + [71, 13], + [-9, 60], + [8, 109], + [-15, 97], + [46, 125], + [36, 42], + [7, 130], + [-54, 17], + [-50, 85], + [49, 18], + [48, 84], + [29, -60], + [56, -11], + [118, -78], + [14, -61], + [39, -25], + [48, 23], + [63, -16], + [53, 51], + [79, 32], + [-5, 115], + [58, 41], + [48, -9], + [38, 28], + [-12, 39], + [6, 105] + ], + [ + [5497, 3376], + [-4, -61], + [68, -45], + [-16, -40], + [-50, -30], + [-55, -78], + [-11, -68], + [-116, 112], + [-23, -71], + [-36, 82], + [-49, -7], + [0, -64], + [-50, -2], + [-2, -65], + [-76, -37] + ], + [ + [5077, 3002], + [-64, 20], + [-3, 38], + [-81, 17], + [-27, 47], + [-37, -2], + [-43, -44], + [-66, -23], + [-54, 25], + [-6, 81], + [-66, 36], + [-125, -37], + [21, 112], + [-106, 33], + [-27, -29], + [-58, 21], + [-41, 67], + [-8, 128], + [40, 51], + [51, -13], + [7, -38], + [65, 2], + [50, 22], + [24, 66], + [-73, 74], + [-25, 58], + [23, 44], + [-29, 78], + [-19, 134], + [-50, 90], + [-119, 30], + [-47, 83], + [-47, -9], + [-27, -56], + [31, -53], + [-56, -53], + [-46, 13], + [-49, -87], + [8, -44], + [-67, -6], + [-56, -156], + [-57, 59], + [-81, 5], + [-2, 127], + [-37, 50], + [-55, 106], + [-72, 33], + [-10, 157], + [20, 30] + ], + [ + [1361, 3566], + [-44, -65], + [13, -24], + [-134, -105], + [46, -30] + ], + [ + [1242, 3342], + [-48, 8], + [-54, -26], + [-71, -9], + [-4, 63], + [-53, -28], + [-49, 107], + [-24, 25], + [24, 49], + [-20, 29], + [-57, -2], + [-11, 51], + [-41, 17], + [-57, -22], + [-62, 9], + [-57, -66], + [-26, -55], + [-62, 12], + [-55, -34] + ], + [ + [515, 3470], + [-28, 75], + [5, 47], + [-54, 122], + [20, 43], + [-13, 61], + [-35, 28], + [-23, 92], + [40, 52], + [-66, 64], + [-29, 147], + [40, 132], + [-26, 57], + [-48, 52], + [-18, 104], + [17, 94], + [-1, 70], + [-34, 61] + ], + [ + [262, 4771], + [40, 96], + [60, 59], + [-23, 42] + ], + [ + [339, 4968], + [83, 12] + ], + [ + [1242, 3342], + [35, -43], + [-18, -31], + [26, -47], + [-48, -108], + [65, -13], + [103, -57], + [74, -174], + [-7, -37], + [-48, -36], + [-1, -123], + [-55, -64], + [31, -51], + [-9, -71], + [21, -51] + ], + [ + [1411, 2436], + [30, -89], + [-12, -48] + ], + [ + [935, 1400], + [-14, 63], + [30, 26], + [-68, 197], + [20, 63], + [-32, 55], + [-15, 87], + [16, 121], + [-26, 70], + [24, 85], + [-98, 287], + [31, 66], + [-32, 77], + [-42, 18], + [9, 118], + [-16, 68], + [-56, 69], + [5, 69], + [-37, 132], + [28, 38], + [-54, 132], + [-29, 102], + [-64, 127] + ], + [ + [5077, 3002], + [-17, -60], + [-113, -14], + [25, -180], + [-22, -59], + [53, 3], + [-15, -87], + [62, -9], + [3, -32], + [-39, -53], + [-86, 26], + [-56, 2], + [-8, 38], + [-55, 10], + [-89, -33], + [-56, 37], + [-256, -62], + [-50, 44], + [1, 77], + [-94, 25], + [-18, -78], + [-100, 76], + [-62, -14], + [-14, 61], + [-61, 35], + [-26, -126], + [-51, -14], + [9, -48], + [38, -11], + [-10, -58] + ], + [ + [3970, 2498], + [-63, -29], + [-56, -67], + [-125, 37], + [-25, -79], + [-48, -30], + [-8, 66], + [-98, -30], + [-26, -47], + [-59, 0], + [30, 106], + [-75, 17], + [-16, -45], + [-133, 17], + [-1, -38], + [-84, 4], + [-69, -45], + [1, -100], + [-50, 6], + [-14, 46], + [-70, 49], + [57, 117], + [71, 28], + [18, 81], + [42, 29], + [-9, 58], + [46, 19], + [-3, 110], + [-78, -39], + [-40, 74], + [60, 34], + [-112, 126] + ], + [ + [3033, 2973], + [-22, 71], + [-93, 106], + [-85, 49], + [-57, 5], + [-38, 40], + [-9, 58], + [-59, 33], + [45, 152], + [-5, 38], + [61, 42] + ], + [ + [3970, 2498], + [36, -46], + [34, -2], + [8, -84], + [-44, -40], + [1, -39], + [57, -69], + [10, -62], + [-17, -129], + [-32, -48], + [-46, 27], + [-2, 50], + [-53, 4], + [1, -62], + [-51, 4], + [-30, -29], + [-57, 57], + [-50, -33], + [-49, 19], + [-66, -35], + [-77, 3], + [-4, -112], + [-57, -21], + [-18, -35], + [-63, 2], + [-15, 33], + [-104, 84], + [0, 38], + [-62, -13], + [-60, 11], + [-75, -97], + [-49, -36], + [6, -103], + [-89, -38], + [-96, -17], + [-57, -48], + [-52, -1] + ], + [ + [1411, 2436], + [71, 14], + [30, -36], + [82, -31], + [53, -55], + [20, -52], + [127, -37], + [73, -56], + [81, 15], + [120, 70], + [83, -13], + [41, 48], + [14, 95], + [-32, 28], + [-11, 55], + [50, 33], + [-43, 101], + [48, 55], + [264, -56], + [54, 48], + [59, -8], + [42, 47], + [46, -69], + [67, -6], + [-11, 47], + [19, 47], + [-14, 44], + [88, -16], + [73, -33], + [69, 81], + [-4, 73], + [63, 104] + ], + [ + [5390, 8362], + [-49, 78], + [145, 109], + [15, 50], + [55, 35], + [10, 34], + [-39, 49], + [44, 110], + [51, -7], + [25, 33], + [53, -21], + [142, 119], + [116, 54], + [51, 10], + [116, -46], + [23, 35], + [45, -3], + [25, 65], + [167, -5], + [65, 11], + [63, -21], + [50, -54], + [34, -65], + [18, -119], + [47, -66], + [-54, -20], + [-85, 37], + [-62, 3], + [-55, -35], + [29, -89], + [41, -23], + [24, -117], + [32, -1], + [22, 65], + [43, -33], + [117, -8], + [124, -39], + [15, 28], + [59, 8], + [8, 32], + [134, -50], + [109, 36], + [112, 53], + [142, 88], + [16, 88], + [46, -7], + [72, 25], + [194, 11], + [22, -112] + ], + [ + [9253, 8751], + [149, 19], + [114, 67], + [80, -31], + [87, -74], + [79, -10] + ], + [ + [339, 4968], + [-24, 18], + [-27, 94], + [-55, -33] + ], + [ + [233, 5047], + [0, 133], + [-51, 49], + [19, 51], + [-20, 38], + [3, 69] + ], + [ + [4516, 7422], + [-72, -26], + [-32, -37], + [-3, -72], + [-56, 18] + ], + [ + [3436, 8559], + [238, -44], + [63, 12], + [125, -10], + [32, -22], + [58, 29], + [51, -16], + [154, 18], + [120, -15], + [74, 24], + [96, -5], + [34, -28], + [91, -36], + [62, 31], + [41, -112], + [40, -57], + [11, -130], + [-53, 10], + [11, -76], + [65, -53], + [105, 7], + [26, -29], + [136, 6] + ], + [ + [262, 4771], + [-46, 87], + [22, 44], + [-19, 68], + [14, 77] + ] + ], + "transform": { + "scale": [0.0007455174425404626, 0.0006779128097498489], + "translate": [72.64435308093887, 15.61122743009818] + }, + "objects": { + "maharashtra_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3]], + "type": "Polygon", + "properties": { + "cartodb_id": 193, + "censuscode": 508, + "dt_cen_cd": 12, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Garhchiroli" + } + }, + { + "arcs": [[-4, 4, 5]], + "type": "Polygon", + "properties": { + "cartodb_id": 205, + "censuscode": 507, + "dt_cen_cd": 11, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Gondiya" + } + }, + { + "arcs": [[6, 7, 8, 9, 10, 11, 12]], + "type": "Polygon", + "properties": { + "cartodb_id": 337, + "censuscode": 524, + "dt_cen_cd": 28, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Latur" + } + }, + { + "arcs": [[13, 14, 15, 16, 17]], + "type": "Polygon", + "properties": { + "cartodb_id": 452, + "censuscode": 521, + "dt_cen_cd": 25, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Pune" + } + }, + { + "arcs": [[18, 19, 20]], + "type": "Polygon", + "properties": { + "cartodb_id": 528, + "censuscode": 529, + "dt_cen_cd": 33, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Sindhudurg" + } + }, + { + "arcs": [[21, 22, -17, 23, 24, 25]], + "type": "Polygon", + "properties": { + "cartodb_id": 562, + "censuscode": 517, + "dt_cen_cd": 21, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Thane" + } + }, + { + "arcs": [[26, 27, 28, 29]], + "type": "Polygon", + "properties": { + "cartodb_id": 609, + "censuscode": 504, + "dt_cen_cd": 8, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Wardha" + } + }, + { + "arcs": [[30, 31, 32, 33, 34, 35]], + "type": "Polygon", + "properties": { + "cartodb_id": 610, + "censuscode": 502, + "dt_cen_cd": 6, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Washim" + } + }, + { + "arcs": [[-29, 36, 37, 38, 39, -31, 40]], + "type": "Polygon", + "properties": { + "cartodb_id": 623, + "censuscode": 510, + "dt_cen_cd": 14, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Yavatmal" + } + }, + { + "arcs": [[41, -19, 42, 43]], + "type": "Polygon", + "properties": { + "cartodb_id": 313, + "censuscode": 530, + "dt_cen_cd": 34, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Kolhapur" + } + }, + { + "arcs": [[44, 45, -27, 46, 47]], + "type": "Polygon", + "properties": { + "cartodb_id": 393, + "censuscode": 505, + "dt_cen_cd": 9, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Nagpur" + } + }, + { + "arcs": [[-33, 48, 49, -13, 50, 51, 52]], + "type": "Polygon", + "properties": { + "cartodb_id": 432, + "censuscode": 513, + "dt_cen_cd": 17, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Parbhani" + } + }, + { + "arcs": [[53, 54, 55, 56, -18, -23, 57]], + "type": "Polygon", + "properties": { + "cartodb_id": 4, + "censuscode": 522, + "dt_cen_cd": 26, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Ahmednagar" + } + }, + { + "arcs": [[-35, 58, 59]], + "type": "Polygon", + "properties": { + "cartodb_id": 7, + "censuscode": 501, + "dt_cen_cd": 5, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Akola" + } + }, + { + "arcs": [[60, 61, -54, 62, 63]], + "type": "Polygon", + "properties": { + "cartodb_id": 30, + "censuscode": 515, + "dt_cen_cd": 19, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Aurangabad" + } + }, + { + "arcs": [[64, -51, -12, 65, -55, -62]], + "type": "Polygon", + "properties": { + "cartodb_id": 80, + "censuscode": 523, + "dt_cen_cd": 27, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Bid" + } + }, + { + "arcs": [[-59, -34, -53, 66, 67, 68, 69]], + "type": "Polygon", + "properties": { + "cartodb_id": 94, + "censuscode": 500, + "dt_cen_cd": 4, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Buldana" + } + }, + { + "arcs": [[-2, 70, -37, -28, -46, 71]], + "type": "Polygon", + "properties": { + "cartodb_id": 108, + "censuscode": 509, + "dt_cen_cd": 13, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Chandrapur" + } + }, + { + "arcs": [[72, 73, 74, 75, 76]], + "type": "Polygon", + "properties": { + "cartodb_id": 154, + "censuscode": 498, + "dt_cen_cd": 2, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Dhule" + } + }, + { + "arcs": [[77, -9, 78, -7, -50, 79, -39]], + "type": "Polygon", + "properties": { + "cartodb_id": 399, + "censuscode": 511, + "dt_cen_cd": 15, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Nanded" + } + }, + { + "arcs": [[-76, 80]], + "type": "Polygon", + "properties": { + "cartodb_id": 400, + "censuscode": 497, + "dt_cen_cd": 1, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Nandurbar" + } + }, + { + "arcs": [[-40, -80, -49, -32]], + "type": "Polygon", + "properties": { + "cartodb_id": 227, + "censuscode": 512, + "dt_cen_cd": 16, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Hingoli" + } + }, + { + "arcs": [[81, -63, -58, -22, 82, -74]], + "type": "Polygon", + "properties": { + "cartodb_id": 404, + "censuscode": 516, + "dt_cen_cd": 20, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Nashik" + } + }, + { + "arcs": [[-11, 83, 84, -56, -66]], + "type": "Polygon", + "properties": { + "cartodb_id": 421, + "censuscode": 525, + "dt_cen_cd": 29, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Osmanabad" + } + }, + { + "arcs": [[-16, 85, 86, 87, 88, 89, -24]], + "type": "Polygon", + "properties": { + "cartodb_id": 462, + "censuscode": 520, + "dt_cen_cd": 24, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Raigarh" + } + }, + { + "arcs": [[90, 91, -43, -21, 92, -87]], + "type": "Polygon", + "properties": { + "cartodb_id": 478, + "censuscode": 528, + "dt_cen_cd": 32, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Ratnagiri" + } + }, + { + "arcs": [[-85, 93, 94, 95, -14, -57]], + "type": "Polygon", + "properties": { + "cartodb_id": 538, + "censuscode": 526, + "dt_cen_cd": 30, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Solapur" + } + }, + { + "arcs": [[96, -44, -92, 97, -95]], + "type": "Polygon", + "properties": { + "cartodb_id": 499, + "censuscode": 531, + "dt_cen_cd": 35, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Sangli" + } + }, + { + "arcs": [[-96, -98, -91, -86, -15]], + "type": "Polygon", + "properties": { + "cartodb_id": 505, + "censuscode": 527, + "dt_cen_cd": 31, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Satara" + } + }, + { + "arcs": [[-47, -30, -41, -36, -60, -70, 98]], + "type": "Polygon", + "properties": { + "cartodb_id": 16, + "censuscode": 503, + "dt_cen_cd": 7, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Amravati" + } + }, + { + "arcs": [[-5, -3, -72, -45, 99]], + "type": "Polygon", + "properties": { + "cartodb_id": 71, + "censuscode": 506, + "dt_cen_cd": 10, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Bhandara" + } + }, + { + "arcs": [[-90, 100, 101, -25]], + "type": "Polygon", + "properties": { + "cartodb_id": 383, + "censuscode": 518, + "dt_cen_cd": 22, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Mumbai Suburban" + } + }, + { + "arcs": [[-68, 102, -64, -82, -73, 103]], + "type": "Polygon", + "properties": { + "cartodb_id": 245, + "censuscode": 499, + "dt_cen_cd": 3, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Jalgaon" + } + }, + { + "arcs": [[-52, -65, -61, -103, -67]], + "type": "Polygon", + "properties": { + "cartodb_id": 246, + "censuscode": 514, + "dt_cen_cd": 18, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Jalna" + } + }, + { + "arcs": [[-89, 104, -101]], + "type": "Polygon", + "properties": { + "cartodb_id": 382, + "censuscode": 519, + "dt_cen_cd": 23, + "st_cen_cd": 27, + "st_nm": "Maharashtra", + "district": "Mumbai" + } + } + ] + } + } +} diff --git a/public/maps/manipur.json b/public/maps/manipur.json index 65ef37af40..016afc8e59 100644 --- a/public/maps/manipur.json +++ b/public/maps/manipur.json @@ -1 +1,1413 @@ -{"type":"Topology","arcs":[[[4091,3920],[-113,-37],[-104,13],[-41,-26],[-24,-57],[-89,70],[-48,-6],[-81,-140],[-88,-51],[-32,13],[-105,115],[-72,-51],[-88,-13],[-33,-50],[0,-57],[-24,-7],[-113,45],[-112,-70],[-48,76],[-72,19],[-33,-12],[-96,-146],[-105,82],[-96,26],[-96,76],[-33,-51],[-233,51],[-40,-13],[-24,-32],[-161,-18],[-112,18],[-41,-12],[24,-19],[-48,-64],[-32,-13],[16,-19],[-72,-89],[48,-12],[-16,-58],[-73,-6],[-40,25],[-64,-12],[-72,-83],[-48,19],[-41,76],[-48,6],[-24,32],[-48,7],[-8,-45],[-56,13],[-9,63],[32,19],[33,70],[40,26]],[[1228,3611],[40,44],[-24,39],[16,19],[48,-26],[32,7],[-32,25],[16,13],[-24,13],[-8,57],[73,-19],[23,76],[-16,32],[8,51],[-40,32],[8,18],[48,0],[16,58],[-48,38],[-24,89],[16,13],[40,-7],[0,38],[-80,-19],[16,89],[48,64],[-56,6],[-8,20],[-330,31],[-16,13],[72,159],[80,95],[41,108],[56,7],[16,-32],[40,-6],[137,89],[8,57],[113,229],[-8,13],[-170,25]],[[1355,5169],[84,78],[-16,19],[16,19],[24,0],[8,25],[-24,26],[16,0],[16,38],[32,-6],[8,12],[-24,58],[64,0],[16,19],[-17,57],[-41,6],[31,45],[-48,-7],[23,26],[57,-7],[-28,63],[74,-19],[-10,38],[15,39],[-25,31],[-33,0],[8,32],[-16,13],[31,73],[-7,32],[32,-7],[11,17],[-20,11],[-22,-16],[-14,16],[-36,-14],[27,63],[-16,14],[50,14],[-12,36],[46,36],[-5,30],[30,12],[-1,28],[92,9],[13,-24],[29,2],[28,2],[17,25],[26,-23],[-2,41],[26,12],[-16,30],[37,68],[62,70],[68,21],[27,94],[49,56],[-18,22],[28,74],[-20,98],[32,91],[178,222],[22,102],[84,87],[96,16],[32,75],[104,56],[85,12],[78,74],[-8,-121],[24,-33],[61,-15],[41,14],[89,-16],[-37,-112],[5,-47],[63,3],[24,20],[116,-17],[75,25],[48,-20],[65,-96],[87,-38],[25,-45],[-10,-37],[84,-9],[169,244],[31,78],[36,17],[10,50],[78,98],[3,50],[38,16],[-4,87],[84,12],[32,154],[106,-18],[36,18],[28,71],[94,45],[2,54],[37,53],[100,63],[93,33],[-3,24],[161,183]],[[4699,8219],[48,-13],[30,10],[61,-170],[115,-4],[104,-24],[96,7],[76,-32],[78,-63],[31,-38],[5,-53],[-35,-5],[-45,-42],[-36,-100],[-58,-40],[5,-51],[-19,-25],[36,5],[140,-34],[56,-73],[33,-11],[59,-100],[63,-12],[-155,-86],[-143,-7],[-206,-140],[-75,-77],[-141,-38],[-65,-72],[-3,-37],[-70,-75],[-23,2],[-8,-48],[-21,-16],[9,-14],[-116,-99],[36,-124],[55,-47],[25,-51],[33,-231],[57,-78],[38,-109],[-7,-33],[-85,6],[-50,-30],[-3,-71],[30,-32],[-25,-20],[29,-19],[4,-32],[-6,-39],[-37,-39],[-117,-26],[-144,-82],[-123,-39],[-114,-114],[26,-95],[114,-102],[1,-45],[32,-44],[-48,-32],[-40,-70],[16,-44],[-40,-25],[-64,0],[-16,-32],[-41,0],[-88,-76],[-80,-32],[124,-434],[74,-483]],[[8542,8964],[-32,-62],[-91,-69],[-35,-142],[-175,-228],[-77,-193],[16,-25],[-93,-92],[-67,-131],[-43,-6],[16,-20],[-36,-45],[22,-26],[-47,-77],[14,-155],[-102,-89],[-81,-130],[-49,-33],[-72,-147],[-155,-149],[-79,-51],[-146,-56],[-42,-95],[-29,-29],[-98,-40],[-38,-68],[-78,-30],[-69,0],[-73,-47],[10,-31],[-47,-10],[6,-31],[-55,-57],[-23,10],[11,-37],[-78,-14],[-15,-37],[-72,-41],[-62,-136],[-24,-110],[48,-82],[67,-23],[48,-68],[17,-59],[-21,-115],[118,-283],[35,-19],[-22,-12],[3,-88],[-45,-29],[-10,-142],[-43,-18],[-8,-47],[-22,4],[-17,-16],[16,-3],[-12,-51],[-23,-11],[25,-31],[-4,-27],[31,-28],[-17,-16],[22,-18],[1,-32],[-8,-11],[-31,9],[6,-51],[-60,-70],[29,-25],[114,-14],[35,-70],[84,-90],[4,-26],[-24,-23],[18,-21],[-8,-37],[-31,-49],[80,-110],[0,-146],[-30,-67],[83,-84],[17,-143]],[[6919,3993],[-148,46],[-74,-61],[-77,-24]],[[6620,3954],[-97,13],[-79,54],[-40,88],[18,3],[-77,98],[47,40],[74,10],[-8,12],[58,39],[-4,18],[-75,19],[10,18],[65,-7],[-12,18],[36,24],[-20,15],[-13,68],[-65,-96],[-132,-61],[-41,3]],[[6265,4330],[-51,73],[-46,-10],[-14,-53],[-26,-14],[-7,55],[27,26],[-14,16],[30,49],[-52,-12],[18,47],[29,6],[-21,11],[7,48],[24,-10],[-4,17],[26,2],[10,21],[-6,23],[20,6],[54,274],[67,123],[-21,97],[82,16],[21,118],[47,46],[27,74],[98,93],[-31,33],[-14,65],[-43,-8],[-1,-71],[-89,-84],[-80,-11],[-22,-70],[-89,-45],[-51,-5],[-29,14],[-26,94],[45,200],[-84,9],[63,45],[-100,31],[8,80],[-80,-34],[27,71],[43,6],[-11,28],[-52,-6],[2,11],[29,34],[53,8],[-39,37],[-64,-2],[11,36],[84,9],[-30,33],[-47,-7],[-15,14],[-26,72],[33,78],[-57,-22],[-44,-68],[31,-70],[-5,-59],[-115,-33],[127,-14],[-24,-216],[-16,-19],[-86,25],[-31,-25],[-3,-40],[-85,22],[-46,46],[-37,-4],[-45,26],[22,-34],[-22,-15],[53,-8],[8,-18],[77,-29],[26,-33],[11,-58],[-32,-27],[-24,24],[-1,45],[-32,8],[-8,23],[-87,8],[-8,-30],[63,-16],[-7,-29],[-82,-35],[7,-26],[74,24],[-83,-61],[33,-13],[-98,-38],[-16,45],[-112,-12],[67,114],[3,159],[58,55],[-24,-11],[-13,13],[-113,-106],[-14,-90],[-100,71],[22,58],[148,88],[-74,27],[39,45],[7,83],[242,133],[150,144],[10,74],[-61,27],[-302,-100],[-31,-64],[-86,-59],[-44,-66],[-27,-88],[-90,-129],[-36,-96],[-101,-26],[-21,-109],[-49,-38],[-41,-160],[-33,-19],[-23,-76],[-41,-13],[-16,-26],[24,-37],[-16,-13],[8,-90],[-129,-88],[0,-52],[-24,-18],[65,-154],[-25,-25],[16,-19],[-73,-134],[-39,-10]],[[4504,4556],[16,-32],[-24,-25],[-17,-172],[-25,-38],[-48,6],[-24,-19],[-17,-95],[16,-77],[-154,-285]],[[4227,3819],[-40,63],[-96,38]],[[4699,8219],[27,96],[-55,73],[-88,38],[-84,-44],[-23,-5],[-20,16],[-8,79],[28,11],[8,114],[50,-11],[159,32],[66,-1],[31,59],[45,2],[19,34],[144,-28],[167,54],[46,2],[95,-10],[13,-14],[136,-3],[77,-34],[44,-1],[86,74],[113,13],[38,-21],[17,8],[8,39],[-23,60],[39,26],[61,-14],[52,-60],[25,8],[-1,-16],[26,-12],[13,17],[45,-21],[86,-90],[60,13],[33,-10],[57,-91],[-22,-46],[261,-46],[53,41],[27,82],[41,37],[43,-42],[84,31],[68,-4],[-24,-110],[125,-114],[10,-41],[81,-21],[129,15],[28,22],[95,-2],[71,44],[89,-87],[36,-4],[66,27],[46,46],[201,66],[134,76],[125,36],[53,-5],[35,95],[-23,74],[43,84],[100,27],[147,119],[97,-9],[12,-28]],[[5078,3619],[-33,-71],[-1,-91],[41,-13],[-1,-52],[24,-7],[-33,-38],[48,-52],[-57,-95],[-48,-45],[-49,-18],[16,-26],[-16,-51],[-32,-44],[-57,-25],[0,-26],[48,-57],[-40,-19],[39,-64],[7,-165],[24,-6],[-16,-57],[48,25],[16,-19],[-48,-51],[56,-38],[-16,-50],[-33,12],[9,-44],[-16,-31],[88,-18],[57,-112]],[[5103,2271],[-73,6],[1,25],[-90,87],[-47,221],[-24,25],[-24,13],[-137,-25],[-47,32],[40,140],[-112,32],[-176,14],[-32,32],[-24,0],[-41,-64],[-32,0],[-16,83],[17,64],[-64,-38],[-56,45],[-32,108],[65,139],[0,64],[73,76],[2,246],[-55,178],[8,45]],[[4504,4556],[88,-39],[89,6],[104,-57],[105,-1],[281,-48],[-8,-102],[-82,-51],[-160,-18],[-9,25],[-56,-6],[-202,-56],[24,-128],[72,-39],[-65,-69],[0,-33],[32,-31],[48,-14],[162,89],[24,-6],[16,-13],[-17,-26],[16,-31],[73,12],[24,-38],[-8,-25],[96,-69],[0,-44],[-97,-31],[-16,-37],[40,-57]],[[6919,3993],[93,-36],[195,-17],[93,-99],[80,26],[63,-67],[63,-26],[34,-46],[87,-21],[10,-22],[34,-9],[-18,-9],[14,-34],[-18,-15],[18,-16],[81,20],[33,-21],[96,6],[-6,-71],[-49,-76],[50,-14],[-9,-26],[48,7],[0,-26],[-18,9],[-5,-12],[38,-23],[-23,-30],[32,-5],[68,-65],[18,13],[39,-18]],[[8060,3270],[-31,-9],[46,-92],[-62,-38],[42,-42],[5,-49],[-28,-116],[-27,-41],[-182,-43],[-8,-24],[116,-77],[-15,-26],[-178,-189],[-26,-13],[-116,-2],[8,-236],[-82,-194],[-102,-72],[-57,-188],[-7,-115],[-119,-61],[-26,-125],[-7,-184],[16,-87],[-70,-136],[-80,22],[69,-115],[-286,-400],[8,-138],[-31,-19],[-76,25],[-34,-19],[-14,-233],[-39,-184],[-33,-6],[-47,23],[-44,-1],[-24,-49],[-70,-17],[-44,49],[-4,72],[-55,54],[-18,59],[-27,23],[-115,-2],[-107,23],[-31,15],[-44,89],[-143,81],[-91,-14],[-181,15],[-40,16],[-13,50],[-34,16],[-263,36],[-61,-11],[-51,-38],[-56,-2],[-60,-46],[-100,1],[-62,-30],[-121,-11],[-44,17],[-16,71],[-23,42],[-22,6],[-21,55],[-44,10],[-68,66],[-63,110],[-30,27],[-58,-5]],[[4339,844],[-36,-4],[29,96],[71,96],[2,33],[25,12],[12,70],[33,32],[-15,32],[32,19],[-7,38],[32,19],[8,70],[-32,77],[32,25],[-11,19],[29,47],[113,31],[40,44],[24,70],[137,83],[16,50],[24,13],[16,50],[33,32],[72,-38],[16,57],[64,19],[1,25],[-104,39],[40,51],[-23,7],[1,96],[90,117]],[[5103,2271],[32,-13],[8,-26],[-26,-65],[14,-148],[41,13],[33,39],[72,14],[1,64],[33,-13],[24,13],[-1,94],[33,-7],[71,55],[-40,95],[-119,146],[8,63],[32,95],[41,32],[16,57],[49,38],[56,-7],[-8,39],[32,39],[65,-13],[24,20],[-7,47],[41,56],[25,88],[-31,81],[-8,110],[48,14],[24,-26],[9,-73],[99,-39],[11,-96],[95,14],[91,56],[71,76],[-82,162],[25,182],[75,-49],[26,10],[-27,-40],[22,-50],[42,45],[11,-27],[124,8],[-77,118],[-19,68],[10,45],[41,-6],[60,-51],[31,8],[122,189],[6,58],[18,14],[102,-21],[55,12],[-7,76]],[[4339,844],[-13,-37],[-24,-10],[-111,33],[-240,28],[-82,-32],[-59,44],[-178,4],[-25,-17],[26,-99],[-28,-49],[-70,-60],[-35,-12],[-96,16],[-63,93],[-30,4],[-35,-50],[-13,-73],[-138,-22],[-86,-68],[-144,72],[-20,31],[-96,33],[-14,26],[5,101],[-78,120],[-51,25],[-63,172],[-46,51],[-115,64],[-212,44],[-54,82],[-30,17],[-25,3],[38,-78],[-39,-27],[-18,11],[-54,-22],[45,-115],[-26,-32],[0,-39],[-276,-8],[-80,-89],[-105,-51],[-17,50],[56,121],[25,13],[-17,63],[-88,64],[-119,6],[-25,-25],[16,-39],[-47,-120],[-104,12],[-24,20],[-136,-7],[-16,32],[16,51],[-47,31],[-16,32],[-59,22],[-33,-7],[-40,-38],[0,-32],[-32,-45],[-48,-18],[-8,-20],[-40,-6],[-8,-26],[-56,-25],[-8,19],[24,19],[-16,19],[9,89],[-72,51],[-57,96],[-144,-62],[-90,23],[-59,43],[-32,-11],[-42,16],[-75,53],[-137,-1],[-15,46],[70,25],[38,58],[-9,51],[80,51],[-12,68],[43,42],[-45,77],[77,13],[8,38],[24,13],[8,37],[-24,58],[40,19],[-48,18],[-63,90],[0,44],[40,45],[-32,45],[152,192],[46,126],[-123,17],[-12,62],[15,77],[-27,29],[40,53],[-133,65],[33,44],[14,-33],[40,-15],[130,44],[1,32],[-41,58],[33,163],[58,14],[1,58],[-71,109],[48,45],[-24,25],[8,19],[64,26],[-25,56],[24,70],[48,51],[25,-38],[40,70],[-65,70],[56,6],[90,-25],[57,57],[54,6]],[[751,3762],[58,-56],[71,-38],[152,-13],[196,-44]],[[6265,4330],[-8,-28],[-135,-8],[-17,-31],[-67,6],[2,-33],[-32,-11],[3,22],[-36,-19],[-16,24],[4,-24],[-46,0],[-11,-29],[-19,0],[-24,77],[-31,21],[42,46],[1,26],[-77,69],[1,52],[-24,16],[-148,-21],[1,-57],[-23,-5],[-9,-32],[-119,21],[-16,45],[-32,-25],[-48,0],[-17,-52],[-48,6],[-32,-25],[-32,6],[15,-103],[-25,-26],[73,-13],[-8,-45],[104,-6],[-1,-83],[-40,32],[-40,-77],[-89,-25],[-24,-19],[-1,-51],[-48,-18],[48,-39],[40,25],[32,-25],[-8,-82],[-24,1],[32,-57],[-33,-87],[-64,-38],[-113,-12]],[[751,3762],[-46,39],[-57,-7],[-74,32],[8,38],[56,38],[-42,76],[57,7],[-18,120],[57,6],[15,70],[32,45],[-16,25],[-56,-12],[7,50],[-96,115],[16,19],[56,-25],[47,114],[57,51],[-25,25],[-7,-25],[-16,12],[7,51],[32,76],[-24,45],[32,25],[-8,26],[40,70],[-8,51],[64,38],[-8,-57],[57,-13],[32,25],[32,-50],[49,-26],[8,-31],[120,70],[24,-39],[17,45],[64,6],[32,45],[-40,38],[32,57],[-24,0],[0,13],[32,0],[16,19],[-24,0],[-16,19],[7,13],[33,-13],[-24,64],[48,-6],[47,33]],[[8542,8964],[48,29],[20,-16],[13,10],[5,40],[88,84],[36,-4],[5,38],[44,5],[69,57],[3,25],[72,68],[17,57],[28,28],[126,-33],[8,-22],[-65,-60],[-1,-67],[-47,-45],[-5,-41],[62,9],[46,-14],[-64,-47],[-158,-246],[33,-38],[-7,-52],[24,-1],[-27,-112],[20,-31],[-29,-24],[17,-21],[-22,-91],[96,-39],[91,-78],[237,-123],[185,-52],[92,21],[-35,-198],[-30,-40],[-122,-31],[-27,-24],[-40,-107],[-7,-108],[-192,-306],[-18,-48],[3,-113],[-78,-259],[91,-104],[40,-21],[124,-4],[95,-81],[166,-48],[55,-36],[91,9],[57,-50],[180,-68],[-1,-176],[29,-194],[-48,-194],[-91,-121],[-72,-38],[-57,-78],[4,-74],[85,-107],[-74,-41],[-25,-35],[-70,-164],[-180,-108],[-5,-54],[-102,-104],[-18,-140],[-56,-96],[3,-55],[43,-61],[2,-40],[-88,-106],[-39,-110],[-111,-57],[-36,20],[7,77],[-23,6],[-23,-5],[-24,-41],[18,-51],[-34,-2],[-45,34],[-65,-9],[-25,-46],[36,-74],[-13,-91],[-108,-215],[-187,-200],[-47,-18],[-25,-35],[-112,-34],[-162,-301],[-40,-114],[-116,-19]]],"transform":{"scale":[0.00017790661061056127,0.00019763058071390499],"translate":[92.972517,23.836822]},"objects":{"manipur_pre2016_districts":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"cartodb_id":558,"censuscode":273,"dt_cen_cd":2,"st_cen_cd":14,"st_nm":"Manipur","district":"Tamenglong"}},{"arcs":[[4,5,6,7,8,9,-4,10]],"type":"Polygon","properties":{"cartodb_id":508,"censuscode":272,"dt_cen_cd":1,"st_cen_cd":14,"st_nm":"Manipur","district":"Senapati"}},{"arcs":[[11,12,-9,13]],"type":"Polygon","properties":{"cartodb_id":89,"censuscode":275,"dt_cen_cd":4,"st_cen_cd":14,"st_nm":"Manipur","district":"Bishnupur"}},{"arcs":[[14,15,16,17,-6]],"type":"Polygon","properties":{"cartodb_id":106,"censuscode":280,"dt_cen_cd":9,"st_cen_cd":14,"st_nm":"Manipur","district":"Chandel"}},{"arcs":[[-13,-17,18,19,-1,-10]],"type":"Polygon","properties":{"cartodb_id":121,"censuscode":274,"dt_cen_cd":3,"st_cen_cd":14,"st_nm":"Manipur","district":"Churachandpur"}},{"arcs":[[20,-14,-8]],"type":"Polygon","properties":{"cartodb_id":234,"censuscode":278,"dt_cen_cd":7,"st_cen_cd":14,"st_nm":"Manipur","district":"Imphal East"}},{"arcs":[[-20,21,-2]],"type":"Polygon","properties":{"cartodb_id":235,"censuscode":277,"dt_cen_cd":6,"st_cen_cd":14,"st_nm":"Manipur","district":"Imphal West"}},{"arcs":[[-18,-12,-21,-7]],"type":"Polygon","properties":{"cartodb_id":571,"censuscode":276,"dt_cen_cd":5,"st_cen_cd":14,"st_nm":"Manipur","district":"Thoubal"}},{"arcs":[[-15,-5,22]],"type":"Polygon","properties":{"cartodb_id":589,"censuscode":279,"dt_cen_cd":8,"st_cen_cd":14,"st_nm":"Manipur","district":"Ukhrul"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [4091, 3920], + [-113, -37], + [-104, 13], + [-41, -26], + [-24, -57], + [-89, 70], + [-48, -6], + [-81, -140], + [-88, -51], + [-32, 13], + [-105, 115], + [-72, -51], + [-88, -13], + [-33, -50], + [0, -57], + [-24, -7], + [-113, 45], + [-112, -70], + [-48, 76], + [-72, 19], + [-33, -12], + [-96, -146], + [-105, 82], + [-96, 26], + [-96, 76], + [-33, -51], + [-233, 51], + [-40, -13], + [-24, -32], + [-161, -18], + [-112, 18], + [-41, -12], + [24, -19], + [-48, -64], + [-32, -13], + [16, -19], + [-72, -89], + [48, -12], + [-16, -58], + [-73, -6], + [-40, 25], + [-64, -12], + [-72, -83], + [-48, 19], + [-41, 76], + [-48, 6], + [-24, 32], + [-48, 7], + [-8, -45], + [-56, 13], + [-9, 63], + [32, 19], + [33, 70], + [40, 26] + ], + [ + [1228, 3611], + [40, 44], + [-24, 39], + [16, 19], + [48, -26], + [32, 7], + [-32, 25], + [16, 13], + [-24, 13], + [-8, 57], + [73, -19], + [23, 76], + [-16, 32], + [8, 51], + [-40, 32], + [8, 18], + [48, 0], + [16, 58], + [-48, 38], + [-24, 89], + [16, 13], + [40, -7], + [0, 38], + [-80, -19], + [16, 89], + [48, 64], + [-56, 6], + [-8, 20], + [-330, 31], + [-16, 13], + [72, 159], + [80, 95], + [41, 108], + [56, 7], + [16, -32], + [40, -6], + [137, 89], + [8, 57], + [113, 229], + [-8, 13], + [-170, 25] + ], + [ + [1355, 5169], + [84, 78], + [-16, 19], + [16, 19], + [24, 0], + [8, 25], + [-24, 26], + [16, 0], + [16, 38], + [32, -6], + [8, 12], + [-24, 58], + [64, 0], + [16, 19], + [-17, 57], + [-41, 6], + [31, 45], + [-48, -7], + [23, 26], + [57, -7], + [-28, 63], + [74, -19], + [-10, 38], + [15, 39], + [-25, 31], + [-33, 0], + [8, 32], + [-16, 13], + [31, 73], + [-7, 32], + [32, -7], + [11, 17], + [-20, 11], + [-22, -16], + [-14, 16], + [-36, -14], + [27, 63], + [-16, 14], + [50, 14], + [-12, 36], + [46, 36], + [-5, 30], + [30, 12], + [-1, 28], + [92, 9], + [13, -24], + [29, 2], + [28, 2], + [17, 25], + [26, -23], + [-2, 41], + [26, 12], + [-16, 30], + [37, 68], + [62, 70], + [68, 21], + [27, 94], + [49, 56], + [-18, 22], + [28, 74], + [-20, 98], + [32, 91], + [178, 222], + [22, 102], + [84, 87], + [96, 16], + [32, 75], + [104, 56], + [85, 12], + [78, 74], + [-8, -121], + [24, -33], + [61, -15], + [41, 14], + [89, -16], + [-37, -112], + [5, -47], + [63, 3], + [24, 20], + [116, -17], + [75, 25], + [48, -20], + [65, -96], + [87, -38], + [25, -45], + [-10, -37], + [84, -9], + [169, 244], + [31, 78], + [36, 17], + [10, 50], + [78, 98], + [3, 50], + [38, 16], + [-4, 87], + [84, 12], + [32, 154], + [106, -18], + [36, 18], + [28, 71], + [94, 45], + [2, 54], + [37, 53], + [100, 63], + [93, 33], + [-3, 24], + [161, 183] + ], + [ + [4699, 8219], + [48, -13], + [30, 10], + [61, -170], + [115, -4], + [104, -24], + [96, 7], + [76, -32], + [78, -63], + [31, -38], + [5, -53], + [-35, -5], + [-45, -42], + [-36, -100], + [-58, -40], + [5, -51], + [-19, -25], + [36, 5], + [140, -34], + [56, -73], + [33, -11], + [59, -100], + [63, -12], + [-155, -86], + [-143, -7], + [-206, -140], + [-75, -77], + [-141, -38], + [-65, -72], + [-3, -37], + [-70, -75], + [-23, 2], + [-8, -48], + [-21, -16], + [9, -14], + [-116, -99], + [36, -124], + [55, -47], + [25, -51], + [33, -231], + [57, -78], + [38, -109], + [-7, -33], + [-85, 6], + [-50, -30], + [-3, -71], + [30, -32], + [-25, -20], + [29, -19], + [4, -32], + [-6, -39], + [-37, -39], + [-117, -26], + [-144, -82], + [-123, -39], + [-114, -114], + [26, -95], + [114, -102], + [1, -45], + [32, -44], + [-48, -32], + [-40, -70], + [16, -44], + [-40, -25], + [-64, 0], + [-16, -32], + [-41, 0], + [-88, -76], + [-80, -32], + [124, -434], + [74, -483] + ], + [ + [8542, 8964], + [-32, -62], + [-91, -69], + [-35, -142], + [-175, -228], + [-77, -193], + [16, -25], + [-93, -92], + [-67, -131], + [-43, -6], + [16, -20], + [-36, -45], + [22, -26], + [-47, -77], + [14, -155], + [-102, -89], + [-81, -130], + [-49, -33], + [-72, -147], + [-155, -149], + [-79, -51], + [-146, -56], + [-42, -95], + [-29, -29], + [-98, -40], + [-38, -68], + [-78, -30], + [-69, 0], + [-73, -47], + [10, -31], + [-47, -10], + [6, -31], + [-55, -57], + [-23, 10], + [11, -37], + [-78, -14], + [-15, -37], + [-72, -41], + [-62, -136], + [-24, -110], + [48, -82], + [67, -23], + [48, -68], + [17, -59], + [-21, -115], + [118, -283], + [35, -19], + [-22, -12], + [3, -88], + [-45, -29], + [-10, -142], + [-43, -18], + [-8, -47], + [-22, 4], + [-17, -16], + [16, -3], + [-12, -51], + [-23, -11], + [25, -31], + [-4, -27], + [31, -28], + [-17, -16], + [22, -18], + [1, -32], + [-8, -11], + [-31, 9], + [6, -51], + [-60, -70], + [29, -25], + [114, -14], + [35, -70], + [84, -90], + [4, -26], + [-24, -23], + [18, -21], + [-8, -37], + [-31, -49], + [80, -110], + [0, -146], + [-30, -67], + [83, -84], + [17, -143] + ], + [ + [6919, 3993], + [-148, 46], + [-74, -61], + [-77, -24] + ], + [ + [6620, 3954], + [-97, 13], + [-79, 54], + [-40, 88], + [18, 3], + [-77, 98], + [47, 40], + [74, 10], + [-8, 12], + [58, 39], + [-4, 18], + [-75, 19], + [10, 18], + [65, -7], + [-12, 18], + [36, 24], + [-20, 15], + [-13, 68], + [-65, -96], + [-132, -61], + [-41, 3] + ], + [ + [6265, 4330], + [-51, 73], + [-46, -10], + [-14, -53], + [-26, -14], + [-7, 55], + [27, 26], + [-14, 16], + [30, 49], + [-52, -12], + [18, 47], + [29, 6], + [-21, 11], + [7, 48], + [24, -10], + [-4, 17], + [26, 2], + [10, 21], + [-6, 23], + [20, 6], + [54, 274], + [67, 123], + [-21, 97], + [82, 16], + [21, 118], + [47, 46], + [27, 74], + [98, 93], + [-31, 33], + [-14, 65], + [-43, -8], + [-1, -71], + [-89, -84], + [-80, -11], + [-22, -70], + [-89, -45], + [-51, -5], + [-29, 14], + [-26, 94], + [45, 200], + [-84, 9], + [63, 45], + [-100, 31], + [8, 80], + [-80, -34], + [27, 71], + [43, 6], + [-11, 28], + [-52, -6], + [2, 11], + [29, 34], + [53, 8], + [-39, 37], + [-64, -2], + [11, 36], + [84, 9], + [-30, 33], + [-47, -7], + [-15, 14], + [-26, 72], + [33, 78], + [-57, -22], + [-44, -68], + [31, -70], + [-5, -59], + [-115, -33], + [127, -14], + [-24, -216], + [-16, -19], + [-86, 25], + [-31, -25], + [-3, -40], + [-85, 22], + [-46, 46], + [-37, -4], + [-45, 26], + [22, -34], + [-22, -15], + [53, -8], + [8, -18], + [77, -29], + [26, -33], + [11, -58], + [-32, -27], + [-24, 24], + [-1, 45], + [-32, 8], + [-8, 23], + [-87, 8], + [-8, -30], + [63, -16], + [-7, -29], + [-82, -35], + [7, -26], + [74, 24], + [-83, -61], + [33, -13], + [-98, -38], + [-16, 45], + [-112, -12], + [67, 114], + [3, 159], + [58, 55], + [-24, -11], + [-13, 13], + [-113, -106], + [-14, -90], + [-100, 71], + [22, 58], + [148, 88], + [-74, 27], + [39, 45], + [7, 83], + [242, 133], + [150, 144], + [10, 74], + [-61, 27], + [-302, -100], + [-31, -64], + [-86, -59], + [-44, -66], + [-27, -88], + [-90, -129], + [-36, -96], + [-101, -26], + [-21, -109], + [-49, -38], + [-41, -160], + [-33, -19], + [-23, -76], + [-41, -13], + [-16, -26], + [24, -37], + [-16, -13], + [8, -90], + [-129, -88], + [0, -52], + [-24, -18], + [65, -154], + [-25, -25], + [16, -19], + [-73, -134], + [-39, -10] + ], + [ + [4504, 4556], + [16, -32], + [-24, -25], + [-17, -172], + [-25, -38], + [-48, 6], + [-24, -19], + [-17, -95], + [16, -77], + [-154, -285] + ], + [ + [4227, 3819], + [-40, 63], + [-96, 38] + ], + [ + [4699, 8219], + [27, 96], + [-55, 73], + [-88, 38], + [-84, -44], + [-23, -5], + [-20, 16], + [-8, 79], + [28, 11], + [8, 114], + [50, -11], + [159, 32], + [66, -1], + [31, 59], + [45, 2], + [19, 34], + [144, -28], + [167, 54], + [46, 2], + [95, -10], + [13, -14], + [136, -3], + [77, -34], + [44, -1], + [86, 74], + [113, 13], + [38, -21], + [17, 8], + [8, 39], + [-23, 60], + [39, 26], + [61, -14], + [52, -60], + [25, 8], + [-1, -16], + [26, -12], + [13, 17], + [45, -21], + [86, -90], + [60, 13], + [33, -10], + [57, -91], + [-22, -46], + [261, -46], + [53, 41], + [27, 82], + [41, 37], + [43, -42], + [84, 31], + [68, -4], + [-24, -110], + [125, -114], + [10, -41], + [81, -21], + [129, 15], + [28, 22], + [95, -2], + [71, 44], + [89, -87], + [36, -4], + [66, 27], + [46, 46], + [201, 66], + [134, 76], + [125, 36], + [53, -5], + [35, 95], + [-23, 74], + [43, 84], + [100, 27], + [147, 119], + [97, -9], + [12, -28] + ], + [ + [5078, 3619], + [-33, -71], + [-1, -91], + [41, -13], + [-1, -52], + [24, -7], + [-33, -38], + [48, -52], + [-57, -95], + [-48, -45], + [-49, -18], + [16, -26], + [-16, -51], + [-32, -44], + [-57, -25], + [0, -26], + [48, -57], + [-40, -19], + [39, -64], + [7, -165], + [24, -6], + [-16, -57], + [48, 25], + [16, -19], + [-48, -51], + [56, -38], + [-16, -50], + [-33, 12], + [9, -44], + [-16, -31], + [88, -18], + [57, -112] + ], + [ + [5103, 2271], + [-73, 6], + [1, 25], + [-90, 87], + [-47, 221], + [-24, 25], + [-24, 13], + [-137, -25], + [-47, 32], + [40, 140], + [-112, 32], + [-176, 14], + [-32, 32], + [-24, 0], + [-41, -64], + [-32, 0], + [-16, 83], + [17, 64], + [-64, -38], + [-56, 45], + [-32, 108], + [65, 139], + [0, 64], + [73, 76], + [2, 246], + [-55, 178], + [8, 45] + ], + [ + [4504, 4556], + [88, -39], + [89, 6], + [104, -57], + [105, -1], + [281, -48], + [-8, -102], + [-82, -51], + [-160, -18], + [-9, 25], + [-56, -6], + [-202, -56], + [24, -128], + [72, -39], + [-65, -69], + [0, -33], + [32, -31], + [48, -14], + [162, 89], + [24, -6], + [16, -13], + [-17, -26], + [16, -31], + [73, 12], + [24, -38], + [-8, -25], + [96, -69], + [0, -44], + [-97, -31], + [-16, -37], + [40, -57] + ], + [ + [6919, 3993], + [93, -36], + [195, -17], + [93, -99], + [80, 26], + [63, -67], + [63, -26], + [34, -46], + [87, -21], + [10, -22], + [34, -9], + [-18, -9], + [14, -34], + [-18, -15], + [18, -16], + [81, 20], + [33, -21], + [96, 6], + [-6, -71], + [-49, -76], + [50, -14], + [-9, -26], + [48, 7], + [0, -26], + [-18, 9], + [-5, -12], + [38, -23], + [-23, -30], + [32, -5], + [68, -65], + [18, 13], + [39, -18] + ], + [ + [8060, 3270], + [-31, -9], + [46, -92], + [-62, -38], + [42, -42], + [5, -49], + [-28, -116], + [-27, -41], + [-182, -43], + [-8, -24], + [116, -77], + [-15, -26], + [-178, -189], + [-26, -13], + [-116, -2], + [8, -236], + [-82, -194], + [-102, -72], + [-57, -188], + [-7, -115], + [-119, -61], + [-26, -125], + [-7, -184], + [16, -87], + [-70, -136], + [-80, 22], + [69, -115], + [-286, -400], + [8, -138], + [-31, -19], + [-76, 25], + [-34, -19], + [-14, -233], + [-39, -184], + [-33, -6], + [-47, 23], + [-44, -1], + [-24, -49], + [-70, -17], + [-44, 49], + [-4, 72], + [-55, 54], + [-18, 59], + [-27, 23], + [-115, -2], + [-107, 23], + [-31, 15], + [-44, 89], + [-143, 81], + [-91, -14], + [-181, 15], + [-40, 16], + [-13, 50], + [-34, 16], + [-263, 36], + [-61, -11], + [-51, -38], + [-56, -2], + [-60, -46], + [-100, 1], + [-62, -30], + [-121, -11], + [-44, 17], + [-16, 71], + [-23, 42], + [-22, 6], + [-21, 55], + [-44, 10], + [-68, 66], + [-63, 110], + [-30, 27], + [-58, -5] + ], + [ + [4339, 844], + [-36, -4], + [29, 96], + [71, 96], + [2, 33], + [25, 12], + [12, 70], + [33, 32], + [-15, 32], + [32, 19], + [-7, 38], + [32, 19], + [8, 70], + [-32, 77], + [32, 25], + [-11, 19], + [29, 47], + [113, 31], + [40, 44], + [24, 70], + [137, 83], + [16, 50], + [24, 13], + [16, 50], + [33, 32], + [72, -38], + [16, 57], + [64, 19], + [1, 25], + [-104, 39], + [40, 51], + [-23, 7], + [1, 96], + [90, 117] + ], + [ + [5103, 2271], + [32, -13], + [8, -26], + [-26, -65], + [14, -148], + [41, 13], + [33, 39], + [72, 14], + [1, 64], + [33, -13], + [24, 13], + [-1, 94], + [33, -7], + [71, 55], + [-40, 95], + [-119, 146], + [8, 63], + [32, 95], + [41, 32], + [16, 57], + [49, 38], + [56, -7], + [-8, 39], + [32, 39], + [65, -13], + [24, 20], + [-7, 47], + [41, 56], + [25, 88], + [-31, 81], + [-8, 110], + [48, 14], + [24, -26], + [9, -73], + [99, -39], + [11, -96], + [95, 14], + [91, 56], + [71, 76], + [-82, 162], + [25, 182], + [75, -49], + [26, 10], + [-27, -40], + [22, -50], + [42, 45], + [11, -27], + [124, 8], + [-77, 118], + [-19, 68], + [10, 45], + [41, -6], + [60, -51], + [31, 8], + [122, 189], + [6, 58], + [18, 14], + [102, -21], + [55, 12], + [-7, 76] + ], + [ + [4339, 844], + [-13, -37], + [-24, -10], + [-111, 33], + [-240, 28], + [-82, -32], + [-59, 44], + [-178, 4], + [-25, -17], + [26, -99], + [-28, -49], + [-70, -60], + [-35, -12], + [-96, 16], + [-63, 93], + [-30, 4], + [-35, -50], + [-13, -73], + [-138, -22], + [-86, -68], + [-144, 72], + [-20, 31], + [-96, 33], + [-14, 26], + [5, 101], + [-78, 120], + [-51, 25], + [-63, 172], + [-46, 51], + [-115, 64], + [-212, 44], + [-54, 82], + [-30, 17], + [-25, 3], + [38, -78], + [-39, -27], + [-18, 11], + [-54, -22], + [45, -115], + [-26, -32], + [0, -39], + [-276, -8], + [-80, -89], + [-105, -51], + [-17, 50], + [56, 121], + [25, 13], + [-17, 63], + [-88, 64], + [-119, 6], + [-25, -25], + [16, -39], + [-47, -120], + [-104, 12], + [-24, 20], + [-136, -7], + [-16, 32], + [16, 51], + [-47, 31], + [-16, 32], + [-59, 22], + [-33, -7], + [-40, -38], + [0, -32], + [-32, -45], + [-48, -18], + [-8, -20], + [-40, -6], + [-8, -26], + [-56, -25], + [-8, 19], + [24, 19], + [-16, 19], + [9, 89], + [-72, 51], + [-57, 96], + [-144, -62], + [-90, 23], + [-59, 43], + [-32, -11], + [-42, 16], + [-75, 53], + [-137, -1], + [-15, 46], + [70, 25], + [38, 58], + [-9, 51], + [80, 51], + [-12, 68], + [43, 42], + [-45, 77], + [77, 13], + [8, 38], + [24, 13], + [8, 37], + [-24, 58], + [40, 19], + [-48, 18], + [-63, 90], + [0, 44], + [40, 45], + [-32, 45], + [152, 192], + [46, 126], + [-123, 17], + [-12, 62], + [15, 77], + [-27, 29], + [40, 53], + [-133, 65], + [33, 44], + [14, -33], + [40, -15], + [130, 44], + [1, 32], + [-41, 58], + [33, 163], + [58, 14], + [1, 58], + [-71, 109], + [48, 45], + [-24, 25], + [8, 19], + [64, 26], + [-25, 56], + [24, 70], + [48, 51], + [25, -38], + [40, 70], + [-65, 70], + [56, 6], + [90, -25], + [57, 57], + [54, 6] + ], + [ + [751, 3762], + [58, -56], + [71, -38], + [152, -13], + [196, -44] + ], + [ + [6265, 4330], + [-8, -28], + [-135, -8], + [-17, -31], + [-67, 6], + [2, -33], + [-32, -11], + [3, 22], + [-36, -19], + [-16, 24], + [4, -24], + [-46, 0], + [-11, -29], + [-19, 0], + [-24, 77], + [-31, 21], + [42, 46], + [1, 26], + [-77, 69], + [1, 52], + [-24, 16], + [-148, -21], + [1, -57], + [-23, -5], + [-9, -32], + [-119, 21], + [-16, 45], + [-32, -25], + [-48, 0], + [-17, -52], + [-48, 6], + [-32, -25], + [-32, 6], + [15, -103], + [-25, -26], + [73, -13], + [-8, -45], + [104, -6], + [-1, -83], + [-40, 32], + [-40, -77], + [-89, -25], + [-24, -19], + [-1, -51], + [-48, -18], + [48, -39], + [40, 25], + [32, -25], + [-8, -82], + [-24, 1], + [32, -57], + [-33, -87], + [-64, -38], + [-113, -12] + ], + [ + [751, 3762], + [-46, 39], + [-57, -7], + [-74, 32], + [8, 38], + [56, 38], + [-42, 76], + [57, 7], + [-18, 120], + [57, 6], + [15, 70], + [32, 45], + [-16, 25], + [-56, -12], + [7, 50], + [-96, 115], + [16, 19], + [56, -25], + [47, 114], + [57, 51], + [-25, 25], + [-7, -25], + [-16, 12], + [7, 51], + [32, 76], + [-24, 45], + [32, 25], + [-8, 26], + [40, 70], + [-8, 51], + [64, 38], + [-8, -57], + [57, -13], + [32, 25], + [32, -50], + [49, -26], + [8, -31], + [120, 70], + [24, -39], + [17, 45], + [64, 6], + [32, 45], + [-40, 38], + [32, 57], + [-24, 0], + [0, 13], + [32, 0], + [16, 19], + [-24, 0], + [-16, 19], + [7, 13], + [33, -13], + [-24, 64], + [48, -6], + [47, 33] + ], + [ + [8542, 8964], + [48, 29], + [20, -16], + [13, 10], + [5, 40], + [88, 84], + [36, -4], + [5, 38], + [44, 5], + [69, 57], + [3, 25], + [72, 68], + [17, 57], + [28, 28], + [126, -33], + [8, -22], + [-65, -60], + [-1, -67], + [-47, -45], + [-5, -41], + [62, 9], + [46, -14], + [-64, -47], + [-158, -246], + [33, -38], + [-7, -52], + [24, -1], + [-27, -112], + [20, -31], + [-29, -24], + [17, -21], + [-22, -91], + [96, -39], + [91, -78], + [237, -123], + [185, -52], + [92, 21], + [-35, -198], + [-30, -40], + [-122, -31], + [-27, -24], + [-40, -107], + [-7, -108], + [-192, -306], + [-18, -48], + [3, -113], + [-78, -259], + [91, -104], + [40, -21], + [124, -4], + [95, -81], + [166, -48], + [55, -36], + [91, 9], + [57, -50], + [180, -68], + [-1, -176], + [29, -194], + [-48, -194], + [-91, -121], + [-72, -38], + [-57, -78], + [4, -74], + [85, -107], + [-74, -41], + [-25, -35], + [-70, -164], + [-180, -108], + [-5, -54], + [-102, -104], + [-18, -140], + [-56, -96], + [3, -55], + [43, -61], + [2, -40], + [-88, -106], + [-39, -110], + [-111, -57], + [-36, 20], + [7, 77], + [-23, 6], + [-23, -5], + [-24, -41], + [18, -51], + [-34, -2], + [-45, 34], + [-65, -9], + [-25, -46], + [36, -74], + [-13, -91], + [-108, -215], + [-187, -200], + [-47, -18], + [-25, -35], + [-112, -34], + [-162, -301], + [-40, -114], + [-116, -19] + ] + ], + "transform": { + "scale": [0.00017790661061056127, 0.00019763058071390499], + "translate": [92.972517, 23.836822] + }, + "objects": { + "manipur_pre2016_districts": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3]], + "type": "Polygon", + "properties": { + "cartodb_id": 558, + "censuscode": 273, + "dt_cen_cd": 2, + "st_cen_cd": 14, + "st_nm": "Manipur", + "district": "Tamenglong" + } + }, + { + "arcs": [[4, 5, 6, 7, 8, 9, -4, 10]], + "type": "Polygon", + "properties": { + "cartodb_id": 508, + "censuscode": 272, + "dt_cen_cd": 1, + "st_cen_cd": 14, + "st_nm": "Manipur", + "district": "Senapati" + } + }, + { + "arcs": [[11, 12, -9, 13]], + "type": "Polygon", + "properties": { + "cartodb_id": 89, + "censuscode": 275, + "dt_cen_cd": 4, + "st_cen_cd": 14, + "st_nm": "Manipur", + "district": "Bishnupur" + } + }, + { + "arcs": [[14, 15, 16, 17, -6]], + "type": "Polygon", + "properties": { + "cartodb_id": 106, + "censuscode": 280, + "dt_cen_cd": 9, + "st_cen_cd": 14, + "st_nm": "Manipur", + "district": "Chandel" + } + }, + { + "arcs": [[-13, -17, 18, 19, -1, -10]], + "type": "Polygon", + "properties": { + "cartodb_id": 121, + "censuscode": 274, + "dt_cen_cd": 3, + "st_cen_cd": 14, + "st_nm": "Manipur", + "district": "Churachandpur" + } + }, + { + "arcs": [[20, -14, -8]], + "type": "Polygon", + "properties": { + "cartodb_id": 234, + "censuscode": 278, + "dt_cen_cd": 7, + "st_cen_cd": 14, + "st_nm": "Manipur", + "district": "Imphal East" + } + }, + { + "arcs": [[-20, 21, -2]], + "type": "Polygon", + "properties": { + "cartodb_id": 235, + "censuscode": 277, + "dt_cen_cd": 6, + "st_cen_cd": 14, + "st_nm": "Manipur", + "district": "Imphal West" + } + }, + { + "arcs": [[-18, -12, -21, -7]], + "type": "Polygon", + "properties": { + "cartodb_id": 571, + "censuscode": 276, + "dt_cen_cd": 5, + "st_cen_cd": 14, + "st_nm": "Manipur", + "district": "Thoubal" + } + }, + { + "arcs": [[-15, -5, 22]], + "type": "Polygon", + "properties": { + "cartodb_id": 589, + "censuscode": 279, + "dt_cen_cd": 8, + "st_cen_cd": 14, + "st_nm": "Manipur", + "district": "Ukhrul" + } + } + ] + } + } +} diff --git a/public/maps/meghalaya.json b/public/maps/meghalaya.json index 0bd63fc2a0..77753e2aef 100644 --- a/public/maps/meghalaya.json +++ b/public/maps/meghalaya.json @@ -1 +1,1163 @@ -{"type":"Topology","arcs":[[[2201,2486],[-72,-270],[44,-195],[-22,-108],[-205,-252],[-25,-74],[0,-176],[-35,-136],[-80,-105],[-6,-96],[25,-83]],[[1825,991],[-83,-4],[-116,75],[-122,42],[-206,4],[-51,60],[-123,52],[-55,69],[-219,90],[-124,77],[-19,74],[-19,16],[-187,-8],[-92,47],[-36,-16],[-40,-56],[-69,-46],[-152,39],[-21,11],[22,129],[-20,44],[-27,22],[-39,99],[-27,128],[8,107],[45,86],[35,178],[82,161],[1,80],[32,-6],[69,91],[0,39],[-42,148],[12,43],[-8,45],[31,55],[17,-2],[38,51],[172,33],[43,-5],[25,28],[107,23],[28,16],[28,92],[100,-37],[39,81],[27,22],[5,35],[-60,88],[-15,4],[-8,-15],[-70,27],[-12,63],[-146,121],[-43,158],[-69,45],[-11,47],[-18,7],[-87,133],[-7,44],[12,52],[115,-28],[51,30],[0,46],[94,125],[-19,100],[5,108],[-28,30],[-4,48],[102,9],[24,11],[10,34],[65,8],[46,39],[-17,11],[12,25],[35,-10],[59,106],[-14,34],[-60,41],[71,83],[29,7],[62,-21],[44,46],[12,53],[36,43],[40,21],[24,-9],[12,39],[49,24],[-17,43],[75,32],[24,70]],[[1297,5275],[173,-174],[34,-57],[97,-72],[189,138],[295,40],[156,-11],[227,90],[180,38],[-35,-174],[-140,-313],[6,-153],[-17,-37],[-53,-19],[-80,5],[-30,-21],[-16,-134],[8,-14],[151,3],[71,-23],[34,-180],[32,-94],[151,-313],[-38,-91],[-2,-44],[-112,-409],[-16,-279],[-311,-384],[-38,-60],[-12,-47]],[[9582,898],[22,56],[-4,26],[-59,39],[-98,211],[-13,60],[16,109],[81,124],[42,28],[29,43],[44,8],[37,37],[37,14],[36,-30],[49,19],[78,-53],[37,23],[25,-36],[40,-14],[20,21],[6,64],[23,60],[-33,48],[4,48],[-19,33],[12,155],[-42,94],[37,44],[9,43],[-43,124],[2,49],[-29,56],[57,87],[2,25],[-18,61],[-34,29],[-8,37],[21,57],[-5,59],[23,36],[36,134],[-28,46],[-2,61],[61,118],[1,49],[17,32],[-16,40],[79,128],[-16,17],[-11,69]],[[10087,3486],[35,-8],[26,17],[11,38],[18,-20],[8,10],[-22,95],[8,32],[29,13]],[[10200,3663],[46,-37],[73,95],[53,22],[46,49],[80,116],[15,-7],[19,-38],[49,14],[97,0],[100,36],[64,51],[41,-14],[69,8],[79,55],[49,9],[37,57],[59,40],[8,-6],[-14,-28],[14,-25],[104,0],[24,-15],[-17,-18],[1,-25],[19,-19],[70,10],[38,-60],[-64,-60],[19,-35],[2,-76],[10,-20],[24,10],[111,-39],[69,-106],[88,-234],[39,-32],[29,16],[69,-24],[31,11],[18,-21],[57,-13],[-6,-109],[20,-58],[0,-48],[50,-79],[39,-4],[26,-39],[66,25],[27,48],[95,28],[43,95],[34,28],[22,0],[31,-41],[0,-84],[-14,-40],[-32,-19],[-23,-129],[-100,-124],[-53,-18],[-148,-126],[-33,-55],[-2,-76],[17,-19],[47,50],[14,-30],[55,23],[14,-43],[-5,-58],[23,-32],[16,-182],[24,5],[25,36],[36,8],[2,54],[38,-33],[0,-35],[16,-18],[55,91],[-3,-66],[28,-77],[16,-6],[43,44],[28,-49],[58,-49],[30,-69],[55,-19],[22,-54],[32,30],[50,5],[-4,-43],[19,-57],[34,-32],[12,-55],[41,-76],[52,25],[52,-40],[15,-86],[-18,-54],[36,-131],[-13,-38],[-84,-54],[30,-48],[-53,-64],[33,-92],[61,-11],[79,-68],[-108,-93],[-90,5],[-51,22],[-22,-27],[-38,1],[-125,-72],[-46,-52],[-63,10],[-55,-34],[-48,-131],[-51,-17],[-26,-34],[-25,-43],[-10,-72],[-36,-42],[-51,37],[-50,4],[-73,41],[-104,-11],[-77,42],[-19,-17],[-48,32],[3,-82],[22,-21],[12,-56],[42,-71],[-21,-2],[-50,38],[-183,13],[-18,-44],[0,-83],[-24,-86],[-38,-78],[-27,-14],[2,-29],[19,-13],[-6,-58],[-28,-12],[-44,40],[-38,-47],[-57,-12],[-30,25],[-59,-5],[-54,48],[-86,18],[-21,25],[-68,-7],[-19,12],[-17,158],[-32,25],[-43,-9],[-66,-52],[-48,1],[-296,143],[-88,83],[26,20],[33,0],[9,19],[-109,39],[-53,61],[-14,-16],[24,-62],[-61,6],[-175,114],[-4,77],[-53,52],[-178,102],[-84,23],[-68,-32],[-49,17],[-22,-12],[-58,25]],[[5162,4519],[-133,-160],[-19,-72],[-95,-63],[-14,-37],[12,-62],[38,11],[41,-29],[42,17],[49,-48],[-30,-36],[-25,-68],[-66,-88],[-14,-91],[-89,-102],[-59,-113],[-23,-16],[-18,-77],[-61,-29],[-61,-92],[-1,-49],[-34,-42],[-42,-18],[-57,-56],[-50,-14],[-34,11],[-54,-23],[-4,-40],[-18,-11],[-18,39],[-29,13],[-38,-78],[-14,-1],[-25,59],[-22,16],[-54,-135],[0,-44]],[[4143,2991],[-72,-37],[-86,-83],[-123,-148],[-99,-146],[-88,-168],[-15,-80],[-47,-126],[-172,50],[-110,-20],[-37,36],[-85,34],[-143,-2],[-74,31],[-112,86],[-129,-14],[-179,40],[-173,-21],[-71,28],[-78,7],[-49,28]],[[1297,5275],[34,40],[20,-23],[73,6],[32,36],[26,1],[4,-26],[18,-11],[76,-7],[28,-72],[50,72],[63,26],[18,-44],[64,7],[258,50],[163,59],[25,81],[30,10],[11,38],[31,34],[80,43],[97,5],[41,16],[15,-28],[48,-19],[27,-77],[49,-19],[125,60],[7,21],[79,68],[54,-32],[70,-78],[34,-78],[90,-138],[-3,-124],[-33,-46],[-33,-108],[-32,-53],[6,-22],[56,27],[93,108],[28,53],[78,56],[7,52],[42,67],[21,-34],[64,-12],[14,-28],[103,-54],[-93,-102],[-5,-42],[33,-72],[47,-4],[18,44],[-7,59],[45,37],[165,74],[45,82],[117,8],[21,14],[13,-31],[20,-3],[96,49],[-32,-94],[17,-46],[37,7],[-53,-107],[22,-17],[20,40],[39,13],[-6,-60],[89,-16],[15,74],[44,82],[74,66],[5,28],[61,-40],[53,12],[3,-51],[13,1],[15,36],[129,-11],[-2,22],[12,14],[21,-17],[13,32],[40,-73],[18,-9],[-5,-34],[25,-11],[78,-93],[-14,170],[71,-20],[46,46],[13,-49],[53,-29],[12,-36],[27,-128],[2,-103],[76,16],[125,-32],[67,20],[-11,-122],[-59,-53],[-1,-48],[-53,-152]],[[9582,898],[-26,9],[-67,-26],[-54,-74],[-157,67],[-147,-3],[-235,-44],[-78,21],[-152,-53],[-150,-14],[-110,27],[-12,-26],[17,-76],[-16,-30],[-121,50],[-50,-3],[-46,-94],[-97,-18],[-48,-45],[-44,9],[-37,-38],[-61,38],[-18,73],[-24,17],[-59,-20],[-17,21],[12,35],[-10,78],[30,32],[-24,8],[-101,-20],[-23,-38],[-117,-83],[-85,-23],[-88,1],[-32,-45],[-32,-14],[-96,8],[-18,76],[-15,10],[-75,-8],[-29,14],[-33,20],[-78,95],[-43,-36],[-69,24]],[[6847,800],[-37,37],[-72,163],[-40,135],[2,29],[46,4],[27,46],[19,5],[43,-24],[8,36],[31,32],[36,69],[42,8],[45,-17],[68,63],[104,-25],[23,15],[49,-45],[25,9],[19,80],[30,25],[116,-27],[22,9],[22,-22],[48,18],[19,43],[20,101],[-15,43],[14,46],[-17,34],[6,23],[-108,80],[-3,26],[4,29],[20,14],[41,99],[-7,31],[14,124],[25,70],[0,35],[41,55],[-8,55],[9,81],[-30,139],[-1,68],[-35,54],[11,25],[-8,47],[24,-4],[6,23],[144,35],[145,120],[33,-20],[28,18],[20,43],[87,17],[21,-136],[51,-34],[82,22],[48,43],[-18,53],[12,20],[63,40],[7,32],[37,31],[27,-5],[16,67],[27,-8],[180,91],[83,113],[-4,104],[36,43],[5,46]],[[8675,3499],[720,20],[475,-36],[217,3]],[[5027,813],[-266,-60],[-74,23],[-96,-37],[-64,0],[-153,22],[-81,51],[-47,57],[-44,8],[-22,-9],[-63,-97],[-83,0],[-5,-45],[-36,-15],[-49,58],[-118,-30],[-59,59],[-22,-14],[-28,28],[-15,70],[-44,48],[-16,-42],[-33,-35],[-29,-7],[-4,-29],[-172,3],[-375,-31],[-165,-81],[-86,-20],[-35,-39],[-126,43],[-27,27],[-139,32],[-110,71],[-89,100],[-134,-23],[-42,10],[-69,49],[-90,-10],[-92,43]],[[4143,2991],[-9,-19],[18,-40],[39,-18],[13,-28],[3,-51],[39,-109],[-4,-65],[14,-33],[-24,-64],[-54,-21],[-11,-20],[8,-20],[49,-2],[-35,-87],[-51,17],[-26,-6],[-8,-21],[18,-29],[-17,-37],[-1,-45],[27,-63],[-5,-131],[-51,-34],[-7,-65],[68,-72],[80,-15],[31,26],[68,-9],[28,-20],[8,-24],[99,-15],[20,-37],[-16,-61],[8,-161],[54,-63],[21,-46],[83,-5],[106,24],[61,-63],[48,-107],[114,-61],[30,-56],[3,-68],[-28,-37],[-14,-76],[25,-16],[16,-46],[41,-16],[12,-54],[-7,-109]],[[8675,3499],[13,56],[-14,32],[23,34],[59,26],[4,110],[-35,79],[-29,17],[8,88],[-30,71],[-47,-11],[-62,13],[4,30],[-46,5],[-5,27],[-17,-7],[-13,37],[60,78],[40,107],[-3,49],[-37,23],[-39,79],[-90,106],[-51,10],[-61,-12],[-72,-40],[-40,-87],[-169,56],[-63,-59],[-57,33],[-42,4],[-95,-4],[-15,-26],[-42,38],[-131,-21],[-85,-54],[-26,17],[-224,-29],[-22,-29],[-71,-18],[-5,37],[-51,-14],[-18,15],[-17,-16],[-65,5],[-19,57],[-102,11],[-64,-24],[-90,32],[-76,104],[1,63]],[[6647,4597],[8,19],[39,-10],[16,22],[29,-6],[30,21],[133,39],[17,-7],[60,28],[111,-78],[46,58],[60,44],[27,-11],[35,33],[108,11],[60,54],[16,-8],[31,63],[-2,24],[-27,11],[-37,-88],[-42,-41],[-61,-11],[-82,32],[38,114],[41,25],[45,-19],[-9,36],[32,64],[99,80],[20,59],[-132,-120],[-17,44],[79,115],[-5,99],[81,22],[0,36],[61,37],[16,66],[49,98],[17,135],[25,33],[54,-17],[38,-75],[-1,21],[102,36],[52,-27],[3,-100],[-27,-41],[9,-14],[-18,-53],[14,-51],[44,-69],[-17,-25],[-17,-91],[-84,0],[1,-26],[159,-150],[16,-34],[45,12],[32,-26],[41,68],[34,23],[68,95],[-5,23],[57,30],[27,39],[13,435],[14,95],[29,23],[7,32],[-15,15],[123,69],[83,113],[26,-26],[26,2],[49,102],[39,1],[38,78],[31,-4],[118,-76],[96,-40],[-25,-260],[57,-127],[105,-17],[41,-32],[-6,-63],[17,-58],[11,-4],[17,1],[35,85],[54,-1],[138,65],[56,87],[54,-18],[136,10],[79,-39],[44,10],[132,78],[67,8],[63,-29],[42,7],[94,126],[63,54],[40,11],[11,-19],[-2,-44],[8,10],[31,-19],[54,18],[28,-9],[9,15],[134,-50],[106,17],[13,15],[22,-17],[62,28],[41,52],[18,-15],[-199,-271],[-195,-195],[-15,-37],[-69,-17],[-46,-57],[-59,-43],[-9,-79],[-39,-52],[21,-70],[-6,-99],[16,-19],[75,-18],[25,41],[46,12],[15,-55],[95,17],[12,-24],[-1,-32],[-30,-8],[-11,-36],[-54,-21],[-102,-114],[5,-107],[-67,-105],[-11,-63],[-43,-52],[2,-99],[-12,-67],[18,-29],[4,-80],[38,-113],[3,-59],[-5,-33],[-46,-34],[-18,-47],[27,-30],[24,-75],[-4,-29],[22,-72],[-22,-29]],[[6847,800],[-51,-18],[-60,51],[-27,6],[-48,-27],[-77,28],[-4,31],[-26,13],[-110,1],[-17,10],[-4,38],[-21,21],[-50,42],[-42,12],[-55,-53],[-256,13],[-84,-27],[-66,12],[-104,-24],[-85,8],[-147,43],[-77,-55],[-122,-21],[-287,-91]],[[5162,4519],[88,2],[92,96],[31,54],[73,-14],[54,35],[-24,-81],[-48,-13],[-52,-41],[58,-48],[14,30],[65,21],[171,11],[48,60],[27,1],[65,46],[113,-42],[76,92],[27,-105],[-56,-113],[-7,-29],[12,-28],[-27,-90],[-4,-71],[-17,-35],[40,-73],[-2,-141],[16,-16],[-2,-37],[26,8],[78,-40],[24,12],[10,-15],[138,139],[29,8],[58,-13],[18,55],[33,43],[83,183],[113,204],[6,39],[38,-16]]],"transform":{"scale":[0.00022992643324355497,0.00017528580634767197],"translate":[89.816817,25.029521]},"objects":{"meghalaya_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2]],"type":"Polygon","properties":{"cartodb_id":614,"censuscode":293,"dt_cen_cd":1,"st_cen_cd":17,"st_nm":"Meghalaya","district":"West Garo Hills"}},{"arcs":[[3,4,5]],"type":"Polygon","properties":{"cartodb_id":239,"censuscode":299,"dt_cen_cd":7,"st_cen_cd":17,"st_nm":"Meghalaya","district":"Jaintia Hills"}},{"arcs":[[6,7,-3,8]],"type":"Polygon","properties":{"cartodb_id":168,"censuscode":294,"dt_cen_cd":2,"st_cen_cd":17,"st_nm":"Meghalaya","district":"East Garo Hills"}},{"arcs":[[9,10,11,-4]],"type":"Polygon","properties":{"cartodb_id":171,"censuscode":298,"dt_cen_cd":6,"st_cen_cd":17,"st_nm":"Meghalaya","district":"East Khasi Hills"}},{"arcs":[[12,-1,-8,13]],"type":"Polygon","properties":{"cartodb_id":546,"censuscode":295,"dt_cen_cd":3,"st_cen_cd":17,"st_nm":"Meghalaya","district":"South Garo Hills"}},{"arcs":[[-5,-12,14,15]],"type":"Polygon","properties":{"cartodb_id":483,"censuscode":297,"dt_cen_cd":5,"st_cen_cd":17,"st_nm":"Meghalaya","district":"Ri-Bhoi"}},{"arcs":[[-11,16,-14,-7,17,-15]],"type":"Polygon","properties":{"cartodb_id":617,"censuscode":296,"dt_cen_cd":4,"st_cen_cd":17,"st_nm":"Meghalaya","district":"West Khasi Hills"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [2201, 2486], + [-72, -270], + [44, -195], + [-22, -108], + [-205, -252], + [-25, -74], + [0, -176], + [-35, -136], + [-80, -105], + [-6, -96], + [25, -83] + ], + [ + [1825, 991], + [-83, -4], + [-116, 75], + [-122, 42], + [-206, 4], + [-51, 60], + [-123, 52], + [-55, 69], + [-219, 90], + [-124, 77], + [-19, 74], + [-19, 16], + [-187, -8], + [-92, 47], + [-36, -16], + [-40, -56], + [-69, -46], + [-152, 39], + [-21, 11], + [22, 129], + [-20, 44], + [-27, 22], + [-39, 99], + [-27, 128], + [8, 107], + [45, 86], + [35, 178], + [82, 161], + [1, 80], + [32, -6], + [69, 91], + [0, 39], + [-42, 148], + [12, 43], + [-8, 45], + [31, 55], + [17, -2], + [38, 51], + [172, 33], + [43, -5], + [25, 28], + [107, 23], + [28, 16], + [28, 92], + [100, -37], + [39, 81], + [27, 22], + [5, 35], + [-60, 88], + [-15, 4], + [-8, -15], + [-70, 27], + [-12, 63], + [-146, 121], + [-43, 158], + [-69, 45], + [-11, 47], + [-18, 7], + [-87, 133], + [-7, 44], + [12, 52], + [115, -28], + [51, 30], + [0, 46], + [94, 125], + [-19, 100], + [5, 108], + [-28, 30], + [-4, 48], + [102, 9], + [24, 11], + [10, 34], + [65, 8], + [46, 39], + [-17, 11], + [12, 25], + [35, -10], + [59, 106], + [-14, 34], + [-60, 41], + [71, 83], + [29, 7], + [62, -21], + [44, 46], + [12, 53], + [36, 43], + [40, 21], + [24, -9], + [12, 39], + [49, 24], + [-17, 43], + [75, 32], + [24, 70] + ], + [ + [1297, 5275], + [173, -174], + [34, -57], + [97, -72], + [189, 138], + [295, 40], + [156, -11], + [227, 90], + [180, 38], + [-35, -174], + [-140, -313], + [6, -153], + [-17, -37], + [-53, -19], + [-80, 5], + [-30, -21], + [-16, -134], + [8, -14], + [151, 3], + [71, -23], + [34, -180], + [32, -94], + [151, -313], + [-38, -91], + [-2, -44], + [-112, -409], + [-16, -279], + [-311, -384], + [-38, -60], + [-12, -47] + ], + [ + [9582, 898], + [22, 56], + [-4, 26], + [-59, 39], + [-98, 211], + [-13, 60], + [16, 109], + [81, 124], + [42, 28], + [29, 43], + [44, 8], + [37, 37], + [37, 14], + [36, -30], + [49, 19], + [78, -53], + [37, 23], + [25, -36], + [40, -14], + [20, 21], + [6, 64], + [23, 60], + [-33, 48], + [4, 48], + [-19, 33], + [12, 155], + [-42, 94], + [37, 44], + [9, 43], + [-43, 124], + [2, 49], + [-29, 56], + [57, 87], + [2, 25], + [-18, 61], + [-34, 29], + [-8, 37], + [21, 57], + [-5, 59], + [23, 36], + [36, 134], + [-28, 46], + [-2, 61], + [61, 118], + [1, 49], + [17, 32], + [-16, 40], + [79, 128], + [-16, 17], + [-11, 69] + ], + [ + [10087, 3486], + [35, -8], + [26, 17], + [11, 38], + [18, -20], + [8, 10], + [-22, 95], + [8, 32], + [29, 13] + ], + [ + [10200, 3663], + [46, -37], + [73, 95], + [53, 22], + [46, 49], + [80, 116], + [15, -7], + [19, -38], + [49, 14], + [97, 0], + [100, 36], + [64, 51], + [41, -14], + [69, 8], + [79, 55], + [49, 9], + [37, 57], + [59, 40], + [8, -6], + [-14, -28], + [14, -25], + [104, 0], + [24, -15], + [-17, -18], + [1, -25], + [19, -19], + [70, 10], + [38, -60], + [-64, -60], + [19, -35], + [2, -76], + [10, -20], + [24, 10], + [111, -39], + [69, -106], + [88, -234], + [39, -32], + [29, 16], + [69, -24], + [31, 11], + [18, -21], + [57, -13], + [-6, -109], + [20, -58], + [0, -48], + [50, -79], + [39, -4], + [26, -39], + [66, 25], + [27, 48], + [95, 28], + [43, 95], + [34, 28], + [22, 0], + [31, -41], + [0, -84], + [-14, -40], + [-32, -19], + [-23, -129], + [-100, -124], + [-53, -18], + [-148, -126], + [-33, -55], + [-2, -76], + [17, -19], + [47, 50], + [14, -30], + [55, 23], + [14, -43], + [-5, -58], + [23, -32], + [16, -182], + [24, 5], + [25, 36], + [36, 8], + [2, 54], + [38, -33], + [0, -35], + [16, -18], + [55, 91], + [-3, -66], + [28, -77], + [16, -6], + [43, 44], + [28, -49], + [58, -49], + [30, -69], + [55, -19], + [22, -54], + [32, 30], + [50, 5], + [-4, -43], + [19, -57], + [34, -32], + [12, -55], + [41, -76], + [52, 25], + [52, -40], + [15, -86], + [-18, -54], + [36, -131], + [-13, -38], + [-84, -54], + [30, -48], + [-53, -64], + [33, -92], + [61, -11], + [79, -68], + [-108, -93], + [-90, 5], + [-51, 22], + [-22, -27], + [-38, 1], + [-125, -72], + [-46, -52], + [-63, 10], + [-55, -34], + [-48, -131], + [-51, -17], + [-26, -34], + [-25, -43], + [-10, -72], + [-36, -42], + [-51, 37], + [-50, 4], + [-73, 41], + [-104, -11], + [-77, 42], + [-19, -17], + [-48, 32], + [3, -82], + [22, -21], + [12, -56], + [42, -71], + [-21, -2], + [-50, 38], + [-183, 13], + [-18, -44], + [0, -83], + [-24, -86], + [-38, -78], + [-27, -14], + [2, -29], + [19, -13], + [-6, -58], + [-28, -12], + [-44, 40], + [-38, -47], + [-57, -12], + [-30, 25], + [-59, -5], + [-54, 48], + [-86, 18], + [-21, 25], + [-68, -7], + [-19, 12], + [-17, 158], + [-32, 25], + [-43, -9], + [-66, -52], + [-48, 1], + [-296, 143], + [-88, 83], + [26, 20], + [33, 0], + [9, 19], + [-109, 39], + [-53, 61], + [-14, -16], + [24, -62], + [-61, 6], + [-175, 114], + [-4, 77], + [-53, 52], + [-178, 102], + [-84, 23], + [-68, -32], + [-49, 17], + [-22, -12], + [-58, 25] + ], + [ + [5162, 4519], + [-133, -160], + [-19, -72], + [-95, -63], + [-14, -37], + [12, -62], + [38, 11], + [41, -29], + [42, 17], + [49, -48], + [-30, -36], + [-25, -68], + [-66, -88], + [-14, -91], + [-89, -102], + [-59, -113], + [-23, -16], + [-18, -77], + [-61, -29], + [-61, -92], + [-1, -49], + [-34, -42], + [-42, -18], + [-57, -56], + [-50, -14], + [-34, 11], + [-54, -23], + [-4, -40], + [-18, -11], + [-18, 39], + [-29, 13], + [-38, -78], + [-14, -1], + [-25, 59], + [-22, 16], + [-54, -135], + [0, -44] + ], + [ + [4143, 2991], + [-72, -37], + [-86, -83], + [-123, -148], + [-99, -146], + [-88, -168], + [-15, -80], + [-47, -126], + [-172, 50], + [-110, -20], + [-37, 36], + [-85, 34], + [-143, -2], + [-74, 31], + [-112, 86], + [-129, -14], + [-179, 40], + [-173, -21], + [-71, 28], + [-78, 7], + [-49, 28] + ], + [ + [1297, 5275], + [34, 40], + [20, -23], + [73, 6], + [32, 36], + [26, 1], + [4, -26], + [18, -11], + [76, -7], + [28, -72], + [50, 72], + [63, 26], + [18, -44], + [64, 7], + [258, 50], + [163, 59], + [25, 81], + [30, 10], + [11, 38], + [31, 34], + [80, 43], + [97, 5], + [41, 16], + [15, -28], + [48, -19], + [27, -77], + [49, -19], + [125, 60], + [7, 21], + [79, 68], + [54, -32], + [70, -78], + [34, -78], + [90, -138], + [-3, -124], + [-33, -46], + [-33, -108], + [-32, -53], + [6, -22], + [56, 27], + [93, 108], + [28, 53], + [78, 56], + [7, 52], + [42, 67], + [21, -34], + [64, -12], + [14, -28], + [103, -54], + [-93, -102], + [-5, -42], + [33, -72], + [47, -4], + [18, 44], + [-7, 59], + [45, 37], + [165, 74], + [45, 82], + [117, 8], + [21, 14], + [13, -31], + [20, -3], + [96, 49], + [-32, -94], + [17, -46], + [37, 7], + [-53, -107], + [22, -17], + [20, 40], + [39, 13], + [-6, -60], + [89, -16], + [15, 74], + [44, 82], + [74, 66], + [5, 28], + [61, -40], + [53, 12], + [3, -51], + [13, 1], + [15, 36], + [129, -11], + [-2, 22], + [12, 14], + [21, -17], + [13, 32], + [40, -73], + [18, -9], + [-5, -34], + [25, -11], + [78, -93], + [-14, 170], + [71, -20], + [46, 46], + [13, -49], + [53, -29], + [12, -36], + [27, -128], + [2, -103], + [76, 16], + [125, -32], + [67, 20], + [-11, -122], + [-59, -53], + [-1, -48], + [-53, -152] + ], + [ + [9582, 898], + [-26, 9], + [-67, -26], + [-54, -74], + [-157, 67], + [-147, -3], + [-235, -44], + [-78, 21], + [-152, -53], + [-150, -14], + [-110, 27], + [-12, -26], + [17, -76], + [-16, -30], + [-121, 50], + [-50, -3], + [-46, -94], + [-97, -18], + [-48, -45], + [-44, 9], + [-37, -38], + [-61, 38], + [-18, 73], + [-24, 17], + [-59, -20], + [-17, 21], + [12, 35], + [-10, 78], + [30, 32], + [-24, 8], + [-101, -20], + [-23, -38], + [-117, -83], + [-85, -23], + [-88, 1], + [-32, -45], + [-32, -14], + [-96, 8], + [-18, 76], + [-15, 10], + [-75, -8], + [-29, 14], + [-33, 20], + [-78, 95], + [-43, -36], + [-69, 24] + ], + [ + [6847, 800], + [-37, 37], + [-72, 163], + [-40, 135], + [2, 29], + [46, 4], + [27, 46], + [19, 5], + [43, -24], + [8, 36], + [31, 32], + [36, 69], + [42, 8], + [45, -17], + [68, 63], + [104, -25], + [23, 15], + [49, -45], + [25, 9], + [19, 80], + [30, 25], + [116, -27], + [22, 9], + [22, -22], + [48, 18], + [19, 43], + [20, 101], + [-15, 43], + [14, 46], + [-17, 34], + [6, 23], + [-108, 80], + [-3, 26], + [4, 29], + [20, 14], + [41, 99], + [-7, 31], + [14, 124], + [25, 70], + [0, 35], + [41, 55], + [-8, 55], + [9, 81], + [-30, 139], + [-1, 68], + [-35, 54], + [11, 25], + [-8, 47], + [24, -4], + [6, 23], + [144, 35], + [145, 120], + [33, -20], + [28, 18], + [20, 43], + [87, 17], + [21, -136], + [51, -34], + [82, 22], + [48, 43], + [-18, 53], + [12, 20], + [63, 40], + [7, 32], + [37, 31], + [27, -5], + [16, 67], + [27, -8], + [180, 91], + [83, 113], + [-4, 104], + [36, 43], + [5, 46] + ], + [ + [8675, 3499], + [720, 20], + [475, -36], + [217, 3] + ], + [ + [5027, 813], + [-266, -60], + [-74, 23], + [-96, -37], + [-64, 0], + [-153, 22], + [-81, 51], + [-47, 57], + [-44, 8], + [-22, -9], + [-63, -97], + [-83, 0], + [-5, -45], + [-36, -15], + [-49, 58], + [-118, -30], + [-59, 59], + [-22, -14], + [-28, 28], + [-15, 70], + [-44, 48], + [-16, -42], + [-33, -35], + [-29, -7], + [-4, -29], + [-172, 3], + [-375, -31], + [-165, -81], + [-86, -20], + [-35, -39], + [-126, 43], + [-27, 27], + [-139, 32], + [-110, 71], + [-89, 100], + [-134, -23], + [-42, 10], + [-69, 49], + [-90, -10], + [-92, 43] + ], + [ + [4143, 2991], + [-9, -19], + [18, -40], + [39, -18], + [13, -28], + [3, -51], + [39, -109], + [-4, -65], + [14, -33], + [-24, -64], + [-54, -21], + [-11, -20], + [8, -20], + [49, -2], + [-35, -87], + [-51, 17], + [-26, -6], + [-8, -21], + [18, -29], + [-17, -37], + [-1, -45], + [27, -63], + [-5, -131], + [-51, -34], + [-7, -65], + [68, -72], + [80, -15], + [31, 26], + [68, -9], + [28, -20], + [8, -24], + [99, -15], + [20, -37], + [-16, -61], + [8, -161], + [54, -63], + [21, -46], + [83, -5], + [106, 24], + [61, -63], + [48, -107], + [114, -61], + [30, -56], + [3, -68], + [-28, -37], + [-14, -76], + [25, -16], + [16, -46], + [41, -16], + [12, -54], + [-7, -109] + ], + [ + [8675, 3499], + [13, 56], + [-14, 32], + [23, 34], + [59, 26], + [4, 110], + [-35, 79], + [-29, 17], + [8, 88], + [-30, 71], + [-47, -11], + [-62, 13], + [4, 30], + [-46, 5], + [-5, 27], + [-17, -7], + [-13, 37], + [60, 78], + [40, 107], + [-3, 49], + [-37, 23], + [-39, 79], + [-90, 106], + [-51, 10], + [-61, -12], + [-72, -40], + [-40, -87], + [-169, 56], + [-63, -59], + [-57, 33], + [-42, 4], + [-95, -4], + [-15, -26], + [-42, 38], + [-131, -21], + [-85, -54], + [-26, 17], + [-224, -29], + [-22, -29], + [-71, -18], + [-5, 37], + [-51, -14], + [-18, 15], + [-17, -16], + [-65, 5], + [-19, 57], + [-102, 11], + [-64, -24], + [-90, 32], + [-76, 104], + [1, 63] + ], + [ + [6647, 4597], + [8, 19], + [39, -10], + [16, 22], + [29, -6], + [30, 21], + [133, 39], + [17, -7], + [60, 28], + [111, -78], + [46, 58], + [60, 44], + [27, -11], + [35, 33], + [108, 11], + [60, 54], + [16, -8], + [31, 63], + [-2, 24], + [-27, 11], + [-37, -88], + [-42, -41], + [-61, -11], + [-82, 32], + [38, 114], + [41, 25], + [45, -19], + [-9, 36], + [32, 64], + [99, 80], + [20, 59], + [-132, -120], + [-17, 44], + [79, 115], + [-5, 99], + [81, 22], + [0, 36], + [61, 37], + [16, 66], + [49, 98], + [17, 135], + [25, 33], + [54, -17], + [38, -75], + [-1, 21], + [102, 36], + [52, -27], + [3, -100], + [-27, -41], + [9, -14], + [-18, -53], + [14, -51], + [44, -69], + [-17, -25], + [-17, -91], + [-84, 0], + [1, -26], + [159, -150], + [16, -34], + [45, 12], + [32, -26], + [41, 68], + [34, 23], + [68, 95], + [-5, 23], + [57, 30], + [27, 39], + [13, 435], + [14, 95], + [29, 23], + [7, 32], + [-15, 15], + [123, 69], + [83, 113], + [26, -26], + [26, 2], + [49, 102], + [39, 1], + [38, 78], + [31, -4], + [118, -76], + [96, -40], + [-25, -260], + [57, -127], + [105, -17], + [41, -32], + [-6, -63], + [17, -58], + [11, -4], + [17, 1], + [35, 85], + [54, -1], + [138, 65], + [56, 87], + [54, -18], + [136, 10], + [79, -39], + [44, 10], + [132, 78], + [67, 8], + [63, -29], + [42, 7], + [94, 126], + [63, 54], + [40, 11], + [11, -19], + [-2, -44], + [8, 10], + [31, -19], + [54, 18], + [28, -9], + [9, 15], + [134, -50], + [106, 17], + [13, 15], + [22, -17], + [62, 28], + [41, 52], + [18, -15], + [-199, -271], + [-195, -195], + [-15, -37], + [-69, -17], + [-46, -57], + [-59, -43], + [-9, -79], + [-39, -52], + [21, -70], + [-6, -99], + [16, -19], + [75, -18], + [25, 41], + [46, 12], + [15, -55], + [95, 17], + [12, -24], + [-1, -32], + [-30, -8], + [-11, -36], + [-54, -21], + [-102, -114], + [5, -107], + [-67, -105], + [-11, -63], + [-43, -52], + [2, -99], + [-12, -67], + [18, -29], + [4, -80], + [38, -113], + [3, -59], + [-5, -33], + [-46, -34], + [-18, -47], + [27, -30], + [24, -75], + [-4, -29], + [22, -72], + [-22, -29] + ], + [ + [6847, 800], + [-51, -18], + [-60, 51], + [-27, 6], + [-48, -27], + [-77, 28], + [-4, 31], + [-26, 13], + [-110, 1], + [-17, 10], + [-4, 38], + [-21, 21], + [-50, 42], + [-42, 12], + [-55, -53], + [-256, 13], + [-84, -27], + [-66, 12], + [-104, -24], + [-85, 8], + [-147, 43], + [-77, -55], + [-122, -21], + [-287, -91] + ], + [ + [5162, 4519], + [88, 2], + [92, 96], + [31, 54], + [73, -14], + [54, 35], + [-24, -81], + [-48, -13], + [-52, -41], + [58, -48], + [14, 30], + [65, 21], + [171, 11], + [48, 60], + [27, 1], + [65, 46], + [113, -42], + [76, 92], + [27, -105], + [-56, -113], + [-7, -29], + [12, -28], + [-27, -90], + [-4, -71], + [-17, -35], + [40, -73], + [-2, -141], + [16, -16], + [-2, -37], + [26, 8], + [78, -40], + [24, 12], + [10, -15], + [138, 139], + [29, 8], + [58, -13], + [18, 55], + [33, 43], + [83, 183], + [113, 204], + [6, 39], + [38, -16] + ] + ], + "transform": { + "scale": [0.00022992643324355497, 0.00017528580634767197], + "translate": [89.816817, 25.029521] + }, + "objects": { + "meghalaya_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2]], + "type": "Polygon", + "properties": { + "cartodb_id": 614, + "censuscode": 293, + "dt_cen_cd": 1, + "st_cen_cd": 17, + "st_nm": "Meghalaya", + "district": "West Garo Hills" + } + }, + { + "arcs": [[3, 4, 5]], + "type": "Polygon", + "properties": { + "cartodb_id": 239, + "censuscode": 299, + "dt_cen_cd": 7, + "st_cen_cd": 17, + "st_nm": "Meghalaya", + "district": "Jaintia Hills" + } + }, + { + "arcs": [[6, 7, -3, 8]], + "type": "Polygon", + "properties": { + "cartodb_id": 168, + "censuscode": 294, + "dt_cen_cd": 2, + "st_cen_cd": 17, + "st_nm": "Meghalaya", + "district": "East Garo Hills" + } + }, + { + "arcs": [[9, 10, 11, -4]], + "type": "Polygon", + "properties": { + "cartodb_id": 171, + "censuscode": 298, + "dt_cen_cd": 6, + "st_cen_cd": 17, + "st_nm": "Meghalaya", + "district": "East Khasi Hills" + } + }, + { + "arcs": [[12, -1, -8, 13]], + "type": "Polygon", + "properties": { + "cartodb_id": 546, + "censuscode": 295, + "dt_cen_cd": 3, + "st_cen_cd": 17, + "st_nm": "Meghalaya", + "district": "South Garo Hills" + } + }, + { + "arcs": [[-5, -12, 14, 15]], + "type": "Polygon", + "properties": { + "cartodb_id": 483, + "censuscode": 297, + "dt_cen_cd": 5, + "st_cen_cd": 17, + "st_nm": "Meghalaya", + "district": "Ri-Bhoi" + } + }, + { + "arcs": [[-11, 16, -14, -7, 17, -15]], + "type": "Polygon", + "properties": { + "cartodb_id": 617, + "censuscode": 296, + "dt_cen_cd": 4, + "st_cen_cd": 17, + "st_nm": "Meghalaya", + "district": "West Khasi Hills" + } + } + ] + } + } +} diff --git a/public/maps/mizoram.json b/public/maps/mizoram.json index d6e9b7dead..3cb583c93a 100644 --- a/public/maps/mizoram.json +++ b/public/maps/mizoram.json @@ -1 +1,1488 @@ -{"type":"Topology","arcs":[[[3213,7859],[45,-21],[2,-42],[-29,-14],[75,-8],[47,-67],[-11,-146]],[[3342,7561],[-40,-10],[31,-49],[-8,-32],[37,-23],[-36,-91],[11,-30],[-16,-26],[33,-5],[-12,-31],[32,-72],[-15,-98],[42,-143],[83,-48],[-33,-54],[26,-2],[-4,-12],[25,-15],[101,-3],[39,101],[-18,166],[87,-8],[36,-38],[31,10],[67,-4],[24,-9],[15,-27],[115,35],[48,-26],[87,11],[91,-23],[110,-4],[23,16],[-5,30],[20,40],[108,23],[25,-6],[9,-18],[72,-25],[18,-72],[71,-45],[9,-24],[-24,-82],[74,-125],[36,10],[43,-29],[69,-1],[79,49],[85,-4],[71,24],[34,45],[48,-21],[80,2],[-16,-59],[11,-24],[16,-11],[71,-1],[15,-12],[33,-2],[39,-50],[-18,-32],[25,-21],[-7,-72],[24,-10],[-16,-14],[-5,-77],[52,-6],[4,-20],[132,-38],[53,-39],[19,1],[10,-17],[206,-84],[139,11],[37,-37],[-16,-22],[-4,-113],[32,-19],[120,-10],[149,-46],[22,-10],[-12,-14],[13,-17],[96,-15],[249,-121]],[[6749,5787],[-8,-31],[32,-26],[71,-13],[40,-72],[3,-28],[-12,-25],[-30,-13],[-1,-22],[29,-18],[41,-62],[14,-105],[99,-45],[17,-18],[-43,-30],[-187,-2],[-27,-33],[28,-38],[-25,-96],[-42,-72],[-66,-36],[-7,-139],[-74,-50],[11,-33],[30,-7],[-3,-25],[-131,-32],[36,-127]],[[6544,4589],[-153,71],[35,37],[-61,13],[-119,-34],[0,-33],[-58,-12],[-189,22],[-21,-67],[-74,3],[-13,-24],[-34,-18],[-9,-47],[-27,-28],[3,-33],[-23,-17],[-117,1],[-83,20],[-154,126],[-143,51],[-126,-1],[-2,-50],[35,-3],[8,-21],[-87,-64],[0,-198],[10,-30],[98,-49],[26,-38],[-31,-123],[7,-114],[61,-100],[103,-96],[-26,-46],[17,-94],[-39,-38],[4,-107],[-34,-62],[-81,-51]],[[5247,3335],[-45,-25],[-122,-29],[-33,37],[-38,127],[-33,42],[-124,-4],[-93,72],[-166,98],[-42,42],[-63,19],[-224,17],[-38,-31],[14,-51],[-10,-27],[-56,-13],[3,-39],[57,-126],[-1,-42],[-44,-82],[-121,-74],[-20,-41],[-18,-68],[31,-110],[-21,-3],[-26,22],[-48,-23],[-38,2],[-62,122],[-10,117],[-65,28],[-26,25],[-157,69],[-34,23],[-49,66],[-112,53],[-33,93],[23,53],[-101,43],[-71,0],[-215,-42],[14,102],[-33,58],[-50,43],[-49,15],[15,33],[-173,91],[-13,35],[-60,49],[-17,51],[13,88],[-23,12],[-19,37],[-19,1],[-46,96],[-56,-13],[-2,-40],[-80,-36],[-76,74],[-108,67],[-51,15],[-89,-8],[-36,15],[-49,-26],[-70,-68],[31,-21],[-17,-24]],[[1953,4321],[-56,40],[-48,17],[-89,4],[-39,24],[-39,159],[-66,134],[-14,25],[-68,45],[-3,61],[51,14],[-2,26],[-28,29],[46,33],[-37,46],[24,36],[-35,11],[-12,28],[13,24],[-56,48],[-22,57],[-42,4],[-51,-28],[-111,126],[-5,29],[-46,9],[-92,-30],[-17,82],[-33,10],[-106,-5],[-65,27],[-5,60],[28,98],[-34,44],[76,42],[18,31],[-3,28],[42,90],[-53,65],[6,23],[46,44],[-29,33],[73,85],[0,20],[-58,87],[-24,94],[-74,-5],[-26,27],[4,39],[-56,32],[11,55],[45,60],[-10,21],[-43,9],[-27,37],[35,57],[-30,117],[9,68],[-12,25],[-33,19],[-4,22],[20,100],[-32,115],[39,18],[200,6],[45,9],[92,-11],[-3,23],[-96,116],[12,11]],[[1054,7220],[54,0],[19,-10],[35,12],[38,-24],[99,10],[114,87],[-32,12],[-2,14],[134,12],[94,174],[49,-5],[23,23],[-21,30],[-14,81],[-62,40],[9,40],[15,-7],[-3,38],[-42,16],[11,12],[-9,67],[40,26],[11,24],[88,6],[58,-38],[41,-8],[38,14],[11,32],[83,-36],[29,-25],[132,4],[34,-10],[83,9],[38,-6],[74,-48],[58,11],[24,34],[80,-5],[76,40],[14,34],[-19,59],[31,19],[76,-19],[14,-23],[79,-14],[60,-43],[41,-2],[27,22],[54,5],[76,-50],[98,-6],[101,11]],[[7364,11492],[-278,-588],[137,-179],[-214,-134],[28,-234],[-119,-161],[-579,-197],[-239,-48],[10,-613],[86,-534],[-93,-437],[114,-323],[-116,-32]],[[6101,8012],[-564,366],[-189,199],[-216,47],[-302,-22],[-222,-209],[-102,-288],[-211,-326],[149,-181],[174,-67],[-202,-131],[-117,-141],[-165,16],[-78,130],[-192,28],[-158,49],[-187,-86],[-78,-5],[-99,170]],[[3213,7859],[-40,44],[17,60],[-27,55],[-54,55],[-9,53],[-4,315],[27,44],[-51,114],[-110,20],[-41,65],[23,33],[45,8],[34,66],[66,6],[16,30],[13,57],[-50,36],[-17,71],[155,56],[24,50],[3,76],[-47,18],[-131,21],[1,27],[-91,40],[-28,27],[0,60],[82,52],[101,121],[54,94],[-32,20],[-47,2],[-42,15],[-64,77],[-36,57],[-27,108],[-47,22],[83,52],[16,73],[-23,42],[-74,-1],[-36,20],[100,104],[37,-21],[63,-3],[39,39],[-77,9],[4,42],[41,17],[73,7],[8,28],[-64,58],[-85,134],[-15,108],[32,22],[109,28],[28,39],[-39,63],[-90,13],[-13,40],[-169,31],[18,32],[38,21],[-22,48]],[[2861,10979],[61,14],[65,45],[33,-36],[59,-12],[67,31],[36,45],[45,3],[74,-19],[39,86],[115,-1],[41,-22],[58,8],[28,-23],[27,-3],[125,22],[49,29],[-13,44],[101,-14],[15,57],[94,63],[105,34],[164,2],[89,24],[41,-10],[72,-45],[-3,33],[34,18],[37,-44],[23,59],[28,11],[-16,40],[31,-1],[7,11],[-1,48],[-20,12],[8,86],[28,42],[34,6],[25,87],[-26,36],[18,8],[-3,21],[17,2],[3,31],[72,30],[-5,50],[72,48],[-33,35],[1,21],[87,77],[-9,26],[22,12],[8,29],[-26,15],[70,18],[17,103],[-12,48],[20,2],[-9,15],[32,13],[2,32],[-20,-1],[34,62],[-7,53],[-66,59],[-18,0],[-55,-53],[-64,46],[-94,3],[-1,39],[32,10],[-11,37],[-31,4],[42,20],[-24,18],[0,24],[43,38],[51,1],[-22,31],[18,23],[-41,65],[-28,7],[-18,45],[-40,-7],[-15,9],[27,32],[63,16],[6,19],[-25,-1],[-30,23],[10,17],[12,-9],[66,22],[107,117],[44,24],[-25,5],[-29,35],[22,12],[-6,15],[38,7],[10,45],[-61,17],[39,55],[15,-19],[18,1],[-6,23]],[[4944,13370],[69,1],[49,101],[92,-40],[-6,-8],[39,-31],[62,-16],[38,30],[83,20],[27,-5],[44,-44],[81,29],[38,36],[35,10],[63,-11],[54,-31],[40,7],[185,-70],[-56,-58],[39,-31],[-22,-84],[17,-66],[169,-18],[-63,-137],[-132,-138],[-56,-27],[-22,-42],[44,-48],[-56,-48],[0,-49],[88,-96],[66,-21],[-55,-20],[32,-62],[-10,-41],[-34,-13],[-10,-41],[-34,-14],[-72,0],[1,-17],[60,-67],[-59,-44],[17,-74],[-111,-56],[13,-54],[-53,-63],[-97,-27],[22,-49],[100,8],[88,-7],[70,-29],[35,-29],[56,-17],[46,12],[80,-46],[124,-25],[89,19],[111,48],[78,-104],[100,-55],[-12,-96],[22,-21],[-33,-20],[11,-21],[78,28],[10,27],[56,7],[11,21],[66,20],[44,49],[0,34],[56,42],[44,7],[82,-24],[22,-34],[66,-35],[-22,-54],[22,-35],[44,-7],[143,14],[33,-20],[81,-8]],[[7282,6070],[-101,360],[-142,317],[-268,85],[-623,101],[-98,171],[-92,27],[-104,69],[16,64],[246,225],[-45,315],[30,208]],[[7364,11492],[63,-6],[66,130],[-22,42],[33,27],[77,-14],[44,14],[45,-7],[121,-68],[22,-69],[-33,-14],[-77,-130],[22,-55],[145,55],[22,34],[67,35],[22,27],[189,14],[192,-4],[38,-49],[-48,-10],[12,-46],[35,-20],[-40,-37],[26,-63],[-11,-90],[-35,-48],[23,-23],[110,-27],[33,-91],[70,-83],[47,-30],[215,-57],[-24,-235],[11,-253],[23,-31],[-7,-61],[17,-25],[43,-13],[31,-51],[-50,-179],[6,-74],[96,-158],[-14,-31],[8,-81],[49,-45],[103,-42],[63,-76],[-67,-57],[-61,-100],[50,-354],[-83,-149],[25,-46],[4,-81],[-17,-38],[-140,-124],[4,-66],[-29,-63],[21,-53],[-9,-43],[-35,-56],[-33,-130],[8,-120],[58,-75],[66,-53],[-75,-24],[-63,-52],[18,-53],[-175,-9],[-68,-24],[-13,-20],[105,-119],[-19,-109],[33,-105],[-45,-59],[-3,-45],[26,-100],[126,-175],[1,-25],[-57,-46],[-17,-127],[-36,-115],[-52,-90],[40,-37],[90,24],[29,-20],[-6,-32],[-91,-60],[-132,-59],[-23,-116],[-74,-59],[-11,-24],[55,-12],[-6,-29],[-34,-43],[-61,0],[-97,-159],[-89,-75],[-48,2],[-134,-90],[-148,0],[-37,25],[-45,11],[-115,-31],[-93,42],[-55,42],[-108,128],[-109,64],[-56,9]],[[2861,10979],[-55,20],[0,21],[41,92],[51,41],[-11,39],[16,24],[-3,18],[-72,40],[52,100],[66,37],[-84,34],[-19,-10],[10,-36],[-30,5],[-42,47],[-20,50],[-102,4],[-69,58],[-42,9],[-9,59],[-18,6],[-72,0],[20,-44],[-31,-26],[6,-66],[-45,-60],[-65,10],[37,67],[-45,3],[-4,36],[-31,6],[-28,-32],[-1,-80],[-85,-38],[-20,77],[14,58],[-15,31],[33,86],[-19,69],[18,43],[-18,55],[45,68],[-49,17],[58,85],[-38,65],[-86,47],[0,16],[52,36],[0,27],[-28,13]],[[2124,12206],[-11,16],[49,71],[-11,19],[40,35],[5,43],[41,56],[-2,73],[27,44],[108,23],[182,-29],[61,24],[93,4],[40,32],[47,140],[2,31],[-20,22],[10,72],[40,87],[9,67],[14,10],[35,-6],[55,12],[-8,-16],[33,-21],[31,-6],[2,22],[29,-16],[4,11],[18,-3],[5,27],[31,21],[8,24],[25,9],[12,-9],[15,18],[22,-6],[60,22],[70,-12],[2,13],[52,27],[8,40],[17,8],[-5,23],[28,34],[56,12],[-5,41],[31,18],[0,29],[53,70],[0,28],[30,32],[97,199],[101,120],[85,145],[-7,31],[90,76],[222,-420],[69,-91],[11,-24],[-32,-8],[5,-14],[68,2],[13,-31],[55,-5],[22,-33],[79,-34],[-49,-55],[25,-27],[6,-42],[28,-8],[54,24],[36,-5],[58,68],[87,39],[85,-12],[81,31],[50,-4],[43,-44]],[[5247,3335],[50,-136],[-39,-173],[3,-87],[76,-83],[0,-26],[-33,-23],[8,-106],[76,-206],[92,-20],[17,-24],[-31,-84],[-46,-28],[-125,37],[-15,28],[35,25],[-87,33],[-72,-34],[-179,-119],[-129,-54],[-136,-181],[-104,-4],[-81,44],[-125,-4],[-9,-29],[30,-31],[-6,-57],[19,-47],[54,-34],[24,-37],[-46,-69],[21,-58],[-17,-49],[41,-123],[9,-244],[55,-292],[-24,-108],[19,-51],[5,-135],[48,-94]],[[4625,652],[-62,-17],[-97,76],[-84,19],[-66,87],[-219,73],[-89,5],[-63,33],[7,40],[-251,87],[-39,58],[-192,21],[-67,-27],[10,-55],[-25,-285],[-30,-49],[-31,164],[-44,-10],[21,-302],[26,-49],[-21,-94],[-23,-33],[-27,-20],[-137,8],[-144,-95],[-28,-32],[-85,-40],[-138,-25],[-9,28],[52,24],[-42,72],[-80,51],[41,84],[-11,36],[-36,26],[27,79],[-12,54],[-41,22],[-8,70],[-164,226],[-67,44],[37,54],[39,21],[74,11],[62,-24],[38,-70],[88,-2],[44,156],[2,77],[-18,26],[-36,16],[-40,-4],[-21,26],[18,104],[-13,37],[-58,61],[13,92],[-15,109],[-54,90],[-45,41],[26,103],[2,86],[-71,228],[-43,61],[-26,67],[1,53],[-67,153],[-8,156],[-45,136],[-22,296],[-65,154],[-68,58],[-1,55],[72,25],[-7,104],[-26,77],[-63,63],[63,44],[-20,36],[-42,32],[-5,108],[-45,214],[-79,185]],[[7282,6070],[-35,10],[-56,-18],[-33,5],[-117,-49],[-95,50],[-64,20],[-43,-6],[-69,-71],[23,-68],[-33,-51],[32,-71],[-43,-34]],[[1054,7220],[41,33],[-92,124],[29,70],[-37,56],[-28,20],[-52,1],[-28,39],[90,69],[14,56],[-9,48],[-50,66],[-105,16],[19,25],[-62,36],[17,52],[-34,6],[-5,25],[33,45],[-1,23],[-42,2],[-37,29],[3,36],[-26,47],[-88,-29],[-32,0],[-7,130],[24,60],[-83,18],[-8,20],[46,28],[3,24],[-29,22],[-4,104],[-31,78],[24,49],[-86,40],[15,107],[-39,199],[-117,34],[-1,102],[54,24],[4,22],[-141,14],[4,44],[-37,19],[-5,31],[106,151],[24,89],[-9,34],[-22,45],[-33,15],[-42,57],[-108,51],[-20,70],[11,171],[-65,245],[78,16],[56,-15],[79,9],[-9,32],[-32,19],[4,26],[-63,59],[6,40],[14,21],[68,25],[20,52],[32,25],[25,-8],[-1,-25],[43,5],[72,-21],[80,17],[-15,7],[29,15],[1,22],[-13,23],[-26,6],[-6,23],[23,2],[-6,37],[24,5],[11,70],[53,7],[10,35],[-11,61],[-66,17],[-60,46],[-15,142],[14,2],[-5,50],[73,28],[5,25],[40,27],[-16,15],[25,11],[-12,80],[-80,74],[36,6],[-39,50],[20,18],[-40,19],[26,26],[-17,50],[12,15],[27,-1],[-13,33],[24,8],[-38,44],[18,15],[32,0],[3,21],[29,6],[-3,11],[-32,5],[48,26],[-8,63],[27,28],[-24,-1],[31,45],[-24,19],[19,15],[-24,15],[-3,48],[22,18],[-18,10],[-4,48],[32,10],[-1,20],[24,-3],[12,18],[-39,91],[-25,15],[17,87],[-3,14],[-26,8],[20,11],[-1,16],[-36,20],[3,23],[-39,20],[0,9],[35,8],[-66,41],[-26,-12],[-24,21],[31,44],[-99,-5],[8,17],[-33,12],[14,23],[-25,13],[4,23],[-21,34],[9,20],[10,20],[54,6],[567,-9],[355,10],[-30,-172],[3,-149],[25,-32],[93,-39],[2,-40],[29,-27],[-23,-36],[10,-55],[18,-7],[40,10],[52,-51],[51,-1],[67,-48],[69,44],[47,-8],[-17,40],[33,22],[-13,23],[36,29],[111,-10],[36,37],[37,-24],[25,-2],[-32,37],[47,5],[-9,19],[12,10],[19,4],[32,-18],[28,0],[34,10],[25,31]],[[6544,4589],[67,-235],[-83,-91],[-23,-72],[-28,-18],[20,-53],[48,-28],[21,-54],[-29,-41],[3,-25],[55,-82],[61,-42],[-29,-67],[74,-50],[41,-5],[73,-60],[30,-58],[21,-117],[-75,-26],[-52,-38],[-60,-79],[-47,-28],[4,-78],[-33,-47],[148,-32],[22,-34],[-24,-32],[0,-44],[36,-38],[24,-68],[-30,-64],[59,-64],[28,-25],[85,-35],[47,8],[98,-13],[120,-132],[-20,-45],[5,-30],[41,-25],[10,-30],[-25,-68],[32,-37],[-30,-73],[35,-66],[19,-117],[54,-42],[-79,-27],[33,-63],[10,-176],[42,-61],[10,-48],[-94,-29],[-48,-32],[-150,0],[-83,-14],[-68,5],[-40,-38],[79,-67],[-2,-62],[22,-41],[83,-54],[-54,-96],[-66,-23],[-122,-8],[-62,13],[-61,55],[-23,51],[-64,12],[-111,-7],[-65,18],[-57,32],[-77,-1],[-137,-27],[-57,-30],[-1,-42],[56,-77],[10,-57],[-62,-146],[95,-61],[56,-78],[-7,-61],[-105,-16],[-100,32],[-180,3],[-21,-41],[18,-27],[-9,-43],[-112,-190],[12,-100],[53,-66],[15,-48],[-8,-149],[-21,-22],[-59,-10],[-51,16],[-51,50],[-49,89],[-78,43],[-22,71],[-44,17],[-40,-2],[-106,-63],[-58,9],[8,-40],[27,-22],[-89,-69],[-93,-169],[-10,-45],[13,-40],[-40,-17],[-40,40],[-8,149],[-81,170],[-37,34],[-115,65],[-35,168],[-19,25],[-34,13],[-49,-12]]],"transform":{"scale":[0.00012877785030461348,0.00018303164331934861],"translate":[92.258907,21.94419]},"objects":{"mizoram_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6]],"type":"Polygon","properties":{"cartodb_id":347,"censuscode":286,"dt_cen_cd":6,"st_cen_cd":15,"st_nm":"Mizoram","district":"Lunglei"}},{"arcs":[[7,8,-1,9,10,11]],"type":"Polygon","properties":{"cartodb_id":5,"censuscode":283,"dt_cen_cd":3,"st_cen_cd":15,"st_nm":"Mizoram","district":"Aizawl"}},{"arcs":[[12,-8,13]],"type":"Polygon","properties":{"cartodb_id":103,"censuscode":284,"dt_cen_cd":4,"st_cen_cd":15,"st_nm":"Mizoram","district":"Champhai"}},{"arcs":[[-11,14,15]],"type":"Polygon","properties":{"cartodb_id":312,"censuscode":282,"dt_cen_cd":2,"st_cen_cd":15,"st_nm":"Mizoram","district":"Kolasib"}},{"arcs":[[16,17,-5]],"type":"Polygon","properties":{"cartodb_id":338,"censuscode":287,"dt_cen_cd":7,"st_cen_cd":15,"st_nm":"Mizoram","district":"Lawngtlai"}},{"arcs":[[-13,18,-2,-9]],"type":"Polygon","properties":{"cartodb_id":510,"censuscode":285,"dt_cen_cd":5,"st_cen_cd":15,"st_nm":"Mizoram","district":"Serchhip"}},{"arcs":[[-15,-10,-7,19]],"type":"Polygon","properties":{"cartodb_id":362,"censuscode":281,"dt_cen_cd":1,"st_cen_cd":15,"st_nm":"Mizoram","district":"Mamit"}},{"arcs":[[20,-17,-4]],"type":"Polygon","properties":{"cartodb_id":494,"censuscode":288,"dt_cen_cd":8,"st_cen_cd":15,"st_nm":"Mizoram","district":"Saiha"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [3213, 7859], + [45, -21], + [2, -42], + [-29, -14], + [75, -8], + [47, -67], + [-11, -146] + ], + [ + [3342, 7561], + [-40, -10], + [31, -49], + [-8, -32], + [37, -23], + [-36, -91], + [11, -30], + [-16, -26], + [33, -5], + [-12, -31], + [32, -72], + [-15, -98], + [42, -143], + [83, -48], + [-33, -54], + [26, -2], + [-4, -12], + [25, -15], + [101, -3], + [39, 101], + [-18, 166], + [87, -8], + [36, -38], + [31, 10], + [67, -4], + [24, -9], + [15, -27], + [115, 35], + [48, -26], + [87, 11], + [91, -23], + [110, -4], + [23, 16], + [-5, 30], + [20, 40], + [108, 23], + [25, -6], + [9, -18], + [72, -25], + [18, -72], + [71, -45], + [9, -24], + [-24, -82], + [74, -125], + [36, 10], + [43, -29], + [69, -1], + [79, 49], + [85, -4], + [71, 24], + [34, 45], + [48, -21], + [80, 2], + [-16, -59], + [11, -24], + [16, -11], + [71, -1], + [15, -12], + [33, -2], + [39, -50], + [-18, -32], + [25, -21], + [-7, -72], + [24, -10], + [-16, -14], + [-5, -77], + [52, -6], + [4, -20], + [132, -38], + [53, -39], + [19, 1], + [10, -17], + [206, -84], + [139, 11], + [37, -37], + [-16, -22], + [-4, -113], + [32, -19], + [120, -10], + [149, -46], + [22, -10], + [-12, -14], + [13, -17], + [96, -15], + [249, -121] + ], + [ + [6749, 5787], + [-8, -31], + [32, -26], + [71, -13], + [40, -72], + [3, -28], + [-12, -25], + [-30, -13], + [-1, -22], + [29, -18], + [41, -62], + [14, -105], + [99, -45], + [17, -18], + [-43, -30], + [-187, -2], + [-27, -33], + [28, -38], + [-25, -96], + [-42, -72], + [-66, -36], + [-7, -139], + [-74, -50], + [11, -33], + [30, -7], + [-3, -25], + [-131, -32], + [36, -127] + ], + [ + [6544, 4589], + [-153, 71], + [35, 37], + [-61, 13], + [-119, -34], + [0, -33], + [-58, -12], + [-189, 22], + [-21, -67], + [-74, 3], + [-13, -24], + [-34, -18], + [-9, -47], + [-27, -28], + [3, -33], + [-23, -17], + [-117, 1], + [-83, 20], + [-154, 126], + [-143, 51], + [-126, -1], + [-2, -50], + [35, -3], + [8, -21], + [-87, -64], + [0, -198], + [10, -30], + [98, -49], + [26, -38], + [-31, -123], + [7, -114], + [61, -100], + [103, -96], + [-26, -46], + [17, -94], + [-39, -38], + [4, -107], + [-34, -62], + [-81, -51] + ], + [ + [5247, 3335], + [-45, -25], + [-122, -29], + [-33, 37], + [-38, 127], + [-33, 42], + [-124, -4], + [-93, 72], + [-166, 98], + [-42, 42], + [-63, 19], + [-224, 17], + [-38, -31], + [14, -51], + [-10, -27], + [-56, -13], + [3, -39], + [57, -126], + [-1, -42], + [-44, -82], + [-121, -74], + [-20, -41], + [-18, -68], + [31, -110], + [-21, -3], + [-26, 22], + [-48, -23], + [-38, 2], + [-62, 122], + [-10, 117], + [-65, 28], + [-26, 25], + [-157, 69], + [-34, 23], + [-49, 66], + [-112, 53], + [-33, 93], + [23, 53], + [-101, 43], + [-71, 0], + [-215, -42], + [14, 102], + [-33, 58], + [-50, 43], + [-49, 15], + [15, 33], + [-173, 91], + [-13, 35], + [-60, 49], + [-17, 51], + [13, 88], + [-23, 12], + [-19, 37], + [-19, 1], + [-46, 96], + [-56, -13], + [-2, -40], + [-80, -36], + [-76, 74], + [-108, 67], + [-51, 15], + [-89, -8], + [-36, 15], + [-49, -26], + [-70, -68], + [31, -21], + [-17, -24] + ], + [ + [1953, 4321], + [-56, 40], + [-48, 17], + [-89, 4], + [-39, 24], + [-39, 159], + [-66, 134], + [-14, 25], + [-68, 45], + [-3, 61], + [51, 14], + [-2, 26], + [-28, 29], + [46, 33], + [-37, 46], + [24, 36], + [-35, 11], + [-12, 28], + [13, 24], + [-56, 48], + [-22, 57], + [-42, 4], + [-51, -28], + [-111, 126], + [-5, 29], + [-46, 9], + [-92, -30], + [-17, 82], + [-33, 10], + [-106, -5], + [-65, 27], + [-5, 60], + [28, 98], + [-34, 44], + [76, 42], + [18, 31], + [-3, 28], + [42, 90], + [-53, 65], + [6, 23], + [46, 44], + [-29, 33], + [73, 85], + [0, 20], + [-58, 87], + [-24, 94], + [-74, -5], + [-26, 27], + [4, 39], + [-56, 32], + [11, 55], + [45, 60], + [-10, 21], + [-43, 9], + [-27, 37], + [35, 57], + [-30, 117], + [9, 68], + [-12, 25], + [-33, 19], + [-4, 22], + [20, 100], + [-32, 115], + [39, 18], + [200, 6], + [45, 9], + [92, -11], + [-3, 23], + [-96, 116], + [12, 11] + ], + [ + [1054, 7220], + [54, 0], + [19, -10], + [35, 12], + [38, -24], + [99, 10], + [114, 87], + [-32, 12], + [-2, 14], + [134, 12], + [94, 174], + [49, -5], + [23, 23], + [-21, 30], + [-14, 81], + [-62, 40], + [9, 40], + [15, -7], + [-3, 38], + [-42, 16], + [11, 12], + [-9, 67], + [40, 26], + [11, 24], + [88, 6], + [58, -38], + [41, -8], + [38, 14], + [11, 32], + [83, -36], + [29, -25], + [132, 4], + [34, -10], + [83, 9], + [38, -6], + [74, -48], + [58, 11], + [24, 34], + [80, -5], + [76, 40], + [14, 34], + [-19, 59], + [31, 19], + [76, -19], + [14, -23], + [79, -14], + [60, -43], + [41, -2], + [27, 22], + [54, 5], + [76, -50], + [98, -6], + [101, 11] + ], + [ + [7364, 11492], + [-278, -588], + [137, -179], + [-214, -134], + [28, -234], + [-119, -161], + [-579, -197], + [-239, -48], + [10, -613], + [86, -534], + [-93, -437], + [114, -323], + [-116, -32] + ], + [ + [6101, 8012], + [-564, 366], + [-189, 199], + [-216, 47], + [-302, -22], + [-222, -209], + [-102, -288], + [-211, -326], + [149, -181], + [174, -67], + [-202, -131], + [-117, -141], + [-165, 16], + [-78, 130], + [-192, 28], + [-158, 49], + [-187, -86], + [-78, -5], + [-99, 170] + ], + [ + [3213, 7859], + [-40, 44], + [17, 60], + [-27, 55], + [-54, 55], + [-9, 53], + [-4, 315], + [27, 44], + [-51, 114], + [-110, 20], + [-41, 65], + [23, 33], + [45, 8], + [34, 66], + [66, 6], + [16, 30], + [13, 57], + [-50, 36], + [-17, 71], + [155, 56], + [24, 50], + [3, 76], + [-47, 18], + [-131, 21], + [1, 27], + [-91, 40], + [-28, 27], + [0, 60], + [82, 52], + [101, 121], + [54, 94], + [-32, 20], + [-47, 2], + [-42, 15], + [-64, 77], + [-36, 57], + [-27, 108], + [-47, 22], + [83, 52], + [16, 73], + [-23, 42], + [-74, -1], + [-36, 20], + [100, 104], + [37, -21], + [63, -3], + [39, 39], + [-77, 9], + [4, 42], + [41, 17], + [73, 7], + [8, 28], + [-64, 58], + [-85, 134], + [-15, 108], + [32, 22], + [109, 28], + [28, 39], + [-39, 63], + [-90, 13], + [-13, 40], + [-169, 31], + [18, 32], + [38, 21], + [-22, 48] + ], + [ + [2861, 10979], + [61, 14], + [65, 45], + [33, -36], + [59, -12], + [67, 31], + [36, 45], + [45, 3], + [74, -19], + [39, 86], + [115, -1], + [41, -22], + [58, 8], + [28, -23], + [27, -3], + [125, 22], + [49, 29], + [-13, 44], + [101, -14], + [15, 57], + [94, 63], + [105, 34], + [164, 2], + [89, 24], + [41, -10], + [72, -45], + [-3, 33], + [34, 18], + [37, -44], + [23, 59], + [28, 11], + [-16, 40], + [31, -1], + [7, 11], + [-1, 48], + [-20, 12], + [8, 86], + [28, 42], + [34, 6], + [25, 87], + [-26, 36], + [18, 8], + [-3, 21], + [17, 2], + [3, 31], + [72, 30], + [-5, 50], + [72, 48], + [-33, 35], + [1, 21], + [87, 77], + [-9, 26], + [22, 12], + [8, 29], + [-26, 15], + [70, 18], + [17, 103], + [-12, 48], + [20, 2], + [-9, 15], + [32, 13], + [2, 32], + [-20, -1], + [34, 62], + [-7, 53], + [-66, 59], + [-18, 0], + [-55, -53], + [-64, 46], + [-94, 3], + [-1, 39], + [32, 10], + [-11, 37], + [-31, 4], + [42, 20], + [-24, 18], + [0, 24], + [43, 38], + [51, 1], + [-22, 31], + [18, 23], + [-41, 65], + [-28, 7], + [-18, 45], + [-40, -7], + [-15, 9], + [27, 32], + [63, 16], + [6, 19], + [-25, -1], + [-30, 23], + [10, 17], + [12, -9], + [66, 22], + [107, 117], + [44, 24], + [-25, 5], + [-29, 35], + [22, 12], + [-6, 15], + [38, 7], + [10, 45], + [-61, 17], + [39, 55], + [15, -19], + [18, 1], + [-6, 23] + ], + [ + [4944, 13370], + [69, 1], + [49, 101], + [92, -40], + [-6, -8], + [39, -31], + [62, -16], + [38, 30], + [83, 20], + [27, -5], + [44, -44], + [81, 29], + [38, 36], + [35, 10], + [63, -11], + [54, -31], + [40, 7], + [185, -70], + [-56, -58], + [39, -31], + [-22, -84], + [17, -66], + [169, -18], + [-63, -137], + [-132, -138], + [-56, -27], + [-22, -42], + [44, -48], + [-56, -48], + [0, -49], + [88, -96], + [66, -21], + [-55, -20], + [32, -62], + [-10, -41], + [-34, -13], + [-10, -41], + [-34, -14], + [-72, 0], + [1, -17], + [60, -67], + [-59, -44], + [17, -74], + [-111, -56], + [13, -54], + [-53, -63], + [-97, -27], + [22, -49], + [100, 8], + [88, -7], + [70, -29], + [35, -29], + [56, -17], + [46, 12], + [80, -46], + [124, -25], + [89, 19], + [111, 48], + [78, -104], + [100, -55], + [-12, -96], + [22, -21], + [-33, -20], + [11, -21], + [78, 28], + [10, 27], + [56, 7], + [11, 21], + [66, 20], + [44, 49], + [0, 34], + [56, 42], + [44, 7], + [82, -24], + [22, -34], + [66, -35], + [-22, -54], + [22, -35], + [44, -7], + [143, 14], + [33, -20], + [81, -8] + ], + [ + [7282, 6070], + [-101, 360], + [-142, 317], + [-268, 85], + [-623, 101], + [-98, 171], + [-92, 27], + [-104, 69], + [16, 64], + [246, 225], + [-45, 315], + [30, 208] + ], + [ + [7364, 11492], + [63, -6], + [66, 130], + [-22, 42], + [33, 27], + [77, -14], + [44, 14], + [45, -7], + [121, -68], + [22, -69], + [-33, -14], + [-77, -130], + [22, -55], + [145, 55], + [22, 34], + [67, 35], + [22, 27], + [189, 14], + [192, -4], + [38, -49], + [-48, -10], + [12, -46], + [35, -20], + [-40, -37], + [26, -63], + [-11, -90], + [-35, -48], + [23, -23], + [110, -27], + [33, -91], + [70, -83], + [47, -30], + [215, -57], + [-24, -235], + [11, -253], + [23, -31], + [-7, -61], + [17, -25], + [43, -13], + [31, -51], + [-50, -179], + [6, -74], + [96, -158], + [-14, -31], + [8, -81], + [49, -45], + [103, -42], + [63, -76], + [-67, -57], + [-61, -100], + [50, -354], + [-83, -149], + [25, -46], + [4, -81], + [-17, -38], + [-140, -124], + [4, -66], + [-29, -63], + [21, -53], + [-9, -43], + [-35, -56], + [-33, -130], + [8, -120], + [58, -75], + [66, -53], + [-75, -24], + [-63, -52], + [18, -53], + [-175, -9], + [-68, -24], + [-13, -20], + [105, -119], + [-19, -109], + [33, -105], + [-45, -59], + [-3, -45], + [26, -100], + [126, -175], + [1, -25], + [-57, -46], + [-17, -127], + [-36, -115], + [-52, -90], + [40, -37], + [90, 24], + [29, -20], + [-6, -32], + [-91, -60], + [-132, -59], + [-23, -116], + [-74, -59], + [-11, -24], + [55, -12], + [-6, -29], + [-34, -43], + [-61, 0], + [-97, -159], + [-89, -75], + [-48, 2], + [-134, -90], + [-148, 0], + [-37, 25], + [-45, 11], + [-115, -31], + [-93, 42], + [-55, 42], + [-108, 128], + [-109, 64], + [-56, 9] + ], + [ + [2861, 10979], + [-55, 20], + [0, 21], + [41, 92], + [51, 41], + [-11, 39], + [16, 24], + [-3, 18], + [-72, 40], + [52, 100], + [66, 37], + [-84, 34], + [-19, -10], + [10, -36], + [-30, 5], + [-42, 47], + [-20, 50], + [-102, 4], + [-69, 58], + [-42, 9], + [-9, 59], + [-18, 6], + [-72, 0], + [20, -44], + [-31, -26], + [6, -66], + [-45, -60], + [-65, 10], + [37, 67], + [-45, 3], + [-4, 36], + [-31, 6], + [-28, -32], + [-1, -80], + [-85, -38], + [-20, 77], + [14, 58], + [-15, 31], + [33, 86], + [-19, 69], + [18, 43], + [-18, 55], + [45, 68], + [-49, 17], + [58, 85], + [-38, 65], + [-86, 47], + [0, 16], + [52, 36], + [0, 27], + [-28, 13] + ], + [ + [2124, 12206], + [-11, 16], + [49, 71], + [-11, 19], + [40, 35], + [5, 43], + [41, 56], + [-2, 73], + [27, 44], + [108, 23], + [182, -29], + [61, 24], + [93, 4], + [40, 32], + [47, 140], + [2, 31], + [-20, 22], + [10, 72], + [40, 87], + [9, 67], + [14, 10], + [35, -6], + [55, 12], + [-8, -16], + [33, -21], + [31, -6], + [2, 22], + [29, -16], + [4, 11], + [18, -3], + [5, 27], + [31, 21], + [8, 24], + [25, 9], + [12, -9], + [15, 18], + [22, -6], + [60, 22], + [70, -12], + [2, 13], + [52, 27], + [8, 40], + [17, 8], + [-5, 23], + [28, 34], + [56, 12], + [-5, 41], + [31, 18], + [0, 29], + [53, 70], + [0, 28], + [30, 32], + [97, 199], + [101, 120], + [85, 145], + [-7, 31], + [90, 76], + [222, -420], + [69, -91], + [11, -24], + [-32, -8], + [5, -14], + [68, 2], + [13, -31], + [55, -5], + [22, -33], + [79, -34], + [-49, -55], + [25, -27], + [6, -42], + [28, -8], + [54, 24], + [36, -5], + [58, 68], + [87, 39], + [85, -12], + [81, 31], + [50, -4], + [43, -44] + ], + [ + [5247, 3335], + [50, -136], + [-39, -173], + [3, -87], + [76, -83], + [0, -26], + [-33, -23], + [8, -106], + [76, -206], + [92, -20], + [17, -24], + [-31, -84], + [-46, -28], + [-125, 37], + [-15, 28], + [35, 25], + [-87, 33], + [-72, -34], + [-179, -119], + [-129, -54], + [-136, -181], + [-104, -4], + [-81, 44], + [-125, -4], + [-9, -29], + [30, -31], + [-6, -57], + [19, -47], + [54, -34], + [24, -37], + [-46, -69], + [21, -58], + [-17, -49], + [41, -123], + [9, -244], + [55, -292], + [-24, -108], + [19, -51], + [5, -135], + [48, -94] + ], + [ + [4625, 652], + [-62, -17], + [-97, 76], + [-84, 19], + [-66, 87], + [-219, 73], + [-89, 5], + [-63, 33], + [7, 40], + [-251, 87], + [-39, 58], + [-192, 21], + [-67, -27], + [10, -55], + [-25, -285], + [-30, -49], + [-31, 164], + [-44, -10], + [21, -302], + [26, -49], + [-21, -94], + [-23, -33], + [-27, -20], + [-137, 8], + [-144, -95], + [-28, -32], + [-85, -40], + [-138, -25], + [-9, 28], + [52, 24], + [-42, 72], + [-80, 51], + [41, 84], + [-11, 36], + [-36, 26], + [27, 79], + [-12, 54], + [-41, 22], + [-8, 70], + [-164, 226], + [-67, 44], + [37, 54], + [39, 21], + [74, 11], + [62, -24], + [38, -70], + [88, -2], + [44, 156], + [2, 77], + [-18, 26], + [-36, 16], + [-40, -4], + [-21, 26], + [18, 104], + [-13, 37], + [-58, 61], + [13, 92], + [-15, 109], + [-54, 90], + [-45, 41], + [26, 103], + [2, 86], + [-71, 228], + [-43, 61], + [-26, 67], + [1, 53], + [-67, 153], + [-8, 156], + [-45, 136], + [-22, 296], + [-65, 154], + [-68, 58], + [-1, 55], + [72, 25], + [-7, 104], + [-26, 77], + [-63, 63], + [63, 44], + [-20, 36], + [-42, 32], + [-5, 108], + [-45, 214], + [-79, 185] + ], + [ + [7282, 6070], + [-35, 10], + [-56, -18], + [-33, 5], + [-117, -49], + [-95, 50], + [-64, 20], + [-43, -6], + [-69, -71], + [23, -68], + [-33, -51], + [32, -71], + [-43, -34] + ], + [ + [1054, 7220], + [41, 33], + [-92, 124], + [29, 70], + [-37, 56], + [-28, 20], + [-52, 1], + [-28, 39], + [90, 69], + [14, 56], + [-9, 48], + [-50, 66], + [-105, 16], + [19, 25], + [-62, 36], + [17, 52], + [-34, 6], + [-5, 25], + [33, 45], + [-1, 23], + [-42, 2], + [-37, 29], + [3, 36], + [-26, 47], + [-88, -29], + [-32, 0], + [-7, 130], + [24, 60], + [-83, 18], + [-8, 20], + [46, 28], + [3, 24], + [-29, 22], + [-4, 104], + [-31, 78], + [24, 49], + [-86, 40], + [15, 107], + [-39, 199], + [-117, 34], + [-1, 102], + [54, 24], + [4, 22], + [-141, 14], + [4, 44], + [-37, 19], + [-5, 31], + [106, 151], + [24, 89], + [-9, 34], + [-22, 45], + [-33, 15], + [-42, 57], + [-108, 51], + [-20, 70], + [11, 171], + [-65, 245], + [78, 16], + [56, -15], + [79, 9], + [-9, 32], + [-32, 19], + [4, 26], + [-63, 59], + [6, 40], + [14, 21], + [68, 25], + [20, 52], + [32, 25], + [25, -8], + [-1, -25], + [43, 5], + [72, -21], + [80, 17], + [-15, 7], + [29, 15], + [1, 22], + [-13, 23], + [-26, 6], + [-6, 23], + [23, 2], + [-6, 37], + [24, 5], + [11, 70], + [53, 7], + [10, 35], + [-11, 61], + [-66, 17], + [-60, 46], + [-15, 142], + [14, 2], + [-5, 50], + [73, 28], + [5, 25], + [40, 27], + [-16, 15], + [25, 11], + [-12, 80], + [-80, 74], + [36, 6], + [-39, 50], + [20, 18], + [-40, 19], + [26, 26], + [-17, 50], + [12, 15], + [27, -1], + [-13, 33], + [24, 8], + [-38, 44], + [18, 15], + [32, 0], + [3, 21], + [29, 6], + [-3, 11], + [-32, 5], + [48, 26], + [-8, 63], + [27, 28], + [-24, -1], + [31, 45], + [-24, 19], + [19, 15], + [-24, 15], + [-3, 48], + [22, 18], + [-18, 10], + [-4, 48], + [32, 10], + [-1, 20], + [24, -3], + [12, 18], + [-39, 91], + [-25, 15], + [17, 87], + [-3, 14], + [-26, 8], + [20, 11], + [-1, 16], + [-36, 20], + [3, 23], + [-39, 20], + [0, 9], + [35, 8], + [-66, 41], + [-26, -12], + [-24, 21], + [31, 44], + [-99, -5], + [8, 17], + [-33, 12], + [14, 23], + [-25, 13], + [4, 23], + [-21, 34], + [9, 20], + [10, 20], + [54, 6], + [567, -9], + [355, 10], + [-30, -172], + [3, -149], + [25, -32], + [93, -39], + [2, -40], + [29, -27], + [-23, -36], + [10, -55], + [18, -7], + [40, 10], + [52, -51], + [51, -1], + [67, -48], + [69, 44], + [47, -8], + [-17, 40], + [33, 22], + [-13, 23], + [36, 29], + [111, -10], + [36, 37], + [37, -24], + [25, -2], + [-32, 37], + [47, 5], + [-9, 19], + [12, 10], + [19, 4], + [32, -18], + [28, 0], + [34, 10], + [25, 31] + ], + [ + [6544, 4589], + [67, -235], + [-83, -91], + [-23, -72], + [-28, -18], + [20, -53], + [48, -28], + [21, -54], + [-29, -41], + [3, -25], + [55, -82], + [61, -42], + [-29, -67], + [74, -50], + [41, -5], + [73, -60], + [30, -58], + [21, -117], + [-75, -26], + [-52, -38], + [-60, -79], + [-47, -28], + [4, -78], + [-33, -47], + [148, -32], + [22, -34], + [-24, -32], + [0, -44], + [36, -38], + [24, -68], + [-30, -64], + [59, -64], + [28, -25], + [85, -35], + [47, 8], + [98, -13], + [120, -132], + [-20, -45], + [5, -30], + [41, -25], + [10, -30], + [-25, -68], + [32, -37], + [-30, -73], + [35, -66], + [19, -117], + [54, -42], + [-79, -27], + [33, -63], + [10, -176], + [42, -61], + [10, -48], + [-94, -29], + [-48, -32], + [-150, 0], + [-83, -14], + [-68, 5], + [-40, -38], + [79, -67], + [-2, -62], + [22, -41], + [83, -54], + [-54, -96], + [-66, -23], + [-122, -8], + [-62, 13], + [-61, 55], + [-23, 51], + [-64, 12], + [-111, -7], + [-65, 18], + [-57, 32], + [-77, -1], + [-137, -27], + [-57, -30], + [-1, -42], + [56, -77], + [10, -57], + [-62, -146], + [95, -61], + [56, -78], + [-7, -61], + [-105, -16], + [-100, 32], + [-180, 3], + [-21, -41], + [18, -27], + [-9, -43], + [-112, -190], + [12, -100], + [53, -66], + [15, -48], + [-8, -149], + [-21, -22], + [-59, -10], + [-51, 16], + [-51, 50], + [-49, 89], + [-78, 43], + [-22, 71], + [-44, 17], + [-40, -2], + [-106, -63], + [-58, 9], + [8, -40], + [27, -22], + [-89, -69], + [-93, -169], + [-10, -45], + [13, -40], + [-40, -17], + [-40, 40], + [-8, 149], + [-81, 170], + [-37, 34], + [-115, 65], + [-35, 168], + [-19, 25], + [-34, 13], + [-49, -12] + ] + ], + "transform": { + "scale": [0.00012877785030461348, 0.00018303164331934861], + "translate": [92.258907, 21.94419] + }, + "objects": { + "mizoram_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5, 6]], + "type": "Polygon", + "properties": { + "cartodb_id": 347, + "censuscode": 286, + "dt_cen_cd": 6, + "st_cen_cd": 15, + "st_nm": "Mizoram", + "district": "Lunglei" + } + }, + { + "arcs": [[7, 8, -1, 9, 10, 11]], + "type": "Polygon", + "properties": { + "cartodb_id": 5, + "censuscode": 283, + "dt_cen_cd": 3, + "st_cen_cd": 15, + "st_nm": "Mizoram", + "district": "Aizawl" + } + }, + { + "arcs": [[12, -8, 13]], + "type": "Polygon", + "properties": { + "cartodb_id": 103, + "censuscode": 284, + "dt_cen_cd": 4, + "st_cen_cd": 15, + "st_nm": "Mizoram", + "district": "Champhai" + } + }, + { + "arcs": [[-11, 14, 15]], + "type": "Polygon", + "properties": { + "cartodb_id": 312, + "censuscode": 282, + "dt_cen_cd": 2, + "st_cen_cd": 15, + "st_nm": "Mizoram", + "district": "Kolasib" + } + }, + { + "arcs": [[16, 17, -5]], + "type": "Polygon", + "properties": { + "cartodb_id": 338, + "censuscode": 287, + "dt_cen_cd": 7, + "st_cen_cd": 15, + "st_nm": "Mizoram", + "district": "Lawngtlai" + } + }, + { + "arcs": [[-13, 18, -2, -9]], + "type": "Polygon", + "properties": { + "cartodb_id": 510, + "censuscode": 285, + "dt_cen_cd": 5, + "st_cen_cd": 15, + "st_nm": "Mizoram", + "district": "Serchhip" + } + }, + { + "arcs": [[-15, -10, -7, 19]], + "type": "Polygon", + "properties": { + "cartodb_id": 362, + "censuscode": 281, + "dt_cen_cd": 1, + "st_cen_cd": 15, + "st_nm": "Mizoram", + "district": "Mamit" + } + }, + { + "arcs": [[20, -17, -4]], + "type": "Polygon", + "properties": { + "cartodb_id": 494, + "censuscode": 288, + "dt_cen_cd": 8, + "st_cen_cd": 15, + "st_nm": "Mizoram", + "district": "Saiha" + } + } + ] + } + } +} diff --git a/public/maps/nagaland.json b/public/maps/nagaland.json index 1bcc26d7be..89b8de71b6 100644 --- a/public/maps/nagaland.json +++ b/public/maps/nagaland.json @@ -1 +1,1401 @@ -{"type":"Topology","arcs":[[[9088,7162],[7,-64],[-25,-5],[-12,-28],[43,-46],[24,-73],[42,-20],[-5,-34],[28,-40],[-28,-40],[0,-38],[-34,9],[-61,-11],[-47,25],[-105,13],[-75,-16],[-83,30],[-107,68],[-89,107],[-61,29],[-136,111],[-25,-2],[-59,119],[-88,13],[-66,-9],[-37,-24],[-80,-16],[-46,-29]],[[7963,7191],[-5,51],[-37,88],[-55,64],[24,117],[-32,141],[216,251],[14,89],[34,72],[-15,52],[-55,33],[-1,60],[-75,93],[-239,67],[281,182],[47,98],[119,6],[28,22],[-8,118],[-26,47],[16,17],[61,-28],[-32,60],[-81,56],[-14,88]],[[8128,9035],[47,77],[61,-57],[69,64],[5,45],[23,22],[102,37]],[[8435,9223],[105,-8],[29,-20],[-5,-28],[29,-40],[-95,-29],[-28,-17],[6,-24],[41,9],[12,-12],[-24,-33],[44,-96],[58,-22],[88,-134],[-116,-119],[-40,-8],[-7,-22],[-132,38],[-1,-25],[39,-60],[-34,-46],[4,-64],[-19,-49],[43,-31],[4,-92],[23,-28],[37,3],[64,-33],[115,-18],[150,-64],[43,9],[56,-14],[49,14],[35,-7],[3,-32],[22,-13],[-32,-66],[40,4],[-64,-67],[-4,-31],[27,-57],[-13,-13],[30,-19],[-22,-32],[54,-163],[-12,-76],[22,-49],[-25,-41],[16,-76],[-22,-30],[66,-121],[-18,-73],[12,-36]],[[7257,5890],[7,-28],[49,-50],[71,-42],[76,6],[43,24],[73,87],[78,-81],[32,-9],[41,37],[35,-7],[43,-48],[63,-37],[42,-125],[24,5],[-16,-132],[-57,-66],[-18,-117],[8,-114],[36,-146],[26,-28],[27,-91],[-113,-94],[-83,-106]],[[7744,4728],[-71,-70],[-288,-423],[-160,-167],[-35,-61],[20,-31],[94,-51],[51,-77],[49,-101],[0,-66],[-41,-43],[40,-62],[11,-8],[51,14],[52,-25],[91,9],[203,-89],[103,-83],[84,-164]],[[7998,3230],[-79,4],[-224,98],[-49,5],[-85,-52],[-49,2],[-42,13],[-62,55],[-56,-24],[-35,23],[-174,-13],[-146,19],[-32,19],[53,103],[2,45],[-92,69],[-36,5],[-41,-38],[-142,90],[-138,-2],[-21,67],[-58,87],[-29,108],[-45,69],[-83,51],[-179,58],[-152,91],[-65,-9],[-31,16]],[[5908,4189],[4,60],[-99,87],[29,30],[1,47],[120,141],[5,79],[-29,51]],[[5939,4684],[16,100],[166,313],[-46,106],[40,87],[-18,45],[-47,51],[-70,38],[-23,50],[-50,46],[-25,51],[12,44],[-59,-1],[-21,48],[46,4],[61,43],[81,30]],[[6002,5739],[106,28],[127,83],[154,-45],[36,3],[24,19],[-2,39],[64,129],[-15,39],[44,99],[67,87],[16,67],[61,15],[11,-60],[17,-35],[39,-26],[28,-96],[57,-102],[-61,-31],[-20,-56],[5,-29],[131,-22],[40,8],[24,29],[43,-57],[46,-28],[67,7],[82,35],[64,51]],[[3678,4088],[14,-48],[38,-13],[71,9],[-6,-33],[14,-27],[43,-14],[4,-15],[-84,-51],[-51,-50],[-9,-80],[-2,-125],[106,-209],[-62,-127],[10,-42],[27,-12],[-32,-36],[-46,-111],[-81,-43],[-107,4],[-42,-44],[-36,-102],[-70,-45],[7,-67],[109,-114],[12,-39],[-18,-65]],[[3487,2589],[-246,73],[-60,41],[-79,102],[-171,68],[-87,3],[-149,-45],[-189,-24],[-50,4],[-109,66],[-15,-14],[6,-44],[-18,-34],[43,-83],[-25,-11],[-81,81],[-36,3],[-31,-25],[-68,57],[-200,-54],[-151,-12],[-53,-54],[-29,-3],[-24,36],[-86,-34],[-105,20],[-11,26],[-73,25],[-108,129],[-56,8]],[[1226,2894],[34,91],[-21,15],[-7,31],[10,44],[19,-12],[40,30],[-3,25],[53,-4],[22,79],[24,9],[-1,24],[61,-17],[19,10],[7,50],[31,-23],[52,38],[17,-19],[14,54],[83,17],[7,23],[-15,8],[34,37],[12,73],[25,5],[16,49],[24,-1],[4,25],[44,36],[22,-8],[26,21],[68,-10],[5,24],[49,0],[29,40],[-3,29],[55,19],[-8,20],[19,-2],[56,36],[-7,-37],[18,9],[6,27],[-119,298],[11,26],[100,68],[67,3],[193,89],[11,-5],[-15,33],[55,38],[23,36],[43,-8],[16,72],[70,-45],[24,-33],[-16,-29],[24,-19],[15,-43],[-27,-22],[26,-11],[-5,-50],[23,-25],[12,-48],[-63,-178],[25,-53],[-35,-16],[-25,-44],[13,-54],[-23,-21],[67,-175],[25,-10],[68,11],[65,57],[32,121],[104,89],[55,2],[98,-44],[80,-55],[34,38],[28,71],[30,-6],[19,42],[69,62],[12,34],[108,21],[33,56],[47,1],[115,55]],[[9762,3940],[-38,-40],[-1,-50],[70,-119],[33,-28],[24,-152],[69,-59],[14,-29],[-37,-129],[41,-116],[-109,-123],[-141,-16],[-40,-34],[-21,-63],[-56,-73],[-267,-194],[-45,-62],[-89,-308],[-48,-45],[-91,-31],[-39,-28]],[[8991,2241],[-33,11],[-59,105],[-96,25],[-29,132],[3,95],[50,205],[13,179],[-20,44],[-139,163],[-262,139],[-195,19],[-18,-35],[-48,-20],[-10,-47],[-36,-47],[-32,-5],[5,-25],[-26,-8],[8,-35],[-26,-8],[-1,-35],[18,-13],[-1,-26],[20,-28],[-25,-8],[-30,25],[3,145],[-27,42]],[[7744,4728],[32,-28],[58,-11],[105,10],[54,40],[55,17],[93,-33],[54,28],[46,1],[47,-10],[132,-83],[143,59],[41,52],[137,29],[18,34],[24,-4],[76,-89],[0,-20],[92,-18],[80,-79],[-70,-13],[-103,-228],[-34,-39],[-25,-66],[-46,-44],[-6,-34],[19,-3],[51,40],[96,41],[229,-12],[88,36],[62,-68],[-20,-81],[39,-71],[64,-49],[85,-1],[28,-34],[26,-85],[23,-16],[62,4],[68,33],[95,7]],[[5908,4189],[-59,-19],[-20,-22],[-2,-83],[-94,-118],[-22,-82],[-119,-220],[-20,-50],[5,-67],[-43,-35],[-45,-15],[-16,-24],[-114,-231],[-121,-191],[-32,-72],[-8,-70],[-74,-94],[-16,-45],[32,-130],[-24,-106],[-29,-11],[-7,-86],[24,-43],[-115,-217],[-5,-40],[27,-70],[-28,-32]],[[4983,2016],[-17,-9],[-53,14],[-18,-18],[-68,-18],[-44,47],[-42,-42],[-28,-94],[-54,-46],[-189,31],[-80,22],[2,31],[21,21],[-59,104],[-34,11],[-61,-15],[-88,103],[-47,24],[-14,-20],[-26,14],[1,18],[-25,-9],[-44,38],[-10,32],[-62,15],[-26,-4],[-15,-26],[26,-90],[-28,-32],[-39,24],[-116,-15],[-46,-58],[-43,-26],[-45,1],[-79,38]],[[3533,2082],[29,62],[-31,110],[-93,24],[-44,27],[-18,57],[9,43],[73,24],[49,67],[0,16],[-30,25],[20,31],[-10,21]],[[3678,4088],[21,39],[43,12],[19,38]],[[3761,4177],[76,-5],[17,29],[-41,22],[79,-8],[65,43],[175,24],[107,82],[22,-5],[58,50],[55,16],[54,90],[53,29],[169,24],[124,-73],[65,-18],[102,79],[42,-2],[54,78],[34,21],[26,43],[-6,25],[38,49],[75,-84],[60,-36],[133,19],[67,25],[102,-19],[66,2],[22,27],[26,0],[14,28],[35,-10],[36,-69],[60,-44],[41,38],[73,37]],[[7963,7191],[10,-26],[-29,-83],[-1,-73],[-72,-31],[-88,-132],[-28,-9],[-18,-25],[-47,-13],[17,-41],[-48,-44],[-4,-75],[-19,-43],[-64,-40],[-60,-2],[-117,-83],[-66,-62],[-34,-58],[-29,8],[-28,-56],[-67,-6],[-42,-57],[1,-135],[81,-100],[50,-16],[-4,-99]],[[6002,5739],[68,79],[41,83],[-8,34],[-53,10],[-105,77],[-26,7],[-87,-22],[-16,18],[75,63],[51,89],[-25,269],[72,106],[-7,24],[-44,-6],[-12,-23],[-24,-9],[-15,11],[53,144],[-26,77],[-116,105],[-25,69],[-15,6],[-66,-55],[-62,-74],[-9,105],[-60,75],[-7,42],[51,105],[90,107],[-2,18]],[[5693,7273],[45,45],[-2,50],[31,26],[45,5],[87,63],[20,45],[-25,30],[104,7],[49,18],[4,70],[76,44],[29,-18],[17,15],[17,37],[-6,31],[38,32],[-18,32],[41,19],[-24,17],[41,126],[-51,108],[11,72],[154,63],[116,79],[46,-21],[13,19],[-35,96],[34,70],[123,36],[40,-9],[32,9],[51,53],[48,25],[43,98],[28,-17],[100,55],[106,-21],[-2,-96],[67,2],[-18,30],[65,54],[56,-17],[21,89],[13,11],[37,-16],[-9,38],[-57,13],[39,67],[24,10],[34,4],[11,-43],[31,-12],[31,-64],[32,-5],[69,31],[76,-3],[192,52],[143,116],[152,92]],[[10079,7348],[-44,4],[-61,29],[-47,-30],[-25,9],[-12,47],[-122,-25],[-16,25],[-110,-19],[-69,19],[-120,-85],[-21,-43],[-117,-65],[-44,-47],[-100,-34],[-40,0],[-43,29]],[[8435,9223],[66,27],[18,35],[-50,37],[95,36],[21,97],[25,19],[1,55],[64,48],[38,65],[74,42],[104,195],[96,100],[88,46],[72,12],[83,55],[31,-78],[29,-3],[108,31],[39,-16],[38,-72],[52,-21],[35,-37],[36,1],[6,45],[37,-12],[126,7],[97,75],[96,14],[62,42],[124,26],[134,81],[40,97],[55,19],[94,66],[39,8],[266,249],[26,-212],[-1,-40],[-21,-9],[-6,-45],[30,-26],[55,-17],[-27,-3],[20,-40],[37,-28],[-49,-45],[39,-22],[-24,-12],[30,-114],[14,-16],[50,1],[36,-47],[13,-96],[-16,-65],[14,-44],[-23,-29],[-98,-1],[-37,-44],[-127,-76],[7,-29],[57,-59],[12,12],[38,-16],[25,11],[-55,-62],[44,-164],[48,-77],[38,-28],[134,-36],[-76,-56],[8,-33],[-76,-70],[5,-72],[-28,-69],[70,-67],[8,-40],[37,-27],[-14,-87],[23,-63],[-105,-148],[-56,-53],[-21,-14],[-86,-7],[-53,-26],[-62,-76],[-96,-61],[-15,-126],[23,-63],[-10,-35],[-58,-74],[0,-28],[-34,-15],[-68,11],[-12,-33],[-58,-49],[35,-106],[-45,-64],[-56,-33],[-6,-56],[-65,-50],[-87,-98]],[[3533,2082],[-78,12],[-63,-8],[-12,16],[-146,10],[-171,-63],[-149,33],[-17,-10],[-1,-29],[-48,-2],[-10,-45],[-21,-22],[-69,1],[-163,-37],[-51,13],[-8,-130],[-29,-13],[9,-90],[20,-19],[111,57],[50,-13],[60,-51],[36,-62],[-28,-111],[-89,-98],[-32,-73],[-44,-37],[3,-28],[-96,-38],[-103,-71],[-38,-61],[-2,-62],[-96,-51],[-24,-30],[-5,-50],[-37,-20],[-109,20],[-33,-175],[-87,-15],[5,-99],[-40,-19],[-2,-56],[-81,-112],[-10,-57],[-37,-19],[-2,-34],[-128,-202],[-49,-108],[-27,-24],[-21,13],[-19,-11],[-46,9],[10,42],[-26,50],[-50,36],[-39,8],[-67,110],[-49,23],[-78,-29],[-119,20],[-24,-23],[-65,-4],[-6,54],[38,128],[-91,18],[-42,-16],[-63,18],[-24,37],[15,82],[-6,56],[-100,92],[30,65],[-58,44],[152,206],[-24,77],[-62,103],[11,72],[-19,65],[-29,42],[-126,74],[-103,-11],[-122,65],[-32,30],[5,70],[-28,69],[-19,25],[-65,21],[-4,23],[-35,28],[10,16],[-39,43],[-14,43],[-43,34],[13,23],[-69,-2],[-27,47],[-23,9],[95,94],[36,11],[36,-27],[20,1],[6,53],[48,-4],[15,11],[3,36],[35,-7],[12,11],[-14,39],[48,25],[-3,32],[97,11],[16,44],[-11,30],[53,32],[-12,10],[44,32],[30,53],[38,-9],[73,51],[18,-22],[12,14],[57,-23],[-27,41],[48,21],[54,1],[6,21],[43,-13],[1,35],[22,-8],[20,18],[-4,14],[57,3],[117,157],[-19,25],[52,67],[27,-40],[43,60],[34,0]],[[8991,2241],[-8,-32],[96,-95],[4,-24],[-300,-21],[-110,-95],[-24,-49],[-6,-59],[-94,-189],[-162,-29],[-68,-52],[-33,7],[-27,53],[-33,3],[-29,-55],[-30,-19],[-293,-63],[-41,-15],[-36,-33],[-72,-25],[-64,9],[-193,70],[-103,78],[-96,42],[-94,90],[-99,44],[23,103],[-18,24],[30,28],[-21,35],[18,22],[-8,64],[19,42],[-25,0],[7,60],[-34,43],[99,148],[63,133],[66,54],[-47,16],[-63,-10],[4,46],[49,52],[-11,20],[23,38],[-11,18],[67,69],[-8,25],[-50,4],[-80,33],[-29,-31],[-17,-66],[-75,-77],[-2,-29],[-71,-65],[-46,-6],[-6,-43],[-36,4],[-57,-74],[-33,-21],[-5,-45],[-15,-12],[-20,18],[-49,-33],[-12,32],[-99,11],[-152,-137],[-103,-30],[-44,-96],[16,-18],[7,-66],[-5,-49],[-30,-60],[-55,5],[-129,-40],[-138,-86],[-205,-76],[-90,-80],[-63,1],[-92,99],[-73,-50],[-97,3],[-30,-26],[-117,-3],[-15,-13],[-83,24],[-11,46],[-34,20],[-94,111],[24,125]],[[10079,7348],[-4,-24],[-38,-39],[-14,-94],[88,16],[31,-7],[84,-112],[26,-15],[15,-36],[-23,-130],[98,-19],[81,-59],[-44,-192],[30,-69],[-34,-39],[21,-251],[-58,-76],[-3,-26],[51,-108],[-48,-101],[10,-33],[59,-42],[53,-66],[-82,-64],[-21,-38],[18,-16],[-11,-65],[-45,-79],[-8,-34],[64,-151],[-41,-86],[-2,-71],[36,-50],[66,8],[35,-9],[43,-35],[82,23],[29,-12],[84,-71],[1,-25],[-12,-33],[-104,-122],[-17,-127],[-79,-73],[-48,-71],[-134,-108],[-64,-113],[-159,-100],[-124,-22],[-73,-70],[-47,2],[-2,-46],[-48,-42],[-46,-82],[11,-104]],[[3761,4177],[-67,108],[-11,92],[-76,77],[27,132],[-33,60],[45,85],[19,117],[39,15],[11,42],[96,117],[-29,64],[2,27],[27,7],[8,19],[10,77],[46,30],[0,20],[-63,19],[31,25],[10,49],[-43,17],[14,20],[37,-5],[32,31],[7,31],[-39,64],[27,33],[3,54],[47,75],[132,97],[5,84],[23,33],[-14,35],[64,119],[21,32],[68,35],[34,-10],[43,88],[-6,57],[18,21],[42,9],[17,39],[72,66],[11,78],[21,25],[59,-22],[60,3],[-54,42],[0,19],[94,26],[18,19],[22,3],[-2,-35],[26,-4],[15,21],[87,2],[64,28],[26,57],[-71,-4],[-19,39],[65,67],[-9,35],[29,63],[-29,186],[10,63],[63,165],[84,55],[60,115],[164,124],[132,188],[113,112],[44,4],[-5,-25],[-21,-9],[-2,-104],[23,-87],[-10,-96],[38,-161],[54,-78],[76,-25]]],"transform":{"scale":[0.000173005788188478,0.00017329272658752584],"translate":[93.331833,25.197831]},"objects":{"nagaland_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"cartodb_id":342,"censuscode":268,"dt_cen_cd":8,"st_cen_cd":13,"st_nm":"Nagaland","district":"Longleng"}},{"arcs":[[4,5,6,7,8,9]],"type":"Polygon","properties":{"cartodb_id":624,"censuscode":263,"dt_cen_cd":3,"st_cen_cd":13,"st_nm":"Nagaland","district":"Zunheboto"}},{"arcs":[[10,11,12]],"type":"Polygon","properties":{"cartodb_id":165,"censuscode":265,"dt_cen_cd":5,"st_cen_cd":13,"st_nm":"Nagaland","district":"Dimapur"}},{"arcs":[[13,14,-6,15]],"type":"Polygon","properties":{"cartodb_id":303,"censuscode":269,"dt_cen_cd":9,"st_cen_cd":13,"st_nm":"Nagaland","district":"Kiphire"}},{"arcs":[[-8,16,17,18,-11,19,20]],"type":"Polygon","properties":{"cartodb_id":309,"censuscode":270,"dt_cen_cd":10,"st_cen_cd":13,"st_nm":"Nagaland","district":"Kohima"}},{"arcs":[[21,-10,22,23,-2]],"type":"Polygon","properties":{"cartodb_id":377,"censuscode":262,"dt_cen_cd":2,"st_cen_cd":13,"st_nm":"Nagaland","district":"Mokokchung"}},{"arcs":[[24,-4,25]],"type":"Polygon","properties":{"cartodb_id":378,"censuscode":261,"dt_cen_cd":1,"st_cen_cd":13,"st_nm":"Nagaland","district":"Mon"}},{"arcs":[[-19,26,-12]],"type":"Polygon","properties":{"cartodb_id":441,"censuscode":271,"dt_cen_cd":11,"st_cen_cd":13,"st_nm":"Nagaland","district":"Peren"}},{"arcs":[[-15,27,-17,-7]],"type":"Polygon","properties":{"cartodb_id":442,"censuscode":266,"dt_cen_cd":6,"st_cen_cd":13,"st_nm":"Nagaland","district":"Phek"}},{"arcs":[[28,-16,-5,-22,-1,-25]],"type":"Polygon","properties":{"cartodb_id":581,"censuscode":267,"dt_cen_cd":7,"st_cen_cd":13,"st_nm":"Nagaland","district":"Tuensang"}},{"arcs":[[-23,-9,-21,29]],"type":"Polygon","properties":{"cartodb_id":621,"censuscode":264,"dt_cen_cd":4,"st_cen_cd":13,"st_nm":"Nagaland","district":"Wokha"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [9088, 7162], + [7, -64], + [-25, -5], + [-12, -28], + [43, -46], + [24, -73], + [42, -20], + [-5, -34], + [28, -40], + [-28, -40], + [0, -38], + [-34, 9], + [-61, -11], + [-47, 25], + [-105, 13], + [-75, -16], + [-83, 30], + [-107, 68], + [-89, 107], + [-61, 29], + [-136, 111], + [-25, -2], + [-59, 119], + [-88, 13], + [-66, -9], + [-37, -24], + [-80, -16], + [-46, -29] + ], + [ + [7963, 7191], + [-5, 51], + [-37, 88], + [-55, 64], + [24, 117], + [-32, 141], + [216, 251], + [14, 89], + [34, 72], + [-15, 52], + [-55, 33], + [-1, 60], + [-75, 93], + [-239, 67], + [281, 182], + [47, 98], + [119, 6], + [28, 22], + [-8, 118], + [-26, 47], + [16, 17], + [61, -28], + [-32, 60], + [-81, 56], + [-14, 88] + ], + [ + [8128, 9035], + [47, 77], + [61, -57], + [69, 64], + [5, 45], + [23, 22], + [102, 37] + ], + [ + [8435, 9223], + [105, -8], + [29, -20], + [-5, -28], + [29, -40], + [-95, -29], + [-28, -17], + [6, -24], + [41, 9], + [12, -12], + [-24, -33], + [44, -96], + [58, -22], + [88, -134], + [-116, -119], + [-40, -8], + [-7, -22], + [-132, 38], + [-1, -25], + [39, -60], + [-34, -46], + [4, -64], + [-19, -49], + [43, -31], + [4, -92], + [23, -28], + [37, 3], + [64, -33], + [115, -18], + [150, -64], + [43, 9], + [56, -14], + [49, 14], + [35, -7], + [3, -32], + [22, -13], + [-32, -66], + [40, 4], + [-64, -67], + [-4, -31], + [27, -57], + [-13, -13], + [30, -19], + [-22, -32], + [54, -163], + [-12, -76], + [22, -49], + [-25, -41], + [16, -76], + [-22, -30], + [66, -121], + [-18, -73], + [12, -36] + ], + [ + [7257, 5890], + [7, -28], + [49, -50], + [71, -42], + [76, 6], + [43, 24], + [73, 87], + [78, -81], + [32, -9], + [41, 37], + [35, -7], + [43, -48], + [63, -37], + [42, -125], + [24, 5], + [-16, -132], + [-57, -66], + [-18, -117], + [8, -114], + [36, -146], + [26, -28], + [27, -91], + [-113, -94], + [-83, -106] + ], + [ + [7744, 4728], + [-71, -70], + [-288, -423], + [-160, -167], + [-35, -61], + [20, -31], + [94, -51], + [51, -77], + [49, -101], + [0, -66], + [-41, -43], + [40, -62], + [11, -8], + [51, 14], + [52, -25], + [91, 9], + [203, -89], + [103, -83], + [84, -164] + ], + [ + [7998, 3230], + [-79, 4], + [-224, 98], + [-49, 5], + [-85, -52], + [-49, 2], + [-42, 13], + [-62, 55], + [-56, -24], + [-35, 23], + [-174, -13], + [-146, 19], + [-32, 19], + [53, 103], + [2, 45], + [-92, 69], + [-36, 5], + [-41, -38], + [-142, 90], + [-138, -2], + [-21, 67], + [-58, 87], + [-29, 108], + [-45, 69], + [-83, 51], + [-179, 58], + [-152, 91], + [-65, -9], + [-31, 16] + ], + [ + [5908, 4189], + [4, 60], + [-99, 87], + [29, 30], + [1, 47], + [120, 141], + [5, 79], + [-29, 51] + ], + [ + [5939, 4684], + [16, 100], + [166, 313], + [-46, 106], + [40, 87], + [-18, 45], + [-47, 51], + [-70, 38], + [-23, 50], + [-50, 46], + [-25, 51], + [12, 44], + [-59, -1], + [-21, 48], + [46, 4], + [61, 43], + [81, 30] + ], + [ + [6002, 5739], + [106, 28], + [127, 83], + [154, -45], + [36, 3], + [24, 19], + [-2, 39], + [64, 129], + [-15, 39], + [44, 99], + [67, 87], + [16, 67], + [61, 15], + [11, -60], + [17, -35], + [39, -26], + [28, -96], + [57, -102], + [-61, -31], + [-20, -56], + [5, -29], + [131, -22], + [40, 8], + [24, 29], + [43, -57], + [46, -28], + [67, 7], + [82, 35], + [64, 51] + ], + [ + [3678, 4088], + [14, -48], + [38, -13], + [71, 9], + [-6, -33], + [14, -27], + [43, -14], + [4, -15], + [-84, -51], + [-51, -50], + [-9, -80], + [-2, -125], + [106, -209], + [-62, -127], + [10, -42], + [27, -12], + [-32, -36], + [-46, -111], + [-81, -43], + [-107, 4], + [-42, -44], + [-36, -102], + [-70, -45], + [7, -67], + [109, -114], + [12, -39], + [-18, -65] + ], + [ + [3487, 2589], + [-246, 73], + [-60, 41], + [-79, 102], + [-171, 68], + [-87, 3], + [-149, -45], + [-189, -24], + [-50, 4], + [-109, 66], + [-15, -14], + [6, -44], + [-18, -34], + [43, -83], + [-25, -11], + [-81, 81], + [-36, 3], + [-31, -25], + [-68, 57], + [-200, -54], + [-151, -12], + [-53, -54], + [-29, -3], + [-24, 36], + [-86, -34], + [-105, 20], + [-11, 26], + [-73, 25], + [-108, 129], + [-56, 8] + ], + [ + [1226, 2894], + [34, 91], + [-21, 15], + [-7, 31], + [10, 44], + [19, -12], + [40, 30], + [-3, 25], + [53, -4], + [22, 79], + [24, 9], + [-1, 24], + [61, -17], + [19, 10], + [7, 50], + [31, -23], + [52, 38], + [17, -19], + [14, 54], + [83, 17], + [7, 23], + [-15, 8], + [34, 37], + [12, 73], + [25, 5], + [16, 49], + [24, -1], + [4, 25], + [44, 36], + [22, -8], + [26, 21], + [68, -10], + [5, 24], + [49, 0], + [29, 40], + [-3, 29], + [55, 19], + [-8, 20], + [19, -2], + [56, 36], + [-7, -37], + [18, 9], + [6, 27], + [-119, 298], + [11, 26], + [100, 68], + [67, 3], + [193, 89], + [11, -5], + [-15, 33], + [55, 38], + [23, 36], + [43, -8], + [16, 72], + [70, -45], + [24, -33], + [-16, -29], + [24, -19], + [15, -43], + [-27, -22], + [26, -11], + [-5, -50], + [23, -25], + [12, -48], + [-63, -178], + [25, -53], + [-35, -16], + [-25, -44], + [13, -54], + [-23, -21], + [67, -175], + [25, -10], + [68, 11], + [65, 57], + [32, 121], + [104, 89], + [55, 2], + [98, -44], + [80, -55], + [34, 38], + [28, 71], + [30, -6], + [19, 42], + [69, 62], + [12, 34], + [108, 21], + [33, 56], + [47, 1], + [115, 55] + ], + [ + [9762, 3940], + [-38, -40], + [-1, -50], + [70, -119], + [33, -28], + [24, -152], + [69, -59], + [14, -29], + [-37, -129], + [41, -116], + [-109, -123], + [-141, -16], + [-40, -34], + [-21, -63], + [-56, -73], + [-267, -194], + [-45, -62], + [-89, -308], + [-48, -45], + [-91, -31], + [-39, -28] + ], + [ + [8991, 2241], + [-33, 11], + [-59, 105], + [-96, 25], + [-29, 132], + [3, 95], + [50, 205], + [13, 179], + [-20, 44], + [-139, 163], + [-262, 139], + [-195, 19], + [-18, -35], + [-48, -20], + [-10, -47], + [-36, -47], + [-32, -5], + [5, -25], + [-26, -8], + [8, -35], + [-26, -8], + [-1, -35], + [18, -13], + [-1, -26], + [20, -28], + [-25, -8], + [-30, 25], + [3, 145], + [-27, 42] + ], + [ + [7744, 4728], + [32, -28], + [58, -11], + [105, 10], + [54, 40], + [55, 17], + [93, -33], + [54, 28], + [46, 1], + [47, -10], + [132, -83], + [143, 59], + [41, 52], + [137, 29], + [18, 34], + [24, -4], + [76, -89], + [0, -20], + [92, -18], + [80, -79], + [-70, -13], + [-103, -228], + [-34, -39], + [-25, -66], + [-46, -44], + [-6, -34], + [19, -3], + [51, 40], + [96, 41], + [229, -12], + [88, 36], + [62, -68], + [-20, -81], + [39, -71], + [64, -49], + [85, -1], + [28, -34], + [26, -85], + [23, -16], + [62, 4], + [68, 33], + [95, 7] + ], + [ + [5908, 4189], + [-59, -19], + [-20, -22], + [-2, -83], + [-94, -118], + [-22, -82], + [-119, -220], + [-20, -50], + [5, -67], + [-43, -35], + [-45, -15], + [-16, -24], + [-114, -231], + [-121, -191], + [-32, -72], + [-8, -70], + [-74, -94], + [-16, -45], + [32, -130], + [-24, -106], + [-29, -11], + [-7, -86], + [24, -43], + [-115, -217], + [-5, -40], + [27, -70], + [-28, -32] + ], + [ + [4983, 2016], + [-17, -9], + [-53, 14], + [-18, -18], + [-68, -18], + [-44, 47], + [-42, -42], + [-28, -94], + [-54, -46], + [-189, 31], + [-80, 22], + [2, 31], + [21, 21], + [-59, 104], + [-34, 11], + [-61, -15], + [-88, 103], + [-47, 24], + [-14, -20], + [-26, 14], + [1, 18], + [-25, -9], + [-44, 38], + [-10, 32], + [-62, 15], + [-26, -4], + [-15, -26], + [26, -90], + [-28, -32], + [-39, 24], + [-116, -15], + [-46, -58], + [-43, -26], + [-45, 1], + [-79, 38] + ], + [ + [3533, 2082], + [29, 62], + [-31, 110], + [-93, 24], + [-44, 27], + [-18, 57], + [9, 43], + [73, 24], + [49, 67], + [0, 16], + [-30, 25], + [20, 31], + [-10, 21] + ], + [ + [3678, 4088], + [21, 39], + [43, 12], + [19, 38] + ], + [ + [3761, 4177], + [76, -5], + [17, 29], + [-41, 22], + [79, -8], + [65, 43], + [175, 24], + [107, 82], + [22, -5], + [58, 50], + [55, 16], + [54, 90], + [53, 29], + [169, 24], + [124, -73], + [65, -18], + [102, 79], + [42, -2], + [54, 78], + [34, 21], + [26, 43], + [-6, 25], + [38, 49], + [75, -84], + [60, -36], + [133, 19], + [67, 25], + [102, -19], + [66, 2], + [22, 27], + [26, 0], + [14, 28], + [35, -10], + [36, -69], + [60, -44], + [41, 38], + [73, 37] + ], + [ + [7963, 7191], + [10, -26], + [-29, -83], + [-1, -73], + [-72, -31], + [-88, -132], + [-28, -9], + [-18, -25], + [-47, -13], + [17, -41], + [-48, -44], + [-4, -75], + [-19, -43], + [-64, -40], + [-60, -2], + [-117, -83], + [-66, -62], + [-34, -58], + [-29, 8], + [-28, -56], + [-67, -6], + [-42, -57], + [1, -135], + [81, -100], + [50, -16], + [-4, -99] + ], + [ + [6002, 5739], + [68, 79], + [41, 83], + [-8, 34], + [-53, 10], + [-105, 77], + [-26, 7], + [-87, -22], + [-16, 18], + [75, 63], + [51, 89], + [-25, 269], + [72, 106], + [-7, 24], + [-44, -6], + [-12, -23], + [-24, -9], + [-15, 11], + [53, 144], + [-26, 77], + [-116, 105], + [-25, 69], + [-15, 6], + [-66, -55], + [-62, -74], + [-9, 105], + [-60, 75], + [-7, 42], + [51, 105], + [90, 107], + [-2, 18] + ], + [ + [5693, 7273], + [45, 45], + [-2, 50], + [31, 26], + [45, 5], + [87, 63], + [20, 45], + [-25, 30], + [104, 7], + [49, 18], + [4, 70], + [76, 44], + [29, -18], + [17, 15], + [17, 37], + [-6, 31], + [38, 32], + [-18, 32], + [41, 19], + [-24, 17], + [41, 126], + [-51, 108], + [11, 72], + [154, 63], + [116, 79], + [46, -21], + [13, 19], + [-35, 96], + [34, 70], + [123, 36], + [40, -9], + [32, 9], + [51, 53], + [48, 25], + [43, 98], + [28, -17], + [100, 55], + [106, -21], + [-2, -96], + [67, 2], + [-18, 30], + [65, 54], + [56, -17], + [21, 89], + [13, 11], + [37, -16], + [-9, 38], + [-57, 13], + [39, 67], + [24, 10], + [34, 4], + [11, -43], + [31, -12], + [31, -64], + [32, -5], + [69, 31], + [76, -3], + [192, 52], + [143, 116], + [152, 92] + ], + [ + [10079, 7348], + [-44, 4], + [-61, 29], + [-47, -30], + [-25, 9], + [-12, 47], + [-122, -25], + [-16, 25], + [-110, -19], + [-69, 19], + [-120, -85], + [-21, -43], + [-117, -65], + [-44, -47], + [-100, -34], + [-40, 0], + [-43, 29] + ], + [ + [8435, 9223], + [66, 27], + [18, 35], + [-50, 37], + [95, 36], + [21, 97], + [25, 19], + [1, 55], + [64, 48], + [38, 65], + [74, 42], + [104, 195], + [96, 100], + [88, 46], + [72, 12], + [83, 55], + [31, -78], + [29, -3], + [108, 31], + [39, -16], + [38, -72], + [52, -21], + [35, -37], + [36, 1], + [6, 45], + [37, -12], + [126, 7], + [97, 75], + [96, 14], + [62, 42], + [124, 26], + [134, 81], + [40, 97], + [55, 19], + [94, 66], + [39, 8], + [266, 249], + [26, -212], + [-1, -40], + [-21, -9], + [-6, -45], + [30, -26], + [55, -17], + [-27, -3], + [20, -40], + [37, -28], + [-49, -45], + [39, -22], + [-24, -12], + [30, -114], + [14, -16], + [50, 1], + [36, -47], + [13, -96], + [-16, -65], + [14, -44], + [-23, -29], + [-98, -1], + [-37, -44], + [-127, -76], + [7, -29], + [57, -59], + [12, 12], + [38, -16], + [25, 11], + [-55, -62], + [44, -164], + [48, -77], + [38, -28], + [134, -36], + [-76, -56], + [8, -33], + [-76, -70], + [5, -72], + [-28, -69], + [70, -67], + [8, -40], + [37, -27], + [-14, -87], + [23, -63], + [-105, -148], + [-56, -53], + [-21, -14], + [-86, -7], + [-53, -26], + [-62, -76], + [-96, -61], + [-15, -126], + [23, -63], + [-10, -35], + [-58, -74], + [0, -28], + [-34, -15], + [-68, 11], + [-12, -33], + [-58, -49], + [35, -106], + [-45, -64], + [-56, -33], + [-6, -56], + [-65, -50], + [-87, -98] + ], + [ + [3533, 2082], + [-78, 12], + [-63, -8], + [-12, 16], + [-146, 10], + [-171, -63], + [-149, 33], + [-17, -10], + [-1, -29], + [-48, -2], + [-10, -45], + [-21, -22], + [-69, 1], + [-163, -37], + [-51, 13], + [-8, -130], + [-29, -13], + [9, -90], + [20, -19], + [111, 57], + [50, -13], + [60, -51], + [36, -62], + [-28, -111], + [-89, -98], + [-32, -73], + [-44, -37], + [3, -28], + [-96, -38], + [-103, -71], + [-38, -61], + [-2, -62], + [-96, -51], + [-24, -30], + [-5, -50], + [-37, -20], + [-109, 20], + [-33, -175], + [-87, -15], + [5, -99], + [-40, -19], + [-2, -56], + [-81, -112], + [-10, -57], + [-37, -19], + [-2, -34], + [-128, -202], + [-49, -108], + [-27, -24], + [-21, 13], + [-19, -11], + [-46, 9], + [10, 42], + [-26, 50], + [-50, 36], + [-39, 8], + [-67, 110], + [-49, 23], + [-78, -29], + [-119, 20], + [-24, -23], + [-65, -4], + [-6, 54], + [38, 128], + [-91, 18], + [-42, -16], + [-63, 18], + [-24, 37], + [15, 82], + [-6, 56], + [-100, 92], + [30, 65], + [-58, 44], + [152, 206], + [-24, 77], + [-62, 103], + [11, 72], + [-19, 65], + [-29, 42], + [-126, 74], + [-103, -11], + [-122, 65], + [-32, 30], + [5, 70], + [-28, 69], + [-19, 25], + [-65, 21], + [-4, 23], + [-35, 28], + [10, 16], + [-39, 43], + [-14, 43], + [-43, 34], + [13, 23], + [-69, -2], + [-27, 47], + [-23, 9], + [95, 94], + [36, 11], + [36, -27], + [20, 1], + [6, 53], + [48, -4], + [15, 11], + [3, 36], + [35, -7], + [12, 11], + [-14, 39], + [48, 25], + [-3, 32], + [97, 11], + [16, 44], + [-11, 30], + [53, 32], + [-12, 10], + [44, 32], + [30, 53], + [38, -9], + [73, 51], + [18, -22], + [12, 14], + [57, -23], + [-27, 41], + [48, 21], + [54, 1], + [6, 21], + [43, -13], + [1, 35], + [22, -8], + [20, 18], + [-4, 14], + [57, 3], + [117, 157], + [-19, 25], + [52, 67], + [27, -40], + [43, 60], + [34, 0] + ], + [ + [8991, 2241], + [-8, -32], + [96, -95], + [4, -24], + [-300, -21], + [-110, -95], + [-24, -49], + [-6, -59], + [-94, -189], + [-162, -29], + [-68, -52], + [-33, 7], + [-27, 53], + [-33, 3], + [-29, -55], + [-30, -19], + [-293, -63], + [-41, -15], + [-36, -33], + [-72, -25], + [-64, 9], + [-193, 70], + [-103, 78], + [-96, 42], + [-94, 90], + [-99, 44], + [23, 103], + [-18, 24], + [30, 28], + [-21, 35], + [18, 22], + [-8, 64], + [19, 42], + [-25, 0], + [7, 60], + [-34, 43], + [99, 148], + [63, 133], + [66, 54], + [-47, 16], + [-63, -10], + [4, 46], + [49, 52], + [-11, 20], + [23, 38], + [-11, 18], + [67, 69], + [-8, 25], + [-50, 4], + [-80, 33], + [-29, -31], + [-17, -66], + [-75, -77], + [-2, -29], + [-71, -65], + [-46, -6], + [-6, -43], + [-36, 4], + [-57, -74], + [-33, -21], + [-5, -45], + [-15, -12], + [-20, 18], + [-49, -33], + [-12, 32], + [-99, 11], + [-152, -137], + [-103, -30], + [-44, -96], + [16, -18], + [7, -66], + [-5, -49], + [-30, -60], + [-55, 5], + [-129, -40], + [-138, -86], + [-205, -76], + [-90, -80], + [-63, 1], + [-92, 99], + [-73, -50], + [-97, 3], + [-30, -26], + [-117, -3], + [-15, -13], + [-83, 24], + [-11, 46], + [-34, 20], + [-94, 111], + [24, 125] + ], + [ + [10079, 7348], + [-4, -24], + [-38, -39], + [-14, -94], + [88, 16], + [31, -7], + [84, -112], + [26, -15], + [15, -36], + [-23, -130], + [98, -19], + [81, -59], + [-44, -192], + [30, -69], + [-34, -39], + [21, -251], + [-58, -76], + [-3, -26], + [51, -108], + [-48, -101], + [10, -33], + [59, -42], + [53, -66], + [-82, -64], + [-21, -38], + [18, -16], + [-11, -65], + [-45, -79], + [-8, -34], + [64, -151], + [-41, -86], + [-2, -71], + [36, -50], + [66, 8], + [35, -9], + [43, -35], + [82, 23], + [29, -12], + [84, -71], + [1, -25], + [-12, -33], + [-104, -122], + [-17, -127], + [-79, -73], + [-48, -71], + [-134, -108], + [-64, -113], + [-159, -100], + [-124, -22], + [-73, -70], + [-47, 2], + [-2, -46], + [-48, -42], + [-46, -82], + [11, -104] + ], + [ + [3761, 4177], + [-67, 108], + [-11, 92], + [-76, 77], + [27, 132], + [-33, 60], + [45, 85], + [19, 117], + [39, 15], + [11, 42], + [96, 117], + [-29, 64], + [2, 27], + [27, 7], + [8, 19], + [10, 77], + [46, 30], + [0, 20], + [-63, 19], + [31, 25], + [10, 49], + [-43, 17], + [14, 20], + [37, -5], + [32, 31], + [7, 31], + [-39, 64], + [27, 33], + [3, 54], + [47, 75], + [132, 97], + [5, 84], + [23, 33], + [-14, 35], + [64, 119], + [21, 32], + [68, 35], + [34, -10], + [43, 88], + [-6, 57], + [18, 21], + [42, 9], + [17, 39], + [72, 66], + [11, 78], + [21, 25], + [59, -22], + [60, 3], + [-54, 42], + [0, 19], + [94, 26], + [18, 19], + [22, 3], + [-2, -35], + [26, -4], + [15, 21], + [87, 2], + [64, 28], + [26, 57], + [-71, -4], + [-19, 39], + [65, 67], + [-9, 35], + [29, 63], + [-29, 186], + [10, 63], + [63, 165], + [84, 55], + [60, 115], + [164, 124], + [132, 188], + [113, 112], + [44, 4], + [-5, -25], + [-21, -9], + [-2, -104], + [23, -87], + [-10, -96], + [38, -161], + [54, -78], + [76, -25] + ] + ], + "transform": { + "scale": [0.000173005788188478, 0.00017329272658752584], + "translate": [93.331833, 25.197831] + }, + "objects": { + "nagaland_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3]], + "type": "Polygon", + "properties": { + "cartodb_id": 342, + "censuscode": 268, + "dt_cen_cd": 8, + "st_cen_cd": 13, + "st_nm": "Nagaland", + "district": "Longleng" + } + }, + { + "arcs": [[4, 5, 6, 7, 8, 9]], + "type": "Polygon", + "properties": { + "cartodb_id": 624, + "censuscode": 263, + "dt_cen_cd": 3, + "st_cen_cd": 13, + "st_nm": "Nagaland", + "district": "Zunheboto" + } + }, + { + "arcs": [[10, 11, 12]], + "type": "Polygon", + "properties": { + "cartodb_id": 165, + "censuscode": 265, + "dt_cen_cd": 5, + "st_cen_cd": 13, + "st_nm": "Nagaland", + "district": "Dimapur" + } + }, + { + "arcs": [[13, 14, -6, 15]], + "type": "Polygon", + "properties": { + "cartodb_id": 303, + "censuscode": 269, + "dt_cen_cd": 9, + "st_cen_cd": 13, + "st_nm": "Nagaland", + "district": "Kiphire" + } + }, + { + "arcs": [[-8, 16, 17, 18, -11, 19, 20]], + "type": "Polygon", + "properties": { + "cartodb_id": 309, + "censuscode": 270, + "dt_cen_cd": 10, + "st_cen_cd": 13, + "st_nm": "Nagaland", + "district": "Kohima" + } + }, + { + "arcs": [[21, -10, 22, 23, -2]], + "type": "Polygon", + "properties": { + "cartodb_id": 377, + "censuscode": 262, + "dt_cen_cd": 2, + "st_cen_cd": 13, + "st_nm": "Nagaland", + "district": "Mokokchung" + } + }, + { + "arcs": [[24, -4, 25]], + "type": "Polygon", + "properties": { + "cartodb_id": 378, + "censuscode": 261, + "dt_cen_cd": 1, + "st_cen_cd": 13, + "st_nm": "Nagaland", + "district": "Mon" + } + }, + { + "arcs": [[-19, 26, -12]], + "type": "Polygon", + "properties": { + "cartodb_id": 441, + "censuscode": 271, + "dt_cen_cd": 11, + "st_cen_cd": 13, + "st_nm": "Nagaland", + "district": "Peren" + } + }, + { + "arcs": [[-15, 27, -17, -7]], + "type": "Polygon", + "properties": { + "cartodb_id": 442, + "censuscode": 266, + "dt_cen_cd": 6, + "st_cen_cd": 13, + "st_nm": "Nagaland", + "district": "Phek" + } + }, + { + "arcs": [[28, -16, -5, -22, -1, -25]], + "type": "Polygon", + "properties": { + "cartodb_id": 581, + "censuscode": 267, + "dt_cen_cd": 7, + "st_cen_cd": 13, + "st_nm": "Nagaland", + "district": "Tuensang" + } + }, + { + "arcs": [[-23, -9, -21, 29]], + "type": "Polygon", + "properties": { + "cartodb_id": 621, + "censuscode": 264, + "dt_cen_cd": 4, + "st_cen_cd": 13, + "st_nm": "Nagaland", + "district": "Wokha" + } + } + ] + } + } +} diff --git a/public/maps/odisha.json b/public/maps/odisha.json index b1a4cec91f..d6f1eb8b2f 100644 --- a/public/maps/odisha.json +++ b/public/maps/odisha.json @@ -1 +1,2613 @@ -{"type":"Topology","arcs":[[[6375,4212],[-7,-50],[65,-40],[21,-57],[46,-44],[61,7],[60,-30],[19,-49],[73,-36],[101,-149]],[[6814,3764],[-13,-238],[-72,-74],[73,-115]],[[6802,3337],[-141,-122],[-17,-52],[-56,-32],[-217,-157],[-86,-81],[-92,-106],[-55,-77],[-72,-148],[-115,76],[16,70],[-74,27],[-7,-71],[-93,-8],[-7,-51],[88,-81],[-75,5],[-28,-70],[-34,-2],[0,87],[-44,-30],[-79,-20],[-57,-59],[-11,-54],[-79,3]],[[5467,2384],[-67,26],[-28,-29],[-57,65],[18,31],[33,128],[17,30],[-37,93],[-8,61],[63,16],[21,80],[27,44],[6,74],[-22,71],[44,59],[-82,13],[-9,44],[31,109],[-47,100],[-16,104],[-71,5],[-27,-21],[-23,-86],[-87,3],[-10,151],[-18,7]],[[5118,3562],[-25,102],[36,33],[-103,123],[24,55]],[[5050,3875],[-33,11]],[[5017,3886],[-41,-3]],[[4976,3883],[-21,44]],[[4955,3927],[-31,48],[61,12],[13,68],[50,31],[-12,50]],[[5036,4136],[71,16]],[[5107,4152],[78,22],[53,55],[25,-58],[92,-61]],[[5355,4110],[92,-24]],[[5447,4086],[39,-9]],[[5486,4077],[-1,21]],[[5485,4098],[28,25]],[[5513,4123],[2,27]],[[5515,4150],[-7,77],[21,70],[-65,38],[-101,16],[-32,44],[-63,0],[69,85]],[[5337,4480],[65,35]],[[5402,4515],[29,147],[37,72],[-12,60],[90,-79],[42,-8]],[[5588,4707],[10,1]],[[5598,4708],[101,-5],[-9,42],[50,26],[-4,34]],[[5736,4805],[28,-27],[86,59],[7,48],[38,86],[62,11],[65,-68],[46,5],[41,-37],[66,-14],[-15,-211],[-39,-47],[22,-50],[82,-80],[11,-60],[70,-15],[40,-104],[-32,-55],[61,-34]],[[8428,4634],[-9,-49],[23,-45],[49,14],[31,-55],[98,28]],[[8620,4527],[65,-31],[41,2],[55,37],[38,-53],[50,-25],[30,-70],[43,-18]],[[8942,4369],[-4,-55],[-121,-27],[-77,-45],[-43,42],[-37,-91],[-257,-72],[-42,-22],[-128,-16],[-158,-46],[-341,-119],[-120,-76],[-182,-96],[-150,-69],[-169,-98],[-246,-181],[-65,-61]],[[6814,3764],[12,52],[68,98],[87,82],[91,22],[29,54],[58,22],[36,56],[57,54],[100,-19],[85,7],[54,-28],[10,87],[-103,59],[29,59],[71,-51],[2,110],[51,-19],[66,60],[-25,35],[12,48],[101,12],[12,53],[-16,51],[20,52],[65,-13],[68,19],[37,30],[23,-32],[55,15],[6,34],[106,2],[23,-63],[-48,-46],[44,-19],[171,-12],[157,-1]],[[6908,8465],[77,-95],[66,2],[56,-15],[48,-34],[5,-49],[-30,-62],[0,-54],[-30,-50],[-47,-17],[-57,35],[-21,-35],[-54,-31],[-30,12],[-41,-83],[19,-55],[-45,-48],[7,-109]],[[6831,7777],[-5,-79],[-73,-61]],[[6753,7637],[-77,-2],[-35,21],[-65,-29],[-28,36],[-16,131],[-49,21],[-37,-18],[-36,19],[-31,-46],[-61,18],[-77,-33],[-130,32],[-20,-87],[-42,-1],[-18,115],[-51,67],[-41,-17],[-32,57]],[[5907,7921],[-4,39],[-41,26],[-110,-18],[-36,18],[-15,50],[-66,44],[18,95],[-18,57],[-57,54],[60,25],[-14,57],[-33,45],[7,66],[39,68],[-29,17],[-21,69],[-10,97],[-33,107],[-102,-32],[-61,-49],[-38,2],[-72,-50],[-85,-34],[-22,-63],[13,-37],[-8,-89]],[[5169,8485],[-40,-63],[-72,-11],[-63,44],[-100,20],[-41,-20],[-27,-125],[-89,31],[-39,-59],[-47,-34],[-36,70],[-116,10],[-29,-45],[-115,-82],[-100,-95],[-70,-101],[-47,10],[-24,31],[-70,21],[-25,64],[-66,-46],[-22,14]],[[3931,8119],[23,36],[-27,49],[52,78],[-22,31],[-95,75],[24,87],[-26,32],[8,66],[81,-1],[30,22],[-73,77],[77,97],[30,89],[48,57],[85,43],[94,-9],[46,33],[41,61],[46,10],[18,63],[57,40],[64,-8],[34,40],[92,-3],[47,22],[55,107],[29,22],[3,63],[-118,76],[33,54],[70,-33],[44,-4],[25,-33],[118,-54],[-3,-94],[30,-39],[75,-59],[94,4],[35,-52],[42,-21],[233,27],[52,57],[53,9],[-5,37],[56,29],[67,2],[160,23],[53,-29],[148,2],[15,54],[100,10],[8,-31],[77,1],[38,23],[31,-51],[96,67],[10,-23],[177,80],[39,-13],[-29,-57],[37,-73],[10,-60],[-16,-60],[34,-15],[-13,-49],[51,-6],[-16,-46],[-62,-39],[-3,-83],[-79,-155],[-2,-84],[-78,-42],[39,-23],[32,47],[43,15],[99,-29],[35,-60],[40,14],[125,-61],[8,-65],[28,-21]],[[7192,6811],[-25,-32],[-64,3],[-44,-20],[-36,32],[-57,-13],[-64,-199],[-68,19],[-50,-55],[147,-107],[22,-48],[-31,-34],[2,-121],[21,-43],[-1,-166],[-93,-14],[20,-81],[-31,-83],[-4,-62],[-57,-5],[19,51],[-63,59],[-46,-96],[39,-86],[-13,-49]],[[6715,5661],[-65,-9],[-29,-59],[-35,-10],[-55,22],[-83,-29],[-53,16],[-96,-1],[-54,-88],[-30,-17]],[[6215,5486],[-46,64],[-56,42]],[[6113,5592],[-29,43],[-79,32],[-41,-13],[-133,27],[-57,50],[-62,76],[-64,22],[-141,91],[-56,-4],[-97,43],[-27,38],[0,109],[-70,55],[-91,54]],[[5166,6215],[27,76]],[[5193,6291],[89,51],[60,13],[75,41],[16,45],[124,164],[90,12],[66,-46],[50,1],[128,59],[26,108],[72,0],[35,43]],[[6024,6782],[34,-41],[66,-33],[33,23],[8,56],[103,-16],[75,-46],[50,68],[-35,113],[-52,55],[35,37],[75,43],[52,-21],[48,44],[-19,82],[0,66],[-22,55],[20,65],[31,28],[64,-29],[32,30],[86,-7],[57,13],[50,84],[38,37],[17,68],[-44,68],[-73,13]],[[6831,7777],[31,23],[72,3],[26,-96],[71,-124],[50,-177],[-104,-106],[54,-27],[4,-38],[41,-24],[24,-49],[-30,-79],[-79,-41],[31,-47],[123,-71],[47,-113]],[[3713,6549],[-15,-72],[36,-44],[69,-30],[48,5],[70,-20],[91,21],[22,-34],[-32,-44],[1,-87],[-73,-61],[-8,-53],[53,-93],[56,-9],[3,-51],[38,-4],[-1,-48],[34,-7],[-20,-74],[-47,-52],[-32,-100],[-48,-54],[13,-62],[-13,-63],[19,-24]],[[3977,5489],[-42,-13],[4,-75],[67,-74],[78,-53]],[[4084,5274],[-23,-68]],[[4061,5206],[-50,-79],[-86,29],[-11,47],[-93,50],[-51,6],[-6,77],[-67,-70],[-48,-33],[-21,-62],[-47,-55],[-76,-57],[-78,-27],[-27,-46],[-83,-49],[3,-53],[-26,-51],[-77,-65],[-68,-5],[-31,48],[-169,-18],[-38,-29],[-79,17],[-66,0],[-86,-42],[-107,15]],[[2573,4754],[-12,46],[55,15],[25,79],[-1,71],[-21,35],[-65,15],[16,54],[-56,9],[1,41],[40,35],[-16,41],[-74,-60],[-87,25],[28,35],[-60,79],[-22,54],[37,101],[11,135],[31,28],[23,85],[-41,106],[-43,11],[11,90]],[[2353,5884],[63,0],[20,96],[49,69],[116,126],[35,18],[56,64],[43,-9],[26,-36],[70,17],[31,-93],[71,14],[118,8],[25,30],[50,-26],[27,40],[84,31],[47,59],[60,-17],[50,-131],[39,-3],[53,63],[32,-15],[112,39],[6,28],[-60,67],[16,57],[-10,44],[-40,25],[-61,-41],[-60,61],[50,81],[61,29],[88,-21],[36,-56],[57,47]],[[9828,6860],[-49,-3],[-52,47],[-58,-13],[-47,-90],[-67,6],[-60,-30],[-34,-81],[-2,-50],[-43,-26],[-70,38],[-56,78],[-40,25],[-51,-46],[-86,44],[-51,2],[26,83],[-21,40],[-105,12],[-15,24]],[[8947,6920],[7,34],[-32,53],[8,37]],[[8930,7044],[119,63],[27,49],[84,50],[81,96],[91,187],[24,-8],[75,34],[20,63],[65,59],[120,23],[68,-16],[21,17],[110,-18],[46,52],[32,-61],[56,-29],[122,41],[-14,46],[22,54],[-22,54],[86,-1],[-16,89],[60,-24],[45,57],[11,77],[21,20],[55,-39],[25,10],[34,88],[-88,52],[-55,55]],[[10255,8184],[-2,96],[38,29],[40,-8],[39,25],[16,86],[50,-40],[71,2],[31,-67],[-31,-52],[18,-78],[64,-116],[66,-27],[63,0],[77,-47],[87,-3],[-1,-38],[50,-71],[-6,-123],[26,-40],[7,-58],[-39,-9],[-74,-52],[-19,-47],[-52,-34],[-47,18],[-249,-11],[-131,-56],[-67,-48],[-129,-131],[-98,-61],[-63,-63],[-105,-208],[-57,-92]],[[8790,5598],[-56,-92],[45,-42],[-17,-134],[21,-60],[-45,-111]],[[8738,5159],[-95,-6],[-60,26],[-57,-39],[-90,21],[-57,49],[-50,19],[-22,-40],[35,-141],[33,-74],[30,-6],[17,-53],[130,-47],[-17,-50],[21,-31],[-13,-73],[37,-69],[-17,-36],[57,-82]],[[8428,4634],[-61,74],[12,40],[-52,26],[-34,98],[-132,98],[-9,112],[-22,35],[-56,24],[-27,-44],[25,-98],[-127,65],[-26,35],[50,114],[-19,67],[-26,15],[-51,-62],[-74,12],[-30,-19],[-26,-76],[-31,-44],[-66,-30],[-51,-58],[-169,14],[-26,-25],[-88,7],[-13,-56],[-106,21],[-105,-10],[-4,16]],[[7084,4985],[38,44],[-9,36],[37,94],[-53,-18],[-128,2],[-26,15],[-172,25],[-77,56],[-74,20],[-236,154],[-92,9],[-77,64]],[[6715,5661],[56,-14],[63,-52],[31,-70],[71,-60],[73,-5],[25,-20],[129,-21],[43,-19],[7,49],[93,-50],[49,71],[47,30],[140,-47],[18,49],[107,27],[54,88],[39,24],[15,62],[69,-2],[17,51],[45,25],[31,-25],[102,15],[33,-19],[46,50],[3,31]],[[8121,5829],[84,-29],[41,-39],[54,-81],[65,-51],[49,1],[33,37],[48,-1],[53,52],[51,21],[21,-60],[118,-34],[52,-47]],[[5467,2384],[23,-32],[-45,-58],[25,-49],[-31,-40],[-47,-22],[-74,-113],[-23,-70],[-57,-21],[-29,18],[-57,-37],[-64,30],[-67,-37],[-56,5],[-34,-38],[-68,-15],[-46,13],[-32,64],[-73,41],[-78,0],[-44,-15],[-57,40],[-68,4],[-10,41],[-37,25],[-37,109],[-15,96],[-48,110]],[[4318,2433],[33,31],[32,-46],[34,-11],[21,-48],[63,8],[28,69],[36,-11],[34,-46],[64,63],[-44,69],[35,33],[47,-37],[38,3],[-30,79],[20,98],[-72,40],[12,46],[-15,49],[26,73],[25,13],[19,67],[-12,41],[27,82],[-23,58],[-126,47],[-6,45],[62,133],[-32,29],[30,61],[-60,40],[-17,43],[-13,119],[29,10]],[[4583,3683],[59,-29],[95,23]],[[4737,3677],[18,-5]],[[4755,3672],[72,-10],[100,6],[41,-94],[77,20],[73,-32]],[[2155,3968],[2,-62],[-53,-39],[8,-87],[-20,-79],[-53,-29],[39,-40],[-33,-52],[50,-10],[18,-73],[86,-9],[-16,-37],[67,-26],[-18,-36],[31,-64],[109,-91],[3,-110],[51,-18],[25,-43],[61,11],[109,-49],[-33,-37],[-11,-69],[53,-107]],[[2630,2812],[-26,-7],[-73,-102],[-50,33],[-118,24],[-21,24],[-75,-5],[-66,-59],[-3,49],[-122,47],[-57,-6],[-48,-46],[-50,6],[-47,-24],[-56,35],[-15,42],[-41,-22],[-90,27],[-53,-41],[-94,71],[-62,6],[-69,-30]],[[1394,2834],[-17,30],[0,84],[30,51],[21,84],[-68,32],[43,36],[30,104],[-28,25],[-87,-12],[-40,75],[-9,98],[-125,-17],[43,75],[-20,90],[29,82],[-25,161],[12,68],[23,32],[-9,76],[-129,9],[-41,81],[5,37],[-163,77],[-42,44],[-16,71],[41,148],[53,40],[58,88],[35,31],[58,-53],[23,-48],[42,-15],[9,-51],[62,32],[15,30],[105,-80],[90,-24],[69,-36],[47,36],[56,-53],[66,-178],[74,-108],[88,105],[92,43],[65,-5],[41,-31],[56,-6],[121,-44],[-41,-57],[-5,-61],[24,-62]],[[4325,7581],[28,-53],[56,-26],[72,-178],[-66,-46],[56,-53],[4,-81],[-21,-79],[75,-130],[-31,-137]],[[4498,6798],[-40,-41],[-40,-104],[-44,-11],[-49,30],[-32,78],[-115,-68],[-53,-7],[-60,26],[-75,-3],[-33,-45],[-77,-59],[-66,-34],[-30,-38],[-71,27]],[[2353,5884],[-29,192],[0,127],[19,37],[8,78],[-21,64],[7,100],[-45,95],[-53,43]],[[2239,6620],[28,76],[-21,50],[219,18],[44,-35],[54,35],[50,10],[71,-28],[41,27],[63,-3],[34,29],[97,-60],[55,-54],[55,-22],[87,-14],[74,61],[57,17],[47,170],[-9,54],[51,52],[46,-16],[-23,128],[47,87],[168,-71],[35,43],[-1,77],[-43,74],[-35,16],[-15,83],[22,101],[21,29],[4,95],[67,70],[64,36],[1,-63],[39,-25],[35,68]],[[3768,7735],[67,61],[32,107],[27,35],[173,-47],[89,-63],[39,-117],[130,-130]],[[4061,5206],[95,-39],[-3,-41],[27,-125],[2,-99],[92,-62],[35,-56],[-102,-63],[-41,-95],[-60,21],[-76,-46],[-61,28],[-51,-37],[-52,-128],[-74,-61],[-13,-65]],[[3779,4338],[-79,26],[-16,-80],[-64,-25],[41,-103],[-8,-44],[25,-28],[20,-77],[9,-112],[-65,-107],[-60,-41],[-24,-87],[-32,-37],[-94,-28],[-64,19],[-17,-52],[10,-47],[-28,-89],[-35,-9],[-42,-81],[-31,1],[-4,-76],[-31,12],[-33,85],[17,23],[-43,48],[-25,-17],[-92,124],[-57,-20],[-21,-81],[-49,-28],[-14,-103],[-94,4],[-3,-90],[27,-29],[-10,-55],[18,-77],[-69,-41],[-51,-102],[21,-50],[-43,-92]],[[2669,2772],[-39,40]],[[2155,3968],[68,37],[41,73],[95,3],[23,44],[-20,116],[19,155],[-24,19]],[[2357,4415],[61,54],[93,155],[38,-4],[24,134]],[[5606,5223],[15,-33]],[[5621,5190],[-31,-34]],[[5590,5156],[-26,-53],[99,-24],[16,-79],[-10,-87],[67,-108]],[[5598,4708],[-10,-1]],[[5402,4515],[-65,-35]],[[5515,4150],[-2,-27]],[[5485,4098],[1,-21]],[[5447,4086],[-92,24]],[[5107,4152],[-71,-16]],[[4955,3927],[21,-44]],[[5017,3886],[33,-11]],[[4755,3672],[-18,5]],[[4583,3683],[-10,68],[-31,21],[-84,-11],[-55,72],[-52,15],[-75,-6]],[[4276,3842],[-9,-11]],[[4267,3831],[-7,-59],[-42,-50],[-82,68],[-82,-61],[-21,29],[15,52],[-31,90],[-17,7]],[[4000,3907],[-15,11]],[[3985,3918],[21,53],[-5,75],[-133,56],[-30,69],[61,105],[-58,42],[-62,20]],[[4084,5274],[53,-15],[61,35]],[[4198,5294],[31,-23]],[[4229,5271],[43,-15]],[[4272,5256],[22,-2]],[[4294,5254],[49,38],[8,62],[-14,97],[65,67],[28,57],[96,12],[15,56],[53,-51],[41,11],[79,-31],[72,49],[86,8],[75,-31],[58,42],[19,-28],[59,-7],[62,36],[34,71],[6,69],[73,40],[74,-51],[46,-135],[-4,-85],[18,-58],[75,-46],[-14,-41],[68,-94],[-4,-90],[44,-21],[45,23]],[[8801,6475],[-1,-150],[-13,-76],[55,-21],[30,-61],[46,-26],[69,25],[106,-41],[116,53],[143,-28],[52,-122]],[[9404,6028],[-28,-48],[-46,15],[-71,-54],[-4,-40],[28,-55],[-25,-27],[-103,-28],[-29,17],[-26,-76],[-47,-14],[-99,-98],[-102,49],[8,-66],[-70,-5]],[[8121,5829],[-6,28],[95,17],[44,29],[72,-18],[13,138],[-22,29],[-73,20],[-38,37],[-60,4],[-47,35],[41,84],[-4,59],[-90,0],[-81,26],[-53,62],[-67,40],[-67,7],[25,74],[-7,65],[-45,22],[-34,65],[2,50],[73,25]],[[7792,6727],[63,6],[22,-85],[60,1],[24,-28],[49,9],[47,-19],[77,17],[23,55],[60,36],[122,5],[10,30],[71,22],[-8,-80],[-32,-23],[-49,-88],[35,-98],[61,-21],[25,75],[82,46],[38,-21],[92,-18],[40,-31],[47,0],[50,-42]],[[9714,5910],[43,-14],[49,76],[57,8],[43,-23],[83,2],[61,19],[26,-19],[28,-161],[-149,-103],[-137,-117],[-123,-91],[-88,-138],[-10,-101],[25,-41],[53,-1],[3,-92]],[[9678,5114],[-14,-26],[-103,-61],[-96,67],[-111,21],[-83,-35],[-40,33],[-49,-22],[-50,16],[-69,-3],[-67,59],[-14,-23],[-83,27],[-74,-29],[-47,33],[-40,-12]],[[9404,6028],[98,-11],[55,-29],[90,-13],[-6,-46],[73,-19]],[[7701,8569],[-25,-47],[14,-39],[57,-12],[21,-45],[59,-14],[84,-48],[-8,-97],[27,-38],[13,-79],[-3,-73],[51,-5],[79,-31],[41,-54],[62,-11],[56,-45],[83,11],[40,-90],[61,-70],[12,-75],[-59,-111],[-52,-30],[-16,-54],[162,-84],[68,-58],[46,-84],[-39,-34],[-59,-108],[-27,-77],[26,-16],[21,-64],[33,-12],[48,30],[45,-15],[36,19],[18,60],[92,109],[156,-95],[6,-39]],[[8947,6920],[-33,-8],[-4,-87],[-71,-44],[-33,12],[-33,-59],[65,-71],[15,-67],[-25,-111],[-27,-10]],[[7792,6727],[-10,35],[-70,50],[-34,-39],[-49,-1],[-68,-57],[-92,59],[-85,-107],[-69,28],[-71,79],[-52,37]],[[6908,8465],[78,161],[88,90],[40,4],[32,56],[56,8],[113,-46],[51,-39],[52,-16],[45,-44],[27,8],[66,-32],[96,32],[49,-78]],[[6375,4212],[63,15],[62,-10],[212,68],[71,-58],[103,14],[37,-13],[137,42],[76,65],[72,-58],[32,-5],[58,75],[-24,61],[-42,1],[9,59],[-43,32],[-31,64],[34,41],[26,72],[-44,41],[-60,-6],[22,72],[-19,14],[-157,-83],[-54,-64],[-47,35],[-24,117],[46,67],[175,15],[19,100]],[[2669,2772],[47,-51],[82,-8],[33,13],[74,-93],[38,-70],[2,-47],[57,-26],[22,74],[51,62],[48,-36],[12,87],[87,-46],[26,38],[3,69],[53,8],[44,-33],[-92,-65],[-29,-60],[11,-36],[-9,-121],[25,-75],[68,-11],[-5,103],[33,18],[10,76],[26,89],[40,15],[75,-41],[6,-94],[35,-17],[-28,-59]],[[3514,2435],[-21,-42],[-4,-63],[62,-7],[-20,-76],[68,-90],[19,-76],[-65,-3],[-67,-49],[-82,-37],[-24,-65],[-84,17],[5,-41],[-30,-59],[-38,19],[-67,-66],[-14,-64],[-40,-19],[-59,9],[3,-69],[-18,-37],[-90,-79],[46,-59],[67,-4],[-66,-112],[-65,-66],[39,-20],[53,-85],[-54,-46],[-80,10],[-28,-40],[-133,2],[-32,46],[11,27],[-129,83],[-36,12],[-41,-40],[21,-83],[-7,-49],[-30,-46],[-116,-46],[-8,-25],[-71,-19],[-49,-118],[-76,57],[-6,49],[24,183],[-78,34],[-37,2],[-9,90],[-26,44],[21,24],[-8,72],[-75,23],[-13,43],[-81,-104]],[[1876,1377],[-37,22],[-21,48],[21,74],[49,10],[6,61],[-159,46],[-79,-89],[-90,20],[-57,74],[-14,89],[-89,-72],[-73,86],[22,33],[-98,95]],[[1257,1874],[-6,48],[115,35],[35,115],[-12,43],[26,88],[74,34],[46,-4],[-26,210],[-56,92],[26,37],[-13,75],[-74,21],[34,66],[-32,100]],[[7701,8569],[90,13],[143,106],[52,-68],[-77,0],[-32,-52],[16,-30],[-41,-56],[8,-38],[42,-22],[56,3],[160,-15],[14,65],[55,28],[104,182],[-11,46],[58,107],[-103,118],[87,123],[5,50],[-50,18],[51,74],[-22,99],[-29,-4],[-71,68],[29,88],[48,19],[58,51],[18,59],[55,-41],[58,-107],[182,-40],[32,-43],[80,-19],[41,-28],[67,-106],[49,-55],[88,-53],[68,-27],[34,33],[75,38],[58,-87],[83,0],[22,-46],[45,2],[53,-29],[5,-52],[61,-33],[69,-5],[-14,-78],[4,-70],[67,1],[68,20],[28,-80],[75,-32],[214,-42],[43,-57],[48,-16],[30,-105],[-52,-98],[-13,-67],[58,-85],[115,-10]],[[3985,3918],[15,-11]],[[4267,3831],[9,11]],[[4318,2433],[-85,-48],[-65,31],[-37,90],[-49,62],[1,26],[-62,115],[-52,-49],[19,-56],[-36,-26],[-11,-61],[-38,4],[-39,-43],[-39,-11],[-73,107],[-25,-17],[27,-140],[-46,-1],[24,-81],[-35,-23],[-97,105],[-47,-11],[-39,29]],[[5907,7921],[-50,10],[-44,-91],[-88,11],[-74,-49],[-58,7],[-25,-84],[65,-30],[46,-62],[-26,-52],[-49,-14],[-47,-97],[30,-31],[-24,-68],[-11,-140],[32,-60],[67,36],[21,-18],[38,-104],[6,-119],[51,-6],[55,34],[59,73],[48,17],[45,-10],[88,-86],[-9,-80],[-59,-18],[30,-108]],[[5193,6291],[-74,-2],[-84,102],[-61,-2],[-24,76],[1,45],[-139,31],[-40,-14],[-103,71],[6,46],[-15,66],[-162,88]],[[4325,7581],[27,50],[81,-8],[62,-27],[84,6],[41,-11],[31,49],[-23,193],[9,36],[-52,38],[50,78],[33,-29],[44,69],[42,-55],[138,60],[68,-19],[66,-51],[104,30],[70,-14],[18,68],[60,93],[0,49],[47,117],[38,62],[-3,41],[32,35],[-8,64],[-56,26],[-105,-7],[-54,-39]],[[6113,5592],[3,-42],[-34,-49],[-59,10],[-80,-85],[-14,-114],[-51,-33],[-75,17],[-197,-73]],[[4294,5254],[-22,2]],[[4229,5271],[-31,23]],[[3977,5489],[75,15],[74,47],[76,92],[-23,69],[74,152],[6,120],[33,48],[115,50],[43,-19],[53,4],[65,46],[101,6],[85,-30],[134,37],[85,60],[103,54],[90,-25]],[[9828,6860],[-33,-105],[21,-128],[37,-101],[41,-70],[100,-225],[49,-98],[-12,-113],[-28,-11],[-132,13],[-51,-10],[-61,-40],[-45,-62]],[[9678,5114],[-14,-57],[-173,-116],[-158,-89],[-86,-69],[-105,-179],[-66,-79],[-25,1],[-53,-109],[-32,5],[-24,-53]],[[3768,7735],[-76,31],[-37,41],[53,32],[63,102],[-15,65],[27,70],[82,-30],[-10,77],[76,-4]],[[1876,1377],[-122,-152],[42,-75],[-70,-102],[70,-6],[15,-25],[-46,-72],[-54,-9],[-8,-102],[-48,-40],[8,-43],[69,-25],[-28,-40],[-2,-97],[20,-23],[-12,-71],[-72,-3],[-24,20],[-45,-43],[23,-48],[-6,-49],[-46,-13],[-81,58],[-35,3],[-24,63],[-129,22],[-36,26],[-38,-43],[-48,27],[-41,-26],[0,-43],[-117,-80],[-243,-97],[-34,-53],[-142,-98],[-27,48],[-45,-16],[-37,-76],[-57,-48],[-76,24],[-26,-23],[-131,-27],[-20,41],[-109,-37],[-44,3],[23,81],[-15,31],[25,53],[61,-25],[20,55],[-6,46],[58,89],[-6,118],[62,128],[6,75],[19,56],[-32,53],[37,107],[5,45],[71,29],[46,56],[40,0],[80,30],[-4,47],[156,13],[31,133],[148,141],[8,39],[61,58],[32,56],[77,-3],[20,63],[-119,68],[9,67],[40,-37],[57,-14],[18,110],[137,72],[81,-13],[11,40]],[[5590,5156],[31,34]],[[2357,4415],[-118,15],[-31,-27],[-58,6],[-69,45],[-75,2],[-56,38],[-135,34],[-9,141],[-21,52],[48,69],[14,47],[-15,123],[43,40],[-12,53],[-52,52],[30,84],[-1,51],[35,47],[-18,64],[-56,-10],[-14,116],[-57,26],[-44,62],[33,43],[-7,38],[53,61],[-5,79],[-39,71],[4,60],[-19,60],[6,64],[-8,102],[22,87],[39,-40],[60,-3],[25,-72],[80,18],[32,22],[10,107],[112,71],[65,105],[41,38],[32,62],[-24,55],[41,47]]],"transform":{"scale":[0.0005563653402241279,0.0004953787731873723],"translate":[81.393550601824,17.810722398628037]},"objects":{"odisha_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21]],"type":"Polygon","properties":{"cartodb_id":192,"censuscode":388,"dt_cen_cd":19,"st_cen_cd":21,"st_nm":"Odisha","district":"Ganjam"}},{"arcs":[[22,23,24,-2,25]],"type":"Polygon","properties":{"cartodb_id":456,"censuscode":387,"dt_cen_cd":18,"st_cen_cd":21,"st_nm":"Odisha","district":"Puri"}},{"arcs":[[26,27,28,29,30,31]],"type":"Polygon","properties":{"cartodb_id":553,"censuscode":374,"dt_cen_cd":5,"st_cen_cd":21,"st_nm":"Odisha","district":"Sundargarh"}},{"arcs":[[32,33,34,35,36,37,38,-28,39]],"type":"Polygon","properties":{"cartodb_id":23,"censuscode":384,"dt_cen_cd":15,"st_cen_cd":21,"st_nm":"Odisha","district":"Angul"}},{"arcs":[[40,41,42,43,44,45]],"type":"Polygon","properties":{"cartodb_id":39,"censuscode":393,"dt_cen_cd":24,"st_cen_cd":21,"st_nm":"Odisha","district":"Balangir"}},{"arcs":[[46,47,48,49]],"type":"Polygon","properties":{"cartodb_id":40,"censuscode":377,"dt_cen_cd":8,"st_cen_cd":21,"st_nm":"Odisha","district":"Baleshwar"}},{"arcs":[[50,51,-23,52,53,-34,54,55]],"type":"Polygon","properties":{"cartodb_id":126,"censuscode":381,"dt_cen_cd":12,"st_cen_cd":21,"st_nm":"Odisha","district":"Cuttack"}},{"arcs":[[-4,56,57,58,59,60]],"type":"Polygon","properties":{"cartodb_id":188,"censuscode":389,"dt_cen_cd":20,"st_cen_cd":21,"st_nm":"Odisha","district":"Gajapati"}},{"arcs":[[61,62,63]],"type":"Polygon","properties":{"cartodb_id":389,"censuscode":397,"dt_cen_cd":28,"st_cen_cd":21,"st_nm":"Odisha","district":"Nabarangapur"}},{"arcs":[[64,65,-46,66,67,68]],"type":"Polygon","properties":{"cartodb_id":52,"censuscode":370,"dt_cen_cd":1,"st_cen_cd":21,"st_nm":"Odisha","district":"Bargarh"}},{"arcs":[[69,70,71,-62,72,73,-44]],"type":"Polygon","properties":{"cartodb_id":269,"censuscode":395,"dt_cen_cd":26,"st_cen_cd":21,"st_nm":"Odisha","district":"Kalahandi"}},{"arcs":[[74,75,76,-21,77,-19,78,-17,79,-15,80,-13,81,-11,82,-9,83,-7,84,-5,-61,85,-59,86,87,88,89,90,-70,-43,91,92,93,94,95]],"type":"Polygon","properties":{"cartodb_id":273,"censuscode":390,"dt_cen_cd":21,"st_cen_cd":21,"st_nm":"Odisha","district":"Kandhamal"}},{"arcs":[[96,97,-56,98,99]],"type":"Polygon","properties":{"cartodb_id":242,"censuscode":382,"dt_cen_cd":13,"st_cen_cd":21,"st_nm":"Odisha","district":"Jajapur"}},{"arcs":[[100,101,-51,-98,102]],"type":"Polygon","properties":{"cartodb_id":294,"censuscode":379,"dt_cen_cd":10,"st_cen_cd":21,"st_nm":"Odisha","district":"Kendrapara"}},{"arcs":[[103,-48,104,-100,105,-40,-27,106]],"type":"Polygon","properties":{"cartodb_id":295,"censuscode":375,"dt_cen_cd":6,"st_cen_cd":21,"st_nm":"Odisha","district":"Kendujhar"}},{"arcs":[[-26,-1,107,-53]],"type":"Polygon","properties":{"cartodb_id":300,"censuscode":386,"dt_cen_cd":17,"st_cen_cd":21,"st_nm":"Odisha","district":"Khordha"}},{"arcs":[[-72,108,109,110,111,-63]],"type":"Polygon","properties":{"cartodb_id":317,"censuscode":398,"dt_cen_cd":29,"st_cen_cd":21,"st_nm":"Odisha","district":"Koraput"}},{"arcs":[[-49,-104,112]],"type":"Polygon","properties":{"cartodb_id":371,"censuscode":376,"dt_cen_cd":7,"st_cen_cd":21,"st_nm":"Odisha","district":"Mayurbhanj"}},{"arcs":[[-91,113,-89,114,-87,-58,115,-109,-71]],"type":"Polygon","properties":{"cartodb_id":479,"censuscode":396,"dt_cen_cd":27,"st_cen_cd":21,"st_nm":"Odisha","district":"Rayagada"}},{"arcs":[[116,-38,117,-65,118,-30]],"type":"Polygon","properties":{"cartodb_id":498,"censuscode":372,"dt_cen_cd":3,"st_cen_cd":21,"st_nm":"Odisha","district":"Sambalpur"}},{"arcs":[[-36,119,-96,120,-94,121,-92,-42,122]],"type":"Polygon","properties":{"cartodb_id":64,"censuscode":391,"dt_cen_cd":22,"st_cen_cd":21,"st_nm":"Odisha","district":"Boudh"}},{"arcs":[[123,-103,-97,-105,-47]],"type":"Polygon","properties":{"cartodb_id":69,"censuscode":378,"dt_cen_cd":9,"st_cen_cd":21,"st_nm":"Odisha","district":"Bhadrak"}},{"arcs":[[-29,-39,-117]],"type":"Polygon","properties":{"cartodb_id":139,"censuscode":373,"dt_cen_cd":4,"st_cen_cd":21,"st_nm":"Odisha","district":"Debagarh"}},{"arcs":[[-99,-55,-33,-106]],"type":"Polygon","properties":{"cartodb_id":152,"censuscode":383,"dt_cen_cd":14,"st_cen_cd":21,"st_nm":"Odisha","district":"Dhenkanal"}},{"arcs":[[-102,124,-24,-52]],"type":"Polygon","properties":{"cartodb_id":238,"censuscode":380,"dt_cen_cd":11,"st_cen_cd":21,"st_nm":"Odisha","district":"Jagatsinghpur"}},{"arcs":[[-69,125,-31,-119]],"type":"Polygon","properties":{"cartodb_id":260,"censuscode":371,"dt_cen_cd":2,"st_cen_cd":21,"st_nm":"Odisha","district":"Jharsuguda"}},{"arcs":[[126,-111]],"type":"Polygon","properties":{"cartodb_id":361,"censuscode":399,"dt_cen_cd":30,"st_cen_cd":21,"st_nm":"Odisha","district":"Malkangiri"}},{"arcs":[[-54,-108,-22,-77,127,-75,-120,-35]],"type":"Polygon","properties":{"cartodb_id":407,"censuscode":385,"dt_cen_cd":16,"st_cen_cd":21,"st_nm":"Odisha","district":"Nayagarh"}},{"arcs":[[-45,-74,128,-67]],"type":"Polygon","properties":{"cartodb_id":420,"censuscode":394,"dt_cen_cd":25,"st_cen_cd":21,"st_nm":"Odisha","district":"Nuapada"}},{"arcs":[[-118,-37,-123,-41,-66]],"type":"Polygon","properties":{"cartodb_id":539,"censuscode":392,"dt_cen_cd":23,"st_cen_cd":21,"st_nm":"Odisha","district":"Subarnapur"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [6375, 4212], + [-7, -50], + [65, -40], + [21, -57], + [46, -44], + [61, 7], + [60, -30], + [19, -49], + [73, -36], + [101, -149] + ], + [ + [6814, 3764], + [-13, -238], + [-72, -74], + [73, -115] + ], + [ + [6802, 3337], + [-141, -122], + [-17, -52], + [-56, -32], + [-217, -157], + [-86, -81], + [-92, -106], + [-55, -77], + [-72, -148], + [-115, 76], + [16, 70], + [-74, 27], + [-7, -71], + [-93, -8], + [-7, -51], + [88, -81], + [-75, 5], + [-28, -70], + [-34, -2], + [0, 87], + [-44, -30], + [-79, -20], + [-57, -59], + [-11, -54], + [-79, 3] + ], + [ + [5467, 2384], + [-67, 26], + [-28, -29], + [-57, 65], + [18, 31], + [33, 128], + [17, 30], + [-37, 93], + [-8, 61], + [63, 16], + [21, 80], + [27, 44], + [6, 74], + [-22, 71], + [44, 59], + [-82, 13], + [-9, 44], + [31, 109], + [-47, 100], + [-16, 104], + [-71, 5], + [-27, -21], + [-23, -86], + [-87, 3], + [-10, 151], + [-18, 7] + ], + [ + [5118, 3562], + [-25, 102], + [36, 33], + [-103, 123], + [24, 55] + ], + [ + [5050, 3875], + [-33, 11] + ], + [ + [5017, 3886], + [-41, -3] + ], + [ + [4976, 3883], + [-21, 44] + ], + [ + [4955, 3927], + [-31, 48], + [61, 12], + [13, 68], + [50, 31], + [-12, 50] + ], + [ + [5036, 4136], + [71, 16] + ], + [ + [5107, 4152], + [78, 22], + [53, 55], + [25, -58], + [92, -61] + ], + [ + [5355, 4110], + [92, -24] + ], + [ + [5447, 4086], + [39, -9] + ], + [ + [5486, 4077], + [-1, 21] + ], + [ + [5485, 4098], + [28, 25] + ], + [ + [5513, 4123], + [2, 27] + ], + [ + [5515, 4150], + [-7, 77], + [21, 70], + [-65, 38], + [-101, 16], + [-32, 44], + [-63, 0], + [69, 85] + ], + [ + [5337, 4480], + [65, 35] + ], + [ + [5402, 4515], + [29, 147], + [37, 72], + [-12, 60], + [90, -79], + [42, -8] + ], + [ + [5588, 4707], + [10, 1] + ], + [ + [5598, 4708], + [101, -5], + [-9, 42], + [50, 26], + [-4, 34] + ], + [ + [5736, 4805], + [28, -27], + [86, 59], + [7, 48], + [38, 86], + [62, 11], + [65, -68], + [46, 5], + [41, -37], + [66, -14], + [-15, -211], + [-39, -47], + [22, -50], + [82, -80], + [11, -60], + [70, -15], + [40, -104], + [-32, -55], + [61, -34] + ], + [ + [8428, 4634], + [-9, -49], + [23, -45], + [49, 14], + [31, -55], + [98, 28] + ], + [ + [8620, 4527], + [65, -31], + [41, 2], + [55, 37], + [38, -53], + [50, -25], + [30, -70], + [43, -18] + ], + [ + [8942, 4369], + [-4, -55], + [-121, -27], + [-77, -45], + [-43, 42], + [-37, -91], + [-257, -72], + [-42, -22], + [-128, -16], + [-158, -46], + [-341, -119], + [-120, -76], + [-182, -96], + [-150, -69], + [-169, -98], + [-246, -181], + [-65, -61] + ], + [ + [6814, 3764], + [12, 52], + [68, 98], + [87, 82], + [91, 22], + [29, 54], + [58, 22], + [36, 56], + [57, 54], + [100, -19], + [85, 7], + [54, -28], + [10, 87], + [-103, 59], + [29, 59], + [71, -51], + [2, 110], + [51, -19], + [66, 60], + [-25, 35], + [12, 48], + [101, 12], + [12, 53], + [-16, 51], + [20, 52], + [65, -13], + [68, 19], + [37, 30], + [23, -32], + [55, 15], + [6, 34], + [106, 2], + [23, -63], + [-48, -46], + [44, -19], + [171, -12], + [157, -1] + ], + [ + [6908, 8465], + [77, -95], + [66, 2], + [56, -15], + [48, -34], + [5, -49], + [-30, -62], + [0, -54], + [-30, -50], + [-47, -17], + [-57, 35], + [-21, -35], + [-54, -31], + [-30, 12], + [-41, -83], + [19, -55], + [-45, -48], + [7, -109] + ], + [ + [6831, 7777], + [-5, -79], + [-73, -61] + ], + [ + [6753, 7637], + [-77, -2], + [-35, 21], + [-65, -29], + [-28, 36], + [-16, 131], + [-49, 21], + [-37, -18], + [-36, 19], + [-31, -46], + [-61, 18], + [-77, -33], + [-130, 32], + [-20, -87], + [-42, -1], + [-18, 115], + [-51, 67], + [-41, -17], + [-32, 57] + ], + [ + [5907, 7921], + [-4, 39], + [-41, 26], + [-110, -18], + [-36, 18], + [-15, 50], + [-66, 44], + [18, 95], + [-18, 57], + [-57, 54], + [60, 25], + [-14, 57], + [-33, 45], + [7, 66], + [39, 68], + [-29, 17], + [-21, 69], + [-10, 97], + [-33, 107], + [-102, -32], + [-61, -49], + [-38, 2], + [-72, -50], + [-85, -34], + [-22, -63], + [13, -37], + [-8, -89] + ], + [ + [5169, 8485], + [-40, -63], + [-72, -11], + [-63, 44], + [-100, 20], + [-41, -20], + [-27, -125], + [-89, 31], + [-39, -59], + [-47, -34], + [-36, 70], + [-116, 10], + [-29, -45], + [-115, -82], + [-100, -95], + [-70, -101], + [-47, 10], + [-24, 31], + [-70, 21], + [-25, 64], + [-66, -46], + [-22, 14] + ], + [ + [3931, 8119], + [23, 36], + [-27, 49], + [52, 78], + [-22, 31], + [-95, 75], + [24, 87], + [-26, 32], + [8, 66], + [81, -1], + [30, 22], + [-73, 77], + [77, 97], + [30, 89], + [48, 57], + [85, 43], + [94, -9], + [46, 33], + [41, 61], + [46, 10], + [18, 63], + [57, 40], + [64, -8], + [34, 40], + [92, -3], + [47, 22], + [55, 107], + [29, 22], + [3, 63], + [-118, 76], + [33, 54], + [70, -33], + [44, -4], + [25, -33], + [118, -54], + [-3, -94], + [30, -39], + [75, -59], + [94, 4], + [35, -52], + [42, -21], + [233, 27], + [52, 57], + [53, 9], + [-5, 37], + [56, 29], + [67, 2], + [160, 23], + [53, -29], + [148, 2], + [15, 54], + [100, 10], + [8, -31], + [77, 1], + [38, 23], + [31, -51], + [96, 67], + [10, -23], + [177, 80], + [39, -13], + [-29, -57], + [37, -73], + [10, -60], + [-16, -60], + [34, -15], + [-13, -49], + [51, -6], + [-16, -46], + [-62, -39], + [-3, -83], + [-79, -155], + [-2, -84], + [-78, -42], + [39, -23], + [32, 47], + [43, 15], + [99, -29], + [35, -60], + [40, 14], + [125, -61], + [8, -65], + [28, -21] + ], + [ + [7192, 6811], + [-25, -32], + [-64, 3], + [-44, -20], + [-36, 32], + [-57, -13], + [-64, -199], + [-68, 19], + [-50, -55], + [147, -107], + [22, -48], + [-31, -34], + [2, -121], + [21, -43], + [-1, -166], + [-93, -14], + [20, -81], + [-31, -83], + [-4, -62], + [-57, -5], + [19, 51], + [-63, 59], + [-46, -96], + [39, -86], + [-13, -49] + ], + [ + [6715, 5661], + [-65, -9], + [-29, -59], + [-35, -10], + [-55, 22], + [-83, -29], + [-53, 16], + [-96, -1], + [-54, -88], + [-30, -17] + ], + [ + [6215, 5486], + [-46, 64], + [-56, 42] + ], + [ + [6113, 5592], + [-29, 43], + [-79, 32], + [-41, -13], + [-133, 27], + [-57, 50], + [-62, 76], + [-64, 22], + [-141, 91], + [-56, -4], + [-97, 43], + [-27, 38], + [0, 109], + [-70, 55], + [-91, 54] + ], + [ + [5166, 6215], + [27, 76] + ], + [ + [5193, 6291], + [89, 51], + [60, 13], + [75, 41], + [16, 45], + [124, 164], + [90, 12], + [66, -46], + [50, 1], + [128, 59], + [26, 108], + [72, 0], + [35, 43] + ], + [ + [6024, 6782], + [34, -41], + [66, -33], + [33, 23], + [8, 56], + [103, -16], + [75, -46], + [50, 68], + [-35, 113], + [-52, 55], + [35, 37], + [75, 43], + [52, -21], + [48, 44], + [-19, 82], + [0, 66], + [-22, 55], + [20, 65], + [31, 28], + [64, -29], + [32, 30], + [86, -7], + [57, 13], + [50, 84], + [38, 37], + [17, 68], + [-44, 68], + [-73, 13] + ], + [ + [6831, 7777], + [31, 23], + [72, 3], + [26, -96], + [71, -124], + [50, -177], + [-104, -106], + [54, -27], + [4, -38], + [41, -24], + [24, -49], + [-30, -79], + [-79, -41], + [31, -47], + [123, -71], + [47, -113] + ], + [ + [3713, 6549], + [-15, -72], + [36, -44], + [69, -30], + [48, 5], + [70, -20], + [91, 21], + [22, -34], + [-32, -44], + [1, -87], + [-73, -61], + [-8, -53], + [53, -93], + [56, -9], + [3, -51], + [38, -4], + [-1, -48], + [34, -7], + [-20, -74], + [-47, -52], + [-32, -100], + [-48, -54], + [13, -62], + [-13, -63], + [19, -24] + ], + [ + [3977, 5489], + [-42, -13], + [4, -75], + [67, -74], + [78, -53] + ], + [ + [4084, 5274], + [-23, -68] + ], + [ + [4061, 5206], + [-50, -79], + [-86, 29], + [-11, 47], + [-93, 50], + [-51, 6], + [-6, 77], + [-67, -70], + [-48, -33], + [-21, -62], + [-47, -55], + [-76, -57], + [-78, -27], + [-27, -46], + [-83, -49], + [3, -53], + [-26, -51], + [-77, -65], + [-68, -5], + [-31, 48], + [-169, -18], + [-38, -29], + [-79, 17], + [-66, 0], + [-86, -42], + [-107, 15] + ], + [ + [2573, 4754], + [-12, 46], + [55, 15], + [25, 79], + [-1, 71], + [-21, 35], + [-65, 15], + [16, 54], + [-56, 9], + [1, 41], + [40, 35], + [-16, 41], + [-74, -60], + [-87, 25], + [28, 35], + [-60, 79], + [-22, 54], + [37, 101], + [11, 135], + [31, 28], + [23, 85], + [-41, 106], + [-43, 11], + [11, 90] + ], + [ + [2353, 5884], + [63, 0], + [20, 96], + [49, 69], + [116, 126], + [35, 18], + [56, 64], + [43, -9], + [26, -36], + [70, 17], + [31, -93], + [71, 14], + [118, 8], + [25, 30], + [50, -26], + [27, 40], + [84, 31], + [47, 59], + [60, -17], + [50, -131], + [39, -3], + [53, 63], + [32, -15], + [112, 39], + [6, 28], + [-60, 67], + [16, 57], + [-10, 44], + [-40, 25], + [-61, -41], + [-60, 61], + [50, 81], + [61, 29], + [88, -21], + [36, -56], + [57, 47] + ], + [ + [9828, 6860], + [-49, -3], + [-52, 47], + [-58, -13], + [-47, -90], + [-67, 6], + [-60, -30], + [-34, -81], + [-2, -50], + [-43, -26], + [-70, 38], + [-56, 78], + [-40, 25], + [-51, -46], + [-86, 44], + [-51, 2], + [26, 83], + [-21, 40], + [-105, 12], + [-15, 24] + ], + [ + [8947, 6920], + [7, 34], + [-32, 53], + [8, 37] + ], + [ + [8930, 7044], + [119, 63], + [27, 49], + [84, 50], + [81, 96], + [91, 187], + [24, -8], + [75, 34], + [20, 63], + [65, 59], + [120, 23], + [68, -16], + [21, 17], + [110, -18], + [46, 52], + [32, -61], + [56, -29], + [122, 41], + [-14, 46], + [22, 54], + [-22, 54], + [86, -1], + [-16, 89], + [60, -24], + [45, 57], + [11, 77], + [21, 20], + [55, -39], + [25, 10], + [34, 88], + [-88, 52], + [-55, 55] + ], + [ + [10255, 8184], + [-2, 96], + [38, 29], + [40, -8], + [39, 25], + [16, 86], + [50, -40], + [71, 2], + [31, -67], + [-31, -52], + [18, -78], + [64, -116], + [66, -27], + [63, 0], + [77, -47], + [87, -3], + [-1, -38], + [50, -71], + [-6, -123], + [26, -40], + [7, -58], + [-39, -9], + [-74, -52], + [-19, -47], + [-52, -34], + [-47, 18], + [-249, -11], + [-131, -56], + [-67, -48], + [-129, -131], + [-98, -61], + [-63, -63], + [-105, -208], + [-57, -92] + ], + [ + [8790, 5598], + [-56, -92], + [45, -42], + [-17, -134], + [21, -60], + [-45, -111] + ], + [ + [8738, 5159], + [-95, -6], + [-60, 26], + [-57, -39], + [-90, 21], + [-57, 49], + [-50, 19], + [-22, -40], + [35, -141], + [33, -74], + [30, -6], + [17, -53], + [130, -47], + [-17, -50], + [21, -31], + [-13, -73], + [37, -69], + [-17, -36], + [57, -82] + ], + [ + [8428, 4634], + [-61, 74], + [12, 40], + [-52, 26], + [-34, 98], + [-132, 98], + [-9, 112], + [-22, 35], + [-56, 24], + [-27, -44], + [25, -98], + [-127, 65], + [-26, 35], + [50, 114], + [-19, 67], + [-26, 15], + [-51, -62], + [-74, 12], + [-30, -19], + [-26, -76], + [-31, -44], + [-66, -30], + [-51, -58], + [-169, 14], + [-26, -25], + [-88, 7], + [-13, -56], + [-106, 21], + [-105, -10], + [-4, 16] + ], + [ + [7084, 4985], + [38, 44], + [-9, 36], + [37, 94], + [-53, -18], + [-128, 2], + [-26, 15], + [-172, 25], + [-77, 56], + [-74, 20], + [-236, 154], + [-92, 9], + [-77, 64] + ], + [ + [6715, 5661], + [56, -14], + [63, -52], + [31, -70], + [71, -60], + [73, -5], + [25, -20], + [129, -21], + [43, -19], + [7, 49], + [93, -50], + [49, 71], + [47, 30], + [140, -47], + [18, 49], + [107, 27], + [54, 88], + [39, 24], + [15, 62], + [69, -2], + [17, 51], + [45, 25], + [31, -25], + [102, 15], + [33, -19], + [46, 50], + [3, 31] + ], + [ + [8121, 5829], + [84, -29], + [41, -39], + [54, -81], + [65, -51], + [49, 1], + [33, 37], + [48, -1], + [53, 52], + [51, 21], + [21, -60], + [118, -34], + [52, -47] + ], + [ + [5467, 2384], + [23, -32], + [-45, -58], + [25, -49], + [-31, -40], + [-47, -22], + [-74, -113], + [-23, -70], + [-57, -21], + [-29, 18], + [-57, -37], + [-64, 30], + [-67, -37], + [-56, 5], + [-34, -38], + [-68, -15], + [-46, 13], + [-32, 64], + [-73, 41], + [-78, 0], + [-44, -15], + [-57, 40], + [-68, 4], + [-10, 41], + [-37, 25], + [-37, 109], + [-15, 96], + [-48, 110] + ], + [ + [4318, 2433], + [33, 31], + [32, -46], + [34, -11], + [21, -48], + [63, 8], + [28, 69], + [36, -11], + [34, -46], + [64, 63], + [-44, 69], + [35, 33], + [47, -37], + [38, 3], + [-30, 79], + [20, 98], + [-72, 40], + [12, 46], + [-15, 49], + [26, 73], + [25, 13], + [19, 67], + [-12, 41], + [27, 82], + [-23, 58], + [-126, 47], + [-6, 45], + [62, 133], + [-32, 29], + [30, 61], + [-60, 40], + [-17, 43], + [-13, 119], + [29, 10] + ], + [ + [4583, 3683], + [59, -29], + [95, 23] + ], + [ + [4737, 3677], + [18, -5] + ], + [ + [4755, 3672], + [72, -10], + [100, 6], + [41, -94], + [77, 20], + [73, -32] + ], + [ + [2155, 3968], + [2, -62], + [-53, -39], + [8, -87], + [-20, -79], + [-53, -29], + [39, -40], + [-33, -52], + [50, -10], + [18, -73], + [86, -9], + [-16, -37], + [67, -26], + [-18, -36], + [31, -64], + [109, -91], + [3, -110], + [51, -18], + [25, -43], + [61, 11], + [109, -49], + [-33, -37], + [-11, -69], + [53, -107] + ], + [ + [2630, 2812], + [-26, -7], + [-73, -102], + [-50, 33], + [-118, 24], + [-21, 24], + [-75, -5], + [-66, -59], + [-3, 49], + [-122, 47], + [-57, -6], + [-48, -46], + [-50, 6], + [-47, -24], + [-56, 35], + [-15, 42], + [-41, -22], + [-90, 27], + [-53, -41], + [-94, 71], + [-62, 6], + [-69, -30] + ], + [ + [1394, 2834], + [-17, 30], + [0, 84], + [30, 51], + [21, 84], + [-68, 32], + [43, 36], + [30, 104], + [-28, 25], + [-87, -12], + [-40, 75], + [-9, 98], + [-125, -17], + [43, 75], + [-20, 90], + [29, 82], + [-25, 161], + [12, 68], + [23, 32], + [-9, 76], + [-129, 9], + [-41, 81], + [5, 37], + [-163, 77], + [-42, 44], + [-16, 71], + [41, 148], + [53, 40], + [58, 88], + [35, 31], + [58, -53], + [23, -48], + [42, -15], + [9, -51], + [62, 32], + [15, 30], + [105, -80], + [90, -24], + [69, -36], + [47, 36], + [56, -53], + [66, -178], + [74, -108], + [88, 105], + [92, 43], + [65, -5], + [41, -31], + [56, -6], + [121, -44], + [-41, -57], + [-5, -61], + [24, -62] + ], + [ + [4325, 7581], + [28, -53], + [56, -26], + [72, -178], + [-66, -46], + [56, -53], + [4, -81], + [-21, -79], + [75, -130], + [-31, -137] + ], + [ + [4498, 6798], + [-40, -41], + [-40, -104], + [-44, -11], + [-49, 30], + [-32, 78], + [-115, -68], + [-53, -7], + [-60, 26], + [-75, -3], + [-33, -45], + [-77, -59], + [-66, -34], + [-30, -38], + [-71, 27] + ], + [ + [2353, 5884], + [-29, 192], + [0, 127], + [19, 37], + [8, 78], + [-21, 64], + [7, 100], + [-45, 95], + [-53, 43] + ], + [ + [2239, 6620], + [28, 76], + [-21, 50], + [219, 18], + [44, -35], + [54, 35], + [50, 10], + [71, -28], + [41, 27], + [63, -3], + [34, 29], + [97, -60], + [55, -54], + [55, -22], + [87, -14], + [74, 61], + [57, 17], + [47, 170], + [-9, 54], + [51, 52], + [46, -16], + [-23, 128], + [47, 87], + [168, -71], + [35, 43], + [-1, 77], + [-43, 74], + [-35, 16], + [-15, 83], + [22, 101], + [21, 29], + [4, 95], + [67, 70], + [64, 36], + [1, -63], + [39, -25], + [35, 68] + ], + [ + [3768, 7735], + [67, 61], + [32, 107], + [27, 35], + [173, -47], + [89, -63], + [39, -117], + [130, -130] + ], + [ + [4061, 5206], + [95, -39], + [-3, -41], + [27, -125], + [2, -99], + [92, -62], + [35, -56], + [-102, -63], + [-41, -95], + [-60, 21], + [-76, -46], + [-61, 28], + [-51, -37], + [-52, -128], + [-74, -61], + [-13, -65] + ], + [ + [3779, 4338], + [-79, 26], + [-16, -80], + [-64, -25], + [41, -103], + [-8, -44], + [25, -28], + [20, -77], + [9, -112], + [-65, -107], + [-60, -41], + [-24, -87], + [-32, -37], + [-94, -28], + [-64, 19], + [-17, -52], + [10, -47], + [-28, -89], + [-35, -9], + [-42, -81], + [-31, 1], + [-4, -76], + [-31, 12], + [-33, 85], + [17, 23], + [-43, 48], + [-25, -17], + [-92, 124], + [-57, -20], + [-21, -81], + [-49, -28], + [-14, -103], + [-94, 4], + [-3, -90], + [27, -29], + [-10, -55], + [18, -77], + [-69, -41], + [-51, -102], + [21, -50], + [-43, -92] + ], + [ + [2669, 2772], + [-39, 40] + ], + [ + [2155, 3968], + [68, 37], + [41, 73], + [95, 3], + [23, 44], + [-20, 116], + [19, 155], + [-24, 19] + ], + [ + [2357, 4415], + [61, 54], + [93, 155], + [38, -4], + [24, 134] + ], + [ + [5606, 5223], + [15, -33] + ], + [ + [5621, 5190], + [-31, -34] + ], + [ + [5590, 5156], + [-26, -53], + [99, -24], + [16, -79], + [-10, -87], + [67, -108] + ], + [ + [5598, 4708], + [-10, -1] + ], + [ + [5402, 4515], + [-65, -35] + ], + [ + [5515, 4150], + [-2, -27] + ], + [ + [5485, 4098], + [1, -21] + ], + [ + [5447, 4086], + [-92, 24] + ], + [ + [5107, 4152], + [-71, -16] + ], + [ + [4955, 3927], + [21, -44] + ], + [ + [5017, 3886], + [33, -11] + ], + [ + [4755, 3672], + [-18, 5] + ], + [ + [4583, 3683], + [-10, 68], + [-31, 21], + [-84, -11], + [-55, 72], + [-52, 15], + [-75, -6] + ], + [ + [4276, 3842], + [-9, -11] + ], + [ + [4267, 3831], + [-7, -59], + [-42, -50], + [-82, 68], + [-82, -61], + [-21, 29], + [15, 52], + [-31, 90], + [-17, 7] + ], + [ + [4000, 3907], + [-15, 11] + ], + [ + [3985, 3918], + [21, 53], + [-5, 75], + [-133, 56], + [-30, 69], + [61, 105], + [-58, 42], + [-62, 20] + ], + [ + [4084, 5274], + [53, -15], + [61, 35] + ], + [ + [4198, 5294], + [31, -23] + ], + [ + [4229, 5271], + [43, -15] + ], + [ + [4272, 5256], + [22, -2] + ], + [ + [4294, 5254], + [49, 38], + [8, 62], + [-14, 97], + [65, 67], + [28, 57], + [96, 12], + [15, 56], + [53, -51], + [41, 11], + [79, -31], + [72, 49], + [86, 8], + [75, -31], + [58, 42], + [19, -28], + [59, -7], + [62, 36], + [34, 71], + [6, 69], + [73, 40], + [74, -51], + [46, -135], + [-4, -85], + [18, -58], + [75, -46], + [-14, -41], + [68, -94], + [-4, -90], + [44, -21], + [45, 23] + ], + [ + [8801, 6475], + [-1, -150], + [-13, -76], + [55, -21], + [30, -61], + [46, -26], + [69, 25], + [106, -41], + [116, 53], + [143, -28], + [52, -122] + ], + [ + [9404, 6028], + [-28, -48], + [-46, 15], + [-71, -54], + [-4, -40], + [28, -55], + [-25, -27], + [-103, -28], + [-29, 17], + [-26, -76], + [-47, -14], + [-99, -98], + [-102, 49], + [8, -66], + [-70, -5] + ], + [ + [8121, 5829], + [-6, 28], + [95, 17], + [44, 29], + [72, -18], + [13, 138], + [-22, 29], + [-73, 20], + [-38, 37], + [-60, 4], + [-47, 35], + [41, 84], + [-4, 59], + [-90, 0], + [-81, 26], + [-53, 62], + [-67, 40], + [-67, 7], + [25, 74], + [-7, 65], + [-45, 22], + [-34, 65], + [2, 50], + [73, 25] + ], + [ + [7792, 6727], + [63, 6], + [22, -85], + [60, 1], + [24, -28], + [49, 9], + [47, -19], + [77, 17], + [23, 55], + [60, 36], + [122, 5], + [10, 30], + [71, 22], + [-8, -80], + [-32, -23], + [-49, -88], + [35, -98], + [61, -21], + [25, 75], + [82, 46], + [38, -21], + [92, -18], + [40, -31], + [47, 0], + [50, -42] + ], + [ + [9714, 5910], + [43, -14], + [49, 76], + [57, 8], + [43, -23], + [83, 2], + [61, 19], + [26, -19], + [28, -161], + [-149, -103], + [-137, -117], + [-123, -91], + [-88, -138], + [-10, -101], + [25, -41], + [53, -1], + [3, -92] + ], + [ + [9678, 5114], + [-14, -26], + [-103, -61], + [-96, 67], + [-111, 21], + [-83, -35], + [-40, 33], + [-49, -22], + [-50, 16], + [-69, -3], + [-67, 59], + [-14, -23], + [-83, 27], + [-74, -29], + [-47, 33], + [-40, -12] + ], + [ + [9404, 6028], + [98, -11], + [55, -29], + [90, -13], + [-6, -46], + [73, -19] + ], + [ + [7701, 8569], + [-25, -47], + [14, -39], + [57, -12], + [21, -45], + [59, -14], + [84, -48], + [-8, -97], + [27, -38], + [13, -79], + [-3, -73], + [51, -5], + [79, -31], + [41, -54], + [62, -11], + [56, -45], + [83, 11], + [40, -90], + [61, -70], + [12, -75], + [-59, -111], + [-52, -30], + [-16, -54], + [162, -84], + [68, -58], + [46, -84], + [-39, -34], + [-59, -108], + [-27, -77], + [26, -16], + [21, -64], + [33, -12], + [48, 30], + [45, -15], + [36, 19], + [18, 60], + [92, 109], + [156, -95], + [6, -39] + ], + [ + [8947, 6920], + [-33, -8], + [-4, -87], + [-71, -44], + [-33, 12], + [-33, -59], + [65, -71], + [15, -67], + [-25, -111], + [-27, -10] + ], + [ + [7792, 6727], + [-10, 35], + [-70, 50], + [-34, -39], + [-49, -1], + [-68, -57], + [-92, 59], + [-85, -107], + [-69, 28], + [-71, 79], + [-52, 37] + ], + [ + [6908, 8465], + [78, 161], + [88, 90], + [40, 4], + [32, 56], + [56, 8], + [113, -46], + [51, -39], + [52, -16], + [45, -44], + [27, 8], + [66, -32], + [96, 32], + [49, -78] + ], + [ + [6375, 4212], + [63, 15], + [62, -10], + [212, 68], + [71, -58], + [103, 14], + [37, -13], + [137, 42], + [76, 65], + [72, -58], + [32, -5], + [58, 75], + [-24, 61], + [-42, 1], + [9, 59], + [-43, 32], + [-31, 64], + [34, 41], + [26, 72], + [-44, 41], + [-60, -6], + [22, 72], + [-19, 14], + [-157, -83], + [-54, -64], + [-47, 35], + [-24, 117], + [46, 67], + [175, 15], + [19, 100] + ], + [ + [2669, 2772], + [47, -51], + [82, -8], + [33, 13], + [74, -93], + [38, -70], + [2, -47], + [57, -26], + [22, 74], + [51, 62], + [48, -36], + [12, 87], + [87, -46], + [26, 38], + [3, 69], + [53, 8], + [44, -33], + [-92, -65], + [-29, -60], + [11, -36], + [-9, -121], + [25, -75], + [68, -11], + [-5, 103], + [33, 18], + [10, 76], + [26, 89], + [40, 15], + [75, -41], + [6, -94], + [35, -17], + [-28, -59] + ], + [ + [3514, 2435], + [-21, -42], + [-4, -63], + [62, -7], + [-20, -76], + [68, -90], + [19, -76], + [-65, -3], + [-67, -49], + [-82, -37], + [-24, -65], + [-84, 17], + [5, -41], + [-30, -59], + [-38, 19], + [-67, -66], + [-14, -64], + [-40, -19], + [-59, 9], + [3, -69], + [-18, -37], + [-90, -79], + [46, -59], + [67, -4], + [-66, -112], + [-65, -66], + [39, -20], + [53, -85], + [-54, -46], + [-80, 10], + [-28, -40], + [-133, 2], + [-32, 46], + [11, 27], + [-129, 83], + [-36, 12], + [-41, -40], + [21, -83], + [-7, -49], + [-30, -46], + [-116, -46], + [-8, -25], + [-71, -19], + [-49, -118], + [-76, 57], + [-6, 49], + [24, 183], + [-78, 34], + [-37, 2], + [-9, 90], + [-26, 44], + [21, 24], + [-8, 72], + [-75, 23], + [-13, 43], + [-81, -104] + ], + [ + [1876, 1377], + [-37, 22], + [-21, 48], + [21, 74], + [49, 10], + [6, 61], + [-159, 46], + [-79, -89], + [-90, 20], + [-57, 74], + [-14, 89], + [-89, -72], + [-73, 86], + [22, 33], + [-98, 95] + ], + [ + [1257, 1874], + [-6, 48], + [115, 35], + [35, 115], + [-12, 43], + [26, 88], + [74, 34], + [46, -4], + [-26, 210], + [-56, 92], + [26, 37], + [-13, 75], + [-74, 21], + [34, 66], + [-32, 100] + ], + [ + [7701, 8569], + [90, 13], + [143, 106], + [52, -68], + [-77, 0], + [-32, -52], + [16, -30], + [-41, -56], + [8, -38], + [42, -22], + [56, 3], + [160, -15], + [14, 65], + [55, 28], + [104, 182], + [-11, 46], + [58, 107], + [-103, 118], + [87, 123], + [5, 50], + [-50, 18], + [51, 74], + [-22, 99], + [-29, -4], + [-71, 68], + [29, 88], + [48, 19], + [58, 51], + [18, 59], + [55, -41], + [58, -107], + [182, -40], + [32, -43], + [80, -19], + [41, -28], + [67, -106], + [49, -55], + [88, -53], + [68, -27], + [34, 33], + [75, 38], + [58, -87], + [83, 0], + [22, -46], + [45, 2], + [53, -29], + [5, -52], + [61, -33], + [69, -5], + [-14, -78], + [4, -70], + [67, 1], + [68, 20], + [28, -80], + [75, -32], + [214, -42], + [43, -57], + [48, -16], + [30, -105], + [-52, -98], + [-13, -67], + [58, -85], + [115, -10] + ], + [ + [3985, 3918], + [15, -11] + ], + [ + [4267, 3831], + [9, 11] + ], + [ + [4318, 2433], + [-85, -48], + [-65, 31], + [-37, 90], + [-49, 62], + [1, 26], + [-62, 115], + [-52, -49], + [19, -56], + [-36, -26], + [-11, -61], + [-38, 4], + [-39, -43], + [-39, -11], + [-73, 107], + [-25, -17], + [27, -140], + [-46, -1], + [24, -81], + [-35, -23], + [-97, 105], + [-47, -11], + [-39, 29] + ], + [ + [5907, 7921], + [-50, 10], + [-44, -91], + [-88, 11], + [-74, -49], + [-58, 7], + [-25, -84], + [65, -30], + [46, -62], + [-26, -52], + [-49, -14], + [-47, -97], + [30, -31], + [-24, -68], + [-11, -140], + [32, -60], + [67, 36], + [21, -18], + [38, -104], + [6, -119], + [51, -6], + [55, 34], + [59, 73], + [48, 17], + [45, -10], + [88, -86], + [-9, -80], + [-59, -18], + [30, -108] + ], + [ + [5193, 6291], + [-74, -2], + [-84, 102], + [-61, -2], + [-24, 76], + [1, 45], + [-139, 31], + [-40, -14], + [-103, 71], + [6, 46], + [-15, 66], + [-162, 88] + ], + [ + [4325, 7581], + [27, 50], + [81, -8], + [62, -27], + [84, 6], + [41, -11], + [31, 49], + [-23, 193], + [9, 36], + [-52, 38], + [50, 78], + [33, -29], + [44, 69], + [42, -55], + [138, 60], + [68, -19], + [66, -51], + [104, 30], + [70, -14], + [18, 68], + [60, 93], + [0, 49], + [47, 117], + [38, 62], + [-3, 41], + [32, 35], + [-8, 64], + [-56, 26], + [-105, -7], + [-54, -39] + ], + [ + [6113, 5592], + [3, -42], + [-34, -49], + [-59, 10], + [-80, -85], + [-14, -114], + [-51, -33], + [-75, 17], + [-197, -73] + ], + [ + [4294, 5254], + [-22, 2] + ], + [ + [4229, 5271], + [-31, 23] + ], + [ + [3977, 5489], + [75, 15], + [74, 47], + [76, 92], + [-23, 69], + [74, 152], + [6, 120], + [33, 48], + [115, 50], + [43, -19], + [53, 4], + [65, 46], + [101, 6], + [85, -30], + [134, 37], + [85, 60], + [103, 54], + [90, -25] + ], + [ + [9828, 6860], + [-33, -105], + [21, -128], + [37, -101], + [41, -70], + [100, -225], + [49, -98], + [-12, -113], + [-28, -11], + [-132, 13], + [-51, -10], + [-61, -40], + [-45, -62] + ], + [ + [9678, 5114], + [-14, -57], + [-173, -116], + [-158, -89], + [-86, -69], + [-105, -179], + [-66, -79], + [-25, 1], + [-53, -109], + [-32, 5], + [-24, -53] + ], + [ + [3768, 7735], + [-76, 31], + [-37, 41], + [53, 32], + [63, 102], + [-15, 65], + [27, 70], + [82, -30], + [-10, 77], + [76, -4] + ], + [ + [1876, 1377], + [-122, -152], + [42, -75], + [-70, -102], + [70, -6], + [15, -25], + [-46, -72], + [-54, -9], + [-8, -102], + [-48, -40], + [8, -43], + [69, -25], + [-28, -40], + [-2, -97], + [20, -23], + [-12, -71], + [-72, -3], + [-24, 20], + [-45, -43], + [23, -48], + [-6, -49], + [-46, -13], + [-81, 58], + [-35, 3], + [-24, 63], + [-129, 22], + [-36, 26], + [-38, -43], + [-48, 27], + [-41, -26], + [0, -43], + [-117, -80], + [-243, -97], + [-34, -53], + [-142, -98], + [-27, 48], + [-45, -16], + [-37, -76], + [-57, -48], + [-76, 24], + [-26, -23], + [-131, -27], + [-20, 41], + [-109, -37], + [-44, 3], + [23, 81], + [-15, 31], + [25, 53], + [61, -25], + [20, 55], + [-6, 46], + [58, 89], + [-6, 118], + [62, 128], + [6, 75], + [19, 56], + [-32, 53], + [37, 107], + [5, 45], + [71, 29], + [46, 56], + [40, 0], + [80, 30], + [-4, 47], + [156, 13], + [31, 133], + [148, 141], + [8, 39], + [61, 58], + [32, 56], + [77, -3], + [20, 63], + [-119, 68], + [9, 67], + [40, -37], + [57, -14], + [18, 110], + [137, 72], + [81, -13], + [11, 40] + ], + [ + [5590, 5156], + [31, 34] + ], + [ + [2357, 4415], + [-118, 15], + [-31, -27], + [-58, 6], + [-69, 45], + [-75, 2], + [-56, 38], + [-135, 34], + [-9, 141], + [-21, 52], + [48, 69], + [14, 47], + [-15, 123], + [43, 40], + [-12, 53], + [-52, 52], + [30, 84], + [-1, 51], + [35, 47], + [-18, 64], + [-56, -10], + [-14, 116], + [-57, 26], + [-44, 62], + [33, 43], + [-7, 38], + [53, 61], + [-5, 79], + [-39, 71], + [4, 60], + [-19, 60], + [6, 64], + [-8, 102], + [22, 87], + [39, -40], + [60, -3], + [25, -72], + [80, 18], + [32, 22], + [10, 107], + [112, 71], + [65, 105], + [41, 38], + [32, 62], + [-24, 55], + [41, 47] + ] + ], + "transform": { + "scale": [0.0005563653402241279, 0.0004953787731873723], + "translate": [81.393550601824, 17.810722398628037] + }, + "objects": { + "odisha_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [ + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21 + ] + ], + "type": "Polygon", + "properties": { + "cartodb_id": 192, + "censuscode": 388, + "dt_cen_cd": 19, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Ganjam" + } + }, + { + "arcs": [[22, 23, 24, -2, 25]], + "type": "Polygon", + "properties": { + "cartodb_id": 456, + "censuscode": 387, + "dt_cen_cd": 18, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Puri" + } + }, + { + "arcs": [[26, 27, 28, 29, 30, 31]], + "type": "Polygon", + "properties": { + "cartodb_id": 553, + "censuscode": 374, + "dt_cen_cd": 5, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Sundargarh" + } + }, + { + "arcs": [[32, 33, 34, 35, 36, 37, 38, -28, 39]], + "type": "Polygon", + "properties": { + "cartodb_id": 23, + "censuscode": 384, + "dt_cen_cd": 15, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Angul" + } + }, + { + "arcs": [[40, 41, 42, 43, 44, 45]], + "type": "Polygon", + "properties": { + "cartodb_id": 39, + "censuscode": 393, + "dt_cen_cd": 24, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Balangir" + } + }, + { + "arcs": [[46, 47, 48, 49]], + "type": "Polygon", + "properties": { + "cartodb_id": 40, + "censuscode": 377, + "dt_cen_cd": 8, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Baleshwar" + } + }, + { + "arcs": [[50, 51, -23, 52, 53, -34, 54, 55]], + "type": "Polygon", + "properties": { + "cartodb_id": 126, + "censuscode": 381, + "dt_cen_cd": 12, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Cuttack" + } + }, + { + "arcs": [[-4, 56, 57, 58, 59, 60]], + "type": "Polygon", + "properties": { + "cartodb_id": 188, + "censuscode": 389, + "dt_cen_cd": 20, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Gajapati" + } + }, + { + "arcs": [[61, 62, 63]], + "type": "Polygon", + "properties": { + "cartodb_id": 389, + "censuscode": 397, + "dt_cen_cd": 28, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Nabarangapur" + } + }, + { + "arcs": [[64, 65, -46, 66, 67, 68]], + "type": "Polygon", + "properties": { + "cartodb_id": 52, + "censuscode": 370, + "dt_cen_cd": 1, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Bargarh" + } + }, + { + "arcs": [[69, 70, 71, -62, 72, 73, -44]], + "type": "Polygon", + "properties": { + "cartodb_id": 269, + "censuscode": 395, + "dt_cen_cd": 26, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Kalahandi" + } + }, + { + "arcs": [ + [ + 74, + 75, + 76, + -21, + 77, + -19, + 78, + -17, + 79, + -15, + 80, + -13, + 81, + -11, + 82, + -9, + 83, + -7, + 84, + -5, + -61, + 85, + -59, + 86, + 87, + 88, + 89, + 90, + -70, + -43, + 91, + 92, + 93, + 94, + 95 + ] + ], + "type": "Polygon", + "properties": { + "cartodb_id": 273, + "censuscode": 390, + "dt_cen_cd": 21, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Kandhamal" + } + }, + { + "arcs": [[96, 97, -56, 98, 99]], + "type": "Polygon", + "properties": { + "cartodb_id": 242, + "censuscode": 382, + "dt_cen_cd": 13, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Jajapur" + } + }, + { + "arcs": [[100, 101, -51, -98, 102]], + "type": "Polygon", + "properties": { + "cartodb_id": 294, + "censuscode": 379, + "dt_cen_cd": 10, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Kendrapara" + } + }, + { + "arcs": [[103, -48, 104, -100, 105, -40, -27, 106]], + "type": "Polygon", + "properties": { + "cartodb_id": 295, + "censuscode": 375, + "dt_cen_cd": 6, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Kendujhar" + } + }, + { + "arcs": [[-26, -1, 107, -53]], + "type": "Polygon", + "properties": { + "cartodb_id": 300, + "censuscode": 386, + "dt_cen_cd": 17, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Khordha" + } + }, + { + "arcs": [[-72, 108, 109, 110, 111, -63]], + "type": "Polygon", + "properties": { + "cartodb_id": 317, + "censuscode": 398, + "dt_cen_cd": 29, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Koraput" + } + }, + { + "arcs": [[-49, -104, 112]], + "type": "Polygon", + "properties": { + "cartodb_id": 371, + "censuscode": 376, + "dt_cen_cd": 7, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Mayurbhanj" + } + }, + { + "arcs": [[-91, 113, -89, 114, -87, -58, 115, -109, -71]], + "type": "Polygon", + "properties": { + "cartodb_id": 479, + "censuscode": 396, + "dt_cen_cd": 27, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Rayagada" + } + }, + { + "arcs": [[116, -38, 117, -65, 118, -30]], + "type": "Polygon", + "properties": { + "cartodb_id": 498, + "censuscode": 372, + "dt_cen_cd": 3, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Sambalpur" + } + }, + { + "arcs": [[-36, 119, -96, 120, -94, 121, -92, -42, 122]], + "type": "Polygon", + "properties": { + "cartodb_id": 64, + "censuscode": 391, + "dt_cen_cd": 22, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Boudh" + } + }, + { + "arcs": [[123, -103, -97, -105, -47]], + "type": "Polygon", + "properties": { + "cartodb_id": 69, + "censuscode": 378, + "dt_cen_cd": 9, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Bhadrak" + } + }, + { + "arcs": [[-29, -39, -117]], + "type": "Polygon", + "properties": { + "cartodb_id": 139, + "censuscode": 373, + "dt_cen_cd": 4, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Debagarh" + } + }, + { + "arcs": [[-99, -55, -33, -106]], + "type": "Polygon", + "properties": { + "cartodb_id": 152, + "censuscode": 383, + "dt_cen_cd": 14, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Dhenkanal" + } + }, + { + "arcs": [[-102, 124, -24, -52]], + "type": "Polygon", + "properties": { + "cartodb_id": 238, + "censuscode": 380, + "dt_cen_cd": 11, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Jagatsinghpur" + } + }, + { + "arcs": [[-69, 125, -31, -119]], + "type": "Polygon", + "properties": { + "cartodb_id": 260, + "censuscode": 371, + "dt_cen_cd": 2, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Jharsuguda" + } + }, + { + "arcs": [[126, -111]], + "type": "Polygon", + "properties": { + "cartodb_id": 361, + "censuscode": 399, + "dt_cen_cd": 30, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Malkangiri" + } + }, + { + "arcs": [[-54, -108, -22, -77, 127, -75, -120, -35]], + "type": "Polygon", + "properties": { + "cartodb_id": 407, + "censuscode": 385, + "dt_cen_cd": 16, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Nayagarh" + } + }, + { + "arcs": [[-45, -74, 128, -67]], + "type": "Polygon", + "properties": { + "cartodb_id": 420, + "censuscode": 394, + "dt_cen_cd": 25, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Nuapada" + } + }, + { + "arcs": [[-118, -37, -123, -41, -66]], + "type": "Polygon", + "properties": { + "cartodb_id": 539, + "censuscode": 392, + "dt_cen_cd": 23, + "st_cen_cd": 21, + "st_nm": "Odisha", + "district": "Subarnapur" + } + } + ] + } + } +} diff --git a/public/maps/punjab.json b/public/maps/punjab.json index 0e807c6b99..bc4670e69a 100644 --- a/public/maps/punjab.json +++ b/public/maps/punjab.json @@ -1 +1,3746 @@ -{"type":"Topology","arcs":[[[6599,10402],[-6,-110],[13,-21],[46,3],[136,-53],[-30,-100],[22,2],[8,-43],[28,-17]],[[6816,10063],[5,1]],[[6821,10064],[-10,-30],[-48,-93],[-75,-67],[-9,-111],[-25,-21],[-48,77],[-71,4],[-10,-98],[-50,-54],[-59,44],[-58,-16],[-28,-111],[79,-56],[84,-3],[43,-96],[-18,-229],[-75,-80],[-113,-82],[-140,-51],[-80,-113],[-74,-74],[-97,-47]],[[5939,8757],[-17,-45]],[[5922,8712],[-38,-47],[31,-141],[-27,-128],[20,-41],[-11,-38],[-98,-136],[1,-97],[-22,-30],[-14,7],[-36,-34],[-3,-37],[-22,-12],[11,-31],[-27,-71],[32,-55],[-15,-2],[7,-25],[-16,-48]],[[5695,7746],[-52,21],[-77,1],[-42,34],[-111,-13],[-23,30],[3,24],[-49,27],[-46,71],[-45,14],[-48,-28],[-32,10],[-42,45],[-14,86],[-125,43],[-17,70],[-40,46],[-16,-6],[0,22],[-88,-9],[-56,59],[-28,8],[-66,-18],[-112,37],[-52,-7],[-34,22],[-36,-3],[-17,-28],[-102,52],[-30,-2],[-36,-77],[-36,-17],[-119,106],[-34,-35],[-36,-11],[-78,-120],[-111,-15],[-75,-49],[-108,-47],[-74,-53],[-43,-76],[-274,-125],[-28,-42],[23,-295],[23,-113],[24,-43],[108,-40]],[[3424,7302],[-14,-11],[-62,2],[-51,-51],[9,-73],[67,-54],[-123,-44],[-41,-30],[-13,-22],[3,-59],[-16,-64],[-51,-56],[-34,-15],[-1,-146],[-41,-10],[-40,-135],[-49,23],[-38,50],[-52,-22],[-26,-192],[-57,-1],[-83,-84],[40,-105],[-28,-95],[-92,-21],[-69,16],[-4,-113],[-50,-94],[-47,-32],[-107,-7],[-166,-99],[-154,-40],[58,-24],[75,-2],[86,-41],[350,-73],[18,-29],[5,-45],[-19,-64],[-211,43],[-44,-122],[16,-70],[39,-24],[15,-63],[-1,-102],[-95,-151],[7,-37],[-40,-162],[0,-76],[-86,63],[-79,-95],[-40,-79],[141,-96],[161,64],[229,-11],[-32,-177],[-34,-102],[5,-89],[-52,-140],[105,-53],[104,-18],[42,-148],[104,-97],[27,-56],[53,-58],[-31,-13],[-81,80],[-62,29],[-35,-7],[-23,-10],[-35,-146],[122,-78],[-2,-70],[16,-34],[106,-128],[-12,-71],[50,-20],[51,-2],[131,28],[26,-39],[23,-76],[30,-43],[-211,-39],[139,-325]],[[3143,2620],[-77,16],[-135,-14],[-632,60],[-212,-6],[-156,29],[-210,5],[-649,57],[-435,17],[-81,-13],[-474,8],[-15,76],[-40,94],[4,98],[93,275],[110,94],[137,201],[7,34],[77,99],[49,10],[-23,42],[-10,102],[15,186],[26,81],[-22,303],[-34,201],[-58,85],[-72,184],[-49,50],[-94,170],[-62,80],[-92,54],[-29,23],[0,18],[155,106],[63,88],[80,46],[52,60],[91,67],[41,76],[3,47],[-21,15],[-145,-34],[-68,8],[49,69],[0,56],[-25,60],[2,142],[31,15],[38,-37],[20,-38],[-7,-119],[52,-16],[45,24],[21,79],[-7,76],[83,94],[21,59],[55,24],[96,-16],[25,10],[-53,59],[10,63],[127,-5],[75,63],[39,-120],[64,-11],[58,41],[74,98],[8,53],[-9,17],[-48,-14],[-22,10],[-2,27],[90,73],[48,59],[-3,149],[14,50],[-24,18],[4,27],[42,18],[35,-59],[26,-4],[50,171],[63,-28],[59,21],[98,100],[46,24],[51,78],[73,32],[63,102],[55,53],[14,88],[55,112],[44,-5],[43,24],[77,-11],[29,13],[31,40],[76,17],[4,34],[-57,50],[-9,66],[-57,50],[-8,47],[42,25],[63,-26],[40,28],[67,14],[34,29],[9,39],[-12,24],[-55,21],[-6,25],[42,24],[11,54],[69,62],[22,126],[26,46],[40,18],[43,-9],[7,26],[57,10],[19,-2],[7,-34],[22,-7],[30,18],[17,56],[74,14],[6,22],[-77,31],[-1,17],[-41,35],[32,37],[13,68],[100,31],[98,83],[105,-2],[7,40],[-81,53],[85,4],[-6,30],[-38,26],[38,57],[74,24],[38,37],[70,-6],[2,38],[44,9],[3,12],[-54,50],[112,39],[71,9],[32,-13],[47,-56],[26,22],[26,58],[55,45],[124,47],[11,34],[-38,100],[22,26],[13,97],[83,88],[5,53],[145,27],[26,-20],[17,-76],[35,-14],[64,30],[95,10],[61,39],[125,10],[90,45],[62,70],[5,92],[57,59],[-20,55],[-1,68]],[[4538,10211],[17,-2],[37,-65],[177,-3],[3,76],[36,-24],[46,-3],[27,111],[146,12],[7,-32],[57,-75],[43,57],[1,71],[48,12],[74,-15],[100,5],[258,172],[59,-29],[40,-2],[38,35],[154,-74]],[[5906,10438],[195,-91],[79,-75],[12,10],[42,-39],[35,54],[-4,40],[-35,68],[45,7],[6,25],[35,-11],[7,55],[64,4],[18,30],[30,-4],[34,-11],[-4,-42],[51,-1],[83,-55]],[[9484,16492],[-90,-50],[-87,-244],[-19,-16],[-104,8],[-20,-21],[18,-59],[24,-5],[39,-95],[37,-13],[11,-31],[-6,-28],[-59,-74],[-32,-14],[7,-28],[-19,-60],[-23,-25],[-28,-141],[29,-4],[15,-18],[-2,-74],[80,-55],[13,-130],[-7,-91],[38,-34],[57,-116],[12,-50],[-45,-89],[3,-86],[31,-31],[-28,-159],[25,-25],[25,-66],[-7,-45],[-26,-18],[-108,-4],[-63,-17],[9,-163],[-16,-65],[-111,-135],[-114,-108],[-24,-129],[-60,-48],[20,-11],[-47,-78],[-3,-49]],[[8829,13698],[-29,-35],[-14,-75],[-192,-47],[-20,17],[-24,-18],[-39,-63],[6,-34],[-17,0],[-16,-83],[-48,-33]],[[8436,13327],[-64,49],[-45,78],[-58,64],[-25,-1],[-109,50],[-72,62],[-52,-37],[-106,87],[-47,21],[16,48],[29,16],[20,45],[-23,52],[-45,-4],[-9,23],[-40,12],[-20,-28],[-18,29],[5,105],[-19,9],[-42,-25],[-128,-13],[-18,-37],[-32,15],[-10,-44],[-25,23],[-52,-7],[-12,47],[-59,17],[17,36],[-25,30],[-104,44],[-2,32],[30,6],[23,26],[-1,38],[-77,52],[10,34],[-26,7],[-28,-12],[-29,49],[-61,-16],[-75,20],[-36,63],[-61,-34],[-40,3],[-37,28],[-13,-48],[-106,65],[9,45],[33,-7],[24,15],[22,37],[-8,37],[-55,22],[-48,45],[-42,4],[-55,99],[-119,13],[-54,-33],[-38,7],[-25,44],[-23,-2],[-26,21],[1,61],[-73,-36],[-20,46],[-84,21],[-58,38],[-81,3],[-28,133],[-103,42],[7,69],[-24,8],[-23,-23],[-112,83],[10,80],[-75,17],[-5,50],[-93,182],[39,20],[34,-14],[46,40],[63,28],[46,-23],[62,16],[-10,30],[191,90],[5,99],[-145,-34],[8,-42],[-65,-11],[-43,26],[-28,40],[-54,24],[15,56],[54,93],[55,54],[-34,8],[27,35],[-28,30],[-41,140],[-64,63]],[[5702,16295],[49,83],[40,17],[65,3],[223,-96],[-12,-51],[36,-9],[122,10],[37,-62],[62,74],[78,25],[6,-36],[19,-8],[46,43],[59,17],[57,69],[57,-28],[99,32],[35,-23],[29,71],[60,29],[45,52],[76,-14],[80,14],[42,-16],[36,-78],[34,-4],[40,72],[75,31],[0,75],[14,26],[34,9],[-3,91],[12,13],[51,-5],[25,-84],[55,-14],[6,-52],[27,-17],[78,71],[49,6],[17,-17],[5,49],[91,77],[2,28],[22,26],[2,27],[-34,26],[9,44],[47,47],[61,17],[40,112],[32,29],[35,2],[-10,111],[-35,4],[1,23],[77,119],[28,29],[30,5],[128,-6],[73,59],[21,49],[3,30],[-29,43],[-7,39],[9,44],[35,25],[11,41],[-59,64],[-76,-21],[-48,14],[17,57],[-137,69],[3,28],[74,110],[-47,62],[43,100],[35,12],[260,-104],[203,-30],[204,48],[114,54],[-25,-147],[67,-47],[57,-1],[11,-48],[-12,-96],[26,-73],[36,-5],[81,142],[48,274],[27,57],[89,78],[264,135],[308,45],[205,77],[148,113],[101,175],[91,204],[183,-9],[142,78],[115,144],[71,185],[193,250],[16,-35],[-106,-215],[-28,-107],[-2,-87],[24,-54],[176,-180],[46,-67],[112,-85],[49,-64],[56,-92],[-13,-52],[-35,-33],[-300,-86],[-156,-124],[-448,-501],[-8,-39],[-41,-66],[-101,-80],[-176,-42],[-161,-20],[-130,-56],[-102,-69],[-64,-65],[-24,-246],[10,-77],[163,-36],[37,-20],[31,-78],[-35,-120],[-136,-173],[-114,-129],[-177,-117]],[[16014,5784],[-47,-73],[-132,-40],[8,-100],[-147,-74],[9,-57],[18,-27],[60,-3],[13,-20],[-51,-59],[13,-20],[106,15],[45,-50],[-53,-73],[-77,-56],[0,-45],[-23,-20],[-35,12],[-25,-12],[-14,-32],[-51,7],[-50,-30],[-28,30],[-20,-44],[12,-42],[-59,-86],[-62,-1],[-139,-100],[-20,49],[-72,-135],[-30,10],[-131,-15],[-127,-36],[-57,4],[-10,-139],[-21,-46],[-52,-28],[-2,-32],[66,24],[175,162],[45,4],[36,-16],[31,-66],[89,-84],[-1,-35],[-42,-68],[69,-27],[89,-7],[34,-26],[-10,-59],[27,-21],[-1,-29],[-106,-123],[27,-99],[-25,-37],[-87,-55],[-102,-113],[-50,-30],[-259,-234],[-137,-21],[-44,-19],[-34,68],[1,34],[-24,32],[-40,15],[-175,8],[-30,68],[-12,76],[11,93],[-56,-1],[-57,69],[-20,104],[37,61],[-3,45],[-47,117],[-55,29],[-63,-22],[-99,-101],[114,-167],[-95,-77],[31,-119],[-32,-24],[-54,-1],[-60,25],[-86,150],[-29,19],[-96,-27],[55,-66],[70,-49],[3,-26],[-61,-77],[-84,-49],[-56,2],[-109,66],[-74,-32],[-196,53],[-9,37],[-179,186],[-38,18],[-10,-28],[55,-127],[-34,-8],[-65,46],[-20,-14],[0,-24],[79,-46],[48,-62],[85,-59],[102,-11],[44,-20],[-23,-49],[-35,-6],[-60,-68],[-197,-310],[3,-20],[90,-34],[2,-16],[-34,-29],[-89,-22],[-14,-19],[-8,-80],[35,-88],[18,-113],[-24,-49],[48,-89],[2,-51],[-138,14],[-52,-63],[-19,-51],[29,-36],[59,0],[14,-225],[71,-30],[59,16],[49,-17],[47,7],[74,-59],[19,-45],[-76,-94],[-31,7],[-62,-16],[-12,-20],[9,-45],[-94,12],[-27,-29],[-20,-60],[-107,-84],[-152,-10],[-127,-132],[-74,78],[-49,20],[-20,-4]],[[12304,1712],[114,186],[20,120],[-40,17],[-73,-64],[-86,-9],[-57,-30],[-65,10],[-47,80],[4,87],[-33,3],[-21,34],[-21,-8],[-32,21],[-75,-53],[-23,41],[-20,109],[-131,38],[-75,65],[29,92],[-13,91],[32,81],[138,-22],[50,47],[36,86],[-14,43],[-35,26],[-5,38],[-93,147],[73,54],[-32,39],[7,26],[17,17],[38,-4],[72,76],[8,23],[-24,39],[30,18],[19,47],[53,10],[-30,30],[46,45],[15,37],[49,-20],[10,-52],[30,27],[95,-21],[-28,64],[41,37],[10,68],[69,146],[-60,63],[-97,-31],[29,30],[2,23],[-59,-3],[-12,18],[18,36],[30,8],[-2,24],[-72,39],[-26,-8],[1,37],[39,-5],[16,41],[-91,92],[-4,65],[-29,67],[63,62],[26,47],[-16,50],[91,114],[20,-33],[24,13],[71,-12],[84,29],[4,55],[20,-2],[31,35],[31,-5],[32,27],[21,-40],[32,32],[-5,20],[54,34],[60,-19],[6,-73],[71,102],[-13,53],[29,63],[83,8],[31,61],[-31,69],[-54,17],[-28,56],[-88,-29],[-6,49],[22,41],[-16,25],[-60,-36],[-47,31],[-26,-29],[-73,-9],[-75,35],[-41,2],[-52,-11],[-69,-49],[-115,47],[-102,133],[-30,-13],[-57,13],[-67,-56],[-61,20],[-10,28],[-97,15],[-30,149],[43,64],[41,-31],[49,-11],[3,49],[33,67],[43,-20],[9,68],[33,24],[29,46],[-25,50],[68,25],[23,46],[29,15],[-24,82],[68,50],[45,57],[33,-21],[21,5],[60,52],[-49,20],[-2,85],[-87,45],[-8,24],[13,68],[78,58],[-8,32],[26,90]],[[12200,6348],[108,-4],[152,72],[92,-9],[156,123],[85,-28],[80,32],[37,-8],[39,18],[35,49],[46,13],[111,-11],[89,33],[26,-13],[11,-50],[25,6],[-8,34],[35,72],[47,19],[23,-34],[8,-70],[77,-20],[5,-56],[52,-21],[13,-46],[-13,-51],[30,-52],[43,-143],[-91,-112],[91,-14],[-39,-60],[0,-19],[36,-35],[0,-39],[22,-2],[-1,-29],[-27,-28],[-20,5],[-11,-22],[-16,0],[-5,-28],[56,-25],[18,7],[27,-53],[86,58],[77,-31],[65,-66],[14,-74],[64,67],[99,18],[-2,34],[-39,63],[13,17],[45,-13],[20,27],[74,-13],[61,42],[84,-93],[33,20],[61,-42],[59,70],[12,50],[20,7],[18,47],[-12,17],[41,87],[-46,72],[6,63],[-43,33],[40,48],[-22,52],[57,100],[-14,41],[2,74],[29,38],[-25,50],[29,29],[22,-4],[14,16],[30,-22],[74,-19],[7,-23],[44,-4],[143,67],[22,-26],[45,34],[5,21],[13,-4],[-2,55],[-133,114],[13,52],[54,23],[-4,17],[108,-51],[23,4],[10,53],[-27,33],[-13,97],[31,15],[-69,82]],[[14960,7171],[43,37],[-52,42],[4,40],[45,3],[43,-30],[221,107],[31,-90],[-6,-43],[-73,-85],[25,-50],[-6,-68],[21,-38],[64,44],[31,-7],[45,-93],[32,-4],[-2,-74],[21,-35],[-28,-48],[3,-25],[138,65],[-22,-101],[43,-55],[37,5],[40,38],[-13,72],[65,0],[18,14],[15,-22],[9,-152],[64,-122],[63,-76],[249,-165],[80,-184],[-72,-188],[-121,-80],[-1,-19]],[[11566,2411],[29,-15],[-2,-25],[33,-17],[-29,-67],[-28,-21],[-31,7],[-17,-16],[-143,74],[-19,48],[31,50],[41,17],[42,3],[50,-38],[26,-3],[-16,28],[30,51],[-8,22],[18,7],[9,-9],[-16,-96]],[[4040,12700],[152,141],[61,92],[58,4],[73,-61],[68,-6],[68,51],[50,13],[68,140],[60,53],[41,10],[56,-36],[31,29],[103,-38],[24,40],[38,-13],[47,52],[33,-1],[2,-36],[37,-46],[62,7],[-5,-60],[49,-87],[41,25],[58,-36],[9,-27],[109,27],[21,39],[66,-14],[9,47],[38,45],[42,9],[1,-44],[30,-37],[-19,-31],[1,-50],[34,-28],[91,26],[115,-41],[-7,-55],[14,-45],[40,-23],[12,-34],[47,49],[20,70],[79,-8],[16,91],[38,-8],[-9,-17],[22,-13],[-16,-20],[2,-55],[23,-20],[30,15],[-9,23],[16,27],[48,3],[5,46],[31,-1],[23,-25],[25,12],[5,21],[22,-16],[35,9],[39,54],[14,45],[27,14],[50,-4],[45,-30],[28,-45],[35,2],[-8,-41],[57,-42],[126,21],[88,-177],[62,66],[102,13],[54,30],[36,49],[2,28],[64,33],[60,-60],[-24,-62],[-19,-1],[11,-26],[71,-38],[36,23],[28,-44],[104,-37],[124,71],[34,-47],[32,-3],[89,-72]],[[7741,12604],[-40,-8],[-56,-37],[-89,-131],[-50,29],[-38,-116],[-17,-121],[-60,-5],[-34,95],[-85,-15],[-18,-24]],[[7254,12271],[-25,-91]],[[7229,12180],[41,-62],[-12,-20],[-17,16],[-43,-46],[9,-29],[-72,-115],[-39,20],[-17,-116],[18,-18],[50,14],[-148,-188],[-10,-20],[11,-59],[-70,-71],[-73,53],[-69,-20],[15,-40],[-94,-172],[56,-35],[-109,-38],[-19,-74],[3,-84],[-128,-153],[27,1],[0,-50],[-9,-39],[-50,-56],[9,-31],[-19,-37],[-86,-27],[-128,-96],[-76,-12],[-10,-31],[-42,-47],[-222,-60]],[[4538,10211],[-4,17],[-43,21],[-31,71],[-42,-4],[-29,-24],[-26,5],[-9,33],[-35,15],[-63,-31],[-48,-57],[-35,9],[2,95],[-97,-29],[-36,17],[-35,-3],[-14,-10],[-4,-33],[27,-26],[22,-101],[-23,-116],[-20,-23],[-41,51],[-110,-70],[-45,17],[-32,-9],[-30,19],[-22,224],[-34,14],[-55,-17],[-18,46],[-95,41],[-8,18],[0,188],[-18,93],[6,21],[39,14],[-6,67],[35,78],[-21,88],[3,55],[61,105],[-61,162],[32,37],[43,108],[32,27],[10,27],[-13,28],[-66,18],[0,32],[59,36],[2,66],[64,20],[-27,77],[29,63],[2,67],[125,52],[66,59],[12,103],[41,70],[-1,35],[29,12],[-1,32],[84,18],[35,-12],[15,28],[26,13],[41,-63],[51,-28],[23,9],[-14,47],[38,22],[-79,116],[64,73],[7,37],[-62,70],[-56,38],[32,56],[-96,3],[-26,17],[-24,45]],[[8436,13327],[-35,-81],[-127,-15],[-314,-261],[2,-69],[-118,-167],[-70,-130],[-33,0]],[[4040,12700],[-28,24],[-70,-12],[-16,-18],[-77,40],[37,26],[-6,66],[20,34],[41,24],[93,17],[27,43],[19,147],[-39,20],[0,20],[40,15],[-8,26],[-38,2],[-104,53],[-13,40],[-47,29],[-11,94],[-127,49],[-20,44],[-1,76],[-29,35],[-9,65],[-28,22],[-3,69],[-45,45],[15,94],[-44,53],[-117,66],[-9,34],[-96,89],[-12,28],[94,51],[31,79],[52,-9],[135,69],[92,4],[35,18],[1,28],[-39,52],[-4,71],[17,51],[43,47],[-1,20],[-30,25],[46,61],[15,49],[-25,47],[0,33],[49,32],[44,60],[44,11],[17,87],[70,52],[0,80],[24,58],[83,-34],[63,13],[63,90],[52,-6],[20,14],[5,72],[41,28],[5,31],[52,-9],[26,27],[60,14],[90,-45],[45,20],[1,36],[-16,26],[7,43],[76,16],[20,32],[50,-41],[32,12],[34,20],[1,66],[32,-27],[43,-10],[51,37],[182,64],[30,-51],[14,8],[33,108],[26,31],[-8,136],[52,50],[100,26],[-30,72],[67,10],[40,31],[31,-18],[14,62],[-30,76],[95,44],[105,-14]],[[12203,6616],[-36,-111],[68,-92],[-35,-65]],[[12304,1712],[-72,-33],[-19,-159],[-25,-35],[-37,10],[-26,-28],[-95,-159],[-32,-13],[-64,58],[-37,3],[-76,-33],[-174,-121],[-43,-6],[-125,20],[-46,-12],[-61,16],[-111,74],[-32,60],[-100,-55],[-87,34],[-50,114],[-61,40],[-57,96],[-23,66],[-1,75],[-50,20],[-133,-53],[-136,119],[-129,-86],[-124,-4]],[[10278,1720],[80,106],[90,24],[41,39],[-19,81],[30,35],[-106,53],[41,83],[-27,121],[59,33],[-26,70],[3,68],[-52,-30],[-108,73],[-28,54],[-76,-13],[-57,17],[-22,-101],[-94,-53],[-80,-9],[-34,118],[-46,28],[-22,-15],[-27,57],[-52,-16],[102,271],[-34,35],[136,108],[13,-21],[37,71],[27,6],[-8,103],[-36,8],[-26,37],[20,55],[-27,6],[-32,-28],[-73,-2],[-43,-76],[-48,45],[12,58],[-28,59],[18,110],[-27,15],[9,41],[-57,47],[12,54],[28,11],[49,76],[38,12],[25,39],[-16,23],[-44,-16],[-40,28],[-61,104],[12,38],[-17,30],[-115,-51],[-30,24],[-34,-1],[-86,34]],[[9402,3896],[-1,1]],[[9401,3897],[-13,53],[-95,178],[14,53],[-13,47],[6,27],[32,29],[116,79],[-25,60],[12,26],[61,-48],[89,-25],[178,102],[18,34],[197,-5],[53,-49],[19,12],[-3,40],[32,69],[44,39],[44,12],[46,66],[-9,23],[17,58],[-33,33],[-181,6],[-77,31],[-60,76],[-51,168],[-2,31],[36,27],[18,-22],[36,3],[74,77],[21,41],[-48,35],[6,105],[-63,32],[5,28],[-13,25],[48,45],[-12,20],[-49,-2],[-6,24],[4,37],[42,-2],[-16,44],[10,67],[-14,30],[-39,5],[-57,83],[29,30],[78,38],[26,47],[4,69],[22,28],[-101,21],[-9,19],[21,109],[55,28],[61,101],[-13,27],[-45,1],[-26,33],[0,25],[-59,36],[-8,62],[54,45],[4,27],[-23,34],[9,25],[40,29],[43,91],[20,56],[-13,54],[25,60],[-27,42],[-35,-22],[-51,11],[15,61],[-31,54],[-36,29]],[[9829,7094],[80,94],[96,1],[49,-85],[36,1],[44,22],[114,-160],[50,84],[65,12],[59,47],[105,-56],[25,-36],[19,-3],[59,53],[-105,76],[-31,95],[-55,-11],[0,62],[25,43],[80,-6],[14,-46],[-8,-32],[122,36],[54,-3],[32,33],[14,62],[59,58],[37,-10],[59,-102],[32,-3],[72,41],[47,-9],[30,-73],[48,-25],[15,-39],[-5,-49],[-113,-53],[-2,-54],[79,-63],[1,-66],[30,-30],[54,-8],[36,28],[38,3],[39,-23],[28,-64],[-41,-46],[20,-15],[9,-67],[50,-46],[71,19],[39,28],[29,75],[116,60],[111,35],[19,56],[116,26],[23,-48],[19,-119],[131,-66],[33,19],[15,-13],[-11,-68],[16,-24],[82,-26]],[[9401,3897],[-70,30]],[[9331,3927],[-89,-69],[-64,71],[-61,-56],[-111,37],[-39,29],[-30,46],[-24,81],[-49,83],[-98,92],[-90,-16],[-114,-47],[-55,8],[-84,52],[-38,32],[9,25],[-11,26],[-28,8],[-87,-75],[-13,14]],[[8255,4268],[-11,25],[-25,-13],[-18,10],[8,35],[50,23],[26,79],[3,62],[-66,38],[-6,18],[29,25],[-9,79],[26,31],[-52,32],[1,95],[-37,25],[-43,-20],[-30,33],[23,33],[-11,61],[-85,18],[-47,-24],[-9,7],[17,63],[-20,116],[61,21],[52,-14],[28,29],[-8,41],[-96,26],[-14,16],[61,182],[-42,14],[-29,-23],[-75,16],[-37,150],[15,63],[-24,78],[-117,105],[-72,-22],[-7,51],[21,26],[-64,79],[-3,30],[22,37],[68,76],[41,67],[5,37],[58,73]],[[7813,6277],[13,44],[85,73],[24,45],[78,5],[61,-124],[50,-10],[86,-2],[225,112],[58,60],[35,65],[-9,23],[-55,37],[-11,145]],[[8453,6750],[63,15],[46,-8],[18,8],[2,28],[57,32],[34,-9],[46,54],[34,-11],[31,39],[154,-45],[35,16],[92,-14],[11,52],[47,38],[16,-8],[17,-72],[29,-41],[40,12],[39,47],[24,63],[-11,42],[-60,-16],[0,37],[30,71],[37,0],[64,-29],[49,-41],[39,12],[57,-52],[99,37],[44,-14],[29,-40],[83,59],[22,68],[54,8]],[[9824,7088],[5,6]],[[8255,4268],[-70,-87],[-4,-22],[42,-67],[-99,-109],[5,-88],[44,-17],[-65,-71],[-11,8],[-28,-13],[-23,-33],[-31,-17],[-17,5],[-51,-60],[-73,-29],[-57,43],[-63,-52],[-62,16],[-37,-21],[-19,-47],[14,-131],[-4,-148],[31,-10],[43,37],[11,-16],[-11,-41],[-119,-73],[34,-154],[110,-15],[40,17],[15,36],[25,-23],[45,17],[1,-45],[-132,-92],[-15,-70],[26,-47],[-4,-33],[-35,-47],[-117,65],[-28,-71],[-75,-79],[-71,59],[-52,-16],[-18,35],[-21,9],[-3,37],[-42,3],[-15,-22],[-16,29],[-43,-59],[-17,-129],[8,-17],[-25,-23],[7,-37],[-54,-81],[64,-89],[22,-177],[81,25],[74,-54],[16,-100],[-1,-40],[-113,-43],[-46,-34],[10,-68]],[[7236,1892],[-14,-12],[-5,-36],[-110,-63],[-36,-154],[3,-29],[54,-48],[-97,-47],[-58,51],[-35,135],[-127,-19],[-67,26],[-6,40],[24,43],[76,47],[-16,74],[-28,22],[-74,22],[-25,30],[-1,31],[20,29],[89,60],[20,35],[-9,155],[-99,118],[-39,-18],[-68,-217],[-76,-26],[-80,45],[-130,-112],[-47,20],[-64,-29],[-23,-44],[-114,158],[3,61],[-67,51],[-82,31],[-105,254],[-47,50],[-118,-63],[-51,-2],[43,53],[8,37],[-72,100],[-53,-60],[-70,14],[-54,-14],[-157,92],[-26,74],[-42,39],[-44,14],[-38,-19],[-102,-99],[-96,-5],[-119,-29],[-74,-47],[-148,61]],[[4563,2772],[11,33],[-27,77],[26,33],[45,142],[-116,124],[11,28],[-22,48],[61,131],[-74,45],[-44,2],[-43,100],[40,92],[1,61],[-27,0],[-42,-28],[-119,28],[-99,104],[1,16],[49,73],[6,44],[90,100],[165,20],[29,-41],[37,-5],[111,52],[95,89],[2,51],[-39,51],[-87,2],[21,136],[19,22],[-3,32],[32,25],[-29,55],[-6,88],[12,38],[82,110],[1,29],[43,0],[36,43],[-98,115],[-32,7],[-17,22],[93,53],[24,32],[82,-11],[49,26],[83,77],[-462,121],[1,12],[54,12],[67,51],[315,-172],[31,2],[199,351]],[[5201,5520],[88,-38],[90,-70],[114,84],[204,-87],[40,-24],[-7,-19],[31,-19],[50,10],[75,104],[29,-16],[73,27],[50,61],[61,-32],[62,16],[26,-28],[147,-59],[19,7],[70,-20],[24,11],[52,60],[-21,63],[2,71],[-59,64],[-99,49],[21,63],[-40,20],[8,37],[34,22],[27,57],[36,13],[84,-39],[-10,37],[-50,39],[12,53],[-77,-5],[-36,76],[-97,29]],[[6234,6137],[68,13],[82,89],[41,-11],[15,-20],[47,0],[39,22],[132,169],[138,-53],[113,13],[11,57],[-58,141],[9,59],[95,111],[31,12],[95,-24],[66,-94],[43,-164],[9,-187],[18,-14],[53,26],[45,-25],[28,58],[65,-46],[162,42],[42,17],[11,19],[35,-8],[86,-76],[58,14]],[[5695,7746],[11,-70],[-40,-151],[50,-141],[15,0],[28,39],[6,-56],[176,-20],[13,-113],[-36,-87],[15,-60],[-31,-153],[5,-65],[34,-51],[-9,-22],[-207,-30],[-28,-30],[-34,-103],[-10,-99],[131,-64],[30,35],[-29,25],[18,35],[84,103],[66,-60],[19,5],[15,-14],[2,-32],[84,-75],[69,3],[29,-60],[-28,-60],[-1,-182],[45,-57],[47,1]],[[5201,5520],[-60,49],[-16,-15],[-43,7],[-72,-19],[-82,0],[-85,-33],[-24,15],[25,165],[-2,28],[-24,23],[13,40],[-107,87],[-20,42],[-2,42],[58,91],[30,2],[82,76],[-19,70],[-49,-38],[-17,17],[-59,0],[-93,69],[-5,35],[-176,77],[-2,52],[47,34],[65,77],[16,75],[-233,137],[-52,78],[-65,21],[-70,83],[3,38],[-41,10],[-50,154],[-33,-7],[-124,114],[-165,59],[-326,27]],[[12203,6616],[30,35],[67,-47],[35,14],[2,85],[30,25],[0,68],[61,45],[-23,21],[12,26],[-39,64],[61,54],[-4,18],[24,35],[120,52],[7,98],[82,46],[22,34],[0,57],[15,25],[31,8],[15,-13],[-2,-41],[20,-30],[71,51],[90,14],[27,51],[35,29],[50,1],[37,-56],[74,-2],[61,-33],[40,3],[50,36],[93,-10],[24,-14],[19,-65],[62,-30],[36,1],[34,24],[82,85],[29,90],[1,79],[-33,54],[-60,-1],[-35,-33],[-76,111],[-124,-82],[-111,129],[-35,211],[-69,224],[54,141],[-42,96],[169,262],[107,-36],[38,10],[95,-81],[49,-8]],[[13611,8546],[-47,-60],[36,-36],[1,-32],[43,-13],[30,-46],[98,1],[34,-23],[43,45],[56,-10],[13,-9],[-10,-119],[12,-25],[87,-3],[65,-65],[-24,-48],[6,-73],[-49,-54],[12,-82],[18,-6],[32,21],[61,-19],[69,16],[96,-52],[27,9],[35,-52],[66,30],[67,-30],[69,25],[143,101]],[[14700,7937],[40,-45],[23,-71],[-39,-63],[39,-66],[-26,-24],[-49,-4],[-22,-39],[-65,-35],[10,-32],[165,24],[42,-54],[0,-71],[54,-19],[37,-92],[-49,-18],[-79,-112],[-96,-58],[-7,-54],[9,-11],[32,35],[111,-82],[13,8],[-19,75],[35,23],[52,-5],[49,24]],[[13357,11462],[17,-77],[26,-19],[52,1],[26,-116],[104,-76],[29,-78],[81,-84],[-24,-39],[-46,-14],[-20,-22],[18,-7]],[[13620,10931],[-41,-5],[-126,-84],[-93,65],[-48,74],[-51,35],[-95,-1],[-56,44],[-45,-46],[-87,-238],[-141,-90],[56,-144],[-43,-70],[42,-54],[6,-36],[-10,-22],[-76,-49],[9,19],[-121,17],[-15,31],[-70,25],[3,41],[-15,21],[-37,1],[-39,-35],[-47,124],[-75,1],[-93,68],[-44,118],[-36,18],[15,47],[-11,117],[-66,28],[-66,-22],[6,-46],[-94,-25],[-19,20],[41,45],[-2,19],[-29,32],[-95,56],[-12,84],[-18,33],[-88,-95],[-33,1],[-54,73],[5,26],[-127,-38],[-17,22],[-83,-9],[-1,54],[-27,11],[-23,46],[-34,6],[-42,-32],[-63,62],[-103,16],[-52,-34]],[[11140,11256],[-19,5],[-21,96],[-26,5],[-14,-37],[-59,-25],[-7,50],[-54,13],[-9,23],[77,108],[-7,40],[55,62],[3,-26],[19,-12],[29,84],[45,18],[67,-2],[11,53],[-65,-35],[-29,8],[-10,38],[-61,57],[-112,-32],[-17,89],[-52,49],[-74,-3],[-7,-68],[-45,-17],[-34,16],[-30,60],[-22,-2],[-18,24],[-89,-26]],[[10565,11869],[-25,90],[120,55],[28,59],[69,28],[-40,108],[27,20],[-80,99],[-27,93],[-17,4],[-21,-36],[-24,1],[-64,147],[-46,6],[-16,26],[-41,-11],[-44,61],[-17,-1],[-71,80],[15,41],[-47,90],[-18,-5],[-8,18],[-47,15],[-31,56],[-41,-13],[-21,67],[25,16],[-1,62],[-11,30],[-50,0],[1,25],[-70,131],[15,16],[-12,67],[-67,33],[15,35],[-10,30],[-112,-8],[-27,54],[-28,16],[-12,-4],[10,-30],[-37,16],[-57,-62],[-112,51],[-24,-8],[-23,-42]],[[9491,13395],[-103,31],[-9,52],[-18,-47],[-16,6],[24,162],[-90,28],[-29,-38],[-19,13],[-17,78],[-18,15],[-48,-7],[-6,-88],[-36,-11],[-17,44],[-43,-1],[-20,16],[-72,-11],[-83,58],[-42,3]],[[9484,16492],[109,-102],[231,69],[52,3],[225,-102],[58,-117],[56,-49],[130,8],[23,-11],[158,-183],[99,-87],[118,-60],[171,-23],[29,-52],[136,-32],[158,-124],[7,-62],[197,-368],[135,-335],[83,-86],[4,-30],[-25,2],[-79,59],[-93,-37],[-16,-21],[-63,15],[62,-131],[19,-83],[47,-20],[81,-207],[-12,-59],[47,-46],[19,-90],[44,-95],[-8,-63],[54,-65],[30,3],[20,-28],[15,-83],[41,-38],[8,-75],[-19,-31],[82,-163],[76,-80],[30,-17],[18,11],[22,-35],[-5,-72],[227,-357],[36,-119],[97,-156],[-1,-83],[38,-57],[4,-52],[32,-29],[39,-113],[84,-75],[20,-43],[0,-44],[36,-32],[18,-62],[-21,-47],[-106,-94],[6,-137],[25,-56],[45,-32],[57,-8],[46,-36],[-1,-99],[12,-79],[25,-48],[71,-13],[115,3],[48,16],[46,35],[180,11],[31,-59],[90,27]],[[10565,11869],[-4,-44],[-73,-56],[-31,2],[-18,-17],[-34,-143],[-18,-12],[-42,8],[-51,-28],[-61,119],[-93,34],[-61,-11],[123,-161],[-16,-42],[-188,22],[-14,-43],[13,-37],[61,-50],[31,-70],[-28,-18],[-104,55],[1,-25],[-20,-18],[-8,-108],[36,-32],[-17,-50],[11,-27],[-35,-25],[32,-32],[-35,2],[-7,-34],[24,-44],[44,-11],[52,32],[21,60],[17,6],[32,-46],[38,-114],[-15,-44],[-97,-24],[-27,-98],[57,-56],[-6,-78],[57,-67],[83,-10],[26,14],[65,-23],[89,-5],[39,9],[58,-20],[41,31],[-9,154],[18,43],[40,18]],[[10562,10755],[108,-38],[24,-23],[229,-49],[3,-40],[76,-42],[21,-29],[63,6],[-37,-22],[48,-69],[51,30],[29,-57],[10,-99],[66,-142],[0,-81],[85,-28],[20,-166],[62,-93],[62,-272]],[[11482,9541],[-64,-25],[-137,73],[-47,-4],[-46,-19],[-14,-23],[2,-34],[-15,-7],[-15,13],[-121,17],[-21,-24],[-44,-6],[-76,29],[-102,-39],[-10,-24],[-147,-43],[-77,21],[-45,47],[-34,-4],[1,42],[-52,2],[-11,28],[-121,-24],[-12,-35],[-29,-11],[-69,6],[1,-27],[-210,-69],[-37,-30],[-167,-28],[-65,-33],[-99,-16],[-65,-32],[-36,2],[-27,19],[-41,-6],[-53,43],[-60,4],[-8,-15],[-128,-22],[-114,-4],[-46,12],[-88,-22],[-163,55],[-132,21],[-73,-5],[-39,33],[-63,-47],[-106,42],[-196,19]],[[8161,9391],[-269,77],[12,95],[-65,-4],[-17,60],[5,66],[-68,53],[-31,-21],[-25,2],[-21,27],[-110,12],[-2,-13],[-43,19],[-65,127],[-69,-7],[-8,18],[-93,26],[-3,27],[-21,24],[-58,-6],[-22,15],[-30,-11],[-8,18],[24,0],[5,18],[-38,18],[-4,42],[-20,2],[-15,-33],[-59,-45],[-30,38],[-70,7],[-20,19],[1,33],[-43,-4],[-43,-23]],[[6838,10067],[-22,-4]],[[6599,10402],[40,55],[57,-17],[74,4],[55,42],[29,0],[27,63],[31,15],[76,-5],[15,-19],[64,9],[109,-14],[56,14],[3,35],[38,62],[44,21],[52,2],[73,-72],[17,-41],[2,-82],[23,-16],[115,4],[89,-33],[34,73],[-20,10],[15,48],[-16,32],[23,90],[55,-16],[26,15],[16,41],[28,3],[19,82],[117,16],[29,48],[38,5],[59,98],[111,-40],[-16,67],[27,22],[24,-10],[6,-25],[56,-6],[7,32],[39,48],[72,13],[50,-8],[23,14],[28,1],[10,-19],[-20,-26],[23,-43],[3,-43],[48,8],[17,60],[23,22],[26,1],[46,-42],[40,12],[161,214],[-197,90],[27,116],[-54,79],[109,43],[106,10],[22,31],[34,116],[17,142],[-12,17],[-48,-30],[-53,4],[-36,53],[193,20],[19,83],[-127,76],[-17,-66],[-68,-29],[-131,9],[-30,53],[52,80],[-82,56],[12,75],[50,56],[45,-20],[14,16],[-47,92],[103,-7],[-153,265],[4,65],[82,23],[113,-15],[26,-38],[56,-4],[35,-75],[98,-73],[37,42],[-53,61],[48,33],[-18,74],[-5,168],[80,1],[21,-30],[53,25],[2,29],[-46,76],[-38,32],[19,27],[46,4],[61,-26],[21,-30],[117,35],[-10,22],[10,72],[20,28],[77,-34],[27,63],[-41,61],[9,50],[-23,73]],[[7229,12180],[25,91]],[[11140,11256],[34,-60],[52,-5],[18,-21],[-48,-43],[-58,-5],[-17,-34],[-73,-40],[-30,11],[7,90],[22,14],[3,38],[-22,43],[-90,36],[-8,25],[-67,3],[-12,-44],[34,-91],[32,-23],[5,-42],[31,-51],[-3,-66],[-20,-10],[-20,10],[-119,-49],[-30,-30],[-64,-5],[-40,-19],[-111,-94],[16,-39]],[[11482,9541],[20,47],[190,-58],[8,-35],[-11,-30],[51,-73],[39,44],[273,10],[171,-23],[87,-43],[178,-5],[226,68],[56,-27],[11,24],[-21,27],[166,39],[25,-49],[130,-5],[66,-21],[102,-98],[101,0],[13,48],[89,28]],[[13452,9409],[42,-55],[14,-206],[32,-134],[-46,-36],[26,-65],[4,-241],[37,6],[-2,43],[29,72],[19,13],[16,52],[53,36],[91,-48],[42,-97],[8,-96],[-82,-40],[-12,-19],[-42,-11],[-32,-32],[-38,-5]],[[9829,7094],[-5,-6]],[[8453,6750],[-48,56],[28,141],[-44,55],[-8,32],[-96,-22],[8,78],[-32,92],[45,95],[-10,74],[-40,46],[-8,155],[8,21],[60,8],[18,36],[4,40],[-28,7],[-28,47],[-1,30],[20,22],[-15,65],[34,73],[0,60],[46,94],[27,134],[-3,33],[-59,31],[-46,46],[-35,122],[14,111],[68,27],[67,66],[24,86],[24,30],[1,33],[-37,28],[-39,71],[-85,18],[18,87],[-9,27],[-32,-11],[-15,9],[-6,70],[-24,5],[-4,78],[-14,27],[23,68],[-5,39],[-58,101]],[[10278,1720],[-90,5],[-22,-23],[-47,-348],[-56,-22],[-51,35],[-67,101],[-54,23],[-87,-33],[-86,14],[-15,-127],[-53,-47],[-114,18],[-133,-42],[-31,11],[-37,140],[-68,39],[-78,6],[-103,-82],[-29,91],[-345,221],[-49,-59],[43,-31],[3,-52],[-133,-76],[-55,7],[-71,-93],[-2,-81],[-33,-65],[-40,-30],[-1,-89],[-27,-59],[-93,11],[-19,-46],[-33,-8],[-64,-61],[-32,-9],[-9,-38],[68,-108],[24,-79],[-20,-2],[-30,21],[-62,66],[-69,-10],[-58,-248],[-109,-83],[-41,-63],[-1,-44],[74,-37],[60,-60],[-8,-61],[-39,-71],[-30,-42],[-87,-3],[-286,-97],[26,81],[-58,129],[-36,26],[67,107],[-12,50],[-121,105],[-81,-1],[-63,50],[0,126],[-86,86],[6,43],[91,57],[76,18],[35,44],[14,57],[-52,47],[-6,54],[36,86],[24,36],[45,29],[25,-28],[33,-6],[27,20],[53,124],[-79,126],[-3,55],[-21,42],[-80,64],[0,112],[26,51],[-9,56],[-103,58],[-21,-12]],[[9331,3927],[71,-31]],[[5922,8712],[17,45]],[[6821,10064],[17,3]],[[4563,2772],[-37,-12],[-42,-53],[-12,-78],[-179,-118],[-50,-55],[-6,-52],[45,-64],[-41,-4],[-298,71],[-72,72],[-62,23],[-54,0],[-121,102],[-31,43],[-31,-53],[-429,26]],[[13452,9409],[45,28],[60,-17],[7,-86],[92,-13],[96,-48],[128,36],[351,-24],[145,40],[96,-11],[109,19],[45,99],[-165,143],[-133,149],[-17,53],[-148,210],[-42,108],[3,117],[-15,61],[-219,158],[-168,370],[-82,65],[-20,65]],[[13357,11462],[104,60],[34,46],[-35,104],[111,34],[11,31],[68,-46],[37,50],[-30,40],[-10,133],[-63,10],[-13,139],[76,-8],[97,29],[68,65],[-13,90],[36,77],[33,-86],[34,-39],[-13,-56],[48,-19],[48,-87],[-61,-40],[65,-81],[150,-270],[167,-204],[-15,-36],[-95,-72],[15,-42],[81,44],[116,134],[33,-23],[17,-94],[42,-52],[30,-71],[54,-1],[88,64],[13,-37],[-13,-84],[21,-14],[55,49],[19,88],[33,3],[-25,-113],[12,-73],[61,3],[35,59],[102,99],[173,-190],[-95,-74],[-12,-56],[-36,-34],[25,-61],[34,-2],[165,87],[53,-16],[-8,-39],[61,-53],[-85,-40],[-8,-18],[-36,-8],[-78,-105],[-44,-24],[12,-69],[-17,-49],[11,-29],[-8,-20],[26,-38],[22,-1],[-52,-153],[45,-10],[55,-42],[46,12],[45,-23],[11,-51],[-77,-90],[-39,-117],[25,-115],[-58,-46],[34,-131],[46,-75],[-19,-115],[60,-39],[28,-38],[151,-70],[53,-69],[30,-8],[145,16],[60,-60],[42,1],[64,-83],[8,-53]],[[15843,9067],[-137,-67],[-85,14],[-34,-30]],[[15587,8984],[-41,-50]],[[15546,8934],[-33,-27],[-66,0],[-115,-40],[-212,-126],[-4,-48],[-62,-34],[-3,-51],[-40,-26],[-44,29],[-75,-3]],[[14892,8608],[-44,-20]],[[14848,8588],[-27,-81],[-20,-13],[-95,-3],[5,-88],[20,1],[64,-108],[-17,-9],[9,-57],[58,-25],[12,-39],[-21,-34],[2,-70],[-37,-27],[-46,1],[-38,-43],[-17,-56]],[[14848,8588],[44,20]],[[15546,8934],[41,50]],[[15843,9067],[3,-21],[68,-60],[57,-6],[0,-35],[30,-5],[-1,-34],[89,-74],[-41,-85],[36,-110],[178,-221],[147,-65],[24,-46],[8,-136],[74,-78],[-104,-187],[-90,18],[-59,-25],[-46,25],[-9,19],[67,53],[-32,50],[-50,-28],[-43,-46],[-65,20],[19,39],[26,16],[-54,63],[-46,25],[-47,-14],[-71,-45],[6,-25],[-48,-32],[4,-26],[-47,-41],[-25,-11],[-58,7],[-96,-65],[15,-48],[-15,-40],[26,-16],[33,7],[82,-108],[10,-52],[-15,-48],[57,-21],[5,-92],[36,8],[31,-52],[36,8],[275,-137],[47,39],[42,62],[52,6],[-6,-165],[30,-3],[33,31],[27,-5],[-1,-54],[28,6],[56,53],[68,94],[-20,-252],[52,7],[51,-30],[35,-65],[89,-46],[11,-76],[51,-17],[15,-39],[-34,-54],[-48,-20],[32,-51],[-31,-107],[39,-37],[-20,-47],[-96,-70],[194,-102],[2,-44],[-45,-158],[-62,-31],[-41,5],[-27,-33],[5,-34],[37,-26],[8,-50],[-51,-173],[6,-28],[76,-77],[8,-132],[115,-20],[31,-29],[-7,-30],[-73,-63],[-107,-131],[-59,-28],[-38,9],[-22,24],[-4,40],[26,108],[-78,56],[8,44],[-16,48],[-97,39],[-42,38],[-41,86],[-51,-74],[-82,-69],[-62,21],[-92,-1],[-55,22],[-36,44],[14,71],[-19,24],[-34,-12]]],"transform":{"scale":[0.0001801275543254225,0.00015386147054346168],"translate":[73.885375,29.543882000000004]},"objects":{"punjab_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6,7,8,9]],"type":"Polygon","properties":{"cartodb_id":186,"censuscode":43,"st_cen_cd":3,"dt_cen_cd":9,"district":"Firozpur","st_nm":"Punjab"}},{"arcs":[[10,11,12,13]],"type":"Polygon","properties":{"cartodb_id":212,"censuscode":35,"st_cen_cd":3,"dt_cen_cd":1,"district":"Gurdaspur","st_nm":"Punjab"}},{"arcs":[[[14,15,16,17]],[[18]]],"type":"MultiPolygon","properties":{"cartodb_id":438,"censuscode":48,"st_cen_cd":3,"dt_cen_cd":14,"district":"Patiala","st_nm":"Punjab"}},{"arcs":[[19,20,21,22,-9,23]],"type":"Polygon","properties":{"cartodb_id":559,"censuscode":50,"st_cen_cd":3,"dt_cen_cd":16,"district":"Tarn Taran","st_nm":"Punjab"}},{"arcs":[[-13,24,-20,25]],"type":"Polygon","properties":{"cartodb_id":18,"censuscode":49,"st_cen_cd":3,"dt_cen_cd":15,"district":"Amritsar","st_nm":"Punjab"}},{"arcs":[[26,-16,27,28,29,30,31],[-19]],"type":"Polygon","properties":{"cartodb_id":500,"censuscode":53,"st_cen_cd":3,"dt_cen_cd":19,"district":"Sangrur","st_nm":"Punjab"}},{"arcs":[[-31,32,33,34,35,36,37]],"type":"Polygon","properties":{"cartodb_id":58,"censuscode":54,"st_cen_cd":3,"dt_cen_cd":20,"district":"Barnala","st_nm":"Punjab"}},{"arcs":[[-35,38,39,40,41,42]],"type":"Polygon","properties":{"cartodb_id":63,"censuscode":46,"st_cen_cd":3,"dt_cen_cd":12,"district":"Bathinda","st_nm":"Punjab"}},{"arcs":[[43,-42,44,-6]],"type":"Polygon","properties":{"cartodb_id":180,"censuscode":45,"st_cen_cd":3,"dt_cen_cd":11,"district":"Faridkot","st_nm":"Punjab"}},{"arcs":[[-27,45,46,47,-17]],"type":"Polygon","properties":{"cartodb_id":183,"censuscode":40,"st_cen_cd":3,"dt_cen_cd":6,"district":"Fatehgarh Sahib","st_nm":"Punjab"}},{"arcs":[[48,49,50,51,52,-11,53]],"type":"Polygon","properties":{"cartodb_id":230,"censuscode":38,"st_cen_cd":3,"dt_cen_cd":4,"district":"Hoshiarpur","st_nm":"Punjab"}},{"arcs":[[54,55,56,57,58,-1,59,-52]],"type":"Polygon","properties":{"cartodb_id":243,"censuscode":37,"st_cen_cd":3,"dt_cen_cd":3,"district":"Jalandhar","st_nm":"Punjab"}},{"arcs":[[[-60,-10,-23,60,-21,-25,-12,-53]],[[61,-55,-51]]],"type":"MultiPolygon","properties":{"cartodb_id":282,"censuscode":36,"st_cen_cd":3,"dt_cen_cd":2,"district":"Kapurthala","st_nm":"Punjab"}},{"arcs":[[62,63,-46,-32,64,-37,65,-57]],"type":"Polygon","properties":{"cartodb_id":346,"censuscode":41,"st_cen_cd":3,"dt_cen_cd":7,"district":"Ludhiana","st_nm":"Punjab"}},{"arcs":[[66,-39,-34,67,-29]],"type":"Polygon","properties":{"cartodb_id":367,"censuscode":47,"st_cen_cd":3,"dt_cen_cd":13,"district":"Mansa","st_nm":"Punjab"}},{"arcs":[[-66,-36,-43,-44,-5,68,-3,69,-58]],"type":"Polygon","properties":{"cartodb_id":376,"censuscode":42,"st_cen_cd":3,"dt_cen_cd":8,"district":"Moga","st_nm":"Punjab"}},{"arcs":[[-41,70,-7,-45]],"type":"Polygon","properties":{"cartodb_id":381,"censuscode":44,"st_cen_cd":3,"dt_cen_cd":10,"district":"Muktsar","st_nm":"Punjab"}},{"arcs":[[-64,71,-49,72,73,74,75,76,77,-47]],"type":"Polygon","properties":{"cartodb_id":487,"censuscode":51,"st_cen_cd":3,"dt_cen_cd":17,"district":"Rupnagar","st_nm":"Punjab"}},{"arcs":[[-18,-48,-78,78,-76,79,-74,80]],"type":"Polygon","properties":{"cartodb_id":493,"censuscode":52,"st_cen_cd":3,"dt_cen_cd":18,"district":"Sahibzada Ajit Singh Nagar","st_nm":"Punjab"}},{"arcs":[[-50,-72,-63,-56,-62]],"type":"Polygon","properties":{"cartodb_id":512,"censuscode":39,"st_cen_cd":3,"dt_cen_cd":5,"district":"Shaheed Bhagat Singh Nagar","st_nm":"Punjab"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [6599, 10402], + [-6, -110], + [13, -21], + [46, 3], + [136, -53], + [-30, -100], + [22, 2], + [8, -43], + [28, -17] + ], + [ + [6816, 10063], + [5, 1] + ], + [ + [6821, 10064], + [-10, -30], + [-48, -93], + [-75, -67], + [-9, -111], + [-25, -21], + [-48, 77], + [-71, 4], + [-10, -98], + [-50, -54], + [-59, 44], + [-58, -16], + [-28, -111], + [79, -56], + [84, -3], + [43, -96], + [-18, -229], + [-75, -80], + [-113, -82], + [-140, -51], + [-80, -113], + [-74, -74], + [-97, -47] + ], + [ + [5939, 8757], + [-17, -45] + ], + [ + [5922, 8712], + [-38, -47], + [31, -141], + [-27, -128], + [20, -41], + [-11, -38], + [-98, -136], + [1, -97], + [-22, -30], + [-14, 7], + [-36, -34], + [-3, -37], + [-22, -12], + [11, -31], + [-27, -71], + [32, -55], + [-15, -2], + [7, -25], + [-16, -48] + ], + [ + [5695, 7746], + [-52, 21], + [-77, 1], + [-42, 34], + [-111, -13], + [-23, 30], + [3, 24], + [-49, 27], + [-46, 71], + [-45, 14], + [-48, -28], + [-32, 10], + [-42, 45], + [-14, 86], + [-125, 43], + [-17, 70], + [-40, 46], + [-16, -6], + [0, 22], + [-88, -9], + [-56, 59], + [-28, 8], + [-66, -18], + [-112, 37], + [-52, -7], + [-34, 22], + [-36, -3], + [-17, -28], + [-102, 52], + [-30, -2], + [-36, -77], + [-36, -17], + [-119, 106], + [-34, -35], + [-36, -11], + [-78, -120], + [-111, -15], + [-75, -49], + [-108, -47], + [-74, -53], + [-43, -76], + [-274, -125], + [-28, -42], + [23, -295], + [23, -113], + [24, -43], + [108, -40] + ], + [ + [3424, 7302], + [-14, -11], + [-62, 2], + [-51, -51], + [9, -73], + [67, -54], + [-123, -44], + [-41, -30], + [-13, -22], + [3, -59], + [-16, -64], + [-51, -56], + [-34, -15], + [-1, -146], + [-41, -10], + [-40, -135], + [-49, 23], + [-38, 50], + [-52, -22], + [-26, -192], + [-57, -1], + [-83, -84], + [40, -105], + [-28, -95], + [-92, -21], + [-69, 16], + [-4, -113], + [-50, -94], + [-47, -32], + [-107, -7], + [-166, -99], + [-154, -40], + [58, -24], + [75, -2], + [86, -41], + [350, -73], + [18, -29], + [5, -45], + [-19, -64], + [-211, 43], + [-44, -122], + [16, -70], + [39, -24], + [15, -63], + [-1, -102], + [-95, -151], + [7, -37], + [-40, -162], + [0, -76], + [-86, 63], + [-79, -95], + [-40, -79], + [141, -96], + [161, 64], + [229, -11], + [-32, -177], + [-34, -102], + [5, -89], + [-52, -140], + [105, -53], + [104, -18], + [42, -148], + [104, -97], + [27, -56], + [53, -58], + [-31, -13], + [-81, 80], + [-62, 29], + [-35, -7], + [-23, -10], + [-35, -146], + [122, -78], + [-2, -70], + [16, -34], + [106, -128], + [-12, -71], + [50, -20], + [51, -2], + [131, 28], + [26, -39], + [23, -76], + [30, -43], + [-211, -39], + [139, -325] + ], + [ + [3143, 2620], + [-77, 16], + [-135, -14], + [-632, 60], + [-212, -6], + [-156, 29], + [-210, 5], + [-649, 57], + [-435, 17], + [-81, -13], + [-474, 8], + [-15, 76], + [-40, 94], + [4, 98], + [93, 275], + [110, 94], + [137, 201], + [7, 34], + [77, 99], + [49, 10], + [-23, 42], + [-10, 102], + [15, 186], + [26, 81], + [-22, 303], + [-34, 201], + [-58, 85], + [-72, 184], + [-49, 50], + [-94, 170], + [-62, 80], + [-92, 54], + [-29, 23], + [0, 18], + [155, 106], + [63, 88], + [80, 46], + [52, 60], + [91, 67], + [41, 76], + [3, 47], + [-21, 15], + [-145, -34], + [-68, 8], + [49, 69], + [0, 56], + [-25, 60], + [2, 142], + [31, 15], + [38, -37], + [20, -38], + [-7, -119], + [52, -16], + [45, 24], + [21, 79], + [-7, 76], + [83, 94], + [21, 59], + [55, 24], + [96, -16], + [25, 10], + [-53, 59], + [10, 63], + [127, -5], + [75, 63], + [39, -120], + [64, -11], + [58, 41], + [74, 98], + [8, 53], + [-9, 17], + [-48, -14], + [-22, 10], + [-2, 27], + [90, 73], + [48, 59], + [-3, 149], + [14, 50], + [-24, 18], + [4, 27], + [42, 18], + [35, -59], + [26, -4], + [50, 171], + [63, -28], + [59, 21], + [98, 100], + [46, 24], + [51, 78], + [73, 32], + [63, 102], + [55, 53], + [14, 88], + [55, 112], + [44, -5], + [43, 24], + [77, -11], + [29, 13], + [31, 40], + [76, 17], + [4, 34], + [-57, 50], + [-9, 66], + [-57, 50], + [-8, 47], + [42, 25], + [63, -26], + [40, 28], + [67, 14], + [34, 29], + [9, 39], + [-12, 24], + [-55, 21], + [-6, 25], + [42, 24], + [11, 54], + [69, 62], + [22, 126], + [26, 46], + [40, 18], + [43, -9], + [7, 26], + [57, 10], + [19, -2], + [7, -34], + [22, -7], + [30, 18], + [17, 56], + [74, 14], + [6, 22], + [-77, 31], + [-1, 17], + [-41, 35], + [32, 37], + [13, 68], + [100, 31], + [98, 83], + [105, -2], + [7, 40], + [-81, 53], + [85, 4], + [-6, 30], + [-38, 26], + [38, 57], + [74, 24], + [38, 37], + [70, -6], + [2, 38], + [44, 9], + [3, 12], + [-54, 50], + [112, 39], + [71, 9], + [32, -13], + [47, -56], + [26, 22], + [26, 58], + [55, 45], + [124, 47], + [11, 34], + [-38, 100], + [22, 26], + [13, 97], + [83, 88], + [5, 53], + [145, 27], + [26, -20], + [17, -76], + [35, -14], + [64, 30], + [95, 10], + [61, 39], + [125, 10], + [90, 45], + [62, 70], + [5, 92], + [57, 59], + [-20, 55], + [-1, 68] + ], + [ + [4538, 10211], + [17, -2], + [37, -65], + [177, -3], + [3, 76], + [36, -24], + [46, -3], + [27, 111], + [146, 12], + [7, -32], + [57, -75], + [43, 57], + [1, 71], + [48, 12], + [74, -15], + [100, 5], + [258, 172], + [59, -29], + [40, -2], + [38, 35], + [154, -74] + ], + [ + [5906, 10438], + [195, -91], + [79, -75], + [12, 10], + [42, -39], + [35, 54], + [-4, 40], + [-35, 68], + [45, 7], + [6, 25], + [35, -11], + [7, 55], + [64, 4], + [18, 30], + [30, -4], + [34, -11], + [-4, -42], + [51, -1], + [83, -55] + ], + [ + [9484, 16492], + [-90, -50], + [-87, -244], + [-19, -16], + [-104, 8], + [-20, -21], + [18, -59], + [24, -5], + [39, -95], + [37, -13], + [11, -31], + [-6, -28], + [-59, -74], + [-32, -14], + [7, -28], + [-19, -60], + [-23, -25], + [-28, -141], + [29, -4], + [15, -18], + [-2, -74], + [80, -55], + [13, -130], + [-7, -91], + [38, -34], + [57, -116], + [12, -50], + [-45, -89], + [3, -86], + [31, -31], + [-28, -159], + [25, -25], + [25, -66], + [-7, -45], + [-26, -18], + [-108, -4], + [-63, -17], + [9, -163], + [-16, -65], + [-111, -135], + [-114, -108], + [-24, -129], + [-60, -48], + [20, -11], + [-47, -78], + [-3, -49] + ], + [ + [8829, 13698], + [-29, -35], + [-14, -75], + [-192, -47], + [-20, 17], + [-24, -18], + [-39, -63], + [6, -34], + [-17, 0], + [-16, -83], + [-48, -33] + ], + [ + [8436, 13327], + [-64, 49], + [-45, 78], + [-58, 64], + [-25, -1], + [-109, 50], + [-72, 62], + [-52, -37], + [-106, 87], + [-47, 21], + [16, 48], + [29, 16], + [20, 45], + [-23, 52], + [-45, -4], + [-9, 23], + [-40, 12], + [-20, -28], + [-18, 29], + [5, 105], + [-19, 9], + [-42, -25], + [-128, -13], + [-18, -37], + [-32, 15], + [-10, -44], + [-25, 23], + [-52, -7], + [-12, 47], + [-59, 17], + [17, 36], + [-25, 30], + [-104, 44], + [-2, 32], + [30, 6], + [23, 26], + [-1, 38], + [-77, 52], + [10, 34], + [-26, 7], + [-28, -12], + [-29, 49], + [-61, -16], + [-75, 20], + [-36, 63], + [-61, -34], + [-40, 3], + [-37, 28], + [-13, -48], + [-106, 65], + [9, 45], + [33, -7], + [24, 15], + [22, 37], + [-8, 37], + [-55, 22], + [-48, 45], + [-42, 4], + [-55, 99], + [-119, 13], + [-54, -33], + [-38, 7], + [-25, 44], + [-23, -2], + [-26, 21], + [1, 61], + [-73, -36], + [-20, 46], + [-84, 21], + [-58, 38], + [-81, 3], + [-28, 133], + [-103, 42], + [7, 69], + [-24, 8], + [-23, -23], + [-112, 83], + [10, 80], + [-75, 17], + [-5, 50], + [-93, 182], + [39, 20], + [34, -14], + [46, 40], + [63, 28], + [46, -23], + [62, 16], + [-10, 30], + [191, 90], + [5, 99], + [-145, -34], + [8, -42], + [-65, -11], + [-43, 26], + [-28, 40], + [-54, 24], + [15, 56], + [54, 93], + [55, 54], + [-34, 8], + [27, 35], + [-28, 30], + [-41, 140], + [-64, 63] + ], + [ + [5702, 16295], + [49, 83], + [40, 17], + [65, 3], + [223, -96], + [-12, -51], + [36, -9], + [122, 10], + [37, -62], + [62, 74], + [78, 25], + [6, -36], + [19, -8], + [46, 43], + [59, 17], + [57, 69], + [57, -28], + [99, 32], + [35, -23], + [29, 71], + [60, 29], + [45, 52], + [76, -14], + [80, 14], + [42, -16], + [36, -78], + [34, -4], + [40, 72], + [75, 31], + [0, 75], + [14, 26], + [34, 9], + [-3, 91], + [12, 13], + [51, -5], + [25, -84], + [55, -14], + [6, -52], + [27, -17], + [78, 71], + [49, 6], + [17, -17], + [5, 49], + [91, 77], + [2, 28], + [22, 26], + [2, 27], + [-34, 26], + [9, 44], + [47, 47], + [61, 17], + [40, 112], + [32, 29], + [35, 2], + [-10, 111], + [-35, 4], + [1, 23], + [77, 119], + [28, 29], + [30, 5], + [128, -6], + [73, 59], + [21, 49], + [3, 30], + [-29, 43], + [-7, 39], + [9, 44], + [35, 25], + [11, 41], + [-59, 64], + [-76, -21], + [-48, 14], + [17, 57], + [-137, 69], + [3, 28], + [74, 110], + [-47, 62], + [43, 100], + [35, 12], + [260, -104], + [203, -30], + [204, 48], + [114, 54], + [-25, -147], + [67, -47], + [57, -1], + [11, -48], + [-12, -96], + [26, -73], + [36, -5], + [81, 142], + [48, 274], + [27, 57], + [89, 78], + [264, 135], + [308, 45], + [205, 77], + [148, 113], + [101, 175], + [91, 204], + [183, -9], + [142, 78], + [115, 144], + [71, 185], + [193, 250], + [16, -35], + [-106, -215], + [-28, -107], + [-2, -87], + [24, -54], + [176, -180], + [46, -67], + [112, -85], + [49, -64], + [56, -92], + [-13, -52], + [-35, -33], + [-300, -86], + [-156, -124], + [-448, -501], + [-8, -39], + [-41, -66], + [-101, -80], + [-176, -42], + [-161, -20], + [-130, -56], + [-102, -69], + [-64, -65], + [-24, -246], + [10, -77], + [163, -36], + [37, -20], + [31, -78], + [-35, -120], + [-136, -173], + [-114, -129], + [-177, -117] + ], + [ + [16014, 5784], + [-47, -73], + [-132, -40], + [8, -100], + [-147, -74], + [9, -57], + [18, -27], + [60, -3], + [13, -20], + [-51, -59], + [13, -20], + [106, 15], + [45, -50], + [-53, -73], + [-77, -56], + [0, -45], + [-23, -20], + [-35, 12], + [-25, -12], + [-14, -32], + [-51, 7], + [-50, -30], + [-28, 30], + [-20, -44], + [12, -42], + [-59, -86], + [-62, -1], + [-139, -100], + [-20, 49], + [-72, -135], + [-30, 10], + [-131, -15], + [-127, -36], + [-57, 4], + [-10, -139], + [-21, -46], + [-52, -28], + [-2, -32], + [66, 24], + [175, 162], + [45, 4], + [36, -16], + [31, -66], + [89, -84], + [-1, -35], + [-42, -68], + [69, -27], + [89, -7], + [34, -26], + [-10, -59], + [27, -21], + [-1, -29], + [-106, -123], + [27, -99], + [-25, -37], + [-87, -55], + [-102, -113], + [-50, -30], + [-259, -234], + [-137, -21], + [-44, -19], + [-34, 68], + [1, 34], + [-24, 32], + [-40, 15], + [-175, 8], + [-30, 68], + [-12, 76], + [11, 93], + [-56, -1], + [-57, 69], + [-20, 104], + [37, 61], + [-3, 45], + [-47, 117], + [-55, 29], + [-63, -22], + [-99, -101], + [114, -167], + [-95, -77], + [31, -119], + [-32, -24], + [-54, -1], + [-60, 25], + [-86, 150], + [-29, 19], + [-96, -27], + [55, -66], + [70, -49], + [3, -26], + [-61, -77], + [-84, -49], + [-56, 2], + [-109, 66], + [-74, -32], + [-196, 53], + [-9, 37], + [-179, 186], + [-38, 18], + [-10, -28], + [55, -127], + [-34, -8], + [-65, 46], + [-20, -14], + [0, -24], + [79, -46], + [48, -62], + [85, -59], + [102, -11], + [44, -20], + [-23, -49], + [-35, -6], + [-60, -68], + [-197, -310], + [3, -20], + [90, -34], + [2, -16], + [-34, -29], + [-89, -22], + [-14, -19], + [-8, -80], + [35, -88], + [18, -113], + [-24, -49], + [48, -89], + [2, -51], + [-138, 14], + [-52, -63], + [-19, -51], + [29, -36], + [59, 0], + [14, -225], + [71, -30], + [59, 16], + [49, -17], + [47, 7], + [74, -59], + [19, -45], + [-76, -94], + [-31, 7], + [-62, -16], + [-12, -20], + [9, -45], + [-94, 12], + [-27, -29], + [-20, -60], + [-107, -84], + [-152, -10], + [-127, -132], + [-74, 78], + [-49, 20], + [-20, -4] + ], + [ + [12304, 1712], + [114, 186], + [20, 120], + [-40, 17], + [-73, -64], + [-86, -9], + [-57, -30], + [-65, 10], + [-47, 80], + [4, 87], + [-33, 3], + [-21, 34], + [-21, -8], + [-32, 21], + [-75, -53], + [-23, 41], + [-20, 109], + [-131, 38], + [-75, 65], + [29, 92], + [-13, 91], + [32, 81], + [138, -22], + [50, 47], + [36, 86], + [-14, 43], + [-35, 26], + [-5, 38], + [-93, 147], + [73, 54], + [-32, 39], + [7, 26], + [17, 17], + [38, -4], + [72, 76], + [8, 23], + [-24, 39], + [30, 18], + [19, 47], + [53, 10], + [-30, 30], + [46, 45], + [15, 37], + [49, -20], + [10, -52], + [30, 27], + [95, -21], + [-28, 64], + [41, 37], + [10, 68], + [69, 146], + [-60, 63], + [-97, -31], + [29, 30], + [2, 23], + [-59, -3], + [-12, 18], + [18, 36], + [30, 8], + [-2, 24], + [-72, 39], + [-26, -8], + [1, 37], + [39, -5], + [16, 41], + [-91, 92], + [-4, 65], + [-29, 67], + [63, 62], + [26, 47], + [-16, 50], + [91, 114], + [20, -33], + [24, 13], + [71, -12], + [84, 29], + [4, 55], + [20, -2], + [31, 35], + [31, -5], + [32, 27], + [21, -40], + [32, 32], + [-5, 20], + [54, 34], + [60, -19], + [6, -73], + [71, 102], + [-13, 53], + [29, 63], + [83, 8], + [31, 61], + [-31, 69], + [-54, 17], + [-28, 56], + [-88, -29], + [-6, 49], + [22, 41], + [-16, 25], + [-60, -36], + [-47, 31], + [-26, -29], + [-73, -9], + [-75, 35], + [-41, 2], + [-52, -11], + [-69, -49], + [-115, 47], + [-102, 133], + [-30, -13], + [-57, 13], + [-67, -56], + [-61, 20], + [-10, 28], + [-97, 15], + [-30, 149], + [43, 64], + [41, -31], + [49, -11], + [3, 49], + [33, 67], + [43, -20], + [9, 68], + [33, 24], + [29, 46], + [-25, 50], + [68, 25], + [23, 46], + [29, 15], + [-24, 82], + [68, 50], + [45, 57], + [33, -21], + [21, 5], + [60, 52], + [-49, 20], + [-2, 85], + [-87, 45], + [-8, 24], + [13, 68], + [78, 58], + [-8, 32], + [26, 90] + ], + [ + [12200, 6348], + [108, -4], + [152, 72], + [92, -9], + [156, 123], + [85, -28], + [80, 32], + [37, -8], + [39, 18], + [35, 49], + [46, 13], + [111, -11], + [89, 33], + [26, -13], + [11, -50], + [25, 6], + [-8, 34], + [35, 72], + [47, 19], + [23, -34], + [8, -70], + [77, -20], + [5, -56], + [52, -21], + [13, -46], + [-13, -51], + [30, -52], + [43, -143], + [-91, -112], + [91, -14], + [-39, -60], + [0, -19], + [36, -35], + [0, -39], + [22, -2], + [-1, -29], + [-27, -28], + [-20, 5], + [-11, -22], + [-16, 0], + [-5, -28], + [56, -25], + [18, 7], + [27, -53], + [86, 58], + [77, -31], + [65, -66], + [14, -74], + [64, 67], + [99, 18], + [-2, 34], + [-39, 63], + [13, 17], + [45, -13], + [20, 27], + [74, -13], + [61, 42], + [84, -93], + [33, 20], + [61, -42], + [59, 70], + [12, 50], + [20, 7], + [18, 47], + [-12, 17], + [41, 87], + [-46, 72], + [6, 63], + [-43, 33], + [40, 48], + [-22, 52], + [57, 100], + [-14, 41], + [2, 74], + [29, 38], + [-25, 50], + [29, 29], + [22, -4], + [14, 16], + [30, -22], + [74, -19], + [7, -23], + [44, -4], + [143, 67], + [22, -26], + [45, 34], + [5, 21], + [13, -4], + [-2, 55], + [-133, 114], + [13, 52], + [54, 23], + [-4, 17], + [108, -51], + [23, 4], + [10, 53], + [-27, 33], + [-13, 97], + [31, 15], + [-69, 82] + ], + [ + [14960, 7171], + [43, 37], + [-52, 42], + [4, 40], + [45, 3], + [43, -30], + [221, 107], + [31, -90], + [-6, -43], + [-73, -85], + [25, -50], + [-6, -68], + [21, -38], + [64, 44], + [31, -7], + [45, -93], + [32, -4], + [-2, -74], + [21, -35], + [-28, -48], + [3, -25], + [138, 65], + [-22, -101], + [43, -55], + [37, 5], + [40, 38], + [-13, 72], + [65, 0], + [18, 14], + [15, -22], + [9, -152], + [64, -122], + [63, -76], + [249, -165], + [80, -184], + [-72, -188], + [-121, -80], + [-1, -19] + ], + [ + [11566, 2411], + [29, -15], + [-2, -25], + [33, -17], + [-29, -67], + [-28, -21], + [-31, 7], + [-17, -16], + [-143, 74], + [-19, 48], + [31, 50], + [41, 17], + [42, 3], + [50, -38], + [26, -3], + [-16, 28], + [30, 51], + [-8, 22], + [18, 7], + [9, -9], + [-16, -96] + ], + [ + [4040, 12700], + [152, 141], + [61, 92], + [58, 4], + [73, -61], + [68, -6], + [68, 51], + [50, 13], + [68, 140], + [60, 53], + [41, 10], + [56, -36], + [31, 29], + [103, -38], + [24, 40], + [38, -13], + [47, 52], + [33, -1], + [2, -36], + [37, -46], + [62, 7], + [-5, -60], + [49, -87], + [41, 25], + [58, -36], + [9, -27], + [109, 27], + [21, 39], + [66, -14], + [9, 47], + [38, 45], + [42, 9], + [1, -44], + [30, -37], + [-19, -31], + [1, -50], + [34, -28], + [91, 26], + [115, -41], + [-7, -55], + [14, -45], + [40, -23], + [12, -34], + [47, 49], + [20, 70], + [79, -8], + [16, 91], + [38, -8], + [-9, -17], + [22, -13], + [-16, -20], + [2, -55], + [23, -20], + [30, 15], + [-9, 23], + [16, 27], + [48, 3], + [5, 46], + [31, -1], + [23, -25], + [25, 12], + [5, 21], + [22, -16], + [35, 9], + [39, 54], + [14, 45], + [27, 14], + [50, -4], + [45, -30], + [28, -45], + [35, 2], + [-8, -41], + [57, -42], + [126, 21], + [88, -177], + [62, 66], + [102, 13], + [54, 30], + [36, 49], + [2, 28], + [64, 33], + [60, -60], + [-24, -62], + [-19, -1], + [11, -26], + [71, -38], + [36, 23], + [28, -44], + [104, -37], + [124, 71], + [34, -47], + [32, -3], + [89, -72] + ], + [ + [7741, 12604], + [-40, -8], + [-56, -37], + [-89, -131], + [-50, 29], + [-38, -116], + [-17, -121], + [-60, -5], + [-34, 95], + [-85, -15], + [-18, -24] + ], + [ + [7254, 12271], + [-25, -91] + ], + [ + [7229, 12180], + [41, -62], + [-12, -20], + [-17, 16], + [-43, -46], + [9, -29], + [-72, -115], + [-39, 20], + [-17, -116], + [18, -18], + [50, 14], + [-148, -188], + [-10, -20], + [11, -59], + [-70, -71], + [-73, 53], + [-69, -20], + [15, -40], + [-94, -172], + [56, -35], + [-109, -38], + [-19, -74], + [3, -84], + [-128, -153], + [27, 1], + [0, -50], + [-9, -39], + [-50, -56], + [9, -31], + [-19, -37], + [-86, -27], + [-128, -96], + [-76, -12], + [-10, -31], + [-42, -47], + [-222, -60] + ], + [ + [4538, 10211], + [-4, 17], + [-43, 21], + [-31, 71], + [-42, -4], + [-29, -24], + [-26, 5], + [-9, 33], + [-35, 15], + [-63, -31], + [-48, -57], + [-35, 9], + [2, 95], + [-97, -29], + [-36, 17], + [-35, -3], + [-14, -10], + [-4, -33], + [27, -26], + [22, -101], + [-23, -116], + [-20, -23], + [-41, 51], + [-110, -70], + [-45, 17], + [-32, -9], + [-30, 19], + [-22, 224], + [-34, 14], + [-55, -17], + [-18, 46], + [-95, 41], + [-8, 18], + [0, 188], + [-18, 93], + [6, 21], + [39, 14], + [-6, 67], + [35, 78], + [-21, 88], + [3, 55], + [61, 105], + [-61, 162], + [32, 37], + [43, 108], + [32, 27], + [10, 27], + [-13, 28], + [-66, 18], + [0, 32], + [59, 36], + [2, 66], + [64, 20], + [-27, 77], + [29, 63], + [2, 67], + [125, 52], + [66, 59], + [12, 103], + [41, 70], + [-1, 35], + [29, 12], + [-1, 32], + [84, 18], + [35, -12], + [15, 28], + [26, 13], + [41, -63], + [51, -28], + [23, 9], + [-14, 47], + [38, 22], + [-79, 116], + [64, 73], + [7, 37], + [-62, 70], + [-56, 38], + [32, 56], + [-96, 3], + [-26, 17], + [-24, 45] + ], + [ + [8436, 13327], + [-35, -81], + [-127, -15], + [-314, -261], + [2, -69], + [-118, -167], + [-70, -130], + [-33, 0] + ], + [ + [4040, 12700], + [-28, 24], + [-70, -12], + [-16, -18], + [-77, 40], + [37, 26], + [-6, 66], + [20, 34], + [41, 24], + [93, 17], + [27, 43], + [19, 147], + [-39, 20], + [0, 20], + [40, 15], + [-8, 26], + [-38, 2], + [-104, 53], + [-13, 40], + [-47, 29], + [-11, 94], + [-127, 49], + [-20, 44], + [-1, 76], + [-29, 35], + [-9, 65], + [-28, 22], + [-3, 69], + [-45, 45], + [15, 94], + [-44, 53], + [-117, 66], + [-9, 34], + [-96, 89], + [-12, 28], + [94, 51], + [31, 79], + [52, -9], + [135, 69], + [92, 4], + [35, 18], + [1, 28], + [-39, 52], + [-4, 71], + [17, 51], + [43, 47], + [-1, 20], + [-30, 25], + [46, 61], + [15, 49], + [-25, 47], + [0, 33], + [49, 32], + [44, 60], + [44, 11], + [17, 87], + [70, 52], + [0, 80], + [24, 58], + [83, -34], + [63, 13], + [63, 90], + [52, -6], + [20, 14], + [5, 72], + [41, 28], + [5, 31], + [52, -9], + [26, 27], + [60, 14], + [90, -45], + [45, 20], + [1, 36], + [-16, 26], + [7, 43], + [76, 16], + [20, 32], + [50, -41], + [32, 12], + [34, 20], + [1, 66], + [32, -27], + [43, -10], + [51, 37], + [182, 64], + [30, -51], + [14, 8], + [33, 108], + [26, 31], + [-8, 136], + [52, 50], + [100, 26], + [-30, 72], + [67, 10], + [40, 31], + [31, -18], + [14, 62], + [-30, 76], + [95, 44], + [105, -14] + ], + [ + [12203, 6616], + [-36, -111], + [68, -92], + [-35, -65] + ], + [ + [12304, 1712], + [-72, -33], + [-19, -159], + [-25, -35], + [-37, 10], + [-26, -28], + [-95, -159], + [-32, -13], + [-64, 58], + [-37, 3], + [-76, -33], + [-174, -121], + [-43, -6], + [-125, 20], + [-46, -12], + [-61, 16], + [-111, 74], + [-32, 60], + [-100, -55], + [-87, 34], + [-50, 114], + [-61, 40], + [-57, 96], + [-23, 66], + [-1, 75], + [-50, 20], + [-133, -53], + [-136, 119], + [-129, -86], + [-124, -4] + ], + [ + [10278, 1720], + [80, 106], + [90, 24], + [41, 39], + [-19, 81], + [30, 35], + [-106, 53], + [41, 83], + [-27, 121], + [59, 33], + [-26, 70], + [3, 68], + [-52, -30], + [-108, 73], + [-28, 54], + [-76, -13], + [-57, 17], + [-22, -101], + [-94, -53], + [-80, -9], + [-34, 118], + [-46, 28], + [-22, -15], + [-27, 57], + [-52, -16], + [102, 271], + [-34, 35], + [136, 108], + [13, -21], + [37, 71], + [27, 6], + [-8, 103], + [-36, 8], + [-26, 37], + [20, 55], + [-27, 6], + [-32, -28], + [-73, -2], + [-43, -76], + [-48, 45], + [12, 58], + [-28, 59], + [18, 110], + [-27, 15], + [9, 41], + [-57, 47], + [12, 54], + [28, 11], + [49, 76], + [38, 12], + [25, 39], + [-16, 23], + [-44, -16], + [-40, 28], + [-61, 104], + [12, 38], + [-17, 30], + [-115, -51], + [-30, 24], + [-34, -1], + [-86, 34] + ], + [ + [9402, 3896], + [-1, 1] + ], + [ + [9401, 3897], + [-13, 53], + [-95, 178], + [14, 53], + [-13, 47], + [6, 27], + [32, 29], + [116, 79], + [-25, 60], + [12, 26], + [61, -48], + [89, -25], + [178, 102], + [18, 34], + [197, -5], + [53, -49], + [19, 12], + [-3, 40], + [32, 69], + [44, 39], + [44, 12], + [46, 66], + [-9, 23], + [17, 58], + [-33, 33], + [-181, 6], + [-77, 31], + [-60, 76], + [-51, 168], + [-2, 31], + [36, 27], + [18, -22], + [36, 3], + [74, 77], + [21, 41], + [-48, 35], + [6, 105], + [-63, 32], + [5, 28], + [-13, 25], + [48, 45], + [-12, 20], + [-49, -2], + [-6, 24], + [4, 37], + [42, -2], + [-16, 44], + [10, 67], + [-14, 30], + [-39, 5], + [-57, 83], + [29, 30], + [78, 38], + [26, 47], + [4, 69], + [22, 28], + [-101, 21], + [-9, 19], + [21, 109], + [55, 28], + [61, 101], + [-13, 27], + [-45, 1], + [-26, 33], + [0, 25], + [-59, 36], + [-8, 62], + [54, 45], + [4, 27], + [-23, 34], + [9, 25], + [40, 29], + [43, 91], + [20, 56], + [-13, 54], + [25, 60], + [-27, 42], + [-35, -22], + [-51, 11], + [15, 61], + [-31, 54], + [-36, 29] + ], + [ + [9829, 7094], + [80, 94], + [96, 1], + [49, -85], + [36, 1], + [44, 22], + [114, -160], + [50, 84], + [65, 12], + [59, 47], + [105, -56], + [25, -36], + [19, -3], + [59, 53], + [-105, 76], + [-31, 95], + [-55, -11], + [0, 62], + [25, 43], + [80, -6], + [14, -46], + [-8, -32], + [122, 36], + [54, -3], + [32, 33], + [14, 62], + [59, 58], + [37, -10], + [59, -102], + [32, -3], + [72, 41], + [47, -9], + [30, -73], + [48, -25], + [15, -39], + [-5, -49], + [-113, -53], + [-2, -54], + [79, -63], + [1, -66], + [30, -30], + [54, -8], + [36, 28], + [38, 3], + [39, -23], + [28, -64], + [-41, -46], + [20, -15], + [9, -67], + [50, -46], + [71, 19], + [39, 28], + [29, 75], + [116, 60], + [111, 35], + [19, 56], + [116, 26], + [23, -48], + [19, -119], + [131, -66], + [33, 19], + [15, -13], + [-11, -68], + [16, -24], + [82, -26] + ], + [ + [9401, 3897], + [-70, 30] + ], + [ + [9331, 3927], + [-89, -69], + [-64, 71], + [-61, -56], + [-111, 37], + [-39, 29], + [-30, 46], + [-24, 81], + [-49, 83], + [-98, 92], + [-90, -16], + [-114, -47], + [-55, 8], + [-84, 52], + [-38, 32], + [9, 25], + [-11, 26], + [-28, 8], + [-87, -75], + [-13, 14] + ], + [ + [8255, 4268], + [-11, 25], + [-25, -13], + [-18, 10], + [8, 35], + [50, 23], + [26, 79], + [3, 62], + [-66, 38], + [-6, 18], + [29, 25], + [-9, 79], + [26, 31], + [-52, 32], + [1, 95], + [-37, 25], + [-43, -20], + [-30, 33], + [23, 33], + [-11, 61], + [-85, 18], + [-47, -24], + [-9, 7], + [17, 63], + [-20, 116], + [61, 21], + [52, -14], + [28, 29], + [-8, 41], + [-96, 26], + [-14, 16], + [61, 182], + [-42, 14], + [-29, -23], + [-75, 16], + [-37, 150], + [15, 63], + [-24, 78], + [-117, 105], + [-72, -22], + [-7, 51], + [21, 26], + [-64, 79], + [-3, 30], + [22, 37], + [68, 76], + [41, 67], + [5, 37], + [58, 73] + ], + [ + [7813, 6277], + [13, 44], + [85, 73], + [24, 45], + [78, 5], + [61, -124], + [50, -10], + [86, -2], + [225, 112], + [58, 60], + [35, 65], + [-9, 23], + [-55, 37], + [-11, 145] + ], + [ + [8453, 6750], + [63, 15], + [46, -8], + [18, 8], + [2, 28], + [57, 32], + [34, -9], + [46, 54], + [34, -11], + [31, 39], + [154, -45], + [35, 16], + [92, -14], + [11, 52], + [47, 38], + [16, -8], + [17, -72], + [29, -41], + [40, 12], + [39, 47], + [24, 63], + [-11, 42], + [-60, -16], + [0, 37], + [30, 71], + [37, 0], + [64, -29], + [49, -41], + [39, 12], + [57, -52], + [99, 37], + [44, -14], + [29, -40], + [83, 59], + [22, 68], + [54, 8] + ], + [ + [9824, 7088], + [5, 6] + ], + [ + [8255, 4268], + [-70, -87], + [-4, -22], + [42, -67], + [-99, -109], + [5, -88], + [44, -17], + [-65, -71], + [-11, 8], + [-28, -13], + [-23, -33], + [-31, -17], + [-17, 5], + [-51, -60], + [-73, -29], + [-57, 43], + [-63, -52], + [-62, 16], + [-37, -21], + [-19, -47], + [14, -131], + [-4, -148], + [31, -10], + [43, 37], + [11, -16], + [-11, -41], + [-119, -73], + [34, -154], + [110, -15], + [40, 17], + [15, 36], + [25, -23], + [45, 17], + [1, -45], + [-132, -92], + [-15, -70], + [26, -47], + [-4, -33], + [-35, -47], + [-117, 65], + [-28, -71], + [-75, -79], + [-71, 59], + [-52, -16], + [-18, 35], + [-21, 9], + [-3, 37], + [-42, 3], + [-15, -22], + [-16, 29], + [-43, -59], + [-17, -129], + [8, -17], + [-25, -23], + [7, -37], + [-54, -81], + [64, -89], + [22, -177], + [81, 25], + [74, -54], + [16, -100], + [-1, -40], + [-113, -43], + [-46, -34], + [10, -68] + ], + [ + [7236, 1892], + [-14, -12], + [-5, -36], + [-110, -63], + [-36, -154], + [3, -29], + [54, -48], + [-97, -47], + [-58, 51], + [-35, 135], + [-127, -19], + [-67, 26], + [-6, 40], + [24, 43], + [76, 47], + [-16, 74], + [-28, 22], + [-74, 22], + [-25, 30], + [-1, 31], + [20, 29], + [89, 60], + [20, 35], + [-9, 155], + [-99, 118], + [-39, -18], + [-68, -217], + [-76, -26], + [-80, 45], + [-130, -112], + [-47, 20], + [-64, -29], + [-23, -44], + [-114, 158], + [3, 61], + [-67, 51], + [-82, 31], + [-105, 254], + [-47, 50], + [-118, -63], + [-51, -2], + [43, 53], + [8, 37], + [-72, 100], + [-53, -60], + [-70, 14], + [-54, -14], + [-157, 92], + [-26, 74], + [-42, 39], + [-44, 14], + [-38, -19], + [-102, -99], + [-96, -5], + [-119, -29], + [-74, -47], + [-148, 61] + ], + [ + [4563, 2772], + [11, 33], + [-27, 77], + [26, 33], + [45, 142], + [-116, 124], + [11, 28], + [-22, 48], + [61, 131], + [-74, 45], + [-44, 2], + [-43, 100], + [40, 92], + [1, 61], + [-27, 0], + [-42, -28], + [-119, 28], + [-99, 104], + [1, 16], + [49, 73], + [6, 44], + [90, 100], + [165, 20], + [29, -41], + [37, -5], + [111, 52], + [95, 89], + [2, 51], + [-39, 51], + [-87, 2], + [21, 136], + [19, 22], + [-3, 32], + [32, 25], + [-29, 55], + [-6, 88], + [12, 38], + [82, 110], + [1, 29], + [43, 0], + [36, 43], + [-98, 115], + [-32, 7], + [-17, 22], + [93, 53], + [24, 32], + [82, -11], + [49, 26], + [83, 77], + [-462, 121], + [1, 12], + [54, 12], + [67, 51], + [315, -172], + [31, 2], + [199, 351] + ], + [ + [5201, 5520], + [88, -38], + [90, -70], + [114, 84], + [204, -87], + [40, -24], + [-7, -19], + [31, -19], + [50, 10], + [75, 104], + [29, -16], + [73, 27], + [50, 61], + [61, -32], + [62, 16], + [26, -28], + [147, -59], + [19, 7], + [70, -20], + [24, 11], + [52, 60], + [-21, 63], + [2, 71], + [-59, 64], + [-99, 49], + [21, 63], + [-40, 20], + [8, 37], + [34, 22], + [27, 57], + [36, 13], + [84, -39], + [-10, 37], + [-50, 39], + [12, 53], + [-77, -5], + [-36, 76], + [-97, 29] + ], + [ + [6234, 6137], + [68, 13], + [82, 89], + [41, -11], + [15, -20], + [47, 0], + [39, 22], + [132, 169], + [138, -53], + [113, 13], + [11, 57], + [-58, 141], + [9, 59], + [95, 111], + [31, 12], + [95, -24], + [66, -94], + [43, -164], + [9, -187], + [18, -14], + [53, 26], + [45, -25], + [28, 58], + [65, -46], + [162, 42], + [42, 17], + [11, 19], + [35, -8], + [86, -76], + [58, 14] + ], + [ + [5695, 7746], + [11, -70], + [-40, -151], + [50, -141], + [15, 0], + [28, 39], + [6, -56], + [176, -20], + [13, -113], + [-36, -87], + [15, -60], + [-31, -153], + [5, -65], + [34, -51], + [-9, -22], + [-207, -30], + [-28, -30], + [-34, -103], + [-10, -99], + [131, -64], + [30, 35], + [-29, 25], + [18, 35], + [84, 103], + [66, -60], + [19, 5], + [15, -14], + [2, -32], + [84, -75], + [69, 3], + [29, -60], + [-28, -60], + [-1, -182], + [45, -57], + [47, 1] + ], + [ + [5201, 5520], + [-60, 49], + [-16, -15], + [-43, 7], + [-72, -19], + [-82, 0], + [-85, -33], + [-24, 15], + [25, 165], + [-2, 28], + [-24, 23], + [13, 40], + [-107, 87], + [-20, 42], + [-2, 42], + [58, 91], + [30, 2], + [82, 76], + [-19, 70], + [-49, -38], + [-17, 17], + [-59, 0], + [-93, 69], + [-5, 35], + [-176, 77], + [-2, 52], + [47, 34], + [65, 77], + [16, 75], + [-233, 137], + [-52, 78], + [-65, 21], + [-70, 83], + [3, 38], + [-41, 10], + [-50, 154], + [-33, -7], + [-124, 114], + [-165, 59], + [-326, 27] + ], + [ + [12203, 6616], + [30, 35], + [67, -47], + [35, 14], + [2, 85], + [30, 25], + [0, 68], + [61, 45], + [-23, 21], + [12, 26], + [-39, 64], + [61, 54], + [-4, 18], + [24, 35], + [120, 52], + [7, 98], + [82, 46], + [22, 34], + [0, 57], + [15, 25], + [31, 8], + [15, -13], + [-2, -41], + [20, -30], + [71, 51], + [90, 14], + [27, 51], + [35, 29], + [50, 1], + [37, -56], + [74, -2], + [61, -33], + [40, 3], + [50, 36], + [93, -10], + [24, -14], + [19, -65], + [62, -30], + [36, 1], + [34, 24], + [82, 85], + [29, 90], + [1, 79], + [-33, 54], + [-60, -1], + [-35, -33], + [-76, 111], + [-124, -82], + [-111, 129], + [-35, 211], + [-69, 224], + [54, 141], + [-42, 96], + [169, 262], + [107, -36], + [38, 10], + [95, -81], + [49, -8] + ], + [ + [13611, 8546], + [-47, -60], + [36, -36], + [1, -32], + [43, -13], + [30, -46], + [98, 1], + [34, -23], + [43, 45], + [56, -10], + [13, -9], + [-10, -119], + [12, -25], + [87, -3], + [65, -65], + [-24, -48], + [6, -73], + [-49, -54], + [12, -82], + [18, -6], + [32, 21], + [61, -19], + [69, 16], + [96, -52], + [27, 9], + [35, -52], + [66, 30], + [67, -30], + [69, 25], + [143, 101] + ], + [ + [14700, 7937], + [40, -45], + [23, -71], + [-39, -63], + [39, -66], + [-26, -24], + [-49, -4], + [-22, -39], + [-65, -35], + [10, -32], + [165, 24], + [42, -54], + [0, -71], + [54, -19], + [37, -92], + [-49, -18], + [-79, -112], + [-96, -58], + [-7, -54], + [9, -11], + [32, 35], + [111, -82], + [13, 8], + [-19, 75], + [35, 23], + [52, -5], + [49, 24] + ], + [ + [13357, 11462], + [17, -77], + [26, -19], + [52, 1], + [26, -116], + [104, -76], + [29, -78], + [81, -84], + [-24, -39], + [-46, -14], + [-20, -22], + [18, -7] + ], + [ + [13620, 10931], + [-41, -5], + [-126, -84], + [-93, 65], + [-48, 74], + [-51, 35], + [-95, -1], + [-56, 44], + [-45, -46], + [-87, -238], + [-141, -90], + [56, -144], + [-43, -70], + [42, -54], + [6, -36], + [-10, -22], + [-76, -49], + [9, 19], + [-121, 17], + [-15, 31], + [-70, 25], + [3, 41], + [-15, 21], + [-37, 1], + [-39, -35], + [-47, 124], + [-75, 1], + [-93, 68], + [-44, 118], + [-36, 18], + [15, 47], + [-11, 117], + [-66, 28], + [-66, -22], + [6, -46], + [-94, -25], + [-19, 20], + [41, 45], + [-2, 19], + [-29, 32], + [-95, 56], + [-12, 84], + [-18, 33], + [-88, -95], + [-33, 1], + [-54, 73], + [5, 26], + [-127, -38], + [-17, 22], + [-83, -9], + [-1, 54], + [-27, 11], + [-23, 46], + [-34, 6], + [-42, -32], + [-63, 62], + [-103, 16], + [-52, -34] + ], + [ + [11140, 11256], + [-19, 5], + [-21, 96], + [-26, 5], + [-14, -37], + [-59, -25], + [-7, 50], + [-54, 13], + [-9, 23], + [77, 108], + [-7, 40], + [55, 62], + [3, -26], + [19, -12], + [29, 84], + [45, 18], + [67, -2], + [11, 53], + [-65, -35], + [-29, 8], + [-10, 38], + [-61, 57], + [-112, -32], + [-17, 89], + [-52, 49], + [-74, -3], + [-7, -68], + [-45, -17], + [-34, 16], + [-30, 60], + [-22, -2], + [-18, 24], + [-89, -26] + ], + [ + [10565, 11869], + [-25, 90], + [120, 55], + [28, 59], + [69, 28], + [-40, 108], + [27, 20], + [-80, 99], + [-27, 93], + [-17, 4], + [-21, -36], + [-24, 1], + [-64, 147], + [-46, 6], + [-16, 26], + [-41, -11], + [-44, 61], + [-17, -1], + [-71, 80], + [15, 41], + [-47, 90], + [-18, -5], + [-8, 18], + [-47, 15], + [-31, 56], + [-41, -13], + [-21, 67], + [25, 16], + [-1, 62], + [-11, 30], + [-50, 0], + [1, 25], + [-70, 131], + [15, 16], + [-12, 67], + [-67, 33], + [15, 35], + [-10, 30], + [-112, -8], + [-27, 54], + [-28, 16], + [-12, -4], + [10, -30], + [-37, 16], + [-57, -62], + [-112, 51], + [-24, -8], + [-23, -42] + ], + [ + [9491, 13395], + [-103, 31], + [-9, 52], + [-18, -47], + [-16, 6], + [24, 162], + [-90, 28], + [-29, -38], + [-19, 13], + [-17, 78], + [-18, 15], + [-48, -7], + [-6, -88], + [-36, -11], + [-17, 44], + [-43, -1], + [-20, 16], + [-72, -11], + [-83, 58], + [-42, 3] + ], + [ + [9484, 16492], + [109, -102], + [231, 69], + [52, 3], + [225, -102], + [58, -117], + [56, -49], + [130, 8], + [23, -11], + [158, -183], + [99, -87], + [118, -60], + [171, -23], + [29, -52], + [136, -32], + [158, -124], + [7, -62], + [197, -368], + [135, -335], + [83, -86], + [4, -30], + [-25, 2], + [-79, 59], + [-93, -37], + [-16, -21], + [-63, 15], + [62, -131], + [19, -83], + [47, -20], + [81, -207], + [-12, -59], + [47, -46], + [19, -90], + [44, -95], + [-8, -63], + [54, -65], + [30, 3], + [20, -28], + [15, -83], + [41, -38], + [8, -75], + [-19, -31], + [82, -163], + [76, -80], + [30, -17], + [18, 11], + [22, -35], + [-5, -72], + [227, -357], + [36, -119], + [97, -156], + [-1, -83], + [38, -57], + [4, -52], + [32, -29], + [39, -113], + [84, -75], + [20, -43], + [0, -44], + [36, -32], + [18, -62], + [-21, -47], + [-106, -94], + [6, -137], + [25, -56], + [45, -32], + [57, -8], + [46, -36], + [-1, -99], + [12, -79], + [25, -48], + [71, -13], + [115, 3], + [48, 16], + [46, 35], + [180, 11], + [31, -59], + [90, 27] + ], + [ + [10565, 11869], + [-4, -44], + [-73, -56], + [-31, 2], + [-18, -17], + [-34, -143], + [-18, -12], + [-42, 8], + [-51, -28], + [-61, 119], + [-93, 34], + [-61, -11], + [123, -161], + [-16, -42], + [-188, 22], + [-14, -43], + [13, -37], + [61, -50], + [31, -70], + [-28, -18], + [-104, 55], + [1, -25], + [-20, -18], + [-8, -108], + [36, -32], + [-17, -50], + [11, -27], + [-35, -25], + [32, -32], + [-35, 2], + [-7, -34], + [24, -44], + [44, -11], + [52, 32], + [21, 60], + [17, 6], + [32, -46], + [38, -114], + [-15, -44], + [-97, -24], + [-27, -98], + [57, -56], + [-6, -78], + [57, -67], + [83, -10], + [26, 14], + [65, -23], + [89, -5], + [39, 9], + [58, -20], + [41, 31], + [-9, 154], + [18, 43], + [40, 18] + ], + [ + [10562, 10755], + [108, -38], + [24, -23], + [229, -49], + [3, -40], + [76, -42], + [21, -29], + [63, 6], + [-37, -22], + [48, -69], + [51, 30], + [29, -57], + [10, -99], + [66, -142], + [0, -81], + [85, -28], + [20, -166], + [62, -93], + [62, -272] + ], + [ + [11482, 9541], + [-64, -25], + [-137, 73], + [-47, -4], + [-46, -19], + [-14, -23], + [2, -34], + [-15, -7], + [-15, 13], + [-121, 17], + [-21, -24], + [-44, -6], + [-76, 29], + [-102, -39], + [-10, -24], + [-147, -43], + [-77, 21], + [-45, 47], + [-34, -4], + [1, 42], + [-52, 2], + [-11, 28], + [-121, -24], + [-12, -35], + [-29, -11], + [-69, 6], + [1, -27], + [-210, -69], + [-37, -30], + [-167, -28], + [-65, -33], + [-99, -16], + [-65, -32], + [-36, 2], + [-27, 19], + [-41, -6], + [-53, 43], + [-60, 4], + [-8, -15], + [-128, -22], + [-114, -4], + [-46, 12], + [-88, -22], + [-163, 55], + [-132, 21], + [-73, -5], + [-39, 33], + [-63, -47], + [-106, 42], + [-196, 19] + ], + [ + [8161, 9391], + [-269, 77], + [12, 95], + [-65, -4], + [-17, 60], + [5, 66], + [-68, 53], + [-31, -21], + [-25, 2], + [-21, 27], + [-110, 12], + [-2, -13], + [-43, 19], + [-65, 127], + [-69, -7], + [-8, 18], + [-93, 26], + [-3, 27], + [-21, 24], + [-58, -6], + [-22, 15], + [-30, -11], + [-8, 18], + [24, 0], + [5, 18], + [-38, 18], + [-4, 42], + [-20, 2], + [-15, -33], + [-59, -45], + [-30, 38], + [-70, 7], + [-20, 19], + [1, 33], + [-43, -4], + [-43, -23] + ], + [ + [6838, 10067], + [-22, -4] + ], + [ + [6599, 10402], + [40, 55], + [57, -17], + [74, 4], + [55, 42], + [29, 0], + [27, 63], + [31, 15], + [76, -5], + [15, -19], + [64, 9], + [109, -14], + [56, 14], + [3, 35], + [38, 62], + [44, 21], + [52, 2], + [73, -72], + [17, -41], + [2, -82], + [23, -16], + [115, 4], + [89, -33], + [34, 73], + [-20, 10], + [15, 48], + [-16, 32], + [23, 90], + [55, -16], + [26, 15], + [16, 41], + [28, 3], + [19, 82], + [117, 16], + [29, 48], + [38, 5], + [59, 98], + [111, -40], + [-16, 67], + [27, 22], + [24, -10], + [6, -25], + [56, -6], + [7, 32], + [39, 48], + [72, 13], + [50, -8], + [23, 14], + [28, 1], + [10, -19], + [-20, -26], + [23, -43], + [3, -43], + [48, 8], + [17, 60], + [23, 22], + [26, 1], + [46, -42], + [40, 12], + [161, 214], + [-197, 90], + [27, 116], + [-54, 79], + [109, 43], + [106, 10], + [22, 31], + [34, 116], + [17, 142], + [-12, 17], + [-48, -30], + [-53, 4], + [-36, 53], + [193, 20], + [19, 83], + [-127, 76], + [-17, -66], + [-68, -29], + [-131, 9], + [-30, 53], + [52, 80], + [-82, 56], + [12, 75], + [50, 56], + [45, -20], + [14, 16], + [-47, 92], + [103, -7], + [-153, 265], + [4, 65], + [82, 23], + [113, -15], + [26, -38], + [56, -4], + [35, -75], + [98, -73], + [37, 42], + [-53, 61], + [48, 33], + [-18, 74], + [-5, 168], + [80, 1], + [21, -30], + [53, 25], + [2, 29], + [-46, 76], + [-38, 32], + [19, 27], + [46, 4], + [61, -26], + [21, -30], + [117, 35], + [-10, 22], + [10, 72], + [20, 28], + [77, -34], + [27, 63], + [-41, 61], + [9, 50], + [-23, 73] + ], + [ + [7229, 12180], + [25, 91] + ], + [ + [11140, 11256], + [34, -60], + [52, -5], + [18, -21], + [-48, -43], + [-58, -5], + [-17, -34], + [-73, -40], + [-30, 11], + [7, 90], + [22, 14], + [3, 38], + [-22, 43], + [-90, 36], + [-8, 25], + [-67, 3], + [-12, -44], + [34, -91], + [32, -23], + [5, -42], + [31, -51], + [-3, -66], + [-20, -10], + [-20, 10], + [-119, -49], + [-30, -30], + [-64, -5], + [-40, -19], + [-111, -94], + [16, -39] + ], + [ + [11482, 9541], + [20, 47], + [190, -58], + [8, -35], + [-11, -30], + [51, -73], + [39, 44], + [273, 10], + [171, -23], + [87, -43], + [178, -5], + [226, 68], + [56, -27], + [11, 24], + [-21, 27], + [166, 39], + [25, -49], + [130, -5], + [66, -21], + [102, -98], + [101, 0], + [13, 48], + [89, 28] + ], + [ + [13452, 9409], + [42, -55], + [14, -206], + [32, -134], + [-46, -36], + [26, -65], + [4, -241], + [37, 6], + [-2, 43], + [29, 72], + [19, 13], + [16, 52], + [53, 36], + [91, -48], + [42, -97], + [8, -96], + [-82, -40], + [-12, -19], + [-42, -11], + [-32, -32], + [-38, -5] + ], + [ + [9829, 7094], + [-5, -6] + ], + [ + [8453, 6750], + [-48, 56], + [28, 141], + [-44, 55], + [-8, 32], + [-96, -22], + [8, 78], + [-32, 92], + [45, 95], + [-10, 74], + [-40, 46], + [-8, 155], + [8, 21], + [60, 8], + [18, 36], + [4, 40], + [-28, 7], + [-28, 47], + [-1, 30], + [20, 22], + [-15, 65], + [34, 73], + [0, 60], + [46, 94], + [27, 134], + [-3, 33], + [-59, 31], + [-46, 46], + [-35, 122], + [14, 111], + [68, 27], + [67, 66], + [24, 86], + [24, 30], + [1, 33], + [-37, 28], + [-39, 71], + [-85, 18], + [18, 87], + [-9, 27], + [-32, -11], + [-15, 9], + [-6, 70], + [-24, 5], + [-4, 78], + [-14, 27], + [23, 68], + [-5, 39], + [-58, 101] + ], + [ + [10278, 1720], + [-90, 5], + [-22, -23], + [-47, -348], + [-56, -22], + [-51, 35], + [-67, 101], + [-54, 23], + [-87, -33], + [-86, 14], + [-15, -127], + [-53, -47], + [-114, 18], + [-133, -42], + [-31, 11], + [-37, 140], + [-68, 39], + [-78, 6], + [-103, -82], + [-29, 91], + [-345, 221], + [-49, -59], + [43, -31], + [3, -52], + [-133, -76], + [-55, 7], + [-71, -93], + [-2, -81], + [-33, -65], + [-40, -30], + [-1, -89], + [-27, -59], + [-93, 11], + [-19, -46], + [-33, -8], + [-64, -61], + [-32, -9], + [-9, -38], + [68, -108], + [24, -79], + [-20, -2], + [-30, 21], + [-62, 66], + [-69, -10], + [-58, -248], + [-109, -83], + [-41, -63], + [-1, -44], + [74, -37], + [60, -60], + [-8, -61], + [-39, -71], + [-30, -42], + [-87, -3], + [-286, -97], + [26, 81], + [-58, 129], + [-36, 26], + [67, 107], + [-12, 50], + [-121, 105], + [-81, -1], + [-63, 50], + [0, 126], + [-86, 86], + [6, 43], + [91, 57], + [76, 18], + [35, 44], + [14, 57], + [-52, 47], + [-6, 54], + [36, 86], + [24, 36], + [45, 29], + [25, -28], + [33, -6], + [27, 20], + [53, 124], + [-79, 126], + [-3, 55], + [-21, 42], + [-80, 64], + [0, 112], + [26, 51], + [-9, 56], + [-103, 58], + [-21, -12] + ], + [ + [9331, 3927], + [71, -31] + ], + [ + [5922, 8712], + [17, 45] + ], + [ + [6821, 10064], + [17, 3] + ], + [ + [4563, 2772], + [-37, -12], + [-42, -53], + [-12, -78], + [-179, -118], + [-50, -55], + [-6, -52], + [45, -64], + [-41, -4], + [-298, 71], + [-72, 72], + [-62, 23], + [-54, 0], + [-121, 102], + [-31, 43], + [-31, -53], + [-429, 26] + ], + [ + [13452, 9409], + [45, 28], + [60, -17], + [7, -86], + [92, -13], + [96, -48], + [128, 36], + [351, -24], + [145, 40], + [96, -11], + [109, 19], + [45, 99], + [-165, 143], + [-133, 149], + [-17, 53], + [-148, 210], + [-42, 108], + [3, 117], + [-15, 61], + [-219, 158], + [-168, 370], + [-82, 65], + [-20, 65] + ], + [ + [13357, 11462], + [104, 60], + [34, 46], + [-35, 104], + [111, 34], + [11, 31], + [68, -46], + [37, 50], + [-30, 40], + [-10, 133], + [-63, 10], + [-13, 139], + [76, -8], + [97, 29], + [68, 65], + [-13, 90], + [36, 77], + [33, -86], + [34, -39], + [-13, -56], + [48, -19], + [48, -87], + [-61, -40], + [65, -81], + [150, -270], + [167, -204], + [-15, -36], + [-95, -72], + [15, -42], + [81, 44], + [116, 134], + [33, -23], + [17, -94], + [42, -52], + [30, -71], + [54, -1], + [88, 64], + [13, -37], + [-13, -84], + [21, -14], + [55, 49], + [19, 88], + [33, 3], + [-25, -113], + [12, -73], + [61, 3], + [35, 59], + [102, 99], + [173, -190], + [-95, -74], + [-12, -56], + [-36, -34], + [25, -61], + [34, -2], + [165, 87], + [53, -16], + [-8, -39], + [61, -53], + [-85, -40], + [-8, -18], + [-36, -8], + [-78, -105], + [-44, -24], + [12, -69], + [-17, -49], + [11, -29], + [-8, -20], + [26, -38], + [22, -1], + [-52, -153], + [45, -10], + [55, -42], + [46, 12], + [45, -23], + [11, -51], + [-77, -90], + [-39, -117], + [25, -115], + [-58, -46], + [34, -131], + [46, -75], + [-19, -115], + [60, -39], + [28, -38], + [151, -70], + [53, -69], + [30, -8], + [145, 16], + [60, -60], + [42, 1], + [64, -83], + [8, -53] + ], + [ + [15843, 9067], + [-137, -67], + [-85, 14], + [-34, -30] + ], + [ + [15587, 8984], + [-41, -50] + ], + [ + [15546, 8934], + [-33, -27], + [-66, 0], + [-115, -40], + [-212, -126], + [-4, -48], + [-62, -34], + [-3, -51], + [-40, -26], + [-44, 29], + [-75, -3] + ], + [ + [14892, 8608], + [-44, -20] + ], + [ + [14848, 8588], + [-27, -81], + [-20, -13], + [-95, -3], + [5, -88], + [20, 1], + [64, -108], + [-17, -9], + [9, -57], + [58, -25], + [12, -39], + [-21, -34], + [2, -70], + [-37, -27], + [-46, 1], + [-38, -43], + [-17, -56] + ], + [ + [14848, 8588], + [44, 20] + ], + [ + [15546, 8934], + [41, 50] + ], + [ + [15843, 9067], + [3, -21], + [68, -60], + [57, -6], + [0, -35], + [30, -5], + [-1, -34], + [89, -74], + [-41, -85], + [36, -110], + [178, -221], + [147, -65], + [24, -46], + [8, -136], + [74, -78], + [-104, -187], + [-90, 18], + [-59, -25], + [-46, 25], + [-9, 19], + [67, 53], + [-32, 50], + [-50, -28], + [-43, -46], + [-65, 20], + [19, 39], + [26, 16], + [-54, 63], + [-46, 25], + [-47, -14], + [-71, -45], + [6, -25], + [-48, -32], + [4, -26], + [-47, -41], + [-25, -11], + [-58, 7], + [-96, -65], + [15, -48], + [-15, -40], + [26, -16], + [33, 7], + [82, -108], + [10, -52], + [-15, -48], + [57, -21], + [5, -92], + [36, 8], + [31, -52], + [36, 8], + [275, -137], + [47, 39], + [42, 62], + [52, 6], + [-6, -165], + [30, -3], + [33, 31], + [27, -5], + [-1, -54], + [28, 6], + [56, 53], + [68, 94], + [-20, -252], + [52, 7], + [51, -30], + [35, -65], + [89, -46], + [11, -76], + [51, -17], + [15, -39], + [-34, -54], + [-48, -20], + [32, -51], + [-31, -107], + [39, -37], + [-20, -47], + [-96, -70], + [194, -102], + [2, -44], + [-45, -158], + [-62, -31], + [-41, 5], + [-27, -33], + [5, -34], + [37, -26], + [8, -50], + [-51, -173], + [6, -28], + [76, -77], + [8, -132], + [115, -20], + [31, -29], + [-7, -30], + [-73, -63], + [-107, -131], + [-59, -28], + [-38, 9], + [-22, 24], + [-4, 40], + [26, 108], + [-78, 56], + [8, 44], + [-16, 48], + [-97, 39], + [-42, 38], + [-41, 86], + [-51, -74], + [-82, -69], + [-62, 21], + [-92, -1], + [-55, 22], + [-36, 44], + [14, 71], + [-19, 24], + [-34, -12] + ] + ], + "transform": { + "scale": [0.0001801275543254225, 0.00015386147054346168], + "translate": [73.885375, 29.543882000000004] + }, + "objects": { + "punjab_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]], + "type": "Polygon", + "properties": { + "cartodb_id": 186, + "censuscode": 43, + "st_cen_cd": 3, + "dt_cen_cd": 9, + "district": "Firozpur", + "st_nm": "Punjab" + } + }, + { + "arcs": [[10, 11, 12, 13]], + "type": "Polygon", + "properties": { + "cartodb_id": 212, + "censuscode": 35, + "st_cen_cd": 3, + "dt_cen_cd": 1, + "district": "Gurdaspur", + "st_nm": "Punjab" + } + }, + { + "arcs": [[[14, 15, 16, 17]], [[18]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 438, + "censuscode": 48, + "st_cen_cd": 3, + "dt_cen_cd": 14, + "district": "Patiala", + "st_nm": "Punjab" + } + }, + { + "arcs": [[19, 20, 21, 22, -9, 23]], + "type": "Polygon", + "properties": { + "cartodb_id": 559, + "censuscode": 50, + "st_cen_cd": 3, + "dt_cen_cd": 16, + "district": "Tarn Taran", + "st_nm": "Punjab" + } + }, + { + "arcs": [[-13, 24, -20, 25]], + "type": "Polygon", + "properties": { + "cartodb_id": 18, + "censuscode": 49, + "st_cen_cd": 3, + "dt_cen_cd": 15, + "district": "Amritsar", + "st_nm": "Punjab" + } + }, + { + "arcs": [[26, -16, 27, 28, 29, 30, 31], [-19]], + "type": "Polygon", + "properties": { + "cartodb_id": 500, + "censuscode": 53, + "st_cen_cd": 3, + "dt_cen_cd": 19, + "district": "Sangrur", + "st_nm": "Punjab" + } + }, + { + "arcs": [[-31, 32, 33, 34, 35, 36, 37]], + "type": "Polygon", + "properties": { + "cartodb_id": 58, + "censuscode": 54, + "st_cen_cd": 3, + "dt_cen_cd": 20, + "district": "Barnala", + "st_nm": "Punjab" + } + }, + { + "arcs": [[-35, 38, 39, 40, 41, 42]], + "type": "Polygon", + "properties": { + "cartodb_id": 63, + "censuscode": 46, + "st_cen_cd": 3, + "dt_cen_cd": 12, + "district": "Bathinda", + "st_nm": "Punjab" + } + }, + { + "arcs": [[43, -42, 44, -6]], + "type": "Polygon", + "properties": { + "cartodb_id": 180, + "censuscode": 45, + "st_cen_cd": 3, + "dt_cen_cd": 11, + "district": "Faridkot", + "st_nm": "Punjab" + } + }, + { + "arcs": [[-27, 45, 46, 47, -17]], + "type": "Polygon", + "properties": { + "cartodb_id": 183, + "censuscode": 40, + "st_cen_cd": 3, + "dt_cen_cd": 6, + "district": "Fatehgarh Sahib", + "st_nm": "Punjab" + } + }, + { + "arcs": [[48, 49, 50, 51, 52, -11, 53]], + "type": "Polygon", + "properties": { + "cartodb_id": 230, + "censuscode": 38, + "st_cen_cd": 3, + "dt_cen_cd": 4, + "district": "Hoshiarpur", + "st_nm": "Punjab" + } + }, + { + "arcs": [[54, 55, 56, 57, 58, -1, 59, -52]], + "type": "Polygon", + "properties": { + "cartodb_id": 243, + "censuscode": 37, + "st_cen_cd": 3, + "dt_cen_cd": 3, + "district": "Jalandhar", + "st_nm": "Punjab" + } + }, + { + "arcs": [[[-60, -10, -23, 60, -21, -25, -12, -53]], [[61, -55, -51]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 282, + "censuscode": 36, + "st_cen_cd": 3, + "dt_cen_cd": 2, + "district": "Kapurthala", + "st_nm": "Punjab" + } + }, + { + "arcs": [[62, 63, -46, -32, 64, -37, 65, -57]], + "type": "Polygon", + "properties": { + "cartodb_id": 346, + "censuscode": 41, + "st_cen_cd": 3, + "dt_cen_cd": 7, + "district": "Ludhiana", + "st_nm": "Punjab" + } + }, + { + "arcs": [[66, -39, -34, 67, -29]], + "type": "Polygon", + "properties": { + "cartodb_id": 367, + "censuscode": 47, + "st_cen_cd": 3, + "dt_cen_cd": 13, + "district": "Mansa", + "st_nm": "Punjab" + } + }, + { + "arcs": [[-66, -36, -43, -44, -5, 68, -3, 69, -58]], + "type": "Polygon", + "properties": { + "cartodb_id": 376, + "censuscode": 42, + "st_cen_cd": 3, + "dt_cen_cd": 8, + "district": "Moga", + "st_nm": "Punjab" + } + }, + { + "arcs": [[-41, 70, -7, -45]], + "type": "Polygon", + "properties": { + "cartodb_id": 381, + "censuscode": 44, + "st_cen_cd": 3, + "dt_cen_cd": 10, + "district": "Muktsar", + "st_nm": "Punjab" + } + }, + { + "arcs": [[-64, 71, -49, 72, 73, 74, 75, 76, 77, -47]], + "type": "Polygon", + "properties": { + "cartodb_id": 487, + "censuscode": 51, + "st_cen_cd": 3, + "dt_cen_cd": 17, + "district": "Rupnagar", + "st_nm": "Punjab" + } + }, + { + "arcs": [[-18, -48, -78, 78, -76, 79, -74, 80]], + "type": "Polygon", + "properties": { + "cartodb_id": 493, + "censuscode": 52, + "st_cen_cd": 3, + "dt_cen_cd": 18, + "district": "Sahibzada Ajit Singh Nagar", + "st_nm": "Punjab" + } + }, + { + "arcs": [[-50, -72, -63, -56, -62]], + "type": "Polygon", + "properties": { + "cartodb_id": 512, + "censuscode": 39, + "st_cen_cd": 3, + "dt_cen_cd": 5, + "district": "Shaheed Bhagat Singh Nagar", + "st_nm": "Punjab" + } + } + ] + } + } +} diff --git a/public/maps/rajasthan.json b/public/maps/rajasthan.json index 11cfd81d6e..f9c9e690de 100644 --- a/public/maps/rajasthan.json +++ b/public/maps/rajasthan.json @@ -1 +1,2781 @@ -{"type":"Topology","arcs":[[[7369,2862],[-52,-12],[13,-54],[-59,-25],[0,-124],[-59,-3],[-39,-40],[-40,21],[-87,6],[-42,31],[-15,59],[-43,-4],[-45,44],[-7,-99],[37,-67],[3,-58],[60,-23],[140,-5],[-25,-60],[0,-68],[-41,-7],[-36,-56],[-60,-6],[-50,74],[-40,82],[-49,-33],[-7,-79],[54,-24],[-43,-50],[8,-38],[-54,-20],[11,-61],[-56,-66]],[[6746,2097],[-52,-27],[-81,-18],[-25,26],[-63,-21],[6,-66],[-14,-46],[-40,-34],[20,-91],[-13,-52],[-37,-27],[-18,-57]],[[6429,1684],[-66,34]],[[6363,1718],[-3,68]],[[6360,1786],[-36,28]],[[6324,1814],[-43,38],[16,106],[-87,104],[-49,17],[-27,-66],[-40,19],[52,100],[39,50],[-72,74],[-15,57],[-78,110],[-41,12],[-16,60],[19,103]],[[5982,2598],[86,113],[15,71],[36,24],[56,-5],[59,29],[4,29],[-78,48]],[[6160,2907],[115,108],[86,92],[56,-51],[49,56],[23,-36],[50,-7],[15,-63],[62,14],[59,58],[117,6],[35,28],[24,-76],[68,-1],[27,35],[78,-73],[43,17],[15,-49],[78,31],[48,-14],[58,11],[15,-25],[99,-25],[-11,-81]],[[7699,2850],[209,-12],[12,-31]],[[7920,2807],[41,-31],[14,-43],[122,-99],[78,-14],[-23,-119],[-19,-34]],[[8133,2467],[-72,-14],[-65,-41],[-27,-38],[-59,-19],[-41,50],[-60,-4],[-108,-39],[-294,62],[-37,36],[-5,41],[33,46],[-21,93],[63,16],[-11,-50],[55,-16],[21,-50],[151,70],[-118,33],[-19,-25],[-64,29],[7,36],[91,71],[-23,63],[40,26]],[[7570,2843],[129,7]],[[6213,10001],[-49,-69],[27,-80],[-101,-10],[9,-41],[-51,-27],[-22,-57],[-72,-31],[-25,-49],[-63,22],[-41,-6],[15,-55],[-62,-8],[-47,-30],[-13,-37],[-148,-41],[16,-101],[92,-48],[44,-85],[-99,-58],[24,-69],[99,30],[62,-41],[49,-86],[91,-36],[32,23],[64,-6],[57,34],[32,-31],[-30,-54],[-16,-123],[-46,-15],[-5,-40],[-80,-97],[-39,-32],[-9,-2],[-10,-7],[-16,-8],[-3,-2],[0,0]],[[5879,8628],[1,4]],[[5880,8632],[-28,-76],[7,-39],[-66,-43],[-23,99],[-104,-44],[-101,95],[2,50],[-36,15],[-53,-37],[-96,-11],[-42,27],[-71,-59],[-62,-3],[-44,26],[-77,-30],[-51,27],[-54,-6],[-84,-95],[-68,-16],[-39,-66],[10,-44],[-59,-52],[0,-34],[-56,-40],[-91,-27],[-44,-50],[-70,38],[-29,-17],[-219,104],[-23,-25],[-127,175]],[[4082,8474],[126,71],[242,103],[20,14],[64,159],[110,136],[147,283],[104,186],[89,307],[59,228],[18,25],[274,114],[227,63],[66,61],[155,112],[6,-85],[-83,-107],[-21,-61],[11,-60],[230,-3],[236,-20],[51,1]],[[6200,4914],[18,-96],[1,-74],[-67,-66],[25,-37],[49,-13],[70,58],[48,-36],[-41,-40],[8,-48],[-96,-31],[-19,-93],[-86,-115],[-49,-17],[-66,-96],[37,-50],[-56,-91]],[[5976,4069],[-78,-54]],[[5898,4015],[-65,52],[-81,-49],[-14,-89],[-33,-42],[-1,-80]],[[5704,3807],[-53,-50],[-74,-203],[-36,-42],[-60,-145],[-83,-52],[-73,-87],[-14,-120],[-130,-112],[3,-12]],[[5184,2984],[-53,-41],[-50,0],[-40,-34],[-81,-129],[22,-24],[-24,-76],[-114,-113],[-11,-54],[-111,-51]],[[4722,2462],[20,87],[-22,36],[-54,3],[-94,62],[-27,49],[52,121],[77,46],[31,40],[-17,63],[-80,75],[-20,-27],[11,-53],[-62,-4],[-3,62],[-60,-1],[26,72],[-42,73]],[[4458,3166],[68,20],[6,46],[-28,62],[-4,58],[44,-5],[55,47],[61,98],[-50,57],[-2,77],[-95,62],[-9,30],[-53,21],[-24,64],[-35,18],[0,57],[-100,57],[-44,40]],[[4248,3975],[43,30],[41,-3],[-11,63]],[[4321,4065],[10,40],[150,16],[21,48],[98,47],[11,65],[103,46],[34,-15],[55,62],[87,-48],[53,-13],[55,59],[-23,61],[46,57],[38,-38],[39,-3],[39,-62],[81,-32],[-9,58],[70,18],[67,45],[32,-30],[-4,-69],[58,-22],[50,72],[90,-23],[8,43],[-31,54],[24,62],[-19,43],[30,80],[5,96],[38,72],[34,33]],[[5661,4887],[110,-16],[144,6],[38,34],[98,-37],[81,58],[68,-18]],[[8612,5010],[26,-42]],[[8638,4968],[-48,-41],[19,-25],[-35,-139],[22,-53],[-57,-100],[-95,18],[1,-43],[-49,-3],[16,-83],[-14,-68],[126,-3],[-2,-64],[33,-19],[-51,-62],[46,-20],[41,-51],[59,67],[78,12],[8,-76],[-9,-77],[-39,-2],[4,-73],[68,-55],[60,-22]],[[8820,3986],[-20,-15],[-96,9],[-40,54],[-56,-116]],[[8608,3918],[-71,70],[-62,14],[8,62],[-133,3],[-13,-70],[-54,-3],[-15,79],[-77,-50],[5,-44],[-83,27],[-34,-104],[-67,14],[-82,-75],[-12,-46],[-75,28],[-68,58],[-61,-26]],[[7714,3855],[-95,59],[-92,6]],[[7527,3920],[27,69],[-37,62],[-62,-1],[-18,62],[2,60],[72,6],[27,83],[36,30],[-61,89],[41,73],[-43,23],[-38,-16],[-41,-83],[-32,41],[-42,4],[0,78],[-38,28],[-20,89],[-33,11],[-6,48],[33,48],[-16,54],[5,61],[44,34],[7,60]],[[7334,4933],[46,78],[41,8],[64,62],[57,-8],[27,-82],[49,-29],[81,16],[96,-43],[33,33],[28,-58],[89,-5],[12,31],[77,-28],[22,30],[49,1],[-8,67],[30,20],[66,-22],[26,11],[153,-24],[45,-14],[82,22],[52,41],[61,-30]],[[6338,1803],[-18,-99],[-31,-62],[26,-53],[68,-59],[-13,-69],[-55,4],[-25,30],[-42,-63],[-39,-16],[50,-51],[-1,-53],[-13,-28],[-1,-12]],[[6244,1272],[-13,11]],[[6231,1283],[-51,-14]],[[6180,1269],[-21,-8]],[[6159,1261],[-41,-30],[-31,70],[-36,17],[-19,64],[-35,6],[-68,-71],[-41,17],[-61,-17],[-108,21],[-62,-38],[-15,-30],[-97,15],[-64,-4],[-47,21],[-33,-28],[-102,39],[-57,-43],[-39,-8],[-62,-121],[-49,-15],[-36,-45],[-48,11]],[[5008,1092],[-14,59],[35,74],[43,25],[-12,109],[4,76],[-101,94],[-11,-77],[-47,-51],[-58,-23],[-58,50],[30,76],[-99,36],[-84,91],[44,112],[74,56],[9,72],[-123,63],[30,47],[-18,99],[-56,-43],[-49,25]],[[4547,2062],[-4,17],[99,170],[2,37],[69,74],[9,102]],[[5184,2984],[-3,-93],[29,-32],[-21,-82],[70,-60],[11,-78],[33,-114],[21,-39],[118,21],[69,-73],[51,9],[76,205],[98,-7],[35,-40],[56,56],[57,-87],[98,28]],[[6324,1814],[14,-11]],[[9650,5925],[39,-56],[-26,-47],[44,-69],[24,-123],[-13,-20],[59,-58],[19,-43]],[[9796,5509],[7,1]],[[9803,5510],[0,0],[-7,-2],[-2,1],[-3,-3],[-19,-5],[-7,1],[-70,24],[-59,-5],[-2,71],[-64,79],[-55,33],[-57,7],[-26,-35],[-3,-61],[-41,-46],[7,-34],[-100,-59],[-103,-95],[-90,2],[-60,-69]],[[9042,5314],[-5,-12]],[[9037,5302],[-81,-164],[-26,-73],[71,-13],[24,-74],[-47,-75],[-65,-77],[-66,32],[-25,64],[-94,-19],[-90,65]],[[8612,5010],[-9,76],[38,121],[-16,40],[4,111],[24,66],[74,61],[6,66],[-27,32],[24,69],[4,74],[43,114]],[[8777,5840],[20,-32],[78,-13],[89,112],[13,-61],[38,-18],[28,50],[72,26],[16,63],[76,3],[28,-119],[84,30],[128,-15],[53,91],[30,92],[49,-35],[-12,-64],[47,-35],[36,10]],[[9803,5510],[21,3]],[[9824,5513],[72,-50],[70,-25],[63,12],[45,-56],[49,30],[34,-8],[-12,-121]],[[10145,5295],[1,-30],[49,-83],[-38,-58],[-64,-26],[-105,-65],[16,-89],[30,-59],[62,16],[48,-37],[32,-70]],[[10176,4794],[-62,-36],[-12,-46],[-54,-56],[-82,-56],[-43,10],[-73,-19],[-22,-52],[-94,-28],[-38,-56],[-72,-46],[-56,-11],[-32,-60],[-34,-25]],[[9502,4313],[-46,51],[-6,9]],[[9450,4373],[-47,47],[-42,67],[-49,38],[-44,-21],[-116,70],[32,70],[-46,29],[45,77],[29,-18],[66,40],[13,61],[118,69],[32,60],[37,-4],[96,63],[6,51],[50,-24],[40,102],[-35,83],[-76,10],[-93,-66],[-77,-91],[-37,30],[-92,9],[-5,31],[-72,89],[-45,-1],[-38,25],[-32,19],[-20,12],[-10,6]],[[9038,5306],[4,8]],[[9502,4313],[-5,-41],[-44,-85],[-95,-73],[-112,10],[-19,-49],[-44,2],[-40,-54]],[[9143,4023],[-103,10],[-6,-45],[-54,-59],[-105,-45],[-55,102]],[[9037,5302],[1,4]],[[7731,8520],[26,-58],[-1,-56],[33,-34],[-20,-71],[42,-79],[11,-122],[21,-50],[69,-13],[25,-87],[45,-36]],[[7982,7914],[-72,-17],[-57,-185],[-69,-12],[-13,-43],[-162,-3],[-66,57],[-2,27],[-65,78],[-58,8],[-21,-94],[-86,-16],[17,-50],[-21,-77],[-62,-38],[-65,-18],[-27,-80]],[[7153,7451],[-105,-16],[-72,7],[-31,-68],[-49,-44],[-36,4],[-18,-57],[26,-29],[-20,-75],[-41,-27],[26,-47],[51,-25],[11,-40],[-37,-21],[-80,-10],[3,-49],[72,-27],[26,-54],[-72,-50],[-25,-1],[-19,-68],[28,-40],[-87,-33]],[[6704,6681],[-68,-27],[-28,40],[-144,-15],[-69,38],[-126,-18],[-88,-100],[-48,-122],[-42,-29],[-2,-120],[-65,-19],[-22,73],[-71,26],[-67,81],[-73,-42],[-30,10],[-62,-24],[-31,63]],[[5668,6496],[14,99],[-28,115],[2,134],[71,4],[93,32],[44,-49],[-41,-53],[28,-18],[57,12],[44,76],[56,28],[41,-10],[70,32],[-3,120],[34,46],[-21,46],[9,53],[71,76],[-23,58],[24,78],[55,26],[23,67],[-44,65],[-115,-6],[-46,63],[-12,49],[-61,23],[-97,-15],[-50,62],[40,101],[-2,114],[64,94],[-33,89],[35,49],[109,40],[-33,38],[-10,57]],[[6033,8291],[44,46],[107,-12],[97,69],[36,39],[49,14],[25,-77],[41,-17],[140,13],[29,-23],[46,34],[74,2],[61,25],[20,-39],[57,9],[-39,64],[2,29],[50,49],[66,18],[47,-14],[26,-54],[106,27],[46,30],[8,-129],[75,36],[60,-1],[33,-39],[60,17],[37,39],[-9,63],[69,-14],[33,98],[46,-24],[21,-79],[40,76],[60,-6],[35,-40]],[[9143,4023],[-48,-60],[-4,-97],[-57,-19],[-6,-33],[43,-32],[-2,-135],[14,-73],[69,-135]],[[9152,3439],[-22,-26],[-145,-21],[-11,-29],[-90,13],[-52,-20],[-28,-116],[-27,-69],[-44,-13],[1,-71],[-26,-42],[-22,-110],[39,-63],[98,-119],[49,43],[77,-16],[39,-79],[45,-4],[115,-90],[-25,-78],[-85,26],[-61,-57]],[[8977,2498],[2,69],[-58,11],[-45,48],[-66,-45],[-112,-12],[-1,-52],[-28,-53],[-5,-111],[-23,-27],[7,-59],[-95,101],[-59,-26],[-5,-76],[21,-67],[-60,-26],[-91,5],[-53,-33]],[[8306,2145],[-12,49],[-34,6],[-41,47],[-18,168],[-68,52]],[[7920,2807],[93,50],[61,60],[21,42],[-30,94],[54,45],[20,89],[55,-26],[85,-8],[61,59],[41,-51],[52,34],[0,64],[56,30],[62,1],[80,159],[13,78],[31,-12],[85,39],[23,49],[10,127],[28,33],[-45,51],[-108,14],[-59,41],[-1,49]],[[6704,6681],[104,-144],[-59,-44],[9,-53],[97,-27],[6,-47],[70,1],[21,-114],[32,-61],[63,24],[80,1],[83,55],[58,-12],[-3,-47],[67,-41],[-124,-140],[69,-12],[-9,-40],[77,-62],[159,-17],[19,43]],[[7523,5944],[37,-28],[-6,-67],[-154,-15],[3,-40],[46,-31],[-70,-39],[-1,-49],[-49,-17],[0,-42],[-196,18],[1,-73],[-49,-7]],[[7085,5554],[9,74],[-93,51],[-77,-2],[-32,-78],[5,-31],[-34,-68],[-39,-6],[9,-73],[-41,-40],[-67,1],[-42,-87],[62,-9],[11,-43],[-61,-118],[-72,-41],[-1,49],[-31,43],[-111,-152],[-45,-49],[-126,-3],[-49,-67],[-60,9]],[[5661,4887],[-21,54],[-81,54],[-50,52],[-44,17],[-62,183],[-30,46],[36,66],[-60,122],[-56,34],[-74,-7],[-23,33],[-70,-12],[-27,20],[-142,-43],[-147,17],[-28,19],[-17,66],[-71,24],[-11,32],[49,38],[7,48],[44,45],[-52,94],[17,22],[-11,91],[-32,53],[28,24],[13,62]],[[4746,6141],[58,-25],[44,70],[33,-32],[21,-70],[86,-85],[31,92],[109,79],[57,27],[-12,39],[15,107],[43,87],[52,-19],[42,12],[6,71],[52,38],[61,-66],[87,13],[23,-38],[51,4],[63,51]],[[7153,7451],[58,-9],[20,-47],[50,-36],[-33,-102],[59,-56],[60,-167],[45,-47],[15,-98],[63,3],[-1,-61],[-33,-9],[32,-70],[78,-23],[88,-81],[153,94],[107,-9],[23,19],[42,-61],[25,-1],[29,120],[75,112],[45,36],[163,103]],[[8316,7061],[70,-35],[-3,-65],[96,-24],[39,4]],[[8518,6941],[13,-23],[-34,-81],[-47,-63],[-56,-41],[-15,-69],[-49,-49],[14,-55],[-19,-127],[21,-29],[-76,-28],[-32,-58],[-99,-52],[-70,34],[-19,-51],[-77,-5],[-66,-74],[-44,-12],[-9,51],[-54,3],[-70,-79],[-57,17],[-48,-27],[-4,-75],[-82,-24],[-16,-80]],[[7085,5554],[-26,-63],[-51,-14],[33,-132],[51,23],[23,-45],[-46,-12],[2,-57],[44,5],[28,-31],[59,-21],[19,-59],[-26,-78],[55,0],[15,-48],[47,-33],[22,-56]],[[7527,3920],[-75,-95],[-58,-15],[-87,47],[-52,-38],[-47,57],[-24,62],[-56,46],[36,31],[-27,39],[-93,9],[-52,27],[-132,-15],[-101,67],[-89,-3],[-169,-69],[-2,63],[-89,32],[-23,-12],[-60,56]],[[6327,4209],[2,62],[-58,25],[-63,-59],[-9,-64],[-74,-5],[4,-39],[41,-52]],[[6170,4077],[-12,-6]],[[6158,4071],[-46,44],[-33,-64]],[[6079,4051],[-17,-8]],[[6062,4043],[-86,26]],[[5898,4015],[50,-65],[-2,-25],[-99,-29],[-5,-63],[-32,-46],[-51,-31],[-55,51]],[[9668,6659],[6,-55],[-61,-2],[47,-95],[38,27],[60,-16],[20,-38],[-50,-47],[38,-30],[-63,-39],[-82,50],[-25,-35],[52,-59],[39,12],[21,-48],[46,-24],[40,18],[83,-62],[87,8],[-7,-38],[-69,-18],[-34,-89],[-99,-51],[47,-26],[11,-56],[-113,-6],[-50,-15]],[[8777,5840],[6,61],[-16,74],[-94,-86],[-29,16],[0,76],[-29,45],[-49,33],[67,108],[74,152],[17,103],[-9,53],[-30,40],[-19,101],[65,20],[-7,67],[16,26],[-17,89],[38,39],[-10,67],[-48,2]],[[8703,6926],[-39,34],[8,50],[-38,16],[13,92],[-32,38],[125,104],[84,-73],[32,22],[-12,103],[31,31],[-100,59],[34,22],[63,-26],[8,-33],[146,9],[32,-63],[-36,-29],[-18,-58],[107,-11],[-10,-86],[20,-12],[68,56],[79,13],[-17,96],[45,18],[36,50],[38,-4],[68,40],[-2,53],[56,45],[39,0],[26,-48],[100,-69],[-19,-105],[-37,-107],[11,-237],[-25,2],[-25,-168],[59,-65],[47,-26]],[[9496,1998],[-58,-8],[-57,23],[-66,-59],[-38,45],[-52,-36],[-72,73],[-2,40],[-53,32],[1,79],[-21,31],[13,105],[-68,3],[-46,172]],[[9152,3439],[37,-69],[43,-12],[58,-51],[119,-43],[90,21],[150,-48],[84,5],[67,56],[52,-6],[48,-32],[48,-2],[36,28],[3,61],[110,91],[72,-34],[-23,-109],[40,-39],[-32,-56],[73,-66],[15,-49],[-35,-26],[-6,-77],[-108,-55],[-52,52],[-120,-8],[-16,-37],[-104,-44],[-120,28],[-20,-31],[-112,-32],[-18,-47],[5,-68],[68,-64],[31,-54],[-69,-49],[-82,1],[-38,-19],[57,-83],[-2,-26],[99,-4],[54,15],[11,-40],[61,-24],[52,-105],[7,-106],[-19,-62],[-75,-77],[-41,-20],[-59,40],[5,62],[-24,26],[-70,4],[-41,-27],[48,-92],[-13,-38]],[[3339,4770],[32,-44],[72,-16],[8,-39],[54,-36],[69,-67],[69,10],[41,40],[44,-28],[45,20],[23,69],[51,21],[110,-53],[57,22],[48,-75],[66,-52],[18,-103],[-25,-71],[19,-52],[-98,-43],[1,-42],[106,-64],[136,-117],[36,15]],[[4248,3975],[-27,11],[-42,-77],[40,-21],[-43,-75],[-45,-29],[43,-88],[-56,4],[-117,-14],[-48,-60],[17,-43],[-65,-36],[-63,-75],[-66,-27],[-71,26],[-31,-29],[-1,-44],[-50,-17],[-55,35],[-35,-15],[-81,42],[-73,-14],[-19,59],[-72,15],[-42,-44],[-104,-139],[39,-41],[-20,-54],[-59,-32],[-11,-54],[-40,-26],[-15,-85],[-44,-47],[-14,-46],[-73,-22],[-12,-54],[-61,-65],[-59,66],[-59,-9],[-41,-60],[-62,34],[-131,-59],[-26,3],[-59,-52],[-14,-121],[-33,-42],[-65,-38],[11,-68],[-69,-72],[-27,-73]],[[2198,2303],[-101,38],[-60,63],[-48,126],[-41,79],[-75,119],[-26,87],[-39,217],[-175,191],[-19,67],[-91,100],[19,185],[-15,10],[6,198],[-19,54],[-83,9],[-85,-38],[-177,-18],[-160,58],[-40,92],[-86,77],[-90,153],[-16,221],[64,95]],[[841,4486],[72,-1],[42,-44],[52,62],[50,-23],[81,-2],[56,76],[37,-28],[82,-7],[83,38],[113,-6],[80,20],[-7,-58],[53,-33],[162,-31],[84,-66],[140,87],[-15,51],[-110,103],[85,50],[36,2],[38,59],[79,-24],[66,116],[-6,30],[47,54],[87,29],[47,-60],[118,89],[61,16],[34,-59],[38,46],[74,28],[48,-37],[18,-91],[61,-51],[79,-13],[26,-41],[70,-22],[40,61],[54,-48],[13,-59],[32,-4],[53,36],[83,35],[62,4]],[[7714,3855],[-52,-47],[14,-95],[-66,-98],[-30,-27],[17,-46],[-85,-121],[-55,-2],[80,-84],[23,-54],[123,-69],[21,-48],[-5,-125],[-57,-75],[61,-79],[-4,-35]],[[7570,2843],[-51,31],[-150,-12]],[[6160,2907],[-56,-24],[-35,17],[-10,76],[-21,22],[-72,9],[-38,22],[57,135],[-95,-8],[-29,68],[19,27],[-24,72],[40,75],[5,52],[-46,20],[28,67],[64,7],[-36,110],[50,17],[15,65],[-29,53],[5,62],[126,34],[14,51],[-30,107]],[[6079,4051],[36,-15],[43,35]],[[6170,4077],[101,45],[-23,40],[79,47]],[[5880,8632],[-2,-12]],[[5878,8620],[41,-58],[51,-34],[10,-135],[-80,-96],[100,21],[33,-27]],[[4746,6141],[-15,38],[-8,100],[-32,26],[-101,4],[-71,-39],[-50,30],[-12,63],[-48,-47],[-25,89],[-67,-15],[-7,80],[28,18],[-15,66],[-80,-24],[-10,-58],[-49,44],[-41,74],[-32,-90],[-60,42],[-27,51],[-56,17],[-76,-50],[-67,3],[-16,-35],[-142,-70],[-63,-69],[-38,3],[4,57],[36,8],[6,52]],[[3612,6509],[-3,28],[53,96],[26,84],[-56,23],[-62,-51],[-40,3],[-94,53],[-40,-1],[-30,37],[80,63],[-13,135],[-70,44],[-76,67],[-50,-9],[-54,-45],[-35,14],[-35,59]],[[3113,7109],[21,133],[27,114],[83,118],[167,138],[99,118],[110,357],[27,72],[123,140],[152,73],[160,102]],[[9496,1998],[13,-105],[-16,-40],[45,-104],[90,-104],[-36,-15],[-21,-83],[-57,11],[-84,-19],[-28,56],[-62,-4],[-60,46],[36,80],[-30,32],[-81,-12],[-3,-30],[-55,-41],[11,-48],[-73,-25],[-20,54],[-57,41],[-64,-31],[-79,60],[-77,-12],[-14,-36],[-99,25],[-15,75],[-68,-5],[16,-54],[-40,-55],[17,-108],[-3,-52],[-113,-29],[-26,-36],[-86,-36],[26,-120],[-132,-84],[-32,13],[-99,-58],[-59,69],[-24,-123],[-33,-63],[-46,42],[-90,-2],[-25,24],[-3,62],[-135,105],[11,70],[32,29],[33,70],[74,-46],[-3,-26],[84,1],[45,49],[37,-92],[83,40],[22,93],[65,14],[8,47],[-59,8],[-18,42],[-42,1],[39,118],[68,31],[-17,85],[-62,14],[-35,54],[1,69],[61,92],[79,-58],[80,54],[-4,72],[19,55]],[[3339,4770],[12,136],[-71,80],[92,148],[-76,109],[62,79],[-33,44],[-10,62],[58,39],[6,83],[-82,70],[12,48],[-7,76],[45,81],[-3,58],[-141,33],[-15,62],[-37,-12],[-15,54],[-163,65],[6,46],[46,60],[-2,103],[-17,60],[31,53],[56,9],[63,109],[46,-14],[107,94],[47,-32],[25,-47],[52,-40],[15,-82],[24,-21],[90,52],[8,52],[42,22]],[[6213,10001],[294,-19],[45,-113],[-28,-38],[-53,-19],[-34,-56],[9,-63],[85,14],[87,-2],[-2,-46],[-33,-97],[-15,-132],[58,-46],[-43,-106],[-46,11],[-15,-60],[50,-27],[38,-76],[54,-33],[11,59],[79,-5],[26,-22],[57,9],[44,56],[52,6],[100,-56],[30,-67],[3,-53],[49,-15],[42,29],[70,-86],[90,19],[161,12],[61,57],[-6,-84],[84,41],[27,-109],[-41,-28],[-10,-39],[25,-46],[0,-59],[64,-8],[5,-70],[99,-9],[7,-51],[-25,-49],[-37,-5]],[[5878,8620],[1,8]],[[8518,6941],[120,-63],[65,48]],[[841,4486],[39,88],[10,62],[-11,64],[23,87],[-8,94],[8,84],[-13,97],[-72,55],[-89,18],[-96,-19],[-122,-11],[-97,25],[-87,72],[-287,137],[-39,96],[19,93],[21,206],[96,245],[68,58],[81,90],[215,180],[89,135],[108,86],[65,149],[77,207],[116,133],[110,73],[80,89],[161,38],[65,-11],[58,-28],[110,-124],[13,-139],[65,-112],[39,-38],[64,-15],[113,-6],[165,81],[226,96],[83,25],[177,34],[321,3],[308,126]],[[6823,696],[-41,-34],[-95,-52],[-19,-28],[-53,-4],[-51,-57],[-2,-57],[-35,-28],[-16,-59],[20,-53],[86,-3],[22,-31],[89,13],[57,-87],[-38,-25],[-60,10],[-79,-82],[-81,-19],[-13,-44],[-89,-24],[-44,30],[-54,10],[-47,-53],[-42,-19],[-52,47],[8,34],[-50,87],[-55,20],[-27,-58],[-77,39],[16,69],[-4,55],[-38,43],[-75,2],[-21,54],[-54,7],[-36,64]],[[5773,463],[68,89],[26,150],[35,28],[15,51],[61,15],[22,120],[-18,28],[42,109],[109,41],[102,61],[86,71]],[[6321,1226],[64,0],[59,27],[60,-61],[-17,-55],[50,-27],[6,-121],[-37,-12],[6,-89],[-15,-52],[100,-9],[63,16],[18,33],[46,-19],[32,-53],[66,-38],[1,-70]],[[10283,5338],[-92,-50],[-46,7]],[[9824,5513],[-28,-4]],[[9668,6659],[30,123],[58,113],[81,-50],[59,2],[18,38],[95,-40],[36,44],[54,-41],[10,-71],[28,-45],[11,-79],[-41,-60],[19,-22],[19,-105],[46,-8],[26,-60],[43,-23],[-18,-53],[21,-38],[85,-26],[99,-79],[90,-127],[13,-92],[-51,-1],[-23,-67],[-68,-19],[-35,-38],[62,-17],[-9,-42],[52,-29],[75,-9],[60,-32],[-160,-101],[-125,-39],[-36,-21],[-48,-67],[28,-35],[-14,-48],[25,-57]],[[10283,5338],[58,29],[-15,31],[51,49],[113,18],[139,68],[10,60],[38,22],[153,-47],[49,13],[171,1],[58,-19],[36,77],[98,-12],[33,10],[47,-71],[-62,-40],[9,-56],[-150,-71],[21,-58],[-29,-17],[-2,-74],[-124,23],[-67,-58],[-47,5],[-31,-66],[-77,-30],[-9,-65],[-95,-18],[-16,-39],[-73,-9],[-93,-80],[-61,-20],[-37,-37],[-123,-12],[6,-60],[-86,9]],[[6231,1283],[15,-13]],[[6246,1270],[52,-4],[23,-40]],[[5773,463],[-31,-58],[-57,-6],[-36,85],[-51,74],[-57,-18],[-24,35],[-61,-57],[-17,53],[-93,-5],[16,68],[-10,47],[31,133],[-54,41],[-62,3],[-57,-62],[-33,34],[12,92],[-143,126],[-38,44]],[[6159,1261],[21,8]],[[4458,3166],[-63,4],[-82,59],[-59,-88],[-1,-49],[-39,-41],[-17,-53],[-37,-30],[-28,-88],[-50,-43],[-92,-113],[-73,-5],[-48,-94],[22,-76],[-4,-77],[-21,-21],[-140,16],[-60,-87],[-19,-76],[30,-35]],[[3677,2269],[-53,-10]],[[3624,2259],[-33,9]],[[3591,2268],[-57,16],[-57,-34],[-45,36],[-39,-3],[-46,30],[0,64],[-42,13],[-67,-33],[-23,-46],[-63,-35],[-11,51],[-71,15],[-3,-71],[-74,-2],[-9,69],[-114,-21],[-71,-30],[-58,54],[-103,13],[-63,-8],[-137,-75],[-34,48],[-45,-20],[-31,-48],[-130,52]],[[7982,7914],[34,-32],[60,-17],[54,-43],[31,-63],[155,-66],[83,-106],[41,-22],[-10,-57],[54,-25],[28,-76],[-61,1],[-118,-115],[53,-13],[42,-69],[-46,0],[-24,-70],[9,-75],[-51,-5]],[[6246,1270],[-2,2]],[[6338,1803],[22,-17]],[[6363,1718],[66,-34]],[[6746,2097],[135,-69],[51,-15],[-58,-61],[-33,-55],[-5,-79],[-34,-30],[20,-35],[133,8],[39,-64],[-33,-25],[26,-61],[35,-25],[41,-68],[44,-117],[-39,-81],[-28,-19],[-35,-70],[-12,-56],[6,-106],[38,-44],[-20,-74],[0,-74],[20,-55],[-69,-35],[-45,-71],[-63,-33],[-37,13]],[[4547,2062],[-42,-45],[13,-44],[-34,-41],[36,-35],[-89,-61],[-72,58],[-68,-11],[-107,5],[-50,84],[-1,59],[-45,-5],[-90,24],[-57,49],[-57,-81],[12,-47],[-59,-16],[-36,78],[15,47],[-35,22],[-45,-11],[-36,75],[-82,-20],[-57,61],[37,29],[45,-22],[34,55]],[[3624,2259],[-33,9]]],"transform":{"scale":[0.0007752020218816176,0.0006895090396727725],"translate":[69.484365,23.060463999999996]},"objects":{"rajasthan_district":{"type":"GeometryCollection","geometries":[{"arcs":[[[0,1,2,3,4,5,6,7]],[[8,9,10,11]]],"type":"MultiPolygon","properties":{"cartodb_id":119,"censuscode":126,"st_cen_cd":8,"dt_cen_cd":28,"district":"Chittaurgarh","st_nm":"Rajasthan"}},{"arcs":[[12,13,14,15]],"type":"Polygon","properties":{"cartodb_id":191,"censuscode":99,"st_cen_cd":8,"dt_cen_cd":1,"district":"Ganganagar","st_nm":"Rajasthan"}},{"arcs":[[16,17,18,19,20,21,22,23,24,25]],"type":"Polygon","properties":{"cartodb_id":425,"censuscode":118,"st_cen_cd":8,"dt_cen_cd":20,"district":"Pali","st_nm":"Rajasthan"}},{"arcs":[[26,27,28,29,30,31,32]],"type":"Polygon","properties":{"cartodb_id":580,"censuscode":120,"st_cen_cd":8,"dt_cen_cd":22,"district":"Tonk","st_nm":"Rajasthan"}},{"arcs":[[33,34,35,36,37,38,39,-21,40,-6,41]],"type":"Polygon","properties":{"cartodb_id":583,"censuscode":130,"st_cen_cd":8,"dt_cen_cd":32,"district":"Udaipur","st_nm":"Rajasthan"}},{"arcs":[[42,43,44,45,46,-27,47,48]],"type":"Polygon","properties":{"cartodb_id":628,"censuscode":109,"st_cen_cd":8,"dt_cen_cd":11,"district":"Dausa","st_nm":"Rajasthan"}},{"arcs":[[49,50,51,52,53,54,55,-45]],"type":"Polygon","properties":{"cartodb_id":629,"censuscode":107,"st_cen_cd":8,"dt_cen_cd":9,"district":"Karauli","st_nm":"Rajasthan"}},{"arcs":[[-54,56,57,-28,-47,58,-55]],"type":"Polygon","properties":{"cartodb_id":630,"censuscode":108,"st_cen_cd":8,"dt_cen_cd":10,"district":"Sawai Madhopur","st_nm":"Rajasthan"}},{"arcs":[[59,60,61,62,63,64]],"type":"Polygon","properties":{"cartodb_id":122,"censuscode":102,"st_cen_cd":8,"dt_cen_cd":4,"district":"Churu","st_nm":"Rajasthan"}},{"arcs":[[-58,65,66,67,68,-10,69,-29]],"type":"Polygon","properties":{"cartodb_id":320,"censuscode":127,"st_cen_cd":8,"dt_cen_cd":29,"district":"Kota","st_nm":"Rajasthan"}},{"arcs":[[70,71,72,-26,73,74,-63]],"type":"Polygon","properties":{"cartodb_id":392,"censuscode":112,"st_cen_cd":8,"dt_cen_cd":14,"district":"Nagaur","st_nm":"Rajasthan"}},{"arcs":[[75,76,77,-71,-62]],"type":"Polygon","properties":{"cartodb_id":526,"censuscode":111,"st_cen_cd":8,"dt_cen_cd":13,"district":"Sikar","st_nm":"Rajasthan"}},{"arcs":[[[78,-32,79,80,81,82,83,84,-17,-73]],[[85,-19]]],"type":"MultiPolygon","properties":{"cartodb_id":6,"censuscode":119,"st_cen_cd":8,"dt_cen_cd":21,"district":"Ajmer","st_nm":"Rajasthan"}},{"arcs":[[86,-49,87,88]],"type":"Polygon","properties":{"cartodb_id":13,"censuscode":104,"st_cen_cd":8,"dt_cen_cd":6,"district":"Alwar","st_nm":"Rajasthan"}},{"arcs":[[89,-67,90]],"type":"Polygon","properties":{"cartodb_id":54,"censuscode":128,"st_cen_cd":8,"dt_cen_cd":30,"district":"Baran","st_nm":"Rajasthan"}},{"arcs":[[91,-24,92,93,94]],"type":"Polygon","properties":{"cartodb_id":57,"censuscode":115,"st_cen_cd":8,"dt_cen_cd":17,"district":"Barmer","st_nm":"Rajasthan"}},{"arcs":[[-31,95,-12,96,-8,97,-84,98,-82,99,-80]],"type":"Polygon","properties":{"cartodb_id":75,"censuscode":122,"st_cen_cd":8,"dt_cen_cd":24,"district":"Bhilwara","st_nm":"Rajasthan"}},{"arcs":[[100,101,-64,-75,102,103,104,-15]],"type":"Polygon","properties":{"cartodb_id":85,"censuscode":101,"st_cen_cd":8,"dt_cen_cd":3,"district":"Bikaner","st_nm":"Rajasthan"}},{"arcs":[[-90,105,-68]],"type":"Polygon","properties":{"cartodb_id":258,"censuscode":129,"st_cen_cd":8,"dt_cen_cd":31,"district":"Jhalawar","st_nm":"Rajasthan"}},{"arcs":[[-103,-74,-25,-92,106]],"type":"Polygon","properties":{"cartodb_id":262,"censuscode":113,"st_cen_cd":8,"dt_cen_cd":15,"district":"Jodhpur","st_nm":"Rajasthan"}},{"arcs":[[-13,107,-65,-102,108]],"type":"Polygon","properties":{"cartodb_id":218,"censuscode":100,"st_cen_cd":8,"dt_cen_cd":2,"district":"Hanumangarh","st_nm":"Rajasthan"}},{"arcs":[[-88,-48,-33,-79,-72,-78,109]],"type":"Polygon","properties":{"cartodb_id":240,"censuscode":110,"st_cen_cd":8,"dt_cen_cd":12,"district":"Jaipur","st_nm":"Rajasthan"}},{"arcs":[[-104,-107,-95,110]],"type":"Polygon","properties":{"cartodb_id":241,"censuscode":114,"st_cen_cd":8,"dt_cen_cd":16,"district":"Jaisalmer","st_nm":"Rajasthan"}},{"arcs":[[[-98,-7,-41,-20,-86,-18,-85]],[[-100,-81]],[[-99,-83]]],"type":"MultiPolygon","properties":{"cartodb_id":469,"censuscode":123,"st_cen_cd":8,"dt_cen_cd":25,"district":"Rajsamand","st_nm":"Rajasthan"}},{"arcs":[[111,112,113]],"type":"Polygon","properties":{"cartodb_id":50,"censuscode":125,"st_cen_cd":8,"dt_cen_cd":27,"district":"Banswara","st_nm":"Rajasthan"}},{"arcs":[[114,-51,115,-43,-87,116]],"type":"Polygon","properties":{"cartodb_id":72,"censuscode":105,"st_cen_cd":8,"dt_cen_cd":7,"district":"Bharatpur","st_nm":"Rajasthan"}},{"arcs":[[-70,-9,-96,-30]],"type":"Polygon","properties":{"cartodb_id":95,"censuscode":121,"st_cen_cd":8,"dt_cen_cd":23,"district":"Bundi","st_nm":"Rajasthan"}},{"arcs":[[-52,-115,117]],"type":"Polygon","properties":{"cartodb_id":150,"censuscode":106,"st_cen_cd":8,"dt_cen_cd":8,"district":"Dhaulpur","st_nm":"Rajasthan"}},{"arcs":[[118,119,-113,120,-38,121,-36]],"type":"Polygon","properties":{"cartodb_id":163,"censuscode":124,"st_cen_cd":8,"dt_cen_cd":26,"district":"Dungarpur","st_nm":"Rajasthan"}},{"arcs":[[-23,122,123,124,125,-93]],"type":"Polygon","properties":{"cartodb_id":247,"censuscode":116,"st_cen_cd":8,"dt_cen_cd":18,"district":"Jalor","st_nm":"Rajasthan"}},{"arcs":[[-76,-61,126]],"type":"Polygon","properties":{"cartodb_id":261,"censuscode":103,"st_cen_cd":8,"dt_cen_cd":5,"district":"Jhunjhunu","st_nm":"Rajasthan"}},{"arcs":[[-114,-120,127,-34,128,-4,129,-2,130]],"type":"Polygon","properties":{"cartodb_id":447,"censuscode":131,"st_cen_cd":8,"dt_cen_cd":33,"district":"Pratapgarh","st_nm":"Rajasthan"}},{"arcs":[[-22,-40,131,-123]],"type":"Polygon","properties":{"cartodb_id":531,"censuscode":117,"st_cen_cd":8,"dt_cen_cd":19,"district":"Sirohi","st_nm":"Rajasthan"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [7369, 2862], + [-52, -12], + [13, -54], + [-59, -25], + [0, -124], + [-59, -3], + [-39, -40], + [-40, 21], + [-87, 6], + [-42, 31], + [-15, 59], + [-43, -4], + [-45, 44], + [-7, -99], + [37, -67], + [3, -58], + [60, -23], + [140, -5], + [-25, -60], + [0, -68], + [-41, -7], + [-36, -56], + [-60, -6], + [-50, 74], + [-40, 82], + [-49, -33], + [-7, -79], + [54, -24], + [-43, -50], + [8, -38], + [-54, -20], + [11, -61], + [-56, -66] + ], + [ + [6746, 2097], + [-52, -27], + [-81, -18], + [-25, 26], + [-63, -21], + [6, -66], + [-14, -46], + [-40, -34], + [20, -91], + [-13, -52], + [-37, -27], + [-18, -57] + ], + [ + [6429, 1684], + [-66, 34] + ], + [ + [6363, 1718], + [-3, 68] + ], + [ + [6360, 1786], + [-36, 28] + ], + [ + [6324, 1814], + [-43, 38], + [16, 106], + [-87, 104], + [-49, 17], + [-27, -66], + [-40, 19], + [52, 100], + [39, 50], + [-72, 74], + [-15, 57], + [-78, 110], + [-41, 12], + [-16, 60], + [19, 103] + ], + [ + [5982, 2598], + [86, 113], + [15, 71], + [36, 24], + [56, -5], + [59, 29], + [4, 29], + [-78, 48] + ], + [ + [6160, 2907], + [115, 108], + [86, 92], + [56, -51], + [49, 56], + [23, -36], + [50, -7], + [15, -63], + [62, 14], + [59, 58], + [117, 6], + [35, 28], + [24, -76], + [68, -1], + [27, 35], + [78, -73], + [43, 17], + [15, -49], + [78, 31], + [48, -14], + [58, 11], + [15, -25], + [99, -25], + [-11, -81] + ], + [ + [7699, 2850], + [209, -12], + [12, -31] + ], + [ + [7920, 2807], + [41, -31], + [14, -43], + [122, -99], + [78, -14], + [-23, -119], + [-19, -34] + ], + [ + [8133, 2467], + [-72, -14], + [-65, -41], + [-27, -38], + [-59, -19], + [-41, 50], + [-60, -4], + [-108, -39], + [-294, 62], + [-37, 36], + [-5, 41], + [33, 46], + [-21, 93], + [63, 16], + [-11, -50], + [55, -16], + [21, -50], + [151, 70], + [-118, 33], + [-19, -25], + [-64, 29], + [7, 36], + [91, 71], + [-23, 63], + [40, 26] + ], + [ + [7570, 2843], + [129, 7] + ], + [ + [6213, 10001], + [-49, -69], + [27, -80], + [-101, -10], + [9, -41], + [-51, -27], + [-22, -57], + [-72, -31], + [-25, -49], + [-63, 22], + [-41, -6], + [15, -55], + [-62, -8], + [-47, -30], + [-13, -37], + [-148, -41], + [16, -101], + [92, -48], + [44, -85], + [-99, -58], + [24, -69], + [99, 30], + [62, -41], + [49, -86], + [91, -36], + [32, 23], + [64, -6], + [57, 34], + [32, -31], + [-30, -54], + [-16, -123], + [-46, -15], + [-5, -40], + [-80, -97], + [-39, -32], + [-9, -2], + [-10, -7], + [-16, -8], + [-3, -2], + [0, 0] + ], + [ + [5879, 8628], + [1, 4] + ], + [ + [5880, 8632], + [-28, -76], + [7, -39], + [-66, -43], + [-23, 99], + [-104, -44], + [-101, 95], + [2, 50], + [-36, 15], + [-53, -37], + [-96, -11], + [-42, 27], + [-71, -59], + [-62, -3], + [-44, 26], + [-77, -30], + [-51, 27], + [-54, -6], + [-84, -95], + [-68, -16], + [-39, -66], + [10, -44], + [-59, -52], + [0, -34], + [-56, -40], + [-91, -27], + [-44, -50], + [-70, 38], + [-29, -17], + [-219, 104], + [-23, -25], + [-127, 175] + ], + [ + [4082, 8474], + [126, 71], + [242, 103], + [20, 14], + [64, 159], + [110, 136], + [147, 283], + [104, 186], + [89, 307], + [59, 228], + [18, 25], + [274, 114], + [227, 63], + [66, 61], + [155, 112], + [6, -85], + [-83, -107], + [-21, -61], + [11, -60], + [230, -3], + [236, -20], + [51, 1] + ], + [ + [6200, 4914], + [18, -96], + [1, -74], + [-67, -66], + [25, -37], + [49, -13], + [70, 58], + [48, -36], + [-41, -40], + [8, -48], + [-96, -31], + [-19, -93], + [-86, -115], + [-49, -17], + [-66, -96], + [37, -50], + [-56, -91] + ], + [ + [5976, 4069], + [-78, -54] + ], + [ + [5898, 4015], + [-65, 52], + [-81, -49], + [-14, -89], + [-33, -42], + [-1, -80] + ], + [ + [5704, 3807], + [-53, -50], + [-74, -203], + [-36, -42], + [-60, -145], + [-83, -52], + [-73, -87], + [-14, -120], + [-130, -112], + [3, -12] + ], + [ + [5184, 2984], + [-53, -41], + [-50, 0], + [-40, -34], + [-81, -129], + [22, -24], + [-24, -76], + [-114, -113], + [-11, -54], + [-111, -51] + ], + [ + [4722, 2462], + [20, 87], + [-22, 36], + [-54, 3], + [-94, 62], + [-27, 49], + [52, 121], + [77, 46], + [31, 40], + [-17, 63], + [-80, 75], + [-20, -27], + [11, -53], + [-62, -4], + [-3, 62], + [-60, -1], + [26, 72], + [-42, 73] + ], + [ + [4458, 3166], + [68, 20], + [6, 46], + [-28, 62], + [-4, 58], + [44, -5], + [55, 47], + [61, 98], + [-50, 57], + [-2, 77], + [-95, 62], + [-9, 30], + [-53, 21], + [-24, 64], + [-35, 18], + [0, 57], + [-100, 57], + [-44, 40] + ], + [ + [4248, 3975], + [43, 30], + [41, -3], + [-11, 63] + ], + [ + [4321, 4065], + [10, 40], + [150, 16], + [21, 48], + [98, 47], + [11, 65], + [103, 46], + [34, -15], + [55, 62], + [87, -48], + [53, -13], + [55, 59], + [-23, 61], + [46, 57], + [38, -38], + [39, -3], + [39, -62], + [81, -32], + [-9, 58], + [70, 18], + [67, 45], + [32, -30], + [-4, -69], + [58, -22], + [50, 72], + [90, -23], + [8, 43], + [-31, 54], + [24, 62], + [-19, 43], + [30, 80], + [5, 96], + [38, 72], + [34, 33] + ], + [ + [5661, 4887], + [110, -16], + [144, 6], + [38, 34], + [98, -37], + [81, 58], + [68, -18] + ], + [ + [8612, 5010], + [26, -42] + ], + [ + [8638, 4968], + [-48, -41], + [19, -25], + [-35, -139], + [22, -53], + [-57, -100], + [-95, 18], + [1, -43], + [-49, -3], + [16, -83], + [-14, -68], + [126, -3], + [-2, -64], + [33, -19], + [-51, -62], + [46, -20], + [41, -51], + [59, 67], + [78, 12], + [8, -76], + [-9, -77], + [-39, -2], + [4, -73], + [68, -55], + [60, -22] + ], + [ + [8820, 3986], + [-20, -15], + [-96, 9], + [-40, 54], + [-56, -116] + ], + [ + [8608, 3918], + [-71, 70], + [-62, 14], + [8, 62], + [-133, 3], + [-13, -70], + [-54, -3], + [-15, 79], + [-77, -50], + [5, -44], + [-83, 27], + [-34, -104], + [-67, 14], + [-82, -75], + [-12, -46], + [-75, 28], + [-68, 58], + [-61, -26] + ], + [ + [7714, 3855], + [-95, 59], + [-92, 6] + ], + [ + [7527, 3920], + [27, 69], + [-37, 62], + [-62, -1], + [-18, 62], + [2, 60], + [72, 6], + [27, 83], + [36, 30], + [-61, 89], + [41, 73], + [-43, 23], + [-38, -16], + [-41, -83], + [-32, 41], + [-42, 4], + [0, 78], + [-38, 28], + [-20, 89], + [-33, 11], + [-6, 48], + [33, 48], + [-16, 54], + [5, 61], + [44, 34], + [7, 60] + ], + [ + [7334, 4933], + [46, 78], + [41, 8], + [64, 62], + [57, -8], + [27, -82], + [49, -29], + [81, 16], + [96, -43], + [33, 33], + [28, -58], + [89, -5], + [12, 31], + [77, -28], + [22, 30], + [49, 1], + [-8, 67], + [30, 20], + [66, -22], + [26, 11], + [153, -24], + [45, -14], + [82, 22], + [52, 41], + [61, -30] + ], + [ + [6338, 1803], + [-18, -99], + [-31, -62], + [26, -53], + [68, -59], + [-13, -69], + [-55, 4], + [-25, 30], + [-42, -63], + [-39, -16], + [50, -51], + [-1, -53], + [-13, -28], + [-1, -12] + ], + [ + [6244, 1272], + [-13, 11] + ], + [ + [6231, 1283], + [-51, -14] + ], + [ + [6180, 1269], + [-21, -8] + ], + [ + [6159, 1261], + [-41, -30], + [-31, 70], + [-36, 17], + [-19, 64], + [-35, 6], + [-68, -71], + [-41, 17], + [-61, -17], + [-108, 21], + [-62, -38], + [-15, -30], + [-97, 15], + [-64, -4], + [-47, 21], + [-33, -28], + [-102, 39], + [-57, -43], + [-39, -8], + [-62, -121], + [-49, -15], + [-36, -45], + [-48, 11] + ], + [ + [5008, 1092], + [-14, 59], + [35, 74], + [43, 25], + [-12, 109], + [4, 76], + [-101, 94], + [-11, -77], + [-47, -51], + [-58, -23], + [-58, 50], + [30, 76], + [-99, 36], + [-84, 91], + [44, 112], + [74, 56], + [9, 72], + [-123, 63], + [30, 47], + [-18, 99], + [-56, -43], + [-49, 25] + ], + [ + [4547, 2062], + [-4, 17], + [99, 170], + [2, 37], + [69, 74], + [9, 102] + ], + [ + [5184, 2984], + [-3, -93], + [29, -32], + [-21, -82], + [70, -60], + [11, -78], + [33, -114], + [21, -39], + [118, 21], + [69, -73], + [51, 9], + [76, 205], + [98, -7], + [35, -40], + [56, 56], + [57, -87], + [98, 28] + ], + [ + [6324, 1814], + [14, -11] + ], + [ + [9650, 5925], + [39, -56], + [-26, -47], + [44, -69], + [24, -123], + [-13, -20], + [59, -58], + [19, -43] + ], + [ + [9796, 5509], + [7, 1] + ], + [ + [9803, 5510], + [0, 0], + [-7, -2], + [-2, 1], + [-3, -3], + [-19, -5], + [-7, 1], + [-70, 24], + [-59, -5], + [-2, 71], + [-64, 79], + [-55, 33], + [-57, 7], + [-26, -35], + [-3, -61], + [-41, -46], + [7, -34], + [-100, -59], + [-103, -95], + [-90, 2], + [-60, -69] + ], + [ + [9042, 5314], + [-5, -12] + ], + [ + [9037, 5302], + [-81, -164], + [-26, -73], + [71, -13], + [24, -74], + [-47, -75], + [-65, -77], + [-66, 32], + [-25, 64], + [-94, -19], + [-90, 65] + ], + [ + [8612, 5010], + [-9, 76], + [38, 121], + [-16, 40], + [4, 111], + [24, 66], + [74, 61], + [6, 66], + [-27, 32], + [24, 69], + [4, 74], + [43, 114] + ], + [ + [8777, 5840], + [20, -32], + [78, -13], + [89, 112], + [13, -61], + [38, -18], + [28, 50], + [72, 26], + [16, 63], + [76, 3], + [28, -119], + [84, 30], + [128, -15], + [53, 91], + [30, 92], + [49, -35], + [-12, -64], + [47, -35], + [36, 10] + ], + [ + [9803, 5510], + [21, 3] + ], + [ + [9824, 5513], + [72, -50], + [70, -25], + [63, 12], + [45, -56], + [49, 30], + [34, -8], + [-12, -121] + ], + [ + [10145, 5295], + [1, -30], + [49, -83], + [-38, -58], + [-64, -26], + [-105, -65], + [16, -89], + [30, -59], + [62, 16], + [48, -37], + [32, -70] + ], + [ + [10176, 4794], + [-62, -36], + [-12, -46], + [-54, -56], + [-82, -56], + [-43, 10], + [-73, -19], + [-22, -52], + [-94, -28], + [-38, -56], + [-72, -46], + [-56, -11], + [-32, -60], + [-34, -25] + ], + [ + [9502, 4313], + [-46, 51], + [-6, 9] + ], + [ + [9450, 4373], + [-47, 47], + [-42, 67], + [-49, 38], + [-44, -21], + [-116, 70], + [32, 70], + [-46, 29], + [45, 77], + [29, -18], + [66, 40], + [13, 61], + [118, 69], + [32, 60], + [37, -4], + [96, 63], + [6, 51], + [50, -24], + [40, 102], + [-35, 83], + [-76, 10], + [-93, -66], + [-77, -91], + [-37, 30], + [-92, 9], + [-5, 31], + [-72, 89], + [-45, -1], + [-38, 25], + [-32, 19], + [-20, 12], + [-10, 6] + ], + [ + [9038, 5306], + [4, 8] + ], + [ + [9502, 4313], + [-5, -41], + [-44, -85], + [-95, -73], + [-112, 10], + [-19, -49], + [-44, 2], + [-40, -54] + ], + [ + [9143, 4023], + [-103, 10], + [-6, -45], + [-54, -59], + [-105, -45], + [-55, 102] + ], + [ + [9037, 5302], + [1, 4] + ], + [ + [7731, 8520], + [26, -58], + [-1, -56], + [33, -34], + [-20, -71], + [42, -79], + [11, -122], + [21, -50], + [69, -13], + [25, -87], + [45, -36] + ], + [ + [7982, 7914], + [-72, -17], + [-57, -185], + [-69, -12], + [-13, -43], + [-162, -3], + [-66, 57], + [-2, 27], + [-65, 78], + [-58, 8], + [-21, -94], + [-86, -16], + [17, -50], + [-21, -77], + [-62, -38], + [-65, -18], + [-27, -80] + ], + [ + [7153, 7451], + [-105, -16], + [-72, 7], + [-31, -68], + [-49, -44], + [-36, 4], + [-18, -57], + [26, -29], + [-20, -75], + [-41, -27], + [26, -47], + [51, -25], + [11, -40], + [-37, -21], + [-80, -10], + [3, -49], + [72, -27], + [26, -54], + [-72, -50], + [-25, -1], + [-19, -68], + [28, -40], + [-87, -33] + ], + [ + [6704, 6681], + [-68, -27], + [-28, 40], + [-144, -15], + [-69, 38], + [-126, -18], + [-88, -100], + [-48, -122], + [-42, -29], + [-2, -120], + [-65, -19], + [-22, 73], + [-71, 26], + [-67, 81], + [-73, -42], + [-30, 10], + [-62, -24], + [-31, 63] + ], + [ + [5668, 6496], + [14, 99], + [-28, 115], + [2, 134], + [71, 4], + [93, 32], + [44, -49], + [-41, -53], + [28, -18], + [57, 12], + [44, 76], + [56, 28], + [41, -10], + [70, 32], + [-3, 120], + [34, 46], + [-21, 46], + [9, 53], + [71, 76], + [-23, 58], + [24, 78], + [55, 26], + [23, 67], + [-44, 65], + [-115, -6], + [-46, 63], + [-12, 49], + [-61, 23], + [-97, -15], + [-50, 62], + [40, 101], + [-2, 114], + [64, 94], + [-33, 89], + [35, 49], + [109, 40], + [-33, 38], + [-10, 57] + ], + [ + [6033, 8291], + [44, 46], + [107, -12], + [97, 69], + [36, 39], + [49, 14], + [25, -77], + [41, -17], + [140, 13], + [29, -23], + [46, 34], + [74, 2], + [61, 25], + [20, -39], + [57, 9], + [-39, 64], + [2, 29], + [50, 49], + [66, 18], + [47, -14], + [26, -54], + [106, 27], + [46, 30], + [8, -129], + [75, 36], + [60, -1], + [33, -39], + [60, 17], + [37, 39], + [-9, 63], + [69, -14], + [33, 98], + [46, -24], + [21, -79], + [40, 76], + [60, -6], + [35, -40] + ], + [ + [9143, 4023], + [-48, -60], + [-4, -97], + [-57, -19], + [-6, -33], + [43, -32], + [-2, -135], + [14, -73], + [69, -135] + ], + [ + [9152, 3439], + [-22, -26], + [-145, -21], + [-11, -29], + [-90, 13], + [-52, -20], + [-28, -116], + [-27, -69], + [-44, -13], + [1, -71], + [-26, -42], + [-22, -110], + [39, -63], + [98, -119], + [49, 43], + [77, -16], + [39, -79], + [45, -4], + [115, -90], + [-25, -78], + [-85, 26], + [-61, -57] + ], + [ + [8977, 2498], + [2, 69], + [-58, 11], + [-45, 48], + [-66, -45], + [-112, -12], + [-1, -52], + [-28, -53], + [-5, -111], + [-23, -27], + [7, -59], + [-95, 101], + [-59, -26], + [-5, -76], + [21, -67], + [-60, -26], + [-91, 5], + [-53, -33] + ], + [ + [8306, 2145], + [-12, 49], + [-34, 6], + [-41, 47], + [-18, 168], + [-68, 52] + ], + [ + [7920, 2807], + [93, 50], + [61, 60], + [21, 42], + [-30, 94], + [54, 45], + [20, 89], + [55, -26], + [85, -8], + [61, 59], + [41, -51], + [52, 34], + [0, 64], + [56, 30], + [62, 1], + [80, 159], + [13, 78], + [31, -12], + [85, 39], + [23, 49], + [10, 127], + [28, 33], + [-45, 51], + [-108, 14], + [-59, 41], + [-1, 49] + ], + [ + [6704, 6681], + [104, -144], + [-59, -44], + [9, -53], + [97, -27], + [6, -47], + [70, 1], + [21, -114], + [32, -61], + [63, 24], + [80, 1], + [83, 55], + [58, -12], + [-3, -47], + [67, -41], + [-124, -140], + [69, -12], + [-9, -40], + [77, -62], + [159, -17], + [19, 43] + ], + [ + [7523, 5944], + [37, -28], + [-6, -67], + [-154, -15], + [3, -40], + [46, -31], + [-70, -39], + [-1, -49], + [-49, -17], + [0, -42], + [-196, 18], + [1, -73], + [-49, -7] + ], + [ + [7085, 5554], + [9, 74], + [-93, 51], + [-77, -2], + [-32, -78], + [5, -31], + [-34, -68], + [-39, -6], + [9, -73], + [-41, -40], + [-67, 1], + [-42, -87], + [62, -9], + [11, -43], + [-61, -118], + [-72, -41], + [-1, 49], + [-31, 43], + [-111, -152], + [-45, -49], + [-126, -3], + [-49, -67], + [-60, 9] + ], + [ + [5661, 4887], + [-21, 54], + [-81, 54], + [-50, 52], + [-44, 17], + [-62, 183], + [-30, 46], + [36, 66], + [-60, 122], + [-56, 34], + [-74, -7], + [-23, 33], + [-70, -12], + [-27, 20], + [-142, -43], + [-147, 17], + [-28, 19], + [-17, 66], + [-71, 24], + [-11, 32], + [49, 38], + [7, 48], + [44, 45], + [-52, 94], + [17, 22], + [-11, 91], + [-32, 53], + [28, 24], + [13, 62] + ], + [ + [4746, 6141], + [58, -25], + [44, 70], + [33, -32], + [21, -70], + [86, -85], + [31, 92], + [109, 79], + [57, 27], + [-12, 39], + [15, 107], + [43, 87], + [52, -19], + [42, 12], + [6, 71], + [52, 38], + [61, -66], + [87, 13], + [23, -38], + [51, 4], + [63, 51] + ], + [ + [7153, 7451], + [58, -9], + [20, -47], + [50, -36], + [-33, -102], + [59, -56], + [60, -167], + [45, -47], + [15, -98], + [63, 3], + [-1, -61], + [-33, -9], + [32, -70], + [78, -23], + [88, -81], + [153, 94], + [107, -9], + [23, 19], + [42, -61], + [25, -1], + [29, 120], + [75, 112], + [45, 36], + [163, 103] + ], + [ + [8316, 7061], + [70, -35], + [-3, -65], + [96, -24], + [39, 4] + ], + [ + [8518, 6941], + [13, -23], + [-34, -81], + [-47, -63], + [-56, -41], + [-15, -69], + [-49, -49], + [14, -55], + [-19, -127], + [21, -29], + [-76, -28], + [-32, -58], + [-99, -52], + [-70, 34], + [-19, -51], + [-77, -5], + [-66, -74], + [-44, -12], + [-9, 51], + [-54, 3], + [-70, -79], + [-57, 17], + [-48, -27], + [-4, -75], + [-82, -24], + [-16, -80] + ], + [ + [7085, 5554], + [-26, -63], + [-51, -14], + [33, -132], + [51, 23], + [23, -45], + [-46, -12], + [2, -57], + [44, 5], + [28, -31], + [59, -21], + [19, -59], + [-26, -78], + [55, 0], + [15, -48], + [47, -33], + [22, -56] + ], + [ + [7527, 3920], + [-75, -95], + [-58, -15], + [-87, 47], + [-52, -38], + [-47, 57], + [-24, 62], + [-56, 46], + [36, 31], + [-27, 39], + [-93, 9], + [-52, 27], + [-132, -15], + [-101, 67], + [-89, -3], + [-169, -69], + [-2, 63], + [-89, 32], + [-23, -12], + [-60, 56] + ], + [ + [6327, 4209], + [2, 62], + [-58, 25], + [-63, -59], + [-9, -64], + [-74, -5], + [4, -39], + [41, -52] + ], + [ + [6170, 4077], + [-12, -6] + ], + [ + [6158, 4071], + [-46, 44], + [-33, -64] + ], + [ + [6079, 4051], + [-17, -8] + ], + [ + [6062, 4043], + [-86, 26] + ], + [ + [5898, 4015], + [50, -65], + [-2, -25], + [-99, -29], + [-5, -63], + [-32, -46], + [-51, -31], + [-55, 51] + ], + [ + [9668, 6659], + [6, -55], + [-61, -2], + [47, -95], + [38, 27], + [60, -16], + [20, -38], + [-50, -47], + [38, -30], + [-63, -39], + [-82, 50], + [-25, -35], + [52, -59], + [39, 12], + [21, -48], + [46, -24], + [40, 18], + [83, -62], + [87, 8], + [-7, -38], + [-69, -18], + [-34, -89], + [-99, -51], + [47, -26], + [11, -56], + [-113, -6], + [-50, -15] + ], + [ + [8777, 5840], + [6, 61], + [-16, 74], + [-94, -86], + [-29, 16], + [0, 76], + [-29, 45], + [-49, 33], + [67, 108], + [74, 152], + [17, 103], + [-9, 53], + [-30, 40], + [-19, 101], + [65, 20], + [-7, 67], + [16, 26], + [-17, 89], + [38, 39], + [-10, 67], + [-48, 2] + ], + [ + [8703, 6926], + [-39, 34], + [8, 50], + [-38, 16], + [13, 92], + [-32, 38], + [125, 104], + [84, -73], + [32, 22], + [-12, 103], + [31, 31], + [-100, 59], + [34, 22], + [63, -26], + [8, -33], + [146, 9], + [32, -63], + [-36, -29], + [-18, -58], + [107, -11], + [-10, -86], + [20, -12], + [68, 56], + [79, 13], + [-17, 96], + [45, 18], + [36, 50], + [38, -4], + [68, 40], + [-2, 53], + [56, 45], + [39, 0], + [26, -48], + [100, -69], + [-19, -105], + [-37, -107], + [11, -237], + [-25, 2], + [-25, -168], + [59, -65], + [47, -26] + ], + [ + [9496, 1998], + [-58, -8], + [-57, 23], + [-66, -59], + [-38, 45], + [-52, -36], + [-72, 73], + [-2, 40], + [-53, 32], + [1, 79], + [-21, 31], + [13, 105], + [-68, 3], + [-46, 172] + ], + [ + [9152, 3439], + [37, -69], + [43, -12], + [58, -51], + [119, -43], + [90, 21], + [150, -48], + [84, 5], + [67, 56], + [52, -6], + [48, -32], + [48, -2], + [36, 28], + [3, 61], + [110, 91], + [72, -34], + [-23, -109], + [40, -39], + [-32, -56], + [73, -66], + [15, -49], + [-35, -26], + [-6, -77], + [-108, -55], + [-52, 52], + [-120, -8], + [-16, -37], + [-104, -44], + [-120, 28], + [-20, -31], + [-112, -32], + [-18, -47], + [5, -68], + [68, -64], + [31, -54], + [-69, -49], + [-82, 1], + [-38, -19], + [57, -83], + [-2, -26], + [99, -4], + [54, 15], + [11, -40], + [61, -24], + [52, -105], + [7, -106], + [-19, -62], + [-75, -77], + [-41, -20], + [-59, 40], + [5, 62], + [-24, 26], + [-70, 4], + [-41, -27], + [48, -92], + [-13, -38] + ], + [ + [3339, 4770], + [32, -44], + [72, -16], + [8, -39], + [54, -36], + [69, -67], + [69, 10], + [41, 40], + [44, -28], + [45, 20], + [23, 69], + [51, 21], + [110, -53], + [57, 22], + [48, -75], + [66, -52], + [18, -103], + [-25, -71], + [19, -52], + [-98, -43], + [1, -42], + [106, -64], + [136, -117], + [36, 15] + ], + [ + [4248, 3975], + [-27, 11], + [-42, -77], + [40, -21], + [-43, -75], + [-45, -29], + [43, -88], + [-56, 4], + [-117, -14], + [-48, -60], + [17, -43], + [-65, -36], + [-63, -75], + [-66, -27], + [-71, 26], + [-31, -29], + [-1, -44], + [-50, -17], + [-55, 35], + [-35, -15], + [-81, 42], + [-73, -14], + [-19, 59], + [-72, 15], + [-42, -44], + [-104, -139], + [39, -41], + [-20, -54], + [-59, -32], + [-11, -54], + [-40, -26], + [-15, -85], + [-44, -47], + [-14, -46], + [-73, -22], + [-12, -54], + [-61, -65], + [-59, 66], + [-59, -9], + [-41, -60], + [-62, 34], + [-131, -59], + [-26, 3], + [-59, -52], + [-14, -121], + [-33, -42], + [-65, -38], + [11, -68], + [-69, -72], + [-27, -73] + ], + [ + [2198, 2303], + [-101, 38], + [-60, 63], + [-48, 126], + [-41, 79], + [-75, 119], + [-26, 87], + [-39, 217], + [-175, 191], + [-19, 67], + [-91, 100], + [19, 185], + [-15, 10], + [6, 198], + [-19, 54], + [-83, 9], + [-85, -38], + [-177, -18], + [-160, 58], + [-40, 92], + [-86, 77], + [-90, 153], + [-16, 221], + [64, 95] + ], + [ + [841, 4486], + [72, -1], + [42, -44], + [52, 62], + [50, -23], + [81, -2], + [56, 76], + [37, -28], + [82, -7], + [83, 38], + [113, -6], + [80, 20], + [-7, -58], + [53, -33], + [162, -31], + [84, -66], + [140, 87], + [-15, 51], + [-110, 103], + [85, 50], + [36, 2], + [38, 59], + [79, -24], + [66, 116], + [-6, 30], + [47, 54], + [87, 29], + [47, -60], + [118, 89], + [61, 16], + [34, -59], + [38, 46], + [74, 28], + [48, -37], + [18, -91], + [61, -51], + [79, -13], + [26, -41], + [70, -22], + [40, 61], + [54, -48], + [13, -59], + [32, -4], + [53, 36], + [83, 35], + [62, 4] + ], + [ + [7714, 3855], + [-52, -47], + [14, -95], + [-66, -98], + [-30, -27], + [17, -46], + [-85, -121], + [-55, -2], + [80, -84], + [23, -54], + [123, -69], + [21, -48], + [-5, -125], + [-57, -75], + [61, -79], + [-4, -35] + ], + [ + [7570, 2843], + [-51, 31], + [-150, -12] + ], + [ + [6160, 2907], + [-56, -24], + [-35, 17], + [-10, 76], + [-21, 22], + [-72, 9], + [-38, 22], + [57, 135], + [-95, -8], + [-29, 68], + [19, 27], + [-24, 72], + [40, 75], + [5, 52], + [-46, 20], + [28, 67], + [64, 7], + [-36, 110], + [50, 17], + [15, 65], + [-29, 53], + [5, 62], + [126, 34], + [14, 51], + [-30, 107] + ], + [ + [6079, 4051], + [36, -15], + [43, 35] + ], + [ + [6170, 4077], + [101, 45], + [-23, 40], + [79, 47] + ], + [ + [5880, 8632], + [-2, -12] + ], + [ + [5878, 8620], + [41, -58], + [51, -34], + [10, -135], + [-80, -96], + [100, 21], + [33, -27] + ], + [ + [4746, 6141], + [-15, 38], + [-8, 100], + [-32, 26], + [-101, 4], + [-71, -39], + [-50, 30], + [-12, 63], + [-48, -47], + [-25, 89], + [-67, -15], + [-7, 80], + [28, 18], + [-15, 66], + [-80, -24], + [-10, -58], + [-49, 44], + [-41, 74], + [-32, -90], + [-60, 42], + [-27, 51], + [-56, 17], + [-76, -50], + [-67, 3], + [-16, -35], + [-142, -70], + [-63, -69], + [-38, 3], + [4, 57], + [36, 8], + [6, 52] + ], + [ + [3612, 6509], + [-3, 28], + [53, 96], + [26, 84], + [-56, 23], + [-62, -51], + [-40, 3], + [-94, 53], + [-40, -1], + [-30, 37], + [80, 63], + [-13, 135], + [-70, 44], + [-76, 67], + [-50, -9], + [-54, -45], + [-35, 14], + [-35, 59] + ], + [ + [3113, 7109], + [21, 133], + [27, 114], + [83, 118], + [167, 138], + [99, 118], + [110, 357], + [27, 72], + [123, 140], + [152, 73], + [160, 102] + ], + [ + [9496, 1998], + [13, -105], + [-16, -40], + [45, -104], + [90, -104], + [-36, -15], + [-21, -83], + [-57, 11], + [-84, -19], + [-28, 56], + [-62, -4], + [-60, 46], + [36, 80], + [-30, 32], + [-81, -12], + [-3, -30], + [-55, -41], + [11, -48], + [-73, -25], + [-20, 54], + [-57, 41], + [-64, -31], + [-79, 60], + [-77, -12], + [-14, -36], + [-99, 25], + [-15, 75], + [-68, -5], + [16, -54], + [-40, -55], + [17, -108], + [-3, -52], + [-113, -29], + [-26, -36], + [-86, -36], + [26, -120], + [-132, -84], + [-32, 13], + [-99, -58], + [-59, 69], + [-24, -123], + [-33, -63], + [-46, 42], + [-90, -2], + [-25, 24], + [-3, 62], + [-135, 105], + [11, 70], + [32, 29], + [33, 70], + [74, -46], + [-3, -26], + [84, 1], + [45, 49], + [37, -92], + [83, 40], + [22, 93], + [65, 14], + [8, 47], + [-59, 8], + [-18, 42], + [-42, 1], + [39, 118], + [68, 31], + [-17, 85], + [-62, 14], + [-35, 54], + [1, 69], + [61, 92], + [79, -58], + [80, 54], + [-4, 72], + [19, 55] + ], + [ + [3339, 4770], + [12, 136], + [-71, 80], + [92, 148], + [-76, 109], + [62, 79], + [-33, 44], + [-10, 62], + [58, 39], + [6, 83], + [-82, 70], + [12, 48], + [-7, 76], + [45, 81], + [-3, 58], + [-141, 33], + [-15, 62], + [-37, -12], + [-15, 54], + [-163, 65], + [6, 46], + [46, 60], + [-2, 103], + [-17, 60], + [31, 53], + [56, 9], + [63, 109], + [46, -14], + [107, 94], + [47, -32], + [25, -47], + [52, -40], + [15, -82], + [24, -21], + [90, 52], + [8, 52], + [42, 22] + ], + [ + [6213, 10001], + [294, -19], + [45, -113], + [-28, -38], + [-53, -19], + [-34, -56], + [9, -63], + [85, 14], + [87, -2], + [-2, -46], + [-33, -97], + [-15, -132], + [58, -46], + [-43, -106], + [-46, 11], + [-15, -60], + [50, -27], + [38, -76], + [54, -33], + [11, 59], + [79, -5], + [26, -22], + [57, 9], + [44, 56], + [52, 6], + [100, -56], + [30, -67], + [3, -53], + [49, -15], + [42, 29], + [70, -86], + [90, 19], + [161, 12], + [61, 57], + [-6, -84], + [84, 41], + [27, -109], + [-41, -28], + [-10, -39], + [25, -46], + [0, -59], + [64, -8], + [5, -70], + [99, -9], + [7, -51], + [-25, -49], + [-37, -5] + ], + [ + [5878, 8620], + [1, 8] + ], + [ + [8518, 6941], + [120, -63], + [65, 48] + ], + [ + [841, 4486], + [39, 88], + [10, 62], + [-11, 64], + [23, 87], + [-8, 94], + [8, 84], + [-13, 97], + [-72, 55], + [-89, 18], + [-96, -19], + [-122, -11], + [-97, 25], + [-87, 72], + [-287, 137], + [-39, 96], + [19, 93], + [21, 206], + [96, 245], + [68, 58], + [81, 90], + [215, 180], + [89, 135], + [108, 86], + [65, 149], + [77, 207], + [116, 133], + [110, 73], + [80, 89], + [161, 38], + [65, -11], + [58, -28], + [110, -124], + [13, -139], + [65, -112], + [39, -38], + [64, -15], + [113, -6], + [165, 81], + [226, 96], + [83, 25], + [177, 34], + [321, 3], + [308, 126] + ], + [ + [6823, 696], + [-41, -34], + [-95, -52], + [-19, -28], + [-53, -4], + [-51, -57], + [-2, -57], + [-35, -28], + [-16, -59], + [20, -53], + [86, -3], + [22, -31], + [89, 13], + [57, -87], + [-38, -25], + [-60, 10], + [-79, -82], + [-81, -19], + [-13, -44], + [-89, -24], + [-44, 30], + [-54, 10], + [-47, -53], + [-42, -19], + [-52, 47], + [8, 34], + [-50, 87], + [-55, 20], + [-27, -58], + [-77, 39], + [16, 69], + [-4, 55], + [-38, 43], + [-75, 2], + [-21, 54], + [-54, 7], + [-36, 64] + ], + [ + [5773, 463], + [68, 89], + [26, 150], + [35, 28], + [15, 51], + [61, 15], + [22, 120], + [-18, 28], + [42, 109], + [109, 41], + [102, 61], + [86, 71] + ], + [ + [6321, 1226], + [64, 0], + [59, 27], + [60, -61], + [-17, -55], + [50, -27], + [6, -121], + [-37, -12], + [6, -89], + [-15, -52], + [100, -9], + [63, 16], + [18, 33], + [46, -19], + [32, -53], + [66, -38], + [1, -70] + ], + [ + [10283, 5338], + [-92, -50], + [-46, 7] + ], + [ + [9824, 5513], + [-28, -4] + ], + [ + [9668, 6659], + [30, 123], + [58, 113], + [81, -50], + [59, 2], + [18, 38], + [95, -40], + [36, 44], + [54, -41], + [10, -71], + [28, -45], + [11, -79], + [-41, -60], + [19, -22], + [19, -105], + [46, -8], + [26, -60], + [43, -23], + [-18, -53], + [21, -38], + [85, -26], + [99, -79], + [90, -127], + [13, -92], + [-51, -1], + [-23, -67], + [-68, -19], + [-35, -38], + [62, -17], + [-9, -42], + [52, -29], + [75, -9], + [60, -32], + [-160, -101], + [-125, -39], + [-36, -21], + [-48, -67], + [28, -35], + [-14, -48], + [25, -57] + ], + [ + [10283, 5338], + [58, 29], + [-15, 31], + [51, 49], + [113, 18], + [139, 68], + [10, 60], + [38, 22], + [153, -47], + [49, 13], + [171, 1], + [58, -19], + [36, 77], + [98, -12], + [33, 10], + [47, -71], + [-62, -40], + [9, -56], + [-150, -71], + [21, -58], + [-29, -17], + [-2, -74], + [-124, 23], + [-67, -58], + [-47, 5], + [-31, -66], + [-77, -30], + [-9, -65], + [-95, -18], + [-16, -39], + [-73, -9], + [-93, -80], + [-61, -20], + [-37, -37], + [-123, -12], + [6, -60], + [-86, 9] + ], + [ + [6231, 1283], + [15, -13] + ], + [ + [6246, 1270], + [52, -4], + [23, -40] + ], + [ + [5773, 463], + [-31, -58], + [-57, -6], + [-36, 85], + [-51, 74], + [-57, -18], + [-24, 35], + [-61, -57], + [-17, 53], + [-93, -5], + [16, 68], + [-10, 47], + [31, 133], + [-54, 41], + [-62, 3], + [-57, -62], + [-33, 34], + [12, 92], + [-143, 126], + [-38, 44] + ], + [ + [6159, 1261], + [21, 8] + ], + [ + [4458, 3166], + [-63, 4], + [-82, 59], + [-59, -88], + [-1, -49], + [-39, -41], + [-17, -53], + [-37, -30], + [-28, -88], + [-50, -43], + [-92, -113], + [-73, -5], + [-48, -94], + [22, -76], + [-4, -77], + [-21, -21], + [-140, 16], + [-60, -87], + [-19, -76], + [30, -35] + ], + [ + [3677, 2269], + [-53, -10] + ], + [ + [3624, 2259], + [-33, 9] + ], + [ + [3591, 2268], + [-57, 16], + [-57, -34], + [-45, 36], + [-39, -3], + [-46, 30], + [0, 64], + [-42, 13], + [-67, -33], + [-23, -46], + [-63, -35], + [-11, 51], + [-71, 15], + [-3, -71], + [-74, -2], + [-9, 69], + [-114, -21], + [-71, -30], + [-58, 54], + [-103, 13], + [-63, -8], + [-137, -75], + [-34, 48], + [-45, -20], + [-31, -48], + [-130, 52] + ], + [ + [7982, 7914], + [34, -32], + [60, -17], + [54, -43], + [31, -63], + [155, -66], + [83, -106], + [41, -22], + [-10, -57], + [54, -25], + [28, -76], + [-61, 1], + [-118, -115], + [53, -13], + [42, -69], + [-46, 0], + [-24, -70], + [9, -75], + [-51, -5] + ], + [ + [6246, 1270], + [-2, 2] + ], + [ + [6338, 1803], + [22, -17] + ], + [ + [6363, 1718], + [66, -34] + ], + [ + [6746, 2097], + [135, -69], + [51, -15], + [-58, -61], + [-33, -55], + [-5, -79], + [-34, -30], + [20, -35], + [133, 8], + [39, -64], + [-33, -25], + [26, -61], + [35, -25], + [41, -68], + [44, -117], + [-39, -81], + [-28, -19], + [-35, -70], + [-12, -56], + [6, -106], + [38, -44], + [-20, -74], + [0, -74], + [20, -55], + [-69, -35], + [-45, -71], + [-63, -33], + [-37, 13] + ], + [ + [4547, 2062], + [-42, -45], + [13, -44], + [-34, -41], + [36, -35], + [-89, -61], + [-72, 58], + [-68, -11], + [-107, 5], + [-50, 84], + [-1, 59], + [-45, -5], + [-90, 24], + [-57, 49], + [-57, -81], + [12, -47], + [-59, -16], + [-36, 78], + [15, 47], + [-35, 22], + [-45, -11], + [-36, 75], + [-82, -20], + [-57, 61], + [37, 29], + [45, -22], + [34, 55] + ], + [ + [3624, 2259], + [-33, 9] + ] + ], + "transform": { + "scale": [0.0007752020218816176, 0.0006895090396727725], + "translate": [69.484365, 23.060463999999996] + }, + "objects": { + "rajasthan_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[[0, 1, 2, 3, 4, 5, 6, 7]], [[8, 9, 10, 11]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 119, + "censuscode": 126, + "st_cen_cd": 8, + "dt_cen_cd": 28, + "district": "Chittaurgarh", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[12, 13, 14, 15]], + "type": "Polygon", + "properties": { + "cartodb_id": 191, + "censuscode": 99, + "st_cen_cd": 8, + "dt_cen_cd": 1, + "district": "Ganganagar", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[16, 17, 18, 19, 20, 21, 22, 23, 24, 25]], + "type": "Polygon", + "properties": { + "cartodb_id": 425, + "censuscode": 118, + "st_cen_cd": 8, + "dt_cen_cd": 20, + "district": "Pali", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[26, 27, 28, 29, 30, 31, 32]], + "type": "Polygon", + "properties": { + "cartodb_id": 580, + "censuscode": 120, + "st_cen_cd": 8, + "dt_cen_cd": 22, + "district": "Tonk", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[33, 34, 35, 36, 37, 38, 39, -21, 40, -6, 41]], + "type": "Polygon", + "properties": { + "cartodb_id": 583, + "censuscode": 130, + "st_cen_cd": 8, + "dt_cen_cd": 32, + "district": "Udaipur", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[42, 43, 44, 45, 46, -27, 47, 48]], + "type": "Polygon", + "properties": { + "cartodb_id": 628, + "censuscode": 109, + "st_cen_cd": 8, + "dt_cen_cd": 11, + "district": "Dausa", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[49, 50, 51, 52, 53, 54, 55, -45]], + "type": "Polygon", + "properties": { + "cartodb_id": 629, + "censuscode": 107, + "st_cen_cd": 8, + "dt_cen_cd": 9, + "district": "Karauli", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[-54, 56, 57, -28, -47, 58, -55]], + "type": "Polygon", + "properties": { + "cartodb_id": 630, + "censuscode": 108, + "st_cen_cd": 8, + "dt_cen_cd": 10, + "district": "Sawai Madhopur", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[59, 60, 61, 62, 63, 64]], + "type": "Polygon", + "properties": { + "cartodb_id": 122, + "censuscode": 102, + "st_cen_cd": 8, + "dt_cen_cd": 4, + "district": "Churu", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[-58, 65, 66, 67, 68, -10, 69, -29]], + "type": "Polygon", + "properties": { + "cartodb_id": 320, + "censuscode": 127, + "st_cen_cd": 8, + "dt_cen_cd": 29, + "district": "Kota", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[70, 71, 72, -26, 73, 74, -63]], + "type": "Polygon", + "properties": { + "cartodb_id": 392, + "censuscode": 112, + "st_cen_cd": 8, + "dt_cen_cd": 14, + "district": "Nagaur", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[75, 76, 77, -71, -62]], + "type": "Polygon", + "properties": { + "cartodb_id": 526, + "censuscode": 111, + "st_cen_cd": 8, + "dt_cen_cd": 13, + "district": "Sikar", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[[78, -32, 79, 80, 81, 82, 83, 84, -17, -73]], [[85, -19]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 6, + "censuscode": 119, + "st_cen_cd": 8, + "dt_cen_cd": 21, + "district": "Ajmer", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[86, -49, 87, 88]], + "type": "Polygon", + "properties": { + "cartodb_id": 13, + "censuscode": 104, + "st_cen_cd": 8, + "dt_cen_cd": 6, + "district": "Alwar", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[89, -67, 90]], + "type": "Polygon", + "properties": { + "cartodb_id": 54, + "censuscode": 128, + "st_cen_cd": 8, + "dt_cen_cd": 30, + "district": "Baran", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[91, -24, 92, 93, 94]], + "type": "Polygon", + "properties": { + "cartodb_id": 57, + "censuscode": 115, + "st_cen_cd": 8, + "dt_cen_cd": 17, + "district": "Barmer", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[-31, 95, -12, 96, -8, 97, -84, 98, -82, 99, -80]], + "type": "Polygon", + "properties": { + "cartodb_id": 75, + "censuscode": 122, + "st_cen_cd": 8, + "dt_cen_cd": 24, + "district": "Bhilwara", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[100, 101, -64, -75, 102, 103, 104, -15]], + "type": "Polygon", + "properties": { + "cartodb_id": 85, + "censuscode": 101, + "st_cen_cd": 8, + "dt_cen_cd": 3, + "district": "Bikaner", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[-90, 105, -68]], + "type": "Polygon", + "properties": { + "cartodb_id": 258, + "censuscode": 129, + "st_cen_cd": 8, + "dt_cen_cd": 31, + "district": "Jhalawar", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[-103, -74, -25, -92, 106]], + "type": "Polygon", + "properties": { + "cartodb_id": 262, + "censuscode": 113, + "st_cen_cd": 8, + "dt_cen_cd": 15, + "district": "Jodhpur", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[-13, 107, -65, -102, 108]], + "type": "Polygon", + "properties": { + "cartodb_id": 218, + "censuscode": 100, + "st_cen_cd": 8, + "dt_cen_cd": 2, + "district": "Hanumangarh", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[-88, -48, -33, -79, -72, -78, 109]], + "type": "Polygon", + "properties": { + "cartodb_id": 240, + "censuscode": 110, + "st_cen_cd": 8, + "dt_cen_cd": 12, + "district": "Jaipur", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[-104, -107, -95, 110]], + "type": "Polygon", + "properties": { + "cartodb_id": 241, + "censuscode": 114, + "st_cen_cd": 8, + "dt_cen_cd": 16, + "district": "Jaisalmer", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [ + [[-98, -7, -41, -20, -86, -18, -85]], + [[-100, -81]], + [[-99, -83]] + ], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 469, + "censuscode": 123, + "st_cen_cd": 8, + "dt_cen_cd": 25, + "district": "Rajsamand", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[111, 112, 113]], + "type": "Polygon", + "properties": { + "cartodb_id": 50, + "censuscode": 125, + "st_cen_cd": 8, + "dt_cen_cd": 27, + "district": "Banswara", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[114, -51, 115, -43, -87, 116]], + "type": "Polygon", + "properties": { + "cartodb_id": 72, + "censuscode": 105, + "st_cen_cd": 8, + "dt_cen_cd": 7, + "district": "Bharatpur", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[-70, -9, -96, -30]], + "type": "Polygon", + "properties": { + "cartodb_id": 95, + "censuscode": 121, + "st_cen_cd": 8, + "dt_cen_cd": 23, + "district": "Bundi", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[-52, -115, 117]], + "type": "Polygon", + "properties": { + "cartodb_id": 150, + "censuscode": 106, + "st_cen_cd": 8, + "dt_cen_cd": 8, + "district": "Dhaulpur", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[118, 119, -113, 120, -38, 121, -36]], + "type": "Polygon", + "properties": { + "cartodb_id": 163, + "censuscode": 124, + "st_cen_cd": 8, + "dt_cen_cd": 26, + "district": "Dungarpur", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[-23, 122, 123, 124, 125, -93]], + "type": "Polygon", + "properties": { + "cartodb_id": 247, + "censuscode": 116, + "st_cen_cd": 8, + "dt_cen_cd": 18, + "district": "Jalor", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[-76, -61, 126]], + "type": "Polygon", + "properties": { + "cartodb_id": 261, + "censuscode": 103, + "st_cen_cd": 8, + "dt_cen_cd": 5, + "district": "Jhunjhunu", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[-114, -120, 127, -34, 128, -4, 129, -2, 130]], + "type": "Polygon", + "properties": { + "cartodb_id": 447, + "censuscode": 131, + "st_cen_cd": 8, + "dt_cen_cd": 33, + "district": "Pratapgarh", + "st_nm": "Rajasthan" + } + }, + { + "arcs": [[-22, -40, 131, -123]], + "type": "Polygon", + "properties": { + "cartodb_id": 531, + "censuscode": 117, + "st_cen_cd": 8, + "dt_cen_cd": 19, + "district": "Sirohi", + "st_nm": "Rajasthan" + } + } + ] + } + } +} diff --git a/public/maps/sikkim.json b/public/maps/sikkim.json index 6764a86747..8a55fa5fff 100644 --- a/public/maps/sikkim.json +++ b/public/maps/sikkim.json @@ -1 +1,626 @@ -{"type":"Topology","arcs":[[[5662,2502],[30,-74],[64,-37],[44,-66],[41,-14],[50,-75],[29,-6],[74,63],[27,3],[36,-24],[22,-29],[18,-86],[98,-38],[28,-123],[34,-78],[29,-23],[47,7],[52,-32],[29,7],[74,-35],[-63,-75],[-7,-53],[-22,-26],[8,-97],[-24,-71],[-57,-65],[-22,0],[-91,-44],[-28,-22],[-19,-40],[-25,-14],[-66,24],[-143,-10],[-61,17],[-34,-4],[-45,-19],[-29,-34],[-134,-60],[-11,-78],[8,-124],[-40,-92],[-39,-49],[-10,-122],[-26,-28],[-55,-19],[-77,-7],[-37,-26],[-17,-24],[16,-104],[-7,-23],[-42,-24],[-15,-27],[-136,-82],[-57,9],[-48,41],[-20,47],[-22,112],[-70,67],[-74,35],[-51,11],[-77,-27],[-99,-108],[-22,1],[-126,40],[-140,152],[-149,26],[-4,10],[-25,-11],[-18,24],[-31,-30],[-14,18],[-134,-37],[-51,6],[-129,-38],[-84,-45],[-59,4]],[[3634,727],[-154,52],[-91,129],[25,212],[-27,68],[-70,54],[-115,28],[-41,42],[-85,39],[-25,40],[-14,56],[8,55],[40,111],[-9,37],[35,38],[18,71],[52,16],[37,33],[50,14],[62,37],[26,37],[14,67],[-47,76],[-10,59],[5,44],[36,90]],[[3354,2232],[36,3],[72,28],[89,53],[67,58],[75,-4],[150,-32],[193,15],[62,15],[21,-30],[43,-12],[114,-23],[78,-3],[77,9],[24,18],[58,7],[70,-6],[115,69],[83,-16],[58,2],[169,138],[91,19],[158,-34],[96,-8],[106,69],[36,-8],[71,-40],[96,-17]],[[3634,727],[-2,-24],[66,-70],[-22,-41],[38,-45],[-15,-31],[-59,1],[-101,-108],[-61,-36],[-23,-44],[-27,-4],[-37,15],[-38,-30],[-54,-16],[-50,-51],[-13,-69],[-33,-67],[-41,-47],[-58,-32],[-102,-28],[-149,68],[-166,58],[-120,8],[-48,-8],[-83,20],[-31,17],[-50,55],[-121,-43],[-26,18],[3,71],[-12,20],[-54,45],[-48,24],[-33,-4],[-35,-25],[-119,46]],[[1910,370],[-21,88],[15,47],[59,41],[26,68],[17,8],[25,36],[6,34],[62,34],[18,27],[54,29],[64,15],[14,10],[-13,23],[39,19],[-18,32],[0,19],[-20,24],[-42,121],[-22,20],[-87,22],[-32,82],[16,69],[1,78],[-11,33],[-104,92],[-60,38],[-18,25],[5,36],[82,64],[112,35],[21,24],[11,23],[-2,75],[-14,23],[-61,34],[-23,26],[9,32],[48,50],[105,63],[22,25],[37,117],[19,29],[61,25],[72,15],[63,32],[1,87],[-5,71],[-49,95],[-20,17],[-35,-23],[-29,-37],[-37,32],[-16,50],[-42,3],[-65,-16],[-76,11],[-154,-88],[-35,5],[-31,45],[-1,58],[-57,318],[-4,211],[39,103],[72,70]],[[1901,3244],[66,45],[201,62],[113,4],[54,-9],[93,-38],[39,-31],[24,-52],[78,-96],[164,-140],[49,-24],[23,-131],[51,-89],[-12,-55],[1,-70],[36,-85],[51,-41],[42,-66],[77,-82],[73,-37],[119,-22],[111,-55]],[[1901,3244],[-130,97],[-155,69],[-27,41],[-41,126],[-159,182],[-326,142],[-262,84],[-88,51]],[[713,4036],[60,217],[43,48],[65,31],[73,86],[30,126],[-23,140],[33,103],[9,94],[18,40],[145,104],[44,142],[64,100],[20,50],[-15,66],[-48,43],[-26,78],[-65,24],[-3,23],[149,113],[24,29],[11,30],[-2,62],[-93,52],[-74,66],[-51,-1],[-36,17],[-105,18],[-71,-7],[-56,26],[34,63],[-2,30],[-26,69],[-67,82],[-21,46],[-2,41],[23,62],[86,94],[0,54],[-37,19],[0,17],[45,43],[22,42],[42,14],[105,-42],[141,-99],[107,-7],[50,25],[29,101],[26,46],[45,9],[84,-28],[32,24],[31,4],[16,-14],[18,-89],[16,-11],[5,-21],[40,-10],[107,59],[94,16],[24,20],[10,33],[25,17],[69,9],[26,-6],[78,13],[81,74],[92,21],[24,26],[38,16],[94,13],[90,-12],[127,-66],[58,-10],[87,42],[32,32],[41,69],[102,83],[173,52],[75,36],[22,26],[50,102],[82,66],[46,19],[82,6],[12,-13],[99,-24],[40,-40],[38,-13],[40,-2],[39,17],[27,39],[7,64],[62,96],[1,93],[14,54],[27,20],[62,11],[56,-26],[90,44],[20,0],[41,42],[145,51],[-31,47],[-9,66],[-28,31],[-1,25],[36,26],[67,10],[40,-29],[42,-49],[35,-122],[53,-40],[153,-188],[43,-9],[31,34],[61,12],[67,-15],[62,9],[74,-19],[184,2],[77,-19],[221,-170],[31,-58],[67,-54],[11,-25],[55,-48],[168,-83],[27,-27],[12,-84],[45,-71],[-8,-193],[22,-28],[8,-39],[-31,-27],[-24,-41],[-1,-116],[161,-50],[16,-13],[64,-158],[71,-55],[8,-20],[-10,-92],[6,-77],[26,-35],[9,-31],[-1,-17],[-25,-27],[-8,-124],[-23,-21],[-34,-66],[-133,-82],[7,-31],[14,-8],[1,-24],[-4,-70],[-32,-154],[1,-75],[14,-68],[48,-78],[8,-75],[-10,-24],[-48,-43],[-31,-95],[-80,-53],[17,-58],[31,-18],[-10,-86],[19,-100],[-1,-50],[-103,-140],[-44,-37],[-44,-27],[-47,12],[-23,-12],[-25,-73],[15,-134],[-22,-84],[-121,-114],[-26,-95],[-124,-65],[3,-51],[51,-169],[34,-40],[31,-20],[27,-4],[6,-22],[-41,-223],[17,-30],[-29,-145],[13,-133],[28,-23],[2,-17],[51,-24],[1,-107],[59,-42],[19,-98]],[[1910,370],[-189,-41],[-82,-38],[-53,-5],[-40,12],[-38,30],[-55,74],[-28,-13],[-101,21],[-51,-13],[-67,2],[-46,-33],[-101,-120],[-21,-17],[-22,-3],[-61,40],[-50,-1],[-69,46],[-244,99],[-48,40],[-20,56],[2,121],[-32,21],[-40,49],[-40,119],[9,31],[48,34],[-3,15],[-49,29],[-46,50],[-24,19],[-82,17],[-98,36],[-63,-2],[-106,-28],[5,36],[111,198],[-5,158],[20,89],[49,68],[16,84],[31,84],[45,75],[51,55],[20,66],[-8,65],[-19,50],[-31,34],[-68,45],[-13,28],[-9,115],[18,119],[29,93],[23,27],[95,60],[24,25],[-8,54],[8,75],[-15,59],[-33,29],[-25,59],[-49,39],[-22,32],[-18,66],[-5,95],[32,68],[59,67],[20,84],[36,32],[14,35],[0,20],[-48,28],[28,86],[22,25],[69,38],[25,31],[0,60],[-21,28],[-6,45],[27,56],[77,75],[95,54],[61,75],[6,30]]],"transform":{"scale":[0.00014066276202219543,0.00013293032683050406],"translate":[88.016857,27.081327000000005]},"objects":{"sikkim_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2]],"type":"Polygon","properties":{"cartodb_id":167,"censuscode":244,"dt_cen_cd":4,"st_cen_cd":11,"st_nm":"Sikkim","district":"East Sikkim"}},{"arcs":[[-2,3,4,5]],"type":"Polygon","properties":{"cartodb_id":544,"censuscode":243,"dt_cen_cd":3,"st_cen_cd":11,"st_nm":"Sikkim","district":"South Sikkim"}},{"arcs":[[-3,-6,6,7]],"type":"Polygon","properties":{"cartodb_id":413,"censuscode":241,"dt_cen_cd":1,"st_cen_cd":11,"st_nm":"Sikkim","district":"North Sikkim"}},{"arcs":[[-5,8,-7]],"type":"Polygon","properties":{"cartodb_id":613,"censuscode":242,"dt_cen_cd":2,"st_cen_cd":11,"st_nm":"Sikkim","district":"West "}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [5662, 2502], + [30, -74], + [64, -37], + [44, -66], + [41, -14], + [50, -75], + [29, -6], + [74, 63], + [27, 3], + [36, -24], + [22, -29], + [18, -86], + [98, -38], + [28, -123], + [34, -78], + [29, -23], + [47, 7], + [52, -32], + [29, 7], + [74, -35], + [-63, -75], + [-7, -53], + [-22, -26], + [8, -97], + [-24, -71], + [-57, -65], + [-22, 0], + [-91, -44], + [-28, -22], + [-19, -40], + [-25, -14], + [-66, 24], + [-143, -10], + [-61, 17], + [-34, -4], + [-45, -19], + [-29, -34], + [-134, -60], + [-11, -78], + [8, -124], + [-40, -92], + [-39, -49], + [-10, -122], + [-26, -28], + [-55, -19], + [-77, -7], + [-37, -26], + [-17, -24], + [16, -104], + [-7, -23], + [-42, -24], + [-15, -27], + [-136, -82], + [-57, 9], + [-48, 41], + [-20, 47], + [-22, 112], + [-70, 67], + [-74, 35], + [-51, 11], + [-77, -27], + [-99, -108], + [-22, 1], + [-126, 40], + [-140, 152], + [-149, 26], + [-4, 10], + [-25, -11], + [-18, 24], + [-31, -30], + [-14, 18], + [-134, -37], + [-51, 6], + [-129, -38], + [-84, -45], + [-59, 4] + ], + [ + [3634, 727], + [-154, 52], + [-91, 129], + [25, 212], + [-27, 68], + [-70, 54], + [-115, 28], + [-41, 42], + [-85, 39], + [-25, 40], + [-14, 56], + [8, 55], + [40, 111], + [-9, 37], + [35, 38], + [18, 71], + [52, 16], + [37, 33], + [50, 14], + [62, 37], + [26, 37], + [14, 67], + [-47, 76], + [-10, 59], + [5, 44], + [36, 90] + ], + [ + [3354, 2232], + [36, 3], + [72, 28], + [89, 53], + [67, 58], + [75, -4], + [150, -32], + [193, 15], + [62, 15], + [21, -30], + [43, -12], + [114, -23], + [78, -3], + [77, 9], + [24, 18], + [58, 7], + [70, -6], + [115, 69], + [83, -16], + [58, 2], + [169, 138], + [91, 19], + [158, -34], + [96, -8], + [106, 69], + [36, -8], + [71, -40], + [96, -17] + ], + [ + [3634, 727], + [-2, -24], + [66, -70], + [-22, -41], + [38, -45], + [-15, -31], + [-59, 1], + [-101, -108], + [-61, -36], + [-23, -44], + [-27, -4], + [-37, 15], + [-38, -30], + [-54, -16], + [-50, -51], + [-13, -69], + [-33, -67], + [-41, -47], + [-58, -32], + [-102, -28], + [-149, 68], + [-166, 58], + [-120, 8], + [-48, -8], + [-83, 20], + [-31, 17], + [-50, 55], + [-121, -43], + [-26, 18], + [3, 71], + [-12, 20], + [-54, 45], + [-48, 24], + [-33, -4], + [-35, -25], + [-119, 46] + ], + [ + [1910, 370], + [-21, 88], + [15, 47], + [59, 41], + [26, 68], + [17, 8], + [25, 36], + [6, 34], + [62, 34], + [18, 27], + [54, 29], + [64, 15], + [14, 10], + [-13, 23], + [39, 19], + [-18, 32], + [0, 19], + [-20, 24], + [-42, 121], + [-22, 20], + [-87, 22], + [-32, 82], + [16, 69], + [1, 78], + [-11, 33], + [-104, 92], + [-60, 38], + [-18, 25], + [5, 36], + [82, 64], + [112, 35], + [21, 24], + [11, 23], + [-2, 75], + [-14, 23], + [-61, 34], + [-23, 26], + [9, 32], + [48, 50], + [105, 63], + [22, 25], + [37, 117], + [19, 29], + [61, 25], + [72, 15], + [63, 32], + [1, 87], + [-5, 71], + [-49, 95], + [-20, 17], + [-35, -23], + [-29, -37], + [-37, 32], + [-16, 50], + [-42, 3], + [-65, -16], + [-76, 11], + [-154, -88], + [-35, 5], + [-31, 45], + [-1, 58], + [-57, 318], + [-4, 211], + [39, 103], + [72, 70] + ], + [ + [1901, 3244], + [66, 45], + [201, 62], + [113, 4], + [54, -9], + [93, -38], + [39, -31], + [24, -52], + [78, -96], + [164, -140], + [49, -24], + [23, -131], + [51, -89], + [-12, -55], + [1, -70], + [36, -85], + [51, -41], + [42, -66], + [77, -82], + [73, -37], + [119, -22], + [111, -55] + ], + [ + [1901, 3244], + [-130, 97], + [-155, 69], + [-27, 41], + [-41, 126], + [-159, 182], + [-326, 142], + [-262, 84], + [-88, 51] + ], + [ + [713, 4036], + [60, 217], + [43, 48], + [65, 31], + [73, 86], + [30, 126], + [-23, 140], + [33, 103], + [9, 94], + [18, 40], + [145, 104], + [44, 142], + [64, 100], + [20, 50], + [-15, 66], + [-48, 43], + [-26, 78], + [-65, 24], + [-3, 23], + [149, 113], + [24, 29], + [11, 30], + [-2, 62], + [-93, 52], + [-74, 66], + [-51, -1], + [-36, 17], + [-105, 18], + [-71, -7], + [-56, 26], + [34, 63], + [-2, 30], + [-26, 69], + [-67, 82], + [-21, 46], + [-2, 41], + [23, 62], + [86, 94], + [0, 54], + [-37, 19], + [0, 17], + [45, 43], + [22, 42], + [42, 14], + [105, -42], + [141, -99], + [107, -7], + [50, 25], + [29, 101], + [26, 46], + [45, 9], + [84, -28], + [32, 24], + [31, 4], + [16, -14], + [18, -89], + [16, -11], + [5, -21], + [40, -10], + [107, 59], + [94, 16], + [24, 20], + [10, 33], + [25, 17], + [69, 9], + [26, -6], + [78, 13], + [81, 74], + [92, 21], + [24, 26], + [38, 16], + [94, 13], + [90, -12], + [127, -66], + [58, -10], + [87, 42], + [32, 32], + [41, 69], + [102, 83], + [173, 52], + [75, 36], + [22, 26], + [50, 102], + [82, 66], + [46, 19], + [82, 6], + [12, -13], + [99, -24], + [40, -40], + [38, -13], + [40, -2], + [39, 17], + [27, 39], + [7, 64], + [62, 96], + [1, 93], + [14, 54], + [27, 20], + [62, 11], + [56, -26], + [90, 44], + [20, 0], + [41, 42], + [145, 51], + [-31, 47], + [-9, 66], + [-28, 31], + [-1, 25], + [36, 26], + [67, 10], + [40, -29], + [42, -49], + [35, -122], + [53, -40], + [153, -188], + [43, -9], + [31, 34], + [61, 12], + [67, -15], + [62, 9], + [74, -19], + [184, 2], + [77, -19], + [221, -170], + [31, -58], + [67, -54], + [11, -25], + [55, -48], + [168, -83], + [27, -27], + [12, -84], + [45, -71], + [-8, -193], + [22, -28], + [8, -39], + [-31, -27], + [-24, -41], + [-1, -116], + [161, -50], + [16, -13], + [64, -158], + [71, -55], + [8, -20], + [-10, -92], + [6, -77], + [26, -35], + [9, -31], + [-1, -17], + [-25, -27], + [-8, -124], + [-23, -21], + [-34, -66], + [-133, -82], + [7, -31], + [14, -8], + [1, -24], + [-4, -70], + [-32, -154], + [1, -75], + [14, -68], + [48, -78], + [8, -75], + [-10, -24], + [-48, -43], + [-31, -95], + [-80, -53], + [17, -58], + [31, -18], + [-10, -86], + [19, -100], + [-1, -50], + [-103, -140], + [-44, -37], + [-44, -27], + [-47, 12], + [-23, -12], + [-25, -73], + [15, -134], + [-22, -84], + [-121, -114], + [-26, -95], + [-124, -65], + [3, -51], + [51, -169], + [34, -40], + [31, -20], + [27, -4], + [6, -22], + [-41, -223], + [17, -30], + [-29, -145], + [13, -133], + [28, -23], + [2, -17], + [51, -24], + [1, -107], + [59, -42], + [19, -98] + ], + [ + [1910, 370], + [-189, -41], + [-82, -38], + [-53, -5], + [-40, 12], + [-38, 30], + [-55, 74], + [-28, -13], + [-101, 21], + [-51, -13], + [-67, 2], + [-46, -33], + [-101, -120], + [-21, -17], + [-22, -3], + [-61, 40], + [-50, -1], + [-69, 46], + [-244, 99], + [-48, 40], + [-20, 56], + [2, 121], + [-32, 21], + [-40, 49], + [-40, 119], + [9, 31], + [48, 34], + [-3, 15], + [-49, 29], + [-46, 50], + [-24, 19], + [-82, 17], + [-98, 36], + [-63, -2], + [-106, -28], + [5, 36], + [111, 198], + [-5, 158], + [20, 89], + [49, 68], + [16, 84], + [31, 84], + [45, 75], + [51, 55], + [20, 66], + [-8, 65], + [-19, 50], + [-31, 34], + [-68, 45], + [-13, 28], + [-9, 115], + [18, 119], + [29, 93], + [23, 27], + [95, 60], + [24, 25], + [-8, 54], + [8, 75], + [-15, 59], + [-33, 29], + [-25, 59], + [-49, 39], + [-22, 32], + [-18, 66], + [-5, 95], + [32, 68], + [59, 67], + [20, 84], + [36, 32], + [14, 35], + [0, 20], + [-48, 28], + [28, 86], + [22, 25], + [69, 38], + [25, 31], + [0, 60], + [-21, 28], + [-6, 45], + [27, 56], + [77, 75], + [95, 54], + [61, 75], + [6, 30] + ] + ], + "transform": { + "scale": [0.00014066276202219543, 0.00013293032683050406], + "translate": [88.016857, 27.081327000000005] + }, + "objects": { + "sikkim_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2]], + "type": "Polygon", + "properties": { + "cartodb_id": 167, + "censuscode": 244, + "dt_cen_cd": 4, + "st_cen_cd": 11, + "st_nm": "Sikkim", + "district": "East Sikkim" + } + }, + { + "arcs": [[-2, 3, 4, 5]], + "type": "Polygon", + "properties": { + "cartodb_id": 544, + "censuscode": 243, + "dt_cen_cd": 3, + "st_cen_cd": 11, + "st_nm": "Sikkim", + "district": "South Sikkim" + } + }, + { + "arcs": [[-3, -6, 6, 7]], + "type": "Polygon", + "properties": { + "cartodb_id": 413, + "censuscode": 241, + "dt_cen_cd": 1, + "st_cen_cd": 11, + "st_nm": "Sikkim", + "district": "North Sikkim" + } + }, + { + "arcs": [[-5, 8, -7]], + "type": "Polygon", + "properties": { + "cartodb_id": 613, + "censuscode": 242, + "dt_cen_cd": 2, + "st_cen_cd": 11, + "st_nm": "Sikkim", + "district": "West " + } + } + ] + } + } +} diff --git a/public/maps/tamil-nadu.json b/public/maps/tamil-nadu.json index bb2a811999..dc7292261b 100644 --- a/public/maps/tamil-nadu.json +++ b/public/maps/tamil-nadu.json @@ -1 +1,1949 @@ -{"type":"Topology","arcs":[[[1364,4985],[-14,3]],[[1350,4988],[-46,108],[-60,-37],[-30,29],[-49,-51],[-76,24]],[[1089,5061],[29,27],[0,57],[34,162],[-99,50],[-75,-9],[-64,19]],[[914,5367],[20,42],[-34,64],[38,84],[40,40],[28,90],[67,-3],[89,33],[56,-39],[48,-73],[53,-26],[-9,77],[129,31],[56,1],[22,29],[64,-6],[62,-60],[43,30],[86,-25],[28,15],[37,103],[-5,75],[34,2],[13,66],[58,-17],[101,8],[78,27],[32,-6]],[[2148,5929],[13,-115],[-32,1],[8,-83],[80,-44],[-44,-116],[-3,-88],[18,-43],[70,42],[18,-20],[-34,-66],[12,-58],[-31,-46],[11,-36],[-56,-80]],[[2178,5177],[-17,-69],[82,-75],[102,-153],[80,-31],[1,-96],[31,-38],[8,-115],[64,-22]],[[2529,4578],[-49,-56],[-49,-14],[-61,59],[-69,-14]],[[2301,4553],[-185,98],[-203,-15],[-58,50],[1,55],[45,11],[-60,100],[-23,93],[-106,22],[-76,-11],[22,-42],[-22,-49],[-43,16],[-61,73],[-63,37],[-105,-6]],[[3927,4025],[56,-54],[44,23],[42,-51],[26,46],[51,11],[68,-33],[10,-49],[50,-22],[35,17],[27,-45],[56,-43],[5,-54],[-40,-14],[-29,-51],[22,-75],[-39,-25],[38,-52],[-7,-86],[-41,-54],[16,-65],[-24,-43],[41,-27],[32,-86],[57,-4],[36,-31]],[[4459,3158],[-2,-73],[54,-87],[-61,-44],[-42,-71],[-41,-27],[-23,-52],[-45,-43],[-10,-53]],[[4289,2708],[-101,21],[-83,131]],[[4105,2860],[7,69],[-97,48],[7,76],[41,35],[-117,90],[-55,-43],[-44,60],[-10,72],[-59,-21],[-5,-51],[-54,-8],[-35,22],[-53,-29],[0,77],[-38,82],[-98,40],[-12,-43],[-47,-2],[-31,-33],[-5,-67],[-66,21],[25,45],[-53,50],[90,0],[12,93],[-38,40],[16,35]],[[3386,3518],[25,93],[56,-8],[39,39],[-26,48],[-108,-5],[-23,85],[-24,9],[-24,91],[50,50],[66,-16],[-4,71],[65,8],[39,-34],[51,73],[79,-54],[9,96],[79,-36],[4,-95],[67,1],[46,71],[75,20]],[[4105,2860],[-50,-37],[-38,3],[-73,-64],[-14,-31],[17,-164],[-39,0],[-49,-46],[-4,76],[-91,-3],[-60,-63],[5,-33],[77,15],[35,-42],[-22,-62],[52,-88],[-98,-25],[-105,36],[-3,-62],[-96,-37],[-112,74],[-38,-3],[-98,56],[-48,-35]],[[3253,2325],[-38,81],[-62,24],[-63,76],[-50,-44],[1,82],[-98,62],[-56,-49],[-29,7],[-21,15]],[[2837,2579],[2,-2]],[[2839,2577],[8,35],[-3,34],[-24,57],[50,49],[64,0],[83,-63],[-9,59],[89,-11],[9,89],[80,14],[31,31],[95,23],[6,66],[-49,63],[34,13],[9,61],[-92,119],[25,53],[-27,45],[-21,103]],[[3197,3417],[52,80],[32,2],[14,68],[91,-49]],[[4885,4426],[-50,-154],[-21,-9],[-114,51],[-28,-4],[-100,68],[-32,-79],[14,-71],[53,-46],[53,-87],[-33,-21],[-55,10],[19,-130],[50,-21],[-6,-86],[63,-12],[15,-41],[126,-104],[-36,-106],[21,-152]],[[4824,3432],[-135,0],[-44,-44],[-38,-7],[-78,-73],[4,-37],[-53,-54],[-21,-59]],[[3927,4025],[-9,43],[4,139],[-18,28],[118,43],[13,24],[95,4]],[[4130,4306],[82,6],[32,45],[101,26],[104,4],[79,70],[123,88],[56,25],[99,141]],[[4806,4711],[95,43]],[[4901,4754],[72,-57],[-35,-34],[-24,-150],[-29,-87]],[[6059,7754],[-72,-30],[-41,7],[-30,-72],[-4,-78]],[[5912,7581],[-80,14],[-39,35],[5,62],[-22,48],[-50,16],[-97,-17],[-64,-129],[-113,-154],[-105,26],[-7,56],[-52,34]],[[5288,7572],[2,46],[-56,-3],[-25,69],[5,105],[-64,1],[0,38],[-56,29],[-28,-93],[-99,-21],[-130,6],[-43,-70],[-44,80],[-61,-101],[-53,-28],[-61,36],[-30,75]],[[4545,7741],[105,4],[50,91],[68,7],[-25,77],[22,75],[-7,54],[56,4],[121,-20],[44,-94],[53,28],[101,22],[4,-71],[100,-57],[67,46],[-92,57],[87,25],[30,34],[76,-1],[111,50],[41,59],[-31,46],[46,21],[-3,51],[66,56],[-24,59],[83,-7],[33,-67],[100,5],[116,-17],[25,-24],[34,142],[28,-40],[27,-90],[-20,-112],[61,-19],[25,-119],[-7,-64],[-57,-198]],[[5231,4470],[-39,-45],[35,-84]],[[5227,4341],[-52,-3],[-26,31],[-52,-65],[5,-110],[56,21],[47,-6],[1,-43],[-35,-28],[-24,-65],[-8,-76],[-23,-47],[-5,-79],[46,-80],[47,-29],[-47,-39],[3,-81],[-101,-31],[10,-124],[57,-46]],[[5126,3441],[-5,-22],[143,-57],[-227,44],[-213,26]],[[4885,4426],[174,26],[28,43],[61,4],[83,-29]],[[3051,1834],[-15,-113],[39,3],[-34,-96],[121,-37],[51,-35]],[[3213,1556],[-76,-59],[-82,-48],[-26,-35],[-82,-61],[-61,-124],[-10,-134],[7,-76],[-43,-77],[-22,-88],[23,-68],[-26,-94],[13,-57],[-98,-117],[-39,-89],[-97,-35]],[[2594,394],[-92,-20],[-41,40],[-56,8],[18,70],[-39,49],[-4,87],[-28,124],[-44,20],[4,53],[50,22],[-11,76],[23,78],[-15,61],[45,23],[-11,44],[-65,103],[-51,8],[0,54],[-101,9],[-2,154],[18,65],[60,7],[-7,42],[-93,2],[43,124],[46,-1],[11,-38],[90,24],[54,-14],[28,43],[-20,72]],[[2404,1783],[51,1],[-1,-56],[60,-7],[53,73],[80,36],[2,48],[70,87],[164,11],[9,-48],[52,-18],[22,-45],[66,-7],[19,-24]],[[3621,5045],[-43,-64],[74,-17],[69,3],[28,-57],[-58,-55],[-21,-89],[-38,-40],[42,-143],[59,6],[-5,51],[37,21],[72,-15],[-3,-49],[120,34],[128,-14],[50,-55]],[[4132,4562],[1,-76],[-37,-26],[-28,-64],[51,-43],[11,-47]],[[3197,3417],[-69,-14]],[[3128,3403],[5,39],[-84,68],[50,105],[-159,51],[-54,46],[39,69]],[[2925,3781],[72,16],[22,35],[27,194],[91,-1],[56,29],[38,-51],[81,-4],[90,29],[73,44],[-32,92],[61,49],[-56,71],[-51,10],[-132,99],[-66,28],[-79,-10],[-101,14],[-93,-13],[-45,80]],[[2881,4492],[-4,56],[26,30],[79,-3],[18,39],[113,-53],[3,63],[30,60],[53,3],[-1,74],[42,13],[84,177],[-27,48],[57,93]],[[3354,5092],[94,-64],[10,-71],[130,42],[33,46]],[[2594,394],[-41,-45],[-94,-59],[-112,-37],[-36,-64],[-76,-51],[-118,-14],[-95,-26]],[[2022,98],[-78,52],[10,103],[47,9],[-54,101],[-2,111],[-70,-11],[-41,74],[11,42],[-37,65],[-126,66],[-138,58]],[[1544,768],[-35,64],[-45,43],[-47,102],[24,82],[47,23],[48,86],[-11,55],[-50,39],[-39,82],[-72,99],[71,51],[23,67],[84,84],[-3,72],[25,154],[83,104],[2,76]],[[1649,2051],[72,-40],[67,0],[10,-56],[83,-31],[38,1],[13,63],[65,-51],[28,-43],[95,-50],[40,9],[83,-14],[53,-67],[33,31],[75,-20]],[[2301,4553],[18,-32],[-46,-200],[118,-103],[50,0],[-4,-88],[-103,46],[-48,-60],[83,-23],[-23,-110]],[[2346,3983],[-83,-17],[-35,-58],[-42,44],[12,44],[-11,65],[-56,-23],[-13,-63],[-88,2],[-72,-62],[-13,-42],[-45,-2],[-41,66],[-96,-36],[-44,-46],[-20,-65],[16,-158],[-77,9],[-27,-101],[-1,-53],[53,-121],[-91,-71]],[[1572,3295],[-91,131],[12,53],[-89,8],[-72,-55],[-49,-16]],[[1283,3416],[-24,111],[-36,56],[41,150],[-2,83],[29,19],[76,1],[34,73],[-45,61],[-8,108],[39,91],[113,-39],[59,19],[13,95],[-52,20],[-3,43],[-115,51],[-32,94],[31,71],[-17,52],[141,72],[-66,19],[-65,56],[-41,80],[34,89],[-31,48],[0,35],[1,12]],[[1357,4986],[7,-1]],[[4953,7307],[118,-50],[15,-66],[79,3],[65,-50],[-12,-83],[-80,-32],[-54,0],[-22,-56],[55,-60],[82,-7],[-12,-59],[58,-47],[-31,-139],[-31,0],[-76,-69],[-28,-57]],[[5079,6535],[-69,6],[-99,30],[-122,14],[-72,87],[-111,23],[-29,-17],[-89,10],[-32,-68],[33,-34],[4,-86],[57,-7],[-75,-128],[-33,-37],[-4,-68],[97,-65],[-27,-64],[-39,-30],[-51,11],[-39,-58],[-38,17],[-32,-34],[-42,4],[-49,72],[-22,-52],[-57,42],[-79,5],[-64,-80],[-56,16],[-89,-26],[-89,3],[-64,-46]],[[3698,5975],[-23,46],[58,190],[-82,-43],[-74,58],[-1,49]],[[3576,6275],[52,51],[-27,75]],[[3601,6401],[87,66],[38,116],[52,72],[12,91],[59,72],[62,159],[57,82],[122,-33],[22,57],[57,-15],[62,90],[98,8],[97,-26],[5,67],[47,18],[70,-24],[15,-52],[38,-6],[87,-53],[-37,-54],[-3,-42],[43,-27],[42,43],[59,23],[22,67],[-15,62],[30,33],[-30,52],[4,54],[46,41],[36,-28],[68,-7]],[[5288,7572],[-75,-57],[-110,-57],[1,-28],[-132,-46],[-19,-77]],[[3601,6401],[-67,8],[15,114],[-70,73],[-81,30],[-38,-28],[-80,10],[22,87],[-51,56],[5,125],[-17,86]],[[3239,6962],[93,6],[-3,69],[53,36],[81,0],[-3,66],[51,59],[17,109],[51,123],[-18,92],[55,59],[64,-20],[13,79],[65,-16],[92,50],[206,-22],[50,20],[110,-58],[24,-37],[52,16],[73,-26],[26,13],[13,68],[42,48],[28,66],[71,-21]],[[5079,6535],[60,-45],[49,31],[51,-18],[46,24],[69,-49],[61,-98],[44,-23],[38,27],[44,-24],[74,38]],[[5615,6398],[-22,-43],[-142,-225],[-81,-193],[-49,26],[-67,-44],[-21,28],[24,60],[-65,-14],[-22,62],[-66,-31],[56,-107],[60,-55],[-77,-33]],[[5143,5829],[11,-63],[-18,-47]],[[5136,5719],[-12,-9]],[[5124,5710],[-58,-10],[-73,63],[-196,44],[43,-96],[-61,1],[-13,-63],[39,-43],[-37,-27],[13,-87],[-92,22],[-128,-68],[-58,24],[-70,-24],[-39,-74],[-66,4],[-81,68],[-27,-57],[-74,13],[-17,-43],[-124,-17],[-27,-96],[-44,4]],[[3934,5248],[-46,23]],[[3888,5271],[-43,40],[19,47],[-74,41],[9,64],[29,61],[-34,21],[-195,-54],[3,74],[-18,74],[74,59],[7,72],[-101,27]],[[3564,5797],[13,31],[132,49],[-29,28],[18,70]],[[5053,6053],[-12,-46],[33,-152],[44,48],[-50,68],[25,72],[-40,10]],[[2829,2583],[8,-4]],[[3253,2325],[-62,-46],[11,-76],[-52,-2],[-68,-114],[-124,5],[37,-103],[77,18],[61,-35],[58,-73],[1,-40],[-68,-46],[-73,21]],[[1649,2051],[41,64],[40,2],[12,101]],[[1742,2218],[38,31],[42,-11],[32,36]],[[1854,2274],[30,21],[32,94],[99,43],[37,49],[49,11],[37,-43],[64,29],[72,-22],[23,-63],[101,-8],[179,15],[76,-9],[38,57],[72,-2],[-38,101],[68,67],[36,-31]],[[4606,1866],[-17,-27],[15,-68],[-94,41],[-64,-4],[-17,46],[77,4],[84,52],[16,-44]],[[5227,4341],[113,-40],[16,-87],[27,-4],[1,-170],[11,-72],[6,-270],[14,-233],[13,-77],[-126,-29],[-53,60],[-123,22]],[[4901,4754],[110,54],[20,50],[54,-1],[-8,51],[127,99],[47,6],[15,47],[51,1],[14,58]],[[5331,5119],[15,-86],[23,-18],[-8,-64],[29,-177],[6,-129],[-2,-151],[-100,-27],[-63,3]],[[1350,4988],[7,-2]],[[1283,3416],[-53,-39],[-11,-40],[-85,-44],[-108,5],[-88,91],[-46,19],[29,99],[-48,84],[15,36],[18,225],[-37,63],[101,5],[3,118],[33,98],[-14,45],[-42,0],[-64,95],[-133,38],[-118,57],[61,143],[66,71],[9,70],[-82,73],[52,41],[8,34],[-44,38]],[[705,4841],[92,34],[46,46],[65,-8],[29,30],[-16,42],[60,48],[25,-26],[83,54]],[[4806,4711],[65,75],[13,35],[-23,119],[-49,22],[-41,59],[-64,-3],[-4,68],[-33,31],[-112,-11],[6,-48],[-123,11],[-69,-16]],[[4372,5053],[-92,36],[-110,-12],[-103,12],[-133,159]],[[5124,5710],[12,9]],[[5143,5829],[86,-35],[36,17],[59,-42],[-19,-34],[-87,30],[-23,-70],[105,-62],[-51,-220],[6,-115],[67,-140],[9,-39]],[[2925,3781],[-96,40],[7,40],[41,22],[-29,58],[13,142],[27,89],[-99,4],[-13,-62],[-95,24],[-106,-30],[75,-50],[-9,-82],[-53,-7],[12,-49],[-123,10],[-36,-21],[-62,2],[-33,72]],[[2529,4578],[81,34],[61,3],[44,-27],[49,4],[83,-59],[34,-41]],[[6014,7530],[-86,-1],[-16,52]],[[6059,7754],[3,-71],[-27,-48],[-21,-105]],[[3128,3403],[-8,-114],[-94,-77],[22,-69],[-31,-69],[-65,-15],[-83,54],[-16,98],[-42,22],[-135,-15],[-83,-74],[-33,14],[-49,-87],[-64,-37],[-33,25],[-135,-31],[-79,-53]],[[2200,2975],[-2,89],[-51,58],[62,19],[8,49],[-41,56],[-44,-14],[-80,36],[-28,-34],[-67,20],[-17,-37],[-107,-78],[-41,4],[-63,44],[-104,-52],[-31,15],[-54,-22]],[[1540,3128],[32,167]],[[6014,7530],[-32,-180],[-7,-118],[10,-51],[-69,-191],[-37,-132],[-28,-60],[-2,-71],[-36,-58],[-115,-142],[-83,-129]],[[3576,6275],[-72,-19],[-25,35],[-71,-21],[-29,-45],[-42,47],[-50,22],[-93,8],[-66,105],[-87,-4],[-65,83],[4,40],[-73,-12],[-61,60],[-40,110],[-98,33],[-47,-12],[-43,76],[-65,-24],[-25,36],[-44,-23],[107,-141],[-50,-115],[-95,-15],[-19,-99],[-66,-44],[-38,-114],[-63,-1]],[[2260,6241],[-21,36],[-182,42],[-139,-17],[-68,28],[6,91],[72,12],[57,42],[71,87],[24,84],[7,105],[-69,45],[-13,78],[41,97],[-11,56],[95,25],[21,-36],[94,21],[47,77],[-7,23],[64,140],[57,54],[112,27],[-6,-82],[71,25],[35,-39],[61,47],[63,-17],[84,-91],[94,-12],[53,-23],[14,-41],[53,-44],[39,-59],[117,-63],[43,3]],[[4289,2708],[-87,-115],[-102,-98],[-49,-125],[-43,-60],[-15,-133],[-22,-65],[129,-158],[96,-83],[103,-10],[-41,-51],[-161,24],[-65,-7],[-55,-35],[-55,11],[-136,-51],[-177,-53],[-40,-47],[-82,-43],[-64,12],[-164,-35],[-46,-30]],[[3888,5271],[-42,-19],[-38,-85],[46,-41],[-48,-61],[-72,95],[-62,9],[-17,-32],[-55,-20],[21,-72]],[[3354,5092],[-60,-8],[2,62],[-21,53],[58,65],[-27,36],[-3,84],[-97,-17],[-86,-42],[-35,46],[-89,-51],[-128,-25],[-83,26],[-68,-63],[-59,24],[-55,-1],[-14,-93],[-88,-23],[-29,-55],[-55,-9],[-33,66],[-97,41],[-45,-58],[-64,27]],[[2148,5929],[93,-19],[35,-39],[71,-5],[55,-24],[29,31],[58,-20],[102,-11],[93,54],[51,7],[113,46],[133,19],[31,-61],[66,-30],[30,18],[31,-54],[39,-24],[-56,-124],[37,-4],[76,122],[42,-21],[29,-53],[132,-36],[79,28],[47,68]],[[4132,4562],[91,75],[-10,70],[56,120],[46,158],[38,7],[19,61]],[[2148,5929],[36,107],[39,59],[46,32],[31,61],[-40,53]],[[2022,98],[-42,-31],[-15,-67],[-72,3],[-167,41],[-51,26],[-61,-3],[-30,43],[-69,31],[-35,39],[-189,147],[61,60],[41,-1],[6,85],[52,88],[31,5],[-28,77],[84,20],[27,56],[-21,51]],[[2839,2577],[-10,6]],[[1854,2274],[-21,25],[92,125],[64,133],[46,45],[41,90],[-8,42],[68,74],[64,167]],[[705,4841],[-110,-70],[-45,18],[-107,-11],[-23,17],[-94,-3],[5,47],[100,48],[39,91],[-2,47],[-135,45],[-130,102],[-60,-6],[-65,46],[-30,-2],[-37,69],[-11,71],[67,43],[41,-43],[108,44],[14,45],[67,1],[73,84],[46,31],[54,-42],[20,-88],[81,-19],[214,10],[97,-15],[32,-34]],[[1742,2218],[-114,82],[-10,34],[-73,-43],[-48,12],[-55,51],[-46,-7],[15,71],[63,113],[3,89],[20,97],[-37,35],[8,44],[85,106],[-19,80],[-91,122],[63,37],[34,-13]]],"transform":{"scale":[0.0026315845173934343,0.0024386956531436553],"translate":[76.233101,8.077847]},"objects":{"tamilnadu_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6,7]],"type":"Polygon","properties":{"cartodb_id":175,"censuscode":610,"dt_cen_cd":9,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Erode"}},{"arcs":[[8,9,10,11,12]],"type":"Polygon","properties":{"cartodb_id":449,"censuscode":621,"dt_cen_cd":20,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Pudukkottai"}},{"arcs":[[-12,13,14,15,16,17]],"type":"Polygon","properties":{"cartodb_id":535,"censuscode":622,"dt_cen_cd":21,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Sivaganga"}},{"arcs":[[18,19,-9,20,21,22,23]],"type":"Polygon","properties":{"cartodb_id":563,"censuscode":620,"dt_cen_cd":19,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Thanjavur"}},{"arcs":[[24,25,26,27]],"type":"Polygon","properties":{"cartodb_id":567,"censuscode":602,"dt_cen_cd":1,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Thiruvallur"}},{"arcs":[[28,29,30,-19,31]],"type":"Polygon","properties":{"cartodb_id":569,"censuscode":619,"dt_cen_cd":18,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Thiruvarur"}},{"arcs":[[32,33,34,35]],"type":"Polygon","properties":{"cartodb_id":570,"censuscode":627,"dt_cen_cd":26,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Thoothukudi"}},{"arcs":[[36,37,-21,-13,-18,38,39,40,41,42]],"type":"Polygon","properties":{"cartodb_id":576,"censuscode":614,"dt_cen_cd":13,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Tiruchirappalli"}},{"arcs":[[-35,43,44,45,46]],"type":"Polygon","properties":{"cartodb_id":577,"censuscode":628,"dt_cen_cd":27,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Tirunelveli"}},{"arcs":[[47,48,49,50,51,-8]],"type":"Polygon","properties":{"cartodb_id":578,"censuscode":633,"dt_cen_cd":32,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Tiruppur"}},{"arcs":[[52,53,54,55,56]],"type":"Polygon","properties":{"cartodb_id":579,"censuscode":606,"dt_cen_cd":5,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Tiruvannamalai"}},{"arcs":[[57,-57,58,59,-27]],"type":"Polygon","properties":{"cartodb_id":602,"censuscode":605,"dt_cen_cd":4,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Vellore"}},{"arcs":[[60,61,62,63,64,65,66,67,-54],[68]],"type":"Polygon","properties":{"cartodb_id":604,"censuscode":607,"dt_cen_cd":6,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Viluppuram"}},{"arcs":[[[69,-15,70,-36,-47,71,72,73]],[[74]]],"type":"MultiPolygon","properties":{"cartodb_id":605,"censuscode":625,"dt_cen_cd":24,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Virudhunagar"}},{"arcs":[[[75,-30]],[[-32,-24,76,77]]],"type":"MultiPolygon","properties":{"cartodb_id":633,"censuscode":618,"dt_cen_cd":17,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Nagapattinam"}},{"arcs":[[78,-51,79,80,-2]],"type":"Polygon","properties":{"cartodb_id":123,"censuscode":632,"dt_cen_cd":31,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Coimbatore"}},{"arcs":[[-77,-23,81,82,-65,83,-63,84]],"type":"Polygon","properties":{"cartodb_id":124,"censuscode":617,"dt_cen_cd":16,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Cuddalore"}},{"arcs":[[-41,85,-48,-7,86]],"type":"Polygon","properties":{"cartodb_id":288,"censuscode":613,"dt_cen_cd":12,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Karur"}},{"arcs":[[87,-25,88]],"type":"Polygon","properties":{"cartodb_id":111,"censuscode":603,"dt_cen_cd":2,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Chennai"}},{"arcs":[[-40,89,90,91,-49,-86]],"type":"Polygon","properties":{"cartodb_id":157,"censuscode":612,"dt_cen_cd":11,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Dindigul"}},{"arcs":[[-88,92,-61,-53,-58,-26]],"type":"Polygon","properties":{"cartodb_id":272,"censuscode":604,"dt_cen_cd":3,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Kancheepuram"}},{"arcs":[[93,94,-59,-56]],"type":"Polygon","properties":{"cartodb_id":324,"censuscode":631,"dt_cen_cd":30,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Krishnagiri"}},{"arcs":[[-11,95,-33,-71,-14]],"type":"Polygon","properties":{"cartodb_id":471,"censuscode":626,"dt_cen_cd":25,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Ramanathapuram"}},{"arcs":[[-67,96,-43,97,-5,98]],"type":"Polygon","properties":{"cartodb_id":495,"censuscode":608,"dt_cen_cd":7,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Salem"}},{"arcs":[[-22,-38,99,-82]],"type":"Polygon","properties":{"cartodb_id":26,"censuscode":616,"dt_cen_cd":15,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Ariyalur"}},{"arcs":[[-55,-68,-99,100,-94]],"type":"Polygon","properties":{"cartodb_id":148,"censuscode":630,"dt_cen_cd":29,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Dharmapuri"}},{"arcs":[[101,-45]],"type":"Polygon","properties":{"cartodb_id":277,"censuscode":629,"dt_cen_cd":28,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Kanniyakumari"}},{"arcs":[[102,-74,103,-90,-39,-17]],"type":"Polygon","properties":{"cartodb_id":350,"censuscode":623,"dt_cen_cd":22,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Madurai"}},{"arcs":[[-42,-87,-6,-98]],"type":"Polygon","properties":{"cartodb_id":398,"censuscode":609,"dt_cen_cd":8,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Namakkal"}},{"arcs":[[-66,-83,-100,-37,-97]],"type":"Polygon","properties":{"cartodb_id":440,"censuscode":615,"dt_cen_cd":14,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Perambalur"}},{"arcs":[[-3,-81,104]],"type":"Polygon","properties":{"cartodb_id":565,"censuscode":611,"dt_cen_cd":10,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"The Nilgiris"}},{"arcs":[[-104,-73,105,-91]],"type":"Polygon","properties":{"cartodb_id":566,"censuscode":624,"dt_cen_cd":23,"st_cen_cd":33,"st_nm":"Tamil Nadu","district":"Theni"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [1364, 4985], + [-14, 3] + ], + [ + [1350, 4988], + [-46, 108], + [-60, -37], + [-30, 29], + [-49, -51], + [-76, 24] + ], + [ + [1089, 5061], + [29, 27], + [0, 57], + [34, 162], + [-99, 50], + [-75, -9], + [-64, 19] + ], + [ + [914, 5367], + [20, 42], + [-34, 64], + [38, 84], + [40, 40], + [28, 90], + [67, -3], + [89, 33], + [56, -39], + [48, -73], + [53, -26], + [-9, 77], + [129, 31], + [56, 1], + [22, 29], + [64, -6], + [62, -60], + [43, 30], + [86, -25], + [28, 15], + [37, 103], + [-5, 75], + [34, 2], + [13, 66], + [58, -17], + [101, 8], + [78, 27], + [32, -6] + ], + [ + [2148, 5929], + [13, -115], + [-32, 1], + [8, -83], + [80, -44], + [-44, -116], + [-3, -88], + [18, -43], + [70, 42], + [18, -20], + [-34, -66], + [12, -58], + [-31, -46], + [11, -36], + [-56, -80] + ], + [ + [2178, 5177], + [-17, -69], + [82, -75], + [102, -153], + [80, -31], + [1, -96], + [31, -38], + [8, -115], + [64, -22] + ], + [ + [2529, 4578], + [-49, -56], + [-49, -14], + [-61, 59], + [-69, -14] + ], + [ + [2301, 4553], + [-185, 98], + [-203, -15], + [-58, 50], + [1, 55], + [45, 11], + [-60, 100], + [-23, 93], + [-106, 22], + [-76, -11], + [22, -42], + [-22, -49], + [-43, 16], + [-61, 73], + [-63, 37], + [-105, -6] + ], + [ + [3927, 4025], + [56, -54], + [44, 23], + [42, -51], + [26, 46], + [51, 11], + [68, -33], + [10, -49], + [50, -22], + [35, 17], + [27, -45], + [56, -43], + [5, -54], + [-40, -14], + [-29, -51], + [22, -75], + [-39, -25], + [38, -52], + [-7, -86], + [-41, -54], + [16, -65], + [-24, -43], + [41, -27], + [32, -86], + [57, -4], + [36, -31] + ], + [ + [4459, 3158], + [-2, -73], + [54, -87], + [-61, -44], + [-42, -71], + [-41, -27], + [-23, -52], + [-45, -43], + [-10, -53] + ], + [ + [4289, 2708], + [-101, 21], + [-83, 131] + ], + [ + [4105, 2860], + [7, 69], + [-97, 48], + [7, 76], + [41, 35], + [-117, 90], + [-55, -43], + [-44, 60], + [-10, 72], + [-59, -21], + [-5, -51], + [-54, -8], + [-35, 22], + [-53, -29], + [0, 77], + [-38, 82], + [-98, 40], + [-12, -43], + [-47, -2], + [-31, -33], + [-5, -67], + [-66, 21], + [25, 45], + [-53, 50], + [90, 0], + [12, 93], + [-38, 40], + [16, 35] + ], + [ + [3386, 3518], + [25, 93], + [56, -8], + [39, 39], + [-26, 48], + [-108, -5], + [-23, 85], + [-24, 9], + [-24, 91], + [50, 50], + [66, -16], + [-4, 71], + [65, 8], + [39, -34], + [51, 73], + [79, -54], + [9, 96], + [79, -36], + [4, -95], + [67, 1], + [46, 71], + [75, 20] + ], + [ + [4105, 2860], + [-50, -37], + [-38, 3], + [-73, -64], + [-14, -31], + [17, -164], + [-39, 0], + [-49, -46], + [-4, 76], + [-91, -3], + [-60, -63], + [5, -33], + [77, 15], + [35, -42], + [-22, -62], + [52, -88], + [-98, -25], + [-105, 36], + [-3, -62], + [-96, -37], + [-112, 74], + [-38, -3], + [-98, 56], + [-48, -35] + ], + [ + [3253, 2325], + [-38, 81], + [-62, 24], + [-63, 76], + [-50, -44], + [1, 82], + [-98, 62], + [-56, -49], + [-29, 7], + [-21, 15] + ], + [ + [2837, 2579], + [2, -2] + ], + [ + [2839, 2577], + [8, 35], + [-3, 34], + [-24, 57], + [50, 49], + [64, 0], + [83, -63], + [-9, 59], + [89, -11], + [9, 89], + [80, 14], + [31, 31], + [95, 23], + [6, 66], + [-49, 63], + [34, 13], + [9, 61], + [-92, 119], + [25, 53], + [-27, 45], + [-21, 103] + ], + [ + [3197, 3417], + [52, 80], + [32, 2], + [14, 68], + [91, -49] + ], + [ + [4885, 4426], + [-50, -154], + [-21, -9], + [-114, 51], + [-28, -4], + [-100, 68], + [-32, -79], + [14, -71], + [53, -46], + [53, -87], + [-33, -21], + [-55, 10], + [19, -130], + [50, -21], + [-6, -86], + [63, -12], + [15, -41], + [126, -104], + [-36, -106], + [21, -152] + ], + [ + [4824, 3432], + [-135, 0], + [-44, -44], + [-38, -7], + [-78, -73], + [4, -37], + [-53, -54], + [-21, -59] + ], + [ + [3927, 4025], + [-9, 43], + [4, 139], + [-18, 28], + [118, 43], + [13, 24], + [95, 4] + ], + [ + [4130, 4306], + [82, 6], + [32, 45], + [101, 26], + [104, 4], + [79, 70], + [123, 88], + [56, 25], + [99, 141] + ], + [ + [4806, 4711], + [95, 43] + ], + [ + [4901, 4754], + [72, -57], + [-35, -34], + [-24, -150], + [-29, -87] + ], + [ + [6059, 7754], + [-72, -30], + [-41, 7], + [-30, -72], + [-4, -78] + ], + [ + [5912, 7581], + [-80, 14], + [-39, 35], + [5, 62], + [-22, 48], + [-50, 16], + [-97, -17], + [-64, -129], + [-113, -154], + [-105, 26], + [-7, 56], + [-52, 34] + ], + [ + [5288, 7572], + [2, 46], + [-56, -3], + [-25, 69], + [5, 105], + [-64, 1], + [0, 38], + [-56, 29], + [-28, -93], + [-99, -21], + [-130, 6], + [-43, -70], + [-44, 80], + [-61, -101], + [-53, -28], + [-61, 36], + [-30, 75] + ], + [ + [4545, 7741], + [105, 4], + [50, 91], + [68, 7], + [-25, 77], + [22, 75], + [-7, 54], + [56, 4], + [121, -20], + [44, -94], + [53, 28], + [101, 22], + [4, -71], + [100, -57], + [67, 46], + [-92, 57], + [87, 25], + [30, 34], + [76, -1], + [111, 50], + [41, 59], + [-31, 46], + [46, 21], + [-3, 51], + [66, 56], + [-24, 59], + [83, -7], + [33, -67], + [100, 5], + [116, -17], + [25, -24], + [34, 142], + [28, -40], + [27, -90], + [-20, -112], + [61, -19], + [25, -119], + [-7, -64], + [-57, -198] + ], + [ + [5231, 4470], + [-39, -45], + [35, -84] + ], + [ + [5227, 4341], + [-52, -3], + [-26, 31], + [-52, -65], + [5, -110], + [56, 21], + [47, -6], + [1, -43], + [-35, -28], + [-24, -65], + [-8, -76], + [-23, -47], + [-5, -79], + [46, -80], + [47, -29], + [-47, -39], + [3, -81], + [-101, -31], + [10, -124], + [57, -46] + ], + [ + [5126, 3441], + [-5, -22], + [143, -57], + [-227, 44], + [-213, 26] + ], + [ + [4885, 4426], + [174, 26], + [28, 43], + [61, 4], + [83, -29] + ], + [ + [3051, 1834], + [-15, -113], + [39, 3], + [-34, -96], + [121, -37], + [51, -35] + ], + [ + [3213, 1556], + [-76, -59], + [-82, -48], + [-26, -35], + [-82, -61], + [-61, -124], + [-10, -134], + [7, -76], + [-43, -77], + [-22, -88], + [23, -68], + [-26, -94], + [13, -57], + [-98, -117], + [-39, -89], + [-97, -35] + ], + [ + [2594, 394], + [-92, -20], + [-41, 40], + [-56, 8], + [18, 70], + [-39, 49], + [-4, 87], + [-28, 124], + [-44, 20], + [4, 53], + [50, 22], + [-11, 76], + [23, 78], + [-15, 61], + [45, 23], + [-11, 44], + [-65, 103], + [-51, 8], + [0, 54], + [-101, 9], + [-2, 154], + [18, 65], + [60, 7], + [-7, 42], + [-93, 2], + [43, 124], + [46, -1], + [11, -38], + [90, 24], + [54, -14], + [28, 43], + [-20, 72] + ], + [ + [2404, 1783], + [51, 1], + [-1, -56], + [60, -7], + [53, 73], + [80, 36], + [2, 48], + [70, 87], + [164, 11], + [9, -48], + [52, -18], + [22, -45], + [66, -7], + [19, -24] + ], + [ + [3621, 5045], + [-43, -64], + [74, -17], + [69, 3], + [28, -57], + [-58, -55], + [-21, -89], + [-38, -40], + [42, -143], + [59, 6], + [-5, 51], + [37, 21], + [72, -15], + [-3, -49], + [120, 34], + [128, -14], + [50, -55] + ], + [ + [4132, 4562], + [1, -76], + [-37, -26], + [-28, -64], + [51, -43], + [11, -47] + ], + [ + [3197, 3417], + [-69, -14] + ], + [ + [3128, 3403], + [5, 39], + [-84, 68], + [50, 105], + [-159, 51], + [-54, 46], + [39, 69] + ], + [ + [2925, 3781], + [72, 16], + [22, 35], + [27, 194], + [91, -1], + [56, 29], + [38, -51], + [81, -4], + [90, 29], + [73, 44], + [-32, 92], + [61, 49], + [-56, 71], + [-51, 10], + [-132, 99], + [-66, 28], + [-79, -10], + [-101, 14], + [-93, -13], + [-45, 80] + ], + [ + [2881, 4492], + [-4, 56], + [26, 30], + [79, -3], + [18, 39], + [113, -53], + [3, 63], + [30, 60], + [53, 3], + [-1, 74], + [42, 13], + [84, 177], + [-27, 48], + [57, 93] + ], + [ + [3354, 5092], + [94, -64], + [10, -71], + [130, 42], + [33, 46] + ], + [ + [2594, 394], + [-41, -45], + [-94, -59], + [-112, -37], + [-36, -64], + [-76, -51], + [-118, -14], + [-95, -26] + ], + [ + [2022, 98], + [-78, 52], + [10, 103], + [47, 9], + [-54, 101], + [-2, 111], + [-70, -11], + [-41, 74], + [11, 42], + [-37, 65], + [-126, 66], + [-138, 58] + ], + [ + [1544, 768], + [-35, 64], + [-45, 43], + [-47, 102], + [24, 82], + [47, 23], + [48, 86], + [-11, 55], + [-50, 39], + [-39, 82], + [-72, 99], + [71, 51], + [23, 67], + [84, 84], + [-3, 72], + [25, 154], + [83, 104], + [2, 76] + ], + [ + [1649, 2051], + [72, -40], + [67, 0], + [10, -56], + [83, -31], + [38, 1], + [13, 63], + [65, -51], + [28, -43], + [95, -50], + [40, 9], + [83, -14], + [53, -67], + [33, 31], + [75, -20] + ], + [ + [2301, 4553], + [18, -32], + [-46, -200], + [118, -103], + [50, 0], + [-4, -88], + [-103, 46], + [-48, -60], + [83, -23], + [-23, -110] + ], + [ + [2346, 3983], + [-83, -17], + [-35, -58], + [-42, 44], + [12, 44], + [-11, 65], + [-56, -23], + [-13, -63], + [-88, 2], + [-72, -62], + [-13, -42], + [-45, -2], + [-41, 66], + [-96, -36], + [-44, -46], + [-20, -65], + [16, -158], + [-77, 9], + [-27, -101], + [-1, -53], + [53, -121], + [-91, -71] + ], + [ + [1572, 3295], + [-91, 131], + [12, 53], + [-89, 8], + [-72, -55], + [-49, -16] + ], + [ + [1283, 3416], + [-24, 111], + [-36, 56], + [41, 150], + [-2, 83], + [29, 19], + [76, 1], + [34, 73], + [-45, 61], + [-8, 108], + [39, 91], + [113, -39], + [59, 19], + [13, 95], + [-52, 20], + [-3, 43], + [-115, 51], + [-32, 94], + [31, 71], + [-17, 52], + [141, 72], + [-66, 19], + [-65, 56], + [-41, 80], + [34, 89], + [-31, 48], + [0, 35], + [1, 12] + ], + [ + [1357, 4986], + [7, -1] + ], + [ + [4953, 7307], + [118, -50], + [15, -66], + [79, 3], + [65, -50], + [-12, -83], + [-80, -32], + [-54, 0], + [-22, -56], + [55, -60], + [82, -7], + [-12, -59], + [58, -47], + [-31, -139], + [-31, 0], + [-76, -69], + [-28, -57] + ], + [ + [5079, 6535], + [-69, 6], + [-99, 30], + [-122, 14], + [-72, 87], + [-111, 23], + [-29, -17], + [-89, 10], + [-32, -68], + [33, -34], + [4, -86], + [57, -7], + [-75, -128], + [-33, -37], + [-4, -68], + [97, -65], + [-27, -64], + [-39, -30], + [-51, 11], + [-39, -58], + [-38, 17], + [-32, -34], + [-42, 4], + [-49, 72], + [-22, -52], + [-57, 42], + [-79, 5], + [-64, -80], + [-56, 16], + [-89, -26], + [-89, 3], + [-64, -46] + ], + [ + [3698, 5975], + [-23, 46], + [58, 190], + [-82, -43], + [-74, 58], + [-1, 49] + ], + [ + [3576, 6275], + [52, 51], + [-27, 75] + ], + [ + [3601, 6401], + [87, 66], + [38, 116], + [52, 72], + [12, 91], + [59, 72], + [62, 159], + [57, 82], + [122, -33], + [22, 57], + [57, -15], + [62, 90], + [98, 8], + [97, -26], + [5, 67], + [47, 18], + [70, -24], + [15, -52], + [38, -6], + [87, -53], + [-37, -54], + [-3, -42], + [43, -27], + [42, 43], + [59, 23], + [22, 67], + [-15, 62], + [30, 33], + [-30, 52], + [4, 54], + [46, 41], + [36, -28], + [68, -7] + ], + [ + [5288, 7572], + [-75, -57], + [-110, -57], + [1, -28], + [-132, -46], + [-19, -77] + ], + [ + [3601, 6401], + [-67, 8], + [15, 114], + [-70, 73], + [-81, 30], + [-38, -28], + [-80, 10], + [22, 87], + [-51, 56], + [5, 125], + [-17, 86] + ], + [ + [3239, 6962], + [93, 6], + [-3, 69], + [53, 36], + [81, 0], + [-3, 66], + [51, 59], + [17, 109], + [51, 123], + [-18, 92], + [55, 59], + [64, -20], + [13, 79], + [65, -16], + [92, 50], + [206, -22], + [50, 20], + [110, -58], + [24, -37], + [52, 16], + [73, -26], + [26, 13], + [13, 68], + [42, 48], + [28, 66], + [71, -21] + ], + [ + [5079, 6535], + [60, -45], + [49, 31], + [51, -18], + [46, 24], + [69, -49], + [61, -98], + [44, -23], + [38, 27], + [44, -24], + [74, 38] + ], + [ + [5615, 6398], + [-22, -43], + [-142, -225], + [-81, -193], + [-49, 26], + [-67, -44], + [-21, 28], + [24, 60], + [-65, -14], + [-22, 62], + [-66, -31], + [56, -107], + [60, -55], + [-77, -33] + ], + [ + [5143, 5829], + [11, -63], + [-18, -47] + ], + [ + [5136, 5719], + [-12, -9] + ], + [ + [5124, 5710], + [-58, -10], + [-73, 63], + [-196, 44], + [43, -96], + [-61, 1], + [-13, -63], + [39, -43], + [-37, -27], + [13, -87], + [-92, 22], + [-128, -68], + [-58, 24], + [-70, -24], + [-39, -74], + [-66, 4], + [-81, 68], + [-27, -57], + [-74, 13], + [-17, -43], + [-124, -17], + [-27, -96], + [-44, 4] + ], + [ + [3934, 5248], + [-46, 23] + ], + [ + [3888, 5271], + [-43, 40], + [19, 47], + [-74, 41], + [9, 64], + [29, 61], + [-34, 21], + [-195, -54], + [3, 74], + [-18, 74], + [74, 59], + [7, 72], + [-101, 27] + ], + [ + [3564, 5797], + [13, 31], + [132, 49], + [-29, 28], + [18, 70] + ], + [ + [5053, 6053], + [-12, -46], + [33, -152], + [44, 48], + [-50, 68], + [25, 72], + [-40, 10] + ], + [ + [2829, 2583], + [8, -4] + ], + [ + [3253, 2325], + [-62, -46], + [11, -76], + [-52, -2], + [-68, -114], + [-124, 5], + [37, -103], + [77, 18], + [61, -35], + [58, -73], + [1, -40], + [-68, -46], + [-73, 21] + ], + [ + [1649, 2051], + [41, 64], + [40, 2], + [12, 101] + ], + [ + [1742, 2218], + [38, 31], + [42, -11], + [32, 36] + ], + [ + [1854, 2274], + [30, 21], + [32, 94], + [99, 43], + [37, 49], + [49, 11], + [37, -43], + [64, 29], + [72, -22], + [23, -63], + [101, -8], + [179, 15], + [76, -9], + [38, 57], + [72, -2], + [-38, 101], + [68, 67], + [36, -31] + ], + [ + [4606, 1866], + [-17, -27], + [15, -68], + [-94, 41], + [-64, -4], + [-17, 46], + [77, 4], + [84, 52], + [16, -44] + ], + [ + [5227, 4341], + [113, -40], + [16, -87], + [27, -4], + [1, -170], + [11, -72], + [6, -270], + [14, -233], + [13, -77], + [-126, -29], + [-53, 60], + [-123, 22] + ], + [ + [4901, 4754], + [110, 54], + [20, 50], + [54, -1], + [-8, 51], + [127, 99], + [47, 6], + [15, 47], + [51, 1], + [14, 58] + ], + [ + [5331, 5119], + [15, -86], + [23, -18], + [-8, -64], + [29, -177], + [6, -129], + [-2, -151], + [-100, -27], + [-63, 3] + ], + [ + [1350, 4988], + [7, -2] + ], + [ + [1283, 3416], + [-53, -39], + [-11, -40], + [-85, -44], + [-108, 5], + [-88, 91], + [-46, 19], + [29, 99], + [-48, 84], + [15, 36], + [18, 225], + [-37, 63], + [101, 5], + [3, 118], + [33, 98], + [-14, 45], + [-42, 0], + [-64, 95], + [-133, 38], + [-118, 57], + [61, 143], + [66, 71], + [9, 70], + [-82, 73], + [52, 41], + [8, 34], + [-44, 38] + ], + [ + [705, 4841], + [92, 34], + [46, 46], + [65, -8], + [29, 30], + [-16, 42], + [60, 48], + [25, -26], + [83, 54] + ], + [ + [4806, 4711], + [65, 75], + [13, 35], + [-23, 119], + [-49, 22], + [-41, 59], + [-64, -3], + [-4, 68], + [-33, 31], + [-112, -11], + [6, -48], + [-123, 11], + [-69, -16] + ], + [ + [4372, 5053], + [-92, 36], + [-110, -12], + [-103, 12], + [-133, 159] + ], + [ + [5124, 5710], + [12, 9] + ], + [ + [5143, 5829], + [86, -35], + [36, 17], + [59, -42], + [-19, -34], + [-87, 30], + [-23, -70], + [105, -62], + [-51, -220], + [6, -115], + [67, -140], + [9, -39] + ], + [ + [2925, 3781], + [-96, 40], + [7, 40], + [41, 22], + [-29, 58], + [13, 142], + [27, 89], + [-99, 4], + [-13, -62], + [-95, 24], + [-106, -30], + [75, -50], + [-9, -82], + [-53, -7], + [12, -49], + [-123, 10], + [-36, -21], + [-62, 2], + [-33, 72] + ], + [ + [2529, 4578], + [81, 34], + [61, 3], + [44, -27], + [49, 4], + [83, -59], + [34, -41] + ], + [ + [6014, 7530], + [-86, -1], + [-16, 52] + ], + [ + [6059, 7754], + [3, -71], + [-27, -48], + [-21, -105] + ], + [ + [3128, 3403], + [-8, -114], + [-94, -77], + [22, -69], + [-31, -69], + [-65, -15], + [-83, 54], + [-16, 98], + [-42, 22], + [-135, -15], + [-83, -74], + [-33, 14], + [-49, -87], + [-64, -37], + [-33, 25], + [-135, -31], + [-79, -53] + ], + [ + [2200, 2975], + [-2, 89], + [-51, 58], + [62, 19], + [8, 49], + [-41, 56], + [-44, -14], + [-80, 36], + [-28, -34], + [-67, 20], + [-17, -37], + [-107, -78], + [-41, 4], + [-63, 44], + [-104, -52], + [-31, 15], + [-54, -22] + ], + [ + [1540, 3128], + [32, 167] + ], + [ + [6014, 7530], + [-32, -180], + [-7, -118], + [10, -51], + [-69, -191], + [-37, -132], + [-28, -60], + [-2, -71], + [-36, -58], + [-115, -142], + [-83, -129] + ], + [ + [3576, 6275], + [-72, -19], + [-25, 35], + [-71, -21], + [-29, -45], + [-42, 47], + [-50, 22], + [-93, 8], + [-66, 105], + [-87, -4], + [-65, 83], + [4, 40], + [-73, -12], + [-61, 60], + [-40, 110], + [-98, 33], + [-47, -12], + [-43, 76], + [-65, -24], + [-25, 36], + [-44, -23], + [107, -141], + [-50, -115], + [-95, -15], + [-19, -99], + [-66, -44], + [-38, -114], + [-63, -1] + ], + [ + [2260, 6241], + [-21, 36], + [-182, 42], + [-139, -17], + [-68, 28], + [6, 91], + [72, 12], + [57, 42], + [71, 87], + [24, 84], + [7, 105], + [-69, 45], + [-13, 78], + [41, 97], + [-11, 56], + [95, 25], + [21, -36], + [94, 21], + [47, 77], + [-7, 23], + [64, 140], + [57, 54], + [112, 27], + [-6, -82], + [71, 25], + [35, -39], + [61, 47], + [63, -17], + [84, -91], + [94, -12], + [53, -23], + [14, -41], + [53, -44], + [39, -59], + [117, -63], + [43, 3] + ], + [ + [4289, 2708], + [-87, -115], + [-102, -98], + [-49, -125], + [-43, -60], + [-15, -133], + [-22, -65], + [129, -158], + [96, -83], + [103, -10], + [-41, -51], + [-161, 24], + [-65, -7], + [-55, -35], + [-55, 11], + [-136, -51], + [-177, -53], + [-40, -47], + [-82, -43], + [-64, 12], + [-164, -35], + [-46, -30] + ], + [ + [3888, 5271], + [-42, -19], + [-38, -85], + [46, -41], + [-48, -61], + [-72, 95], + [-62, 9], + [-17, -32], + [-55, -20], + [21, -72] + ], + [ + [3354, 5092], + [-60, -8], + [2, 62], + [-21, 53], + [58, 65], + [-27, 36], + [-3, 84], + [-97, -17], + [-86, -42], + [-35, 46], + [-89, -51], + [-128, -25], + [-83, 26], + [-68, -63], + [-59, 24], + [-55, -1], + [-14, -93], + [-88, -23], + [-29, -55], + [-55, -9], + [-33, 66], + [-97, 41], + [-45, -58], + [-64, 27] + ], + [ + [2148, 5929], + [93, -19], + [35, -39], + [71, -5], + [55, -24], + [29, 31], + [58, -20], + [102, -11], + [93, 54], + [51, 7], + [113, 46], + [133, 19], + [31, -61], + [66, -30], + [30, 18], + [31, -54], + [39, -24], + [-56, -124], + [37, -4], + [76, 122], + [42, -21], + [29, -53], + [132, -36], + [79, 28], + [47, 68] + ], + [ + [4132, 4562], + [91, 75], + [-10, 70], + [56, 120], + [46, 158], + [38, 7], + [19, 61] + ], + [ + [2148, 5929], + [36, 107], + [39, 59], + [46, 32], + [31, 61], + [-40, 53] + ], + [ + [2022, 98], + [-42, -31], + [-15, -67], + [-72, 3], + [-167, 41], + [-51, 26], + [-61, -3], + [-30, 43], + [-69, 31], + [-35, 39], + [-189, 147], + [61, 60], + [41, -1], + [6, 85], + [52, 88], + [31, 5], + [-28, 77], + [84, 20], + [27, 56], + [-21, 51] + ], + [ + [2839, 2577], + [-10, 6] + ], + [ + [1854, 2274], + [-21, 25], + [92, 125], + [64, 133], + [46, 45], + [41, 90], + [-8, 42], + [68, 74], + [64, 167] + ], + [ + [705, 4841], + [-110, -70], + [-45, 18], + [-107, -11], + [-23, 17], + [-94, -3], + [5, 47], + [100, 48], + [39, 91], + [-2, 47], + [-135, 45], + [-130, 102], + [-60, -6], + [-65, 46], + [-30, -2], + [-37, 69], + [-11, 71], + [67, 43], + [41, -43], + [108, 44], + [14, 45], + [67, 1], + [73, 84], + [46, 31], + [54, -42], + [20, -88], + [81, -19], + [214, 10], + [97, -15], + [32, -34] + ], + [ + [1742, 2218], + [-114, 82], + [-10, 34], + [-73, -43], + [-48, 12], + [-55, 51], + [-46, -7], + [15, 71], + [63, 113], + [3, 89], + [20, 97], + [-37, 35], + [8, 44], + [85, 106], + [-19, 80], + [-91, 122], + [63, 37], + [34, -13] + ] + ], + "transform": { + "scale": [0.0026315845173934343, 0.0024386956531436553], + "translate": [76.233101, 8.077847] + }, + "objects": { + "tamilnadu_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5, 6, 7]], + "type": "Polygon", + "properties": { + "cartodb_id": 175, + "censuscode": 610, + "dt_cen_cd": 9, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Erode" + } + }, + { + "arcs": [[8, 9, 10, 11, 12]], + "type": "Polygon", + "properties": { + "cartodb_id": 449, + "censuscode": 621, + "dt_cen_cd": 20, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Pudukkottai" + } + }, + { + "arcs": [[-12, 13, 14, 15, 16, 17]], + "type": "Polygon", + "properties": { + "cartodb_id": 535, + "censuscode": 622, + "dt_cen_cd": 21, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Sivaganga" + } + }, + { + "arcs": [[18, 19, -9, 20, 21, 22, 23]], + "type": "Polygon", + "properties": { + "cartodb_id": 563, + "censuscode": 620, + "dt_cen_cd": 19, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Thanjavur" + } + }, + { + "arcs": [[24, 25, 26, 27]], + "type": "Polygon", + "properties": { + "cartodb_id": 567, + "censuscode": 602, + "dt_cen_cd": 1, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Thiruvallur" + } + }, + { + "arcs": [[28, 29, 30, -19, 31]], + "type": "Polygon", + "properties": { + "cartodb_id": 569, + "censuscode": 619, + "dt_cen_cd": 18, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Thiruvarur" + } + }, + { + "arcs": [[32, 33, 34, 35]], + "type": "Polygon", + "properties": { + "cartodb_id": 570, + "censuscode": 627, + "dt_cen_cd": 26, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Thoothukudi" + } + }, + { + "arcs": [[36, 37, -21, -13, -18, 38, 39, 40, 41, 42]], + "type": "Polygon", + "properties": { + "cartodb_id": 576, + "censuscode": 614, + "dt_cen_cd": 13, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Tiruchirappalli" + } + }, + { + "arcs": [[-35, 43, 44, 45, 46]], + "type": "Polygon", + "properties": { + "cartodb_id": 577, + "censuscode": 628, + "dt_cen_cd": 27, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Tirunelveli" + } + }, + { + "arcs": [[47, 48, 49, 50, 51, -8]], + "type": "Polygon", + "properties": { + "cartodb_id": 578, + "censuscode": 633, + "dt_cen_cd": 32, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Tiruppur" + } + }, + { + "arcs": [[52, 53, 54, 55, 56]], + "type": "Polygon", + "properties": { + "cartodb_id": 579, + "censuscode": 606, + "dt_cen_cd": 5, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Tiruvannamalai" + } + }, + { + "arcs": [[57, -57, 58, 59, -27]], + "type": "Polygon", + "properties": { + "cartodb_id": 602, + "censuscode": 605, + "dt_cen_cd": 4, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Vellore" + } + }, + { + "arcs": [[60, 61, 62, 63, 64, 65, 66, 67, -54], [68]], + "type": "Polygon", + "properties": { + "cartodb_id": 604, + "censuscode": 607, + "dt_cen_cd": 6, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Viluppuram" + } + }, + { + "arcs": [[[69, -15, 70, -36, -47, 71, 72, 73]], [[74]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 605, + "censuscode": 625, + "dt_cen_cd": 24, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Virudhunagar" + } + }, + { + "arcs": [[[75, -30]], [[-32, -24, 76, 77]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 633, + "censuscode": 618, + "dt_cen_cd": 17, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Nagapattinam" + } + }, + { + "arcs": [[78, -51, 79, 80, -2]], + "type": "Polygon", + "properties": { + "cartodb_id": 123, + "censuscode": 632, + "dt_cen_cd": 31, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Coimbatore" + } + }, + { + "arcs": [[-77, -23, 81, 82, -65, 83, -63, 84]], + "type": "Polygon", + "properties": { + "cartodb_id": 124, + "censuscode": 617, + "dt_cen_cd": 16, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Cuddalore" + } + }, + { + "arcs": [[-41, 85, -48, -7, 86]], + "type": "Polygon", + "properties": { + "cartodb_id": 288, + "censuscode": 613, + "dt_cen_cd": 12, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Karur" + } + }, + { + "arcs": [[87, -25, 88]], + "type": "Polygon", + "properties": { + "cartodb_id": 111, + "censuscode": 603, + "dt_cen_cd": 2, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Chennai" + } + }, + { + "arcs": [[-40, 89, 90, 91, -49, -86]], + "type": "Polygon", + "properties": { + "cartodb_id": 157, + "censuscode": 612, + "dt_cen_cd": 11, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Dindigul" + } + }, + { + "arcs": [[-88, 92, -61, -53, -58, -26]], + "type": "Polygon", + "properties": { + "cartodb_id": 272, + "censuscode": 604, + "dt_cen_cd": 3, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Kancheepuram" + } + }, + { + "arcs": [[93, 94, -59, -56]], + "type": "Polygon", + "properties": { + "cartodb_id": 324, + "censuscode": 631, + "dt_cen_cd": 30, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Krishnagiri" + } + }, + { + "arcs": [[-11, 95, -33, -71, -14]], + "type": "Polygon", + "properties": { + "cartodb_id": 471, + "censuscode": 626, + "dt_cen_cd": 25, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Ramanathapuram" + } + }, + { + "arcs": [[-67, 96, -43, 97, -5, 98]], + "type": "Polygon", + "properties": { + "cartodb_id": 495, + "censuscode": 608, + "dt_cen_cd": 7, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Salem" + } + }, + { + "arcs": [[-22, -38, 99, -82]], + "type": "Polygon", + "properties": { + "cartodb_id": 26, + "censuscode": 616, + "dt_cen_cd": 15, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Ariyalur" + } + }, + { + "arcs": [[-55, -68, -99, 100, -94]], + "type": "Polygon", + "properties": { + "cartodb_id": 148, + "censuscode": 630, + "dt_cen_cd": 29, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Dharmapuri" + } + }, + { + "arcs": [[101, -45]], + "type": "Polygon", + "properties": { + "cartodb_id": 277, + "censuscode": 629, + "dt_cen_cd": 28, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Kanniyakumari" + } + }, + { + "arcs": [[102, -74, 103, -90, -39, -17]], + "type": "Polygon", + "properties": { + "cartodb_id": 350, + "censuscode": 623, + "dt_cen_cd": 22, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Madurai" + } + }, + { + "arcs": [[-42, -87, -6, -98]], + "type": "Polygon", + "properties": { + "cartodb_id": 398, + "censuscode": 609, + "dt_cen_cd": 8, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Namakkal" + } + }, + { + "arcs": [[-66, -83, -100, -37, -97]], + "type": "Polygon", + "properties": { + "cartodb_id": 440, + "censuscode": 615, + "dt_cen_cd": 14, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Perambalur" + } + }, + { + "arcs": [[-3, -81, 104]], + "type": "Polygon", + "properties": { + "cartodb_id": 565, + "censuscode": 611, + "dt_cen_cd": 10, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "The Nilgiris" + } + }, + { + "arcs": [[-104, -73, 105, -91]], + "type": "Polygon", + "properties": { + "cartodb_id": 566, + "censuscode": 624, + "dt_cen_cd": 23, + "st_cen_cd": 33, + "st_nm": "Tamil Nadu", + "district": "Theni" + } + } + ] + } + } +} diff --git a/public/maps/telugana.json b/public/maps/telugana.json index 87546054bc..6e303610af 100644 --- a/public/maps/telugana.json +++ b/public/maps/telugana.json @@ -1 +1,8787 @@ -{"type":"Topology","arcs":[[[7402,28844],[141,-76],[249,-178],[281,-208],[74,-73],[76,-146],[30,-67],[48,-35],[67,-47],[113,-39],[93,-52],[62,-30],[76,-74],[62,-60],[63,-17],[103,-20],[100,10],[66,17],[81,57],[42,79],[-7,90],[-23,136],[18,29],[39,5],[77,-24],[87,-5],[79,-5],[71,-30],[56,-17],[92,4],[59,43],[7,36],[22,28],[63,51],[321,174],[35,4],[55,33],[32,0],[61,-25],[42,6],[20,39],[0,50],[24,12],[34,7],[112,0],[20,14],[2,60],[-3,71],[12,34],[21,49],[3,67],[17,60],[8,-15],[53,-32],[74,-12],[72,15],[113,33],[195,87],[163,59],[48,0],[11,-63],[-4,-139],[11,-79],[33,-12],[70,-24],[126,-71],[100,-99],[228,-253],[22,0],[85,20],[56,0],[44,-20],[44,16],[93,63],[151,182],[15,67],[33,44],[55,24],[89,8],[55,0],[44,39],[69,61],[90,-92],[143,-91]],[[13066,28597],[180,-155]],[[13246,28442],[8,-77],[-22,-59],[-152,-137],[-69,-42],[-39,-59],[-69,-157],[-42,-33],[-185,-101],[-28,-56],[8,-60],[45,-41],[58,-24],[3,-48],[-64,-154],[-47,-113],[-3,-74],[36,-15],[100,30],[39,62],[74,101],[81,86],[44,0],[52,-26],[42,-104],[55,-104],[25,-95],[0,-116],[19,-94]],[[13215,26932],[-85,-65],[-53,-62],[-48,-70],[-78,-82],[-65,-20],[-96,24],[-99,39]],[[12691,26696],[-206,123]],[[12485,26819],[-113,42],[-77,-22],[-221,-157]],[[12074,26682],[-296,-187]],[[11778,26495],[-134,-27],[-281,123],[-144,14]],[[11219,26605],[-90,-35],[-37,-14]],[[11092,26556],[-65,-61],[-62,-110],[-32,-47],[-107,-119],[-46,-17],[-55,-9]],[[10725,26193],[-83,17]],[[10642,26210],[-164,67]],[[10478,26277],[-24,-2],[-2,-1],[-45,-4]],[[10407,26270],[-90,-57],[-63,-48],[-144,-184],[-79,-73]],[[10031,25908],[-21,11],[-54,25],[-104,105],[-91,43]],[[9761,26092],[-146,-30],[-112,-23]],[[9503,26039],[-107,-1],[-65,12],[-70,40],[-138,135],[-86,68],[-92,19],[-83,-15]],[[8862,26297],[-44,-13],[-59,-16]],[[8759,26268],[-81,-52],[-219,-176],[-95,-54],[-114,-53]],[[8250,25933],[-111,-31]],[[8139,25902],[-61,22],[-32,113],[5,97],[-41,108]],[[8010,26242],[-35,42],[-24,30]],[[7951,26314],[-96,59],[-24,9],[-94,34],[-116,-10],[-123,-25]],[[7498,26381],[-25,-13],[-73,-38]],[[7400,26330],[-117,-38],[-131,-63],[-216,-180],[-94,-50],[-155,-67],[-63,-20],[-57,-31],[-100,-24],[-23,-18],[-42,-30],[-98,-88],[-6,-8],[-65,-111],[-40,-91],[-35,-116],[-34,-29],[-52,-9],[-173,52],[-213,-52],[-64,-56]],[[5622,25301],[-49,-107],[-24,22],[-41,2],[-74,31],[-121,-8],[-110,49],[-53,6],[-5,131],[-85,12],[-39,93],[-8,101],[-96,15],[-97,-35],[-126,43],[5,85],[25,74],[34,8],[39,174],[-180,-17],[-24,-37],[-114,31],[19,81],[-18,7],[33,186],[-232,15],[-44,-66],[-110,43],[8,149],[-20,67],[-4,66],[-8,35],[-16,8],[-15,18],[-22,49],[27,188],[-10,68],[16,22],[72,-49],[54,-15],[40,4],[63,-34],[26,-4],[20,9],[-11,81],[11,32],[-28,53],[7,18],[22,10],[31,81],[-12,85],[4,36],[19,25],[24,12],[73,3],[56,-61],[24,-39],[24,-56],[41,13],[64,2],[35,15],[12,13],[0,21],[-31,28],[8,151],[-51,39],[-37,115],[-22,25],[51,22],[46,71],[44,70],[-4,34],[11,24],[2,45],[27,15],[3,23],[-10,38],[42,33],[-107,62],[15,73],[48,63],[-3,43],[48,73],[23,65],[6,63],[25,33],[20,69],[-5,76],[134,41],[56,-26],[66,-8],[41,92],[-39,83],[-59,10],[-137,12],[-104,36],[-9,29],[14,64],[-14,57],[80,30],[32,26],[99,29],[41,73],[48,-28],[49,-17],[50,18],[76,66],[33,50],[85,32],[26,56],[64,-10],[107,-79],[31,-37],[79,-52],[67,-100],[80,-28],[122,-38],[52,-40],[70,-146],[43,-39],[100,-27],[29,-67],[-14,-59],[3,-68],[24,-48],[50,-16],[136,56],[55,69],[100,-41],[33,-37],[212,8],[97,-58],[82,-78],[157,52],[103,44],[24,64],[-24,99],[-1,148],[50,129]],[[10095,12900],[-10,-26],[-10,-27],[-6,-3],[-3,0],[-9,21],[-25,-39],[-17,-12],[-28,6],[-16,19],[-2,16],[6,20],[-3,11],[-5,0],[-18,-9],[-10,-3],[-21,3],[-9,-4],[-7,-2],[-21,-16],[-3,-33],[-2,-35],[-8,-19],[-30,-46],[-18,-63],[3,-36],[-16,-26],[-9,-1],[-22,9],[-22,7],[-20,0],[-26,-6],[-33,-14],[-21,-16],[-13,-8],[-22,-5],[-29,-27],[-9,-13],[-12,9],[3,22],[-6,12],[-14,5]],[[9552,12571],[-30,-4]],[[9522,12567],[-33,-4],[-23,-17],[-8,3],[-11,-2],[-7,-3],[-10,6],[-14,0],[-33,-9],[-20,1],[-27,4],[-3,8],[8,12],[6,14],[12,14],[24,14],[20,7],[20,31],[9,18],[8,77],[-5,10],[-7,1],[-14,-1],[0,3],[-5,-1],[-14,-8],[-16,1],[-20,5],[-12,-3],[-34,-18],[-18,0],[-12,-4],[-19,-7],[-16,-1],[0,5],[13,11],[11,4],[35,26],[16,15],[12,25],[0,23],[5,9],[12,6],[8,29],[17,33],[4,12],[2,15],[0,4],[-2,14],[-13,15],[-15,5],[-15,3],[-11,-3],[-10,0],[-8,6],[-13,20],[-22,3],[-17,-1],[-60,-15],[-27,-5],[-64,-6],[-23,-3],[-57,-16],[-13,-10],[-15,-6],[-54,-6],[-24,-2],[-27,5],[-20,-5],[-62,-8],[-19,-3],[-54,12],[-2,7],[5,26],[12,15],[92,46],[34,10],[11,0],[16,-19],[7,-2],[34,2],[27,-9],[43,-1],[35,-1],[7,1],[-13,17],[-12,9],[0,12],[8,10],[-6,28],[-1,7],[2,27],[2,8],[-5,11],[0,15],[-10,14],[-18,9],[-3,11],[-5,54],[8,15],[12,8],[12,18],[39,16],[9,17],[14,9],[23,10],[-6,21],[-43,42],[-34,23],[-36,-1],[-7,12],[0,6],[12,9],[17,8],[7,8],[11,27],[1,16],[6,19],[21,24],[31,14],[25,26],[-4,13],[-1,4],[-1,10],[-13,21],[14,33]],[[9115,13664],[6,18],[11,12],[12,0],[51,16],[75,24],[31,11],[53,-15],[17,5],[56,-7],[24,-8],[38,-9],[24,0],[21,-7],[12,-18],[7,-28],[10,-21],[8,-5],[15,7],[12,6],[11,21],[8,6],[17,13],[18,7],[17,18],[5,13],[3,15],[-2,2],[-4,4],[-41,9],[-6,11],[-3,26],[5,50]],[[9626,13840],[-6,64]],[[9620,13904],[1,43],[8,11],[19,7],[20,-7],[33,-9],[23,-4],[7,-3],[40,-30],[14,-3],[15,5],[29,-4],[64,-32],[15,3],[3,15],[-10,20],[-54,46],[1,42],[6,22],[14,2],[20,3],[18,13],[9,0],[14,-3],[7,4],[11,16],[54,-26],[46,-35],[4,-23],[14,-32],[10,-29],[12,-24],[15,-50],[-11,-15],[-2,-32],[3,-14],[4,-9],[-5,-17],[12,-44],[2,-6],[17,-39],[19,-27],[9,-4],[8,36],[9,10],[20,3],[16,-7],[34,-42],[14,-29],[7,-17],[-14,-25],[-4,-24],[-14,-27],[-14,-17],[-10,-2],[-5,0],[-4,6],[-11,13],[-13,8],[-27,13],[-6,-2],[-6,-2],[-8,-14],[-1,-17],[3,-12],[19,-45],[29,-18],[16,-3],[32,-43],[3,-10],[-15,-13],[-19,-4],[-41,5],[-26,1],[-18,-7],[2,-11],[0,-4],[9,-4],[8,-4],[6,-13],[17,2],[5,-4],[-15,-42],[-34,-80],[-6,-45],[16,-18],[7,-5],[1,-7],[-1,-5],[0,-4],[-38,-17],[-2,-28],[7,-8],[8,-4],[8,-15],[17,24],[13,7],[11,6],[4,-10],[4,-6],[17,-7],[-7,-14],[-20,-12],[-12,-12],[-16,-8],[-35,10],[-1,-2],[-8,-18],[-5,-11],[-1,-10],[15,-14],[17,-57]],[[20620,24987],[117,-201],[55,-78],[122,-107],[63,-22],[78,-16],[243,-47],[89,-6],[125,-41],[25,-15],[17,-55],[16,-26],[17,-50],[85,-19],[24,-19],[105,-212],[54,-26],[67,-11],[28,-27],[18,-38],[53,-51],[33,-10],[25,9],[18,-13],[19,-28],[105,-105],[47,-61],[33,-12],[40,-2],[19,27],[22,17],[75,35],[44,12],[44,-5],[50,58],[27,17],[46,6],[30,-16],[20,-31],[22,-85],[28,-23],[36,-12],[103,-3],[16,29],[5,38],[19,41],[61,74],[46,25],[50,6],[44,-16],[41,-25],[36,11],[44,24],[47,-2],[39,10],[106,106],[55,32],[27,-37],[54,-21],[85,-133],[58,-78],[24,-53],[65,-224],[56,-133],[33,-122],[94,-209],[41,-50],[16,-19],[24,-15],[52,17],[33,20],[24,23],[12,39],[17,32],[22,13],[34,7],[28,-13],[86,-79]],[[24401,23013],[71,-129],[33,-93],[-4,-38],[-14,-41],[-25,-46],[-124,-113],[-24,-46],[-9,-34],[-3,-48],[15,-31],[25,-19],[3,-75],[15,-61],[-36,-38],[9,-37],[-10,-102],[16,-89],[24,-41],[36,-35],[54,-28],[67,-23],[54,1],[34,15],[52,-1],[54,-12],[49,15],[41,-1],[100,-27],[66,-49],[21,-33],[10,-81],[-7,-43],[-22,-47],[-14,-53],[-25,-132],[5,-34],[26,-29],[85,-64],[21,-33],[-3,-72],[-42,-107],[-17,-74],[37,-118],[3,-45],[-22,-96],[35,-143],[25,-52],[36,-47],[78,-80],[31,-45],[20,-58],[44,-56],[46,-18],[75,12],[54,-6],[85,-31],[37,-38],[119,-86],[38,-15],[85,-49],[76,-54],[42,-37],[100,-56],[81,-68],[39,-66],[38,-8],[48,3],[17,-32],[8,-36],[15,-23],[-1,-14],[106,-48],[93,-85],[25,-8],[28,-33]],[[26549,19449],[-33,-63]],[[26516,19386],[-8,-65],[-23,-12],[-23,13],[-27,5],[-3,-4],[-7,-11],[47,-60],[4,-10],[10,-25],[-14,-76],[-59,5],[-132,44],[-16,-24],[-12,-17],[-13,-37],[2,-28],[136,-17],[3,-33],[-44,-87],[-18,-16],[-48,6],[-80,32],[-3,-1],[-14,-6],[-14,-73],[-28,-40],[-6,-18],[-17,-54]],[[26109,18777],[-56,-60]],[[26053,18717],[-33,-6],[-93,-81],[-66,-16],[-111,-55],[-155,-111],[-67,-40],[-132,0],[-447,118],[-68,36],[-25,7],[-70,-43],[-27,-8],[-118,70],[-42,35],[-20,18],[-56,38],[-76,30],[-153,-147],[-145,-169],[-35,-28],[-26,-33],[-20,-67],[-8,-95],[-106,-96],[-27,-38]],[[23927,18036],[-34,-61]],[[23893,17975],[-104,60],[-158,15],[-196,84],[-137,110],[-265,151],[-237,111],[-118,134],[-12,33],[-67,30],[-64,26],[-185,6],[-112,-32],[-120,-69],[-85,-12],[-91,24],[-120,87],[-59,81],[-35,40],[-14,-8]],[[21714,18846],[-34,77],[-80,63],[-105,53],[-72,-6],[-97,-53],[-136,-74],[-72,-72],[-30,-29],[-346,-137],[-50,6],[-55,18],[-72,110],[-42,20],[-384,27],[11,80],[74,161],[92,110],[0,47],[-25,30],[-39,18],[-31,-12],[-83,-10],[-62,-3],[-37,23],[-62,116],[-58,59],[-106,84],[-44,-5],[-113,-19],[-120,2],[-46,10]],[[19490,19540],[-30,77]],[[19460,19617],[9,54],[2,37],[-27,10],[-92,47],[-19,30],[-14,62],[-39,91],[-39,42],[-21,32],[12,25],[16,32],[-10,45],[-63,85],[-4,-25],[-28,-64],[-76,-50],[-67,-47],[-71,-9],[-67,14],[-143,122],[-28,14],[-34,-14],[-86,-75],[-37,-29],[-80,-15],[-56,30],[-39,19],[-39,-12],[-21,-25],[-15,-47]],[[18284,19996],[-33,78]],[[18251,20074],[-20,42],[-79,111]],[[18152,20227],[-52,140]],[[18100,20367],[-18,71],[-8,100],[10,93],[69,26],[14,68],[-36,69],[36,46],[11,30],[5,94],[-6,46]],[[18177,21010],[-32,122],[-8,33]],[[18137,21165],[-1,82],[15,75],[5,69],[21,53],[-47,137]],[[18130,21581],[51,65]],[[18181,21646],[73,117],[13,61],[-6,67],[3,64]],[[18264,21955],[101,10]],[[18365,21965],[136,38],[81,9],[66,57],[87,32],[51,63],[166,232],[39,85],[74,128],[11,74],[65,144],[72,48],[107,27],[70,-8],[173,-39],[44,4],[89,63],[140,329],[15,95],[48,87],[0,83],[15,40],[33,87],[-11,43],[-48,75],[-113,205]],[[19775,23966],[72,48]],[[19847,24014],[70,69],[32,143]],[[19949,24226],[42,87],[47,99]],[[20038,24412],[80,117],[52,45],[62,41],[23,94],[-24,73],[-59,60],[-80,114],[-15,82],[11,124],[31,111],[48,80],[45,33],[105,-87],[22,-125],[6,-69],[34,-104],[80,-29],[84,-8],[53,12],[24,11]],[[28463,11431],[-392,319],[-22,32],[7,47],[74,95],[7,52],[-14,43],[-22,56],[3,23],[33,60],[0,87],[12,59],[3,131],[-3,87],[-34,87],[8,36],[-281,-95],[-96,-64],[-136,12],[-126,48],[-40,-12],[-56,-68],[-86,-139],[-222,-52],[-129,-114],[-243,-99],[7,-16],[-37,-56],[-55,-11],[-211,122],[-55,16],[-66,-20],[-83,-22],[-60,134],[-51,134],[-44,22],[-219,32],[-25,17],[-25,112],[-42,203],[7,111],[41,96],[-2,80],[-32,126],[-2,81],[46,62],[20,65],[7,126],[-13,62],[-3,42],[-14,59],[-57,87],[0,37],[-10,42],[-16,30],[-43,28],[-144,67],[-67,16],[-313,4],[-45,59],[-18,67],[-74,79],[-62,5],[-87,-35],[-60,10],[-88,74],[-51,3],[-69,-20],[-32,-7],[-16,69],[-24,57],[0,86],[-13,42],[-30,-9],[-65,-50],[-81,-67],[-25,-54],[-46,-47],[-72,-126],[-71,-55],[-56,-7],[-13,29],[-17,87],[-73,119],[-7,42],[46,44],[11,85],[-13,42],[-19,39],[-39,65],[-46,19],[-150,-7],[-256,0],[-228,23]],[[23258,14611],[0,4]],[[23258,14615],[-14,116],[-28,35],[-55,9],[-39,36],[-41,151],[5,119],[61,86],[50,0],[91,12],[117,98],[22,77],[63,101],[11,45],[-22,80],[-27,80],[-25,131],[-78,93],[20,5],[27,51]],[[23396,15940],[15,125],[4,35]],[[23415,16100],[-31,119],[-34,374],[147,270],[37,91],[19,92],[-1,117],[30,107],[-65,95],[-19,108],[30,129],[10,97],[-5,63],[131,-12],[41,7],[71,44],[8,5],[30,30]],[[23814,17836],[113,200]],[[26053,18717],[37,40],[19,20]],[[26516,19386],[15,29],[18,34]],[[24401,23013],[31,24],[30,23],[29,31],[69,35],[38,5],[70,9],[12,16],[253,130],[39,-12],[60,-19],[37,1],[35,8],[61,33],[15,2],[11,2],[38,-12],[76,-75],[97,-17],[25,-21],[11,-49],[21,-32],[29,-22],[53,-59],[1,-7],[5,-25],[5,-9],[15,-22],[66,-26],[134,-85],[33,-27],[46,-67],[105,-33],[109,-70],[42,-34],[24,-35],[53,-60],[23,-63],[58,-24],[44,-41],[44,5],[6,-10],[12,-19],[5,-31],[6,-36],[-8,-13],[-14,-21],[3,-16],[5,-22],[17,-39],[63,-86],[26,-37],[20,-57],[89,-54],[29,-26],[29,-12],[14,-12],[12,-12],[8,-17],[49,-23],[15,-29],[3,-24],[2,-21],[43,-21],[26,-14],[23,3],[31,-40],[-28,-12],[-21,-47],[-12,-79],[170,-113],[34,27],[7,6],[33,5],[31,-11],[18,-43],[-13,-32],[-25,-40],[-64,-66],[2,-15],[2,-21],[19,-31],[32,-28],[11,-32],[-9,-34],[-1,-31],[-1,-24],[10,-33],[18,-59],[65,-96],[63,-138],[12,-44],[6,-98],[-5,-24],[52,-39],[13,-52],[32,-54],[19,-18],[16,-4],[13,-3],[24,-29],[55,-111],[31,-43],[32,-1],[26,-13],[13,-18],[12,-15],[1,-36],[-8,-27],[-23,-27],[-116,-57],[-97,-57],[-183,-90],[-8,-111],[3,-93],[15,-187],[82,-57],[68,-8],[66,-8],[130,7],[60,3],[52,11],[34,7],[100,101],[-1,40],[56,32],[6,41],[-8,172],[5,52],[-9,52],[14,48],[40,21],[42,5],[36,-7],[42,-44],[151,-17],[21,-36],[14,-37],[30,-82],[-2,-34],[-12,-19],[-34,-19],[-37,-2],[-57,15],[-3,-9],[-4,-12],[2,-15],[3,-23],[26,-80],[3,-42],[-7,-84],[31,-139],[-2,-21],[-2,-20],[2,-14],[2,-18],[21,-31],[15,-14],[10,-8],[3,-32],[148,-1],[91,16],[61,2],[87,32],[155,90],[30,26],[7,19],[58,19],[44,60],[34,22],[88,12],[63,-2],[1,-82],[7,-53],[-16,-69],[-40,-47],[-141,-123],[-14,-53],[18,-109],[0,-45],[-12,-58],[-18,-59],[-16,-27],[66,-76],[86,-184],[19,-52],[-29,-99],[3,-3],[5,-25],[5,-31],[17,-49],[18,-56],[12,-73],[12,-48],[9,-34],[4,-57],[5,-80],[17,-115],[16,-111],[13,-32],[3,-21],[3,-28],[21,-41],[11,-100],[57,-29],[18,-43],[22,-159],[36,-253],[12,-130],[8,-89],[63,-181],[154,-224],[41,-29],[59,-19],[83,-9],[41,6],[35,5],[26,8],[35,10],[22,35],[24,37],[58,69],[98,-131],[41,-75],[0,-64],[42,-64],[-121,-177],[-78,-48],[0,-38],[-78,-29],[-83,10],[-37,29],[-64,50],[-65,25],[-55,79],[-120,19],[-111,20],[-101,5],[-102,52],[-14,39],[-89,12],[-11,-6],[-200,7],[-161,-79],[-46,-50],[-23,30],[-102,25],[-92,54],[41,-247],[5,-30],[0,-168],[-23,-99],[-52,-64],[-40,-70],[-37,-74],[-5,-94],[97,-163],[111,-60],[119,-35],[104,35],[28,22],[39,31],[78,19],[14,4],[35,9],[13,3],[75,18],[250,-59],[71,-137],[-7,-9],[-18,-24],[-25,-34],[-3,-4],[-13,-18],[-103,-16],[-8,-1],[-48,-92],[-99,-188],[10,-40],[27,-138],[6,-29],[78,-95],[160,-136],[61,-119],[28,-154],[122,-83],[121,-6],[183,-131],[149,-113],[161,12],[66,89],[39,83],[41,24],[59,36],[88,0],[35,-17],[15,-97],[9,-119],[-46,-114],[60,-89],[139,-99],[69,-5],[68,43],[107,66],[42,-5],[15,-65],[17,-68],[175,-174],[202,-8],[140,-6],[8,-44],[33,-174],[100,-174],[-47,-75],[-57,-65],[-113,-81],[-39,16],[-36,6],[-180,1],[-121,-9],[-220,47],[-68,-43],[-26,-64],[-49,-75],[-10,-75],[4,-248],[27,-53],[46,-48],[-97,-102],[-41,-81],[-133,-7],[-213,-59],[-261,-91],[-173,-80],[-65,51],[-21,11],[-35,19],[-21,-77],[-30,-38],[-40,-23],[-26,-40],[-41,-48],[-161,-18],[-60,-20],[-50,-20],[-47,-2],[-146,43],[-80,30],[-65,43],[-67,58],[-65,39],[-78,7],[-52,-5],[-66,-33]],[[9935,9651],[71,-42]],[[10006,9609],[134,-21],[102,-33],[48,-113],[46,-53],[84,-75],[142,28],[89,31],[60,-2],[211,-28],[50,-35],[47,-48]],[[11019,9260],[85,-50],[21,-11]],[[11125,9199],[84,-62],[113,19]],[[11322,9156],[128,-53],[116,-56],[133,-85],[-67,-81],[-83,-154],[-23,-86],[63,-92],[116,-49],[77,97],[72,72],[59,49],[50,-104],[-1,-83],[-48,-118],[48,-50],[71,-99],[84,-27],[-15,-74],[-55,-72],[14,-112],[0,-105],[-33,-156]],[[12028,7718],[-33,-64]],[[11995,7654],[-50,-51],[-39,-16],[-112,-1],[-31,-57]],[[11763,7529],[35,-89]],[[11798,7440],[-45,-171],[-73,-23],[-58,-34],[-104,-104],[-66,-53],[-52,-96],[42,-173],[-124,3],[-90,-6],[-77,9],[-45,-7],[28,-82],[57,-127],[83,-31],[117,-193],[56,-127],[-65,-93],[-58,-58]],[[11324,6074],[-32,-9],[-24,-7]],[[11268,6058],[-76,-64],[-21,-131],[86,-23]],[[11257,5840],[29,3],[160,19]],[[11446,5862],[243,-17],[71,1],[60,-15],[49,-26]],[[11869,5805],[21,-20],[26,-25]],[[11916,5760],[122,-77],[80,11],[160,125],[80,78],[70,44],[88,25],[45,-8],[65,-45],[26,-11],[111,41],[145,22],[47,0],[93,-118],[26,-103],[30,-54],[236,-140],[142,-56],[148,10],[132,-45]],[[13762,5459],[380,-232],[21,-13]],[[14163,5214],[231,-176],[148,-137],[277,-148],[290,-196],[218,-101]],[[15327,4456],[91,-104],[36,-112],[15,-305],[-37,-417],[-50,-87],[-86,-74],[-121,-67],[-119,-46],[-108,26],[-89,36],[-67,39],[-73,59],[-79,13],[-422,2],[-112,36],[-90,20],[-90,7],[-83,-12],[-78,-32],[-137,-101],[-112,-44],[-147,-48],[-139,-62],[-121,-62],[-135,-94],[-21,-76],[1,-141],[119,-260],[8,-99],[-36,-69],[-30,-39],[-23,-30],[-72,-63],[-94,8],[-127,96],[-25,95],[-11,114],[-13,71],[-26,77],[-51,46],[-79,8],[-65,-23],[-44,-42],[-13,-80],[6,-76],[21,-107],[32,-77],[17,-67],[-7,-71],[-22,-57],[-116,-210],[-61,-83],[-44,-50],[-140,-112],[-116,-76],[-164,-22],[-116,2],[-101,15],[-95,30],[-210,115],[-90,72],[-51,56],[-83,130],[-85,94],[-66,60],[-14,12],[-151,62],[-104,-20],[-85,-77],[-125,-140],[-73,-71],[-62,-45],[-94,-2],[-109,51],[-93,23],[-196,67],[-346,66],[-233,15],[-119,-16],[-166,-76],[-110,-100],[-131,-44],[-99,-14],[-72,-48],[-58,-82],[-57,-67],[-187,-5],[-86,30],[-100,22],[-89,-29],[-41,-47]],[[7881,1651],[-207,59],[-42,42],[-71,106],[-33,143],[-18,265],[-16,45],[-97,136],[-24,28],[58,55],[37,49],[24,85]],[[7492,2664],[16,46],[14,39]],[[7522,2749],[29,135],[-13,57],[-31,4],[-104,2],[-114,34],[-61,32],[-11,61],[4,61],[42,50],[104,93],[12,55],[-25,71],[-2,52],[15,71],[7,79],[-44,28],[-45,0],[-42,-10],[-59,2],[-46,77],[-41,56],[-20,93],[15,109],[27,55],[146,58],[17,35],[137,9],[41,-6],[28,-30],[25,-59],[108,-101],[108,-30],[50,21],[-3,54],[-25,107],[19,92],[64,62],[91,6],[89,-33],[75,-12],[-3,35],[11,74],[36,77],[72,21],[66,6],[6,29],[-31,39],[-30,68],[-17,66],[22,62],[-5,36],[-58,92],[-119,74],[-61,0],[-47,33],[-20,5],[-61,-35],[-66,3],[-86,53],[-36,15],[-55,-30],[-61,-47],[-91,-6],[-75,6],[-31,53],[4,126],[-24,62],[-22,59],[-112,52],[-28,-12],[-66,-16],[-61,2],[-70,26],[-58,51],[-92,66],[-120,107],[-23,54],[-2,47],[-21,52],[-14,84],[7,112],[109,410],[30,146],[-12,88]],[[6774,6434],[19,0]],[[6793,6434],[32,17],[-2,40],[13,69],[83,86],[26,45],[14,101],[-12,30],[-53,69],[-18,57],[4,55],[21,69],[58,92],[33,52],[14,80],[44,45],[50,68],[41,-3],[69,-95],[14,-62],[28,-21],[94,18],[64,74],[5,74],[39,83],[66,161],[104,-45],[155,-62],[19,-39],[28,-65],[144,-139],[97,-60],[80,-6]],[[8147,7222],[55,-30],[20,-11]],[[8222,7181],[74,-101],[20,-57],[19,-32],[47,-27],[75,0],[53,-42],[77,-26],[61,0],[25,35],[22,86],[55,18],[144,-33],[36,9],[6,66],[28,65],[49,18],[72,15],[45,56],[16,95],[6,71],[55,24],[136,45],[33,38],[22,45],[9,77],[11,75],[18,44],[48,8],[63,-20],[37,4],[7,39],[-3,56],[-23,63],[-69,72],[-79,-10],[-62,12],[-122,97],[-16,39],[11,47],[26,45],[23,109],[4,34],[26,55],[4,39],[-30,20],[-124,-96],[-42,-20],[-92,-178],[-39,-8],[-49,-5],[-90,-123],[-36,-18],[-37,8],[-49,99],[-21,-3],[-18,-12],[-85,2],[-74,-44],[-32,-5],[-19,20],[-32,84],[2,128],[-7,40],[-28,12],[-133,33],[44,77],[47,88]],[[8367,8533],[43,20]],[[8410,8553],[19,86],[-33,92],[3,54],[36,32],[60,-12],[142,-17],[119,11],[38,33],[25,74],[-11,63],[-61,44],[-50,24],[-41,15],[-11,18],[25,44],[36,48],[75,38],[132,208],[153,350],[41,147],[83,-37],[131,-87],[78,-64],[3,-57],[39,-21],[18,-74],[40,-1],[64,27],[37,25],[37,34],[25,66],[31,42],[41,36],[60,32],[51,1],[39,-18],[13,-23],[4,-35],[-6,-35],[40,-65]],[[13867,21426],[19,-68]],[[13886,21358],[39,-63],[-11,-104],[-28,-35],[0,-169],[19,-42],[20,-68],[-69,-178],[-28,-12],[-130,-6],[-67,-71],[20,-45],[-28,-137],[-28,-112],[36,-199],[-5,-9],[-138,-296],[87,-23],[70,-23],[67,-27],[134,200],[7,52],[109,54],[76,3],[14,-57],[-12,-94],[39,-104],[95,-25],[85,45],[32,74],[0,104],[3,42],[87,188],[56,74],[30,92],[23,12],[134,12],[30,30],[2,15]],[[14656,20456],[45,-56]],[[14701,20400],[-14,-72],[-53,-83],[-69,-187],[-3,-59],[0,-33],[125,-50],[66,-51],[86,-12],[33,-32],[-3,-75],[28,-74],[94,-142],[153,29],[33,5],[27,-17],[86,-3],[92,25],[48,47],[72,32],[104,-111],[80,-47],[153,-37],[16,-22],[11,-109],[33,-42],[64,-55],[9,-47]],[[15972,19178],[-30,-178],[-50,-129],[-30,-37],[-5,-49],[23,-82],[-11,-22],[-72,-104],[-34,-25],[-56,13],[-154,89],[-35,-8],[-37,-52],[-21,-220],[16,-40],[54,-113],[0,-35],[-70,-161],[-43,-57],[-71,-40],[-18,18],[-104,36],[-89,13],[-138,-43],[-37,-105],[-32,-79],[-44,-117],[-74,-91],[-50,-32],[-35,-35],[-46,-69],[-12,-45],[7,-49],[46,-50],[10,-47],[-44,-42]],[[14686,17191],[-99,-148]],[[14587,17043],[-99,-23],[-201,-44],[-87,-5],[-67,64],[-81,10],[-81,-35],[-27,-57],[-58,-106],[-30,-89],[-25,-27],[-28,2],[-92,124],[-35,20],[-157,-18],[-37,23],[-94,76],[-79,8],[-37,-18],[-39,-47],[-14,-94],[-30,-19],[-41,-8],[-76,-79],[-72,-57],[-115,-10],[-95,0],[-116,10],[4,-28],[-54,-33],[-8,-57],[11,-73],[-22,-35],[-5,-49],[6,-147],[-31,-79],[-11,-100],[-18,-67],[-52,-25],[-63,-18],[-68,-10],[-66,-23],[-41,-74],[-24,-55],[-27,-35],[-25,-66],[-2,-69],[-66,8],[-53,36],[-32,-26],[-42,-3],[-14,-15],[28,-53],[35,-45],[-104,-92],[-11,-62],[-25,-4],[-77,66],[-82,-4],[-86,-22],[-52,-74],[-49,-43],[-80,1]],[[11468,15269],[-128,146],[-134,12],[-25,59],[-61,21],[-86,5],[-54,-107],[-35,-50],[-70,-52],[-74,-27],[-66,1],[-75,12],[-15,96],[-41,53],[-73,116],[-129,-2],[-46,-69],[-35,-42],[-94,-3],[-69,17],[-120,66],[-67,24],[-58,-21],[-44,-94],[-90,-16],[-45,40]],[[9734,15454],[-33,6]],[[9701,15460],[8,59],[33,53],[120,95],[7,46],[20,20],[4,24],[-37,53],[6,45],[26,32],[51,28],[-5,35],[-48,44],[-54,111],[-2,65],[32,79],[-19,151],[-3,37],[49,14],[26,28],[2,194],[28,42],[160,112],[98,40],[13,67],[35,30],[48,40],[17,51],[1,99],[-23,48],[-21,15],[-31,-8],[-26,-51],[-39,-71],[-37,-6],[-46,-4],[-35,-26],[-48,8],[-35,26],[-17,29],[-6,68],[31,42],[77,18],[31,32],[5,84],[-22,35],[-44,71],[2,90],[-27,59],[5,53],[36,104],[68,107],[26,15],[42,21],[13,57],[15,59],[34,28],[62,22],[72,75],[7,63],[21,40],[21,30]],[[10428,18287],[-2,25],[-1,33]],[[10425,18345],[-30,51],[0,87],[3,55],[-10,48],[-22,30],[-35,24],[-7,54],[-4,57],[15,69],[35,34],[26,61],[0,40],[-70,32],[-41,-2],[-61,-18],[-44,10],[-26,23],[-13,38],[24,81],[61,81],[65,40],[31,22],[15,35],[5,16],[28,36],[65,41],[7,24],[-7,36],[-6,39],[-44,50],[-22,24],[-66,52]],[[10297,19615],[-5,113],[13,163],[-7,71]],[[10298,19962],[70,-43],[53,53],[74,130],[66,26],[220,12],[91,-2],[8,89],[3,80],[-8,47],[-34,48],[-16,62],[0,62],[33,54],[33,50],[8,45],[38,115],[16,-28],[37,-10],[163,18],[47,24],[13,55],[-16,44],[-76,89],[2,30],[79,89],[60,15],[64,32],[49,25],[46,-12],[53,-20],[74,0],[51,-15],[25,-30],[-7,-69],[0,-64],[21,-43],[48,-2],[44,-25],[188,-168],[14,-44],[3,-345],[2,-29],[30,-69],[66,-25]],[[12033,20213],[59,-9],[34,-6]],[[12126,20198],[163,-2],[55,-24],[-2,161],[13,33],[83,56],[28,45],[39,33],[163,98],[0,29],[-14,72],[20,35],[61,60],[27,74],[-5,74],[-22,77],[0,107],[13,36],[14,62],[0,68],[34,42],[22,-3],[14,-65],[30,-33],[47,-24],[61,0],[97,18],[61,62],[47,42],[47,51],[19,89],[150,8],[146,-56],[128,-27],[69,21],[5,54],[128,-45]],[[17939,13923],[29,-39],[84,8],[125,-48],[61,36]],[[18238,13880],[137,-46]],[[18375,13834],[134,-36],[82,31],[74,58]],[[18665,13887],[40,18]],[[18705,13905],[10,-40],[2,-82],[-13,-152],[108,-73],[118,-53],[100,-6],[58,-24],[47,-61],[41,-65],[46,-42],[53,-15],[193,8]],[[19468,13300],[42,-10]],[[19510,13290],[8,-131],[25,-58],[122,-101],[66,-70],[-108,-51],[-37,-25],[-8,-28],[24,-60],[99,-127],[26,-74],[36,-185],[12,-15]],[[19775,12365],[31,-63],[140,-212],[39,-51],[47,-37],[101,-12],[95,-26]],[[20228,11964],[221,-33]],[[20449,11931],[84,-42],[53,-82],[7,-48],[-14,-94],[22,-146],[-114,-42],[-35,-35],[-19,-66]],[[20433,11376],[-6,-44],[-12,-78]],[[20415,11254],[18,-67],[43,-46],[63,-55],[136,-73],[38,-37],[8,-48],[-9,-54],[-2,-46],[54,-23],[51,-5],[107,5],[49,-23],[47,-40]],[[21018,10742],[80,-92],[45,-52]],[[21143,10598],[75,-64],[70,-100],[90,-158],[76,-56],[87,-49],[124,-118],[87,-105],[74,-31],[34,-76],[-50,-77],[-33,-66],[7,-106],[14,-124]],[[21798,9468],[-69,-240],[-66,-75],[-77,-72],[-70,-96],[-53,-131],[-49,-97],[-11,-21],[-26,-117],[19,-9],[153,-77],[149,-4],[10,-39],[0,-72],[18,-56],[40,-52],[216,-104],[-37,-92],[-56,-172],[-47,-88],[-29,-218],[-35,-45],[-82,-66],[-74,-110],[-51,-56],[-111,-74],[-67,-70],[-17,-16],[-144,-275],[-115,-145],[-121,-79],[-146,-15],[-77,20],[-91,39],[-86,97],[-80,222],[-38,70],[-19,34],[-89,79],[-134,-15],[-144,-41],[-122,-8],[-208,285],[-66,39],[-43,-9],[-49,-10],[-97,-59],[-130,-184],[-86,-45],[-292,-17]],[[18999,7182],[-14,86],[-18,90],[-25,180],[0,13],[-53,12],[-35,30],[-21,49],[-18,97],[14,195],[-3,168],[-16,159],[10,158],[-6,29],[-15,24],[-114,131],[-26,77],[-20,45],[-70,117],[-24,97],[-26,81],[-67,109],[-57,117],[-15,129],[15,55],[-59,-24],[-4,26],[-38,170],[7,85],[13,64],[5,30],[2,22],[-12,33],[-22,37],[-8,38],[2,30],[-17,28],[-25,38],[3,40],[5,154],[-8,31],[-53,109],[8,42],[0,20],[-17,18],[-14,50],[-4,38],[-30,76],[-83,178],[-76,162],[-121,210],[-172,225],[-19,42],[-22,97],[-14,71],[-56,125],[13,69],[-11,32],[-42,87],[-45,77]],[[17481,11960],[-40,26]],[[17441,11986],[-33,34],[-34,73],[-24,68],[-25,38],[-87,267],[-37,62],[-131,206]],[[17070,12734],[-62,84],[-41,20],[-53,30],[-65,59],[-85,92],[-65,173],[5,50],[30,52]],[[16734,13294],[21,42],[9,17]],[[16764,13353],[2,52],[-16,32],[-99,129],[-72,49],[-51,74],[-120,114],[-52,65],[4,7],[-56,49],[-13,80],[26,43],[97,-23],[107,-65],[86,-49],[104,-36]],[[16711,13874],[49,-2],[142,130],[64,8],[104,-21],[102,15],[90,-3],[87,-23],[49,-29],[49,-71],[106,-39],[99,-9],[38,145],[53,55],[63,38]],[[17806,14068],[95,-103],[38,-42]],[[8139,25902],[99,27],[12,4]],[[8759,26268],[103,29]],[[9503,26039],[258,53]],[[10031,25908],[-49,-113],[-39,-122],[7,-50]],[[9950,25623],[20,-21],[74,-76]],[[10044,25526],[38,-52],[43,-128],[15,-151],[16,-97],[3,-109],[8,-75],[20,-28],[18,-42]],[[10205,24844],[26,-155]],[[10231,24689],[66,-100],[-54,-108],[-2,-71],[109,-153],[76,-60],[69,-22],[80,-9],[74,16],[91,3]],[[10740,24185],[89,-34]],[[10829,24151],[41,-41],[5,-68],[17,-69],[-20,-127],[4,-43],[30,-93],[41,-167],[57,-138],[43,-65],[23,-14],[58,-38]],[[11128,23288],[28,-32],[-31,-55],[-130,-157],[-100,-59]],[[10895,22985],[-115,-28],[-79,-19]],[[10701,22938],[-67,-27],[-60,-48],[-29,-55]],[[10545,22808],[-45,-204]],[[10500,22604],[-46,-20],[-65,19],[-54,5],[-71,-41],[-41,-49]],[[10223,22518],[-64,-139],[-11,-24]],[[10148,22355],[-93,-166],[-82,-165],[-15,-59],[66,-61]],[[10024,21904],[21,-11],[45,-24]],[[10090,21869],[-23,-21],[-17,-39],[-19,-21],[-48,-30],[-65,-44],[-28,-56],[-19,-14],[-78,9],[-59,21],[-16,13],[-18,38],[-40,103],[-34,45],[-30,4],[-69,34],[-26,27],[-34,2],[-65,-10],[-15,2],[-132,68],[-28,3],[-32,-8],[-50,-36],[-28,-2],[-34,29],[-22,20],[-34,8],[-51,-23],[-8,-16],[-21,-102],[-16,-22],[-34,-9],[-19,-13],[-47,-83]],[[8831,21746],[-9,6],[-168,103]],[[8654,21855],[-7,7],[60,52],[-21,52],[-60,-27],[-32,5],[-58,-5],[-94,-17],[-125,-67],[-9,-44],[-51,-23],[-37,-5],[-171,47],[-122,25],[-28,10],[-72,238],[-27,31],[-13,0],[-37,-49],[-28,2],[-90,69],[-59,10],[-43,26],[-26,16],[-78,-12],[-44,79],[-22,26]],[[7360,22301],[-15,1],[-7,1]],[[7338,22303],[-33,-30],[-43,-95],[-88,-81],[-104,0],[-49,14],[-157,51],[-74,12],[-102,48],[-64,13],[-43,0],[-27,-2],[-122,80],[-13,0],[-89,-161],[-22,-16],[-105,-9],[8,-111],[-10,-116],[-16,-28],[-82,-119],[-9,-37],[-7,-41],[-193,2],[-118,27],[-79,8],[9,41],[28,38],[14,60],[-4,46],[-43,38],[-128,95],[-92,73],[-26,17],[-98,8],[-260,7],[-51,35],[-42,42],[-68,21],[-67,3],[-82,-1],[-67,-5],[-152,-30],[-37,0],[-214,22],[-139,57],[-76,-47],[-5,57],[28,107],[7,163],[-35,45],[-32,103],[-16,65],[-14,52],[-34,24],[-64,49]],[[3937,22897],[34,79],[7,135],[-40,134],[-54,79],[-36,72],[-13,26],[1,24],[2,21],[7,60],[17,3],[1,53],[-40,18],[37,98],[91,66],[38,49],[3,66],[60,78],[52,7],[34,-53],[5,-92],[132,-54],[1,85],[122,182],[3,109],[60,91],[99,235],[34,146],[77,178],[128,42],[41,13],[375,129],[164,-65],[61,3],[46,2],[21,82],[-9,84],[66,94],[58,125]],[[7400,26330],[98,51]],[[7951,26314],[59,-72]],[[5805,10885],[-50,-39],[-46,18],[-18,112],[3,127],[63,53],[50,-9],[15,-22],[9,-87],[-4,-78],[-22,-75]],[[9522,12567],[15,2],[15,2]],[[10095,12900],[70,-23],[42,-30],[25,0],[19,33],[47,27],[33,6],[122,-30],[86,-21],[28,-12],[138,92],[8,21],[45,9],[163,9],[174,18],[34,0],[66,-33],[14,3],[36,42],[83,14],[39,-11],[69,-39],[64,0],[47,-30],[72,-35],[24,3],[37,13]],[[11680,12926],[-30,-63]],[[11650,12863],[-5,-65]],[[11645,12798],[-19,-90],[85,-6],[143,-85],[2,-66],[-41,-30],[-89,-48],[-51,-45],[76,-60],[76,-30],[23,-32]],[[11850,12306],[-14,-16]],[[11836,12290],[-108,-59],[-50,-45],[73,-82],[34,-61],[-44,-64],[57,-63],[63,-49],[275,-81],[87,-38],[72,-66]],[[12295,11682],[-102,-228]],[[12193,11454],[-232,51],[-113,35],[45,-57],[32,-55],[15,-80],[76,-24],[-4,-92],[31,-79],[-84,-97],[18,-80],[73,-89],[99,-62],[76,-32],[111,-22],[53,-17],[33,-60],[-15,-61],[-121,28],[-11,-64],[130,-98],[68,-61],[42,-66],[-73,-84],[-6,-50],[5,-94],[-59,-76],[-87,-21],[-217,69],[-48,-42],[-35,-40],[112,-9],[133,-44],[68,-62],[13,-58],[-93,-90]],[[12228,9771],[-24,-17],[-64,-46]],[[12140,9708],[-75,-74],[-23,-85],[-37,-58],[-104,32],[-133,5],[-32,-65],[-2,-32],[-98,20],[-93,5],[-96,-5],[-84,-50],[-38,-144],[-27,-48],[24,-53]],[[11125,9199],[-106,61]],[[10006,9609],[-42,24],[-29,18]],[[8410,8553],[-64,-30]],[[8346,8523],[-66,0],[-34,54],[-27,3],[-9,41],[-52,21],[-22,36],[27,83],[0,47],[-11,63],[14,47],[-8,39],[-78,175],[-42,227],[-19,-18],[-39,-10],[-44,-42],[-39,-7],[-51,72],[-34,39],[-44,0],[-37,-44],[-72,0],[-55,-42],[-37,-18],[-67,5],[-67,-12],[-32,-30],[-30,20],[-69,25],[-28,47],[3,54],[180,171],[6,40],[-20,34],[-42,13],[-53,2],[-51,27],[-57,18],[-42,19],[-94,60],[-93,5],[-64,12],[-63,-64],[0,-50],[-27,-32],[-28,-15],[-39,20],[-32,3],[-56,-35],[-113,-35],[-49,4],[-20,36],[-8,38],[-6,39],[-47,44],[-47,-20],[-61,-12],[-188,18],[-58,44],[-61,33],[-50,-15],[-25,-18],[-19,-59],[6,-66],[5,-38],[-22,-33],[-70,12]],[[5869,9598],[-1,35]],[[5868,9633],[-93,87],[-13,10],[-38,12],[6,49],[-39,8],[-42,25],[-49,-6],[-88,37],[0,30],[-37,2],[-45,32],[-30,39],[-26,76],[-2,70],[-58,45],[-19,93],[51,39],[76,36],[31,28],[56,-8],[-25,51],[-72,2],[-26,25],[10,22],[45,1],[26,23],[65,14],[18,59],[67,0],[58,15],[42,-10],[64,39],[38,3],[8,60],[16,52],[-4,35],[-9,17],[5,34],[59,34],[71,70],[47,74]],[[6012,10957],[66,159]],[[6078,11116],[30,45],[115,36],[55,76],[43,80],[96,24],[75,-11],[63,-20],[23,-67],[-8,-93],[57,-41],[28,-164],[-91,-138],[-11,-78],[40,-80],[92,-119],[124,66],[106,25],[85,-22],[163,-66],[144,-17],[10,35]],[[7317,10587],[7,64],[2,17]],[[7326,10668],[-41,163],[88,59],[14,46],[-46,25],[-66,15],[-53,44],[-8,56],[20,69],[129,55],[63,17],[122,49],[49,62],[20,76],[30,32],[126,2],[81,-16],[67,13],[27,76],[41,82],[-36,36],[-27,59],[-117,44],[-27,60],[19,139],[3,42],[25,9],[44,-3],[61,-51],[53,-29],[102,80],[39,50],[69,51],[111,50],[44,12],[47,45],[64,35],[30,78],[0,74],[0,86],[44,44],[-38,72],[21,64],[-18,18],[-2,24],[0,22],[-43,65],[-25,50],[6,86],[-22,83],[-64,89],[-64,66],[-94,38],[-54,56],[9,34],[-21,57]],[[8128,13328],[27,56],[23,47]],[[8178,13431],[62,83],[24,82],[-72,217],[108,5],[48,45],[78,28]],[[8426,13891],[66,31]],[[8492,13922],[64,82],[82,75],[1,47],[-11,48]],[[8628,14174],[-9,19]],[[8619,14193],[96,38],[69,9],[33,-6],[25,-24],[-41,-77],[-6,-131],[36,-89],[20,-21],[77,-23],[61,-45],[47,-95],[25,-47]],[[9061,13682],[54,-18]],[[20038,24412],[-89,-186]],[[19847,24014],[-181,-122]],[[19666,23892],[-118,-62],[-98,-27],[-105,4],[-81,18],[-85,-10],[-29,-31],[-81,-37],[-76,-12],[-62,34],[-73,117],[-41,41],[-64,151],[-35,46],[-92,54],[-57,48],[-81,-1],[-22,35],[-64,36],[-109,91]],[[18293,24387],[-57,30]],[[18236,24417],[-183,135],[-79,38],[-99,33],[-85,47],[-78,-11],[-49,-15],[-56,35],[-47,79],[-14,15],[-68,81],[-57,54],[-66,48],[-129,71],[-45,60],[-55,55],[-57,34],[-71,29],[-161,80],[-76,24],[-62,2],[-44,-14],[-43,-105],[-34,-66],[-59,-81],[-77,-65],[-49,-27],[-64,-16],[-79,-19],[-134,-22],[-77,27],[-60,8],[-60,17]],[[15919,24948],[-51,25],[-51,43]],[[15817,25016],[-82,104],[-27,34]],[[15708,25154],[-70,70],[-102,89],[-85,17],[-218,-12],[-111,22],[-153,197],[-48,62],[-77,83],[-172,126],[-95,88],[-71,93],[-23,91],[-16,104],[-74,101],[-37,21],[-28,62],[-6,17]],[[14322,26385],[-68,172],[-7,20]],[[14247,26577],[-64,82],[-103,83],[-92,61],[-76,39],[-116,50]],[[13796,26892],[-121,42]],[[13675,26934],[-19,6],[-26,7],[-60,19],[-113,19],[-159,-15],[-83,-38]],[[13246,28442],[14,-11]],[[13260,28431],[55,-32],[69,-67],[49,-27],[78,-35],[106,-111],[40,-25],[69,-3],[94,-54],[93,-72],[41,-47],[74,-42],[48,0],[56,30],[44,52],[89,55],[36,24],[22,36],[0,80],[52,74],[39,71],[0,119],[14,80],[64,54],[22,50],[27,134],[-55,35],[-44,89],[-42,86],[-94,154],[-56,86],[-13,83],[0,95],[-34,71],[-47,57],[-3,71],[-13,48],[-92,32],[-69,18],[-28,77],[-5,66],[36,106],[5,36],[-22,89],[-41,9],[-197,92],[-152,95]],[[13575,30270],[-78,80]],[[13497,30350],[-49,75],[-39,17],[-19,51],[0,71],[-17,77],[-47,128],[-3,33]],[[13323,30802],[14,38]],[[13337,30840],[48,50]],[[13385,30890],[4,-5],[63,-6],[67,18],[25,42],[8,20],[144,27],[22,-24],[14,-23],[36,-3],[36,-3],[82,-32],[42,-16],[48,-39],[71,-53],[84,6],[47,15],[8,-27],[52,-33],[42,18],[34,24],[122,11],[48,-21],[63,-95],[59,-35],[111,-12],[100,-79],[107,-91],[51,-72],[33,-125],[57,-50],[88,-17],[29,6],[201,42],[32,28],[-17,65],[-92,76],[-15,57],[9,58],[59,100],[60,53],[67,31],[36,51],[13,49],[5,47],[3,30],[-9,74],[8,50],[69,83],[46,71],[-7,94],[5,23],[11,52],[-25,39],[-37,22],[-23,8],[11,25],[28,12],[44,-17],[131,-67],[28,-42],[23,-30],[39,-20],[62,-10],[54,-34],[59,-50],[0,-37],[0,-39],[17,-23],[11,-19],[21,0],[15,31],[56,52],[63,16],[40,0],[47,0],[218,-21],[17,-80],[74,-48],[64,-57],[100,-76],[36,-21],[55,-32],[74,-5],[55,19],[86,-14],[131,-121],[54,-82],[41,-97],[74,53],[103,12],[156,107],[19,36],[1,120],[-9,33],[1,10],[87,34],[68,17],[60,3],[16,-48],[4,-73],[19,-65],[37,-51],[102,-76],[61,-35],[71,-30],[67,-11],[52,17],[22,35],[13,54],[3,55],[34,153],[28,81],[38,78],[40,50],[3,4],[143,83],[100,14],[96,4],[101,-5],[52,21],[85,16],[73,1],[60,18],[132,110],[81,55],[108,-7],[93,-18],[88,-21],[61,-34],[6,-33],[55,-79],[92,-28],[46,-24],[42,-40],[23,-63],[9,-76],[19,-67],[39,-61],[182,-138],[36,-27],[58,-29],[50,-72],[62,-36],[187,-35],[68,-34],[52,-57],[45,-66],[72,-70],[34,-18],[23,-21],[37,-47],[10,-66],[-4,-84],[105,-124],[83,-137],[24,-70],[-4,-78],[-14,-79],[-27,-63],[-6,-114],[-15,-85],[-58,-134],[2,-84],[49,-149],[-15,-75],[-99,-72],[-29,-39],[-103,-207],[-91,-273],[-5,-70],[-2,-25],[25,-97],[99,-162],[55,-67],[6,-44],[-19,-51],[-113,-29],[-30,-32],[-77,-78],[-50,-49],[-269,-159],[-63,-57],[-39,-98],[16,-109],[7,-258],[-31,-148],[8,-26],[12,-37],[89,8],[78,49],[75,33],[94,21],[102,-5],[77,-40],[55,-107],[11,-66],[-14,-217],[-11,-174],[7,-26],[28,-116],[40,-166],[3,-183],[-10,-158],[7,-161],[-15,-154],[-44,-115],[-61,-62],[-36,-11],[-130,-11],[-78,-34]],[[13337,30840],[-5,-14],[-9,-24]],[[13497,30350],[24,-24],[54,-56]],[[13260,28431],[-194,166]],[[7402,28844],[27,70],[19,95],[-2,51],[-110,7],[-130,254],[-144,150],[-99,59],[-56,24],[-81,28],[81,154],[71,60],[81,15],[74,20],[92,72],[122,35],[66,-24],[63,-8],[81,107],[78,16],[59,0],[83,-45],[61,-21],[48,9],[76,83],[39,65],[49,50],[68,-7],[71,-35],[-19,56],[-11,19],[-8,36],[-37,59],[-7,48],[41,-44],[55,-75],[85,-63],[39,27],[-13,80],[37,-1],[0,64],[22,103],[18,127],[-140,52],[-3,50],[-9,52],[34,44],[-7,47],[-47,55],[2,96],[-77,96],[-89,120],[60,47],[61,89],[28,125],[64,120],[-18,23],[-27,70],[-24,103],[-38,86],[-79,32],[-24,10],[-12,5],[-23,25],[7,14],[-81,53],[-10,42],[90,96],[21,67],[32,37],[113,-49],[72,-15],[70,-27],[45,10],[19,30],[13,21],[20,58],[76,40],[99,42],[-8,90],[9,84],[60,27],[59,135],[31,112],[23,114],[-6,112],[-50,93],[-69,38],[-96,27],[-25,43],[42,118],[-19,52],[-278,56],[-70,30],[1,50],[27,148],[77,293],[20,35],[72,23],[69,5],[52,-50],[-4,-48],[-62,-41],[-28,-37],[18,-37],[85,-61],[81,-15],[148,13],[67,-30],[75,-1],[7,-44],[-6,-85],[14,-66],[-1,-25],[26,-55],[65,-81],[89,-54],[152,-56],[123,-33],[156,-25],[89,1],[63,-76],[40,-72],[19,-24],[16,-21],[75,-6],[46,73],[22,109],[53,47],[55,14],[245,-50],[123,-15],[87,-17],[52,30],[28,17],[65,1],[83,-35],[38,-38],[123,-41],[102,-20],[295,-95],[74,-2],[46,-35],[18,-34],[39,-73],[56,-49],[65,18],[55,32],[50,55],[37,2],[71,-20],[85,-13],[78,31],[90,-6],[94,-84],[48,-71],[34,-17],[74,20],[64,0],[101,14],[46,-26],[10,-5],[62,-169],[26,-56],[3,-96],[34,-116],[14,-75],[4,-84],[-6,-60],[-32,-88],[-3,-105],[149,4],[68,-9],[33,-4],[265,-32],[167,-12],[44,-3],[129,-3],[13,-17],[55,-31],[2,-1],[24,-18],[20,-15],[11,-65],[-16,-68],[-47,-57],[-33,-47],[-20,-54],[9,-59],[54,-57],[18,-45],[13,-73],[-52,-65],[-83,-54],[-42,-24],[-19,-35],[5,-29],[-16,-37],[43,-54]],[[14247,26577],[75,-192]],[[15708,25154],[109,-138]],[[15919,24948],[-11,-48],[-7,-102],[16,-52],[11,-64],[-18,-37],[-46,-42],[-26,-62],[-11,-124],[-16,-49],[-46,-13],[-141,47],[-60,20],[-58,-5],[-37,-44],[-37,-5],[-90,-5],[-53,-32],[-43,-5],[-47,25],[-46,12],[-124,0],[-76,39],[-74,5],[-12,-14],[-9,-89],[-60,-139],[-48,-42],[-33,-3],[4,-43],[-86,-9],[-25,-33],[6,-50],[-81,-42],[-16,-29],[22,-60],[25,-196]],[[14566,23658],[-3,-60],[-83,-86],[-113,-6],[-61,12],[-100,104],[-80,-36],[-8,-86],[-53,-51],[-22,21]],[[14043,23470],[-36,18]],[[14007,23488],[-44,9],[-36,47],[-14,6],[-103,-12],[-24,30],[-23,151],[-38,39],[-42,-44],[-30,-12],[-47,-24],[-100,-98],[-17,-74],[-28,-44],[-28,-54],[-57,-60],[-26,-52],[19,-77],[25,-37],[58,-37],[51,-10],[71,-64],[7,-27],[-23,-30],[-35,-17],[-99,-57],[-41,10]],[[13383,22950],[-63,25]],[[13320,22975],[-43,12],[-44,-17],[-76,-62],[-77,-30],[-120,5],[-27,22],[-72,84],[-110,67],[-44,3],[-134,7],[-92,10]],[[12481,23076],[-157,84]],[[12324,23160],[-12,8],[-62,0],[-62,27],[-81,39],[-76,3],[-98,-14],[-50,3],[-66,9],[-127,86],[-64,9],[-166,83],[-64,9],[-39,0],[-36,-15],[-30,-27],[-91,-23],[-64,-36],[-8,-33]],[[10829,24151],[-44,17],[-45,17]],[[10231,24689],[-13,76],[-13,79]],[[10044,25526],[-94,97]],[[10407,26270],[71,7]],[[10642,26210],[35,-7],[48,-10]],[[11092,26556],[127,49]],[[11778,26495],[126,79],[170,108]],[[12485,26819],[121,-72],[85,-51]],[[13675,26934],[32,-11],[89,-31]],[[18236,24417],[29,-16],[28,-14]],[[19666,23892],[109,74]],[[18365,21965],[-69,-7],[-32,-3]],[[18181,21646],[-45,-58]],[[18136,21588],[-54,0],[-56,-5]],[[18026,21583],[-36,45],[-76,60],[-70,59],[-69,12],[-55,0],[-99,82],[-39,8],[-37,44],[-67,25],[-26,25],[-9,52],[-32,61],[-28,55],[-4,44],[-24,65],[-39,29],[-94,13],[-79,39],[-23,15],[-7,141],[-39,82],[-32,22],[-37,-15],[-67,3],[-58,15]],[[16880,22564],[-174,-7],[-22,-1]],[[16684,22556],[-4,-20],[96,-123],[0,-25],[-6,-40],[-26,-52],[5,-52],[7,-74],[-16,-89],[-49,-82],[-60,-42],[-14,-42],[-36,-50],[-28,-6],[-46,-26],[-37,6],[-104,91],[-210,147],[-100,43],[-158,-20],[-240,-138],[-56,-91],[-22,-12],[-40,27],[-22,119],[11,113],[-17,38],[-69,71],[3,63],[3,47],[-45,95],[3,36],[-19,30],[-45,35],[-44,57],[47,70],[27,68],[-8,95]],[[15365,22823],[-20,94],[-2,13]],[[15343,22930],[-58,122],[-34,27],[-130,53],[-33,39],[0,47],[-3,51],[-37,66],[2,65],[-83,104],[-27,12],[-81,-6],[-30,18],[-169,121],[-94,9]],[[14007,23488],[13,-6],[23,-12]],[[15343,22930],[22,-107]],[[16684,22556],[196,8]],[[18026,21583],[-62,-15],[-122,-57],[-81,-17],[-85,-10],[-69,-42],[-136,-69],[-26,-55],[-53,-74],[-23,-32],[5,-55],[-28,-32],[2,-49],[-62,-82],[-37,-12],[-60,12],[-23,-25],[-5,-52],[-23,-42],[10,-44],[-7,-47],[-67,-136],[-19,-5],[-108,32],[-42,0],[-71,-97],[-42,-33],[-12,-39],[-11,-89],[-14,-32],[-37,-18],[-116,-2],[-55,-8],[-58,-47],[-4,-39],[-35,-42],[-51,-30]],[[16399,20199],[-9,-13],[-11,-14]],[[16379,20172],[2,-52],[12,-42],[99,-62],[134,-27],[30,-27],[0,-35],[-37,-45],[-12,-32],[28,-72],[11,-64],[-25,-354],[-89,-77],[-36,-9],[-38,12],[-67,32],[-66,-6],[-353,-134]],[[14701,20400],[-20,25],[-25,31]],[[13886,21358],[-16,57],[-3,11]],[[12126,20198],[-93,15]],[[10298,19962],[-35,97],[-30,107],[-27,55],[-57,67]],[[10149,20288],[-207,134]],[[9942,20422],[37,59],[74,52],[40,36],[6,122],[64,175],[-14,57],[-34,58],[-60,132],[-23,148],[27,42],[94,3],[77,-7],[50,4],[-23,56],[-91,77],[-33,38],[-17,68],[22,47],[39,48],[8,57]],[[10185,21694],[-2,7],[-19,64]],[[10164,21765],[-66,100]],[[10098,21865],[-74,39]],[[10148,22355],[75,163]],[[10500,22604],[26,118],[19,86]],[[10701,22938],[194,47]],[[12324,23160],[138,-74],[19,-10]],[[13320,22975],[46,-19],[17,-6]],[[18505,18298],[28,20],[31,22],[40,40],[73,-8],[97,30],[86,5],[55,-5],[37,-38],[-112,-47],[-30,-32],[-5,-32],[28,-81],[-2,-23],[-69,-6],[-18,-28],[41,-71],[-4,-30],[-30,-20],[-94,-30],[-35,2],[-10,-3],[-9,88],[-9,67],[-28,26],[-37,32],[-20,81],[-4,41]],[[18505,18298],[-61,-25],[-18,-28],[-28,-95],[-86,-212],[-65,-87],[-76,-135],[-5,-85],[15,-87],[29,-35],[103,-16],[96,10],[35,-8],[41,-44],[55,-6],[25,0],[-2,-15],[-20,-62],[-22,-30],[-28,-12],[-22,-38],[-33,-51],[-42,-6],[-34,11],[-52,8],[-85,73],[-50,-6],[-46,-49],[-46,-89],[-98,-38],[-107,6],[-34,-185],[-30,-161],[-23,-67],[-62,-158],[-18,-188],[-3,-218],[-21,-57],[-27,-34],[-62,-3],[-70,0],[-30,-22],[10,-65],[76,-39],[27,-45],[17,-71],[-14,-65],[64,-79],[86,-40],[57,8],[51,30],[16,22],[-23,67],[-11,49],[32,35],[78,5],[49,-18],[62,33],[48,19],[47,23],[55,10],[74,-40],[83,-5],[74,0],[101,-40],[65,-29],[48,15],[32,89],[-9,91],[-2,35],[30,27],[101,7],[48,8],[149,-95],[25,-18],[20,-71]],[[19064,15907],[-21,-42],[-32,-35],[-7,-35],[-2,-54],[-44,-45],[-9,-69],[32,-30],[9,-34],[-18,-42],[-19,-97],[-55,-111],[-37,-8],[-46,-22],[-65,-89],[-30,-99],[-48,-49],[-106,-23],[-60,5],[-92,70],[-93,14],[-55,-24],[-14,-55],[-30,-141],[12,-62],[53,-76],[-10,-171],[-23,-114],[-27,-47],[16,-64],[14,-47],[60,-47],[0,-45],[-28,-44],[-37,-70],[0,-94],[35,-148]],[[18287,13863],[-49,17]],[[17939,13923],[-133,145]],[[16711,13874],[46,198],[0,168],[-23,79],[20,123],[39,68],[39,51],[-1,114],[3,29],[-116,67],[-2,32],[2,104],[-51,191],[-39,22],[-101,7],[-42,5],[-14,40],[51,89],[7,74],[-7,55],[-23,29],[-50,-47],[-111,-35],[-55,-9],[-33,74],[-36,62],[-114,104],[-75,0],[-52,39],[-78,41],[-119,21],[-77,-83],[-61,-41],[-83,29],[-108,101],[-50,92],[-46,145],[-22,71],[-30,75],[-44,35],[-34,54],[17,59],[3,59],[-34,78],[-5,56],[25,74],[28,98],[-17,66],[-39,56],[-63,-9],[-49,-7],[-46,34],[-97,102],[-48,0],[-33,-38],[-13,-64],[-60,-49],[-136,-112],[-26,3],[-51,44],[14,20],[5,50],[-2,59],[-37,35],[-7,34],[27,107],[-2,52],[-9,44],[16,37]],[[14582,17035],[104,156]],[[16379,20172],[20,27]],[[18136,21588],[-6,-7]],[[18137,21165],[40,-155]],[[18100,20367],[10,-27],[42,-113]],[[18251,20074],[51,-121]],[[18302,19953],[12,-59],[57,-91],[16,-65],[23,-59],[33,-33],[19,-59],[6,-32],[-46,-50],[-26,-60],[-4,-65],[16,-55],[-47,-83],[-49,3],[-56,15],[-48,-5],[-24,-13],[8,-88],[13,-37],[34,-47],[-51,-2],[-81,17],[-38,-41],[-19,-29],[-47,-99],[-143,0],[-54,-13],[-53,-4],[-62,37],[-78,-56],[-72,8],[-61,19],[-73,59],[-62,25],[-42,-111],[-52,-98],[-13,-51],[-27,-43],[-57,-47],[-34,-20],[1,-67],[38,-35],[17,-63],[22,-66],[69,-77],[83,-26],[40,32],[57,41],[65,-7],[61,-80]],[[17573,18273],[33,-83],[7,-18]],[[17613,18172],[10,-25],[48,-46],[35,-39],[51,-20],[50,31],[-5,64],[48,59],[64,18],[94,105],[6,87],[44,65],[70,8],[117,-65],[70,-24],[103,-22],[87,-70]],[[23893,17975],[-79,-139]],[[23415,16100],[-19,-160]],[[23258,14615],[8,-184]],[[23266,14431],[-41,-24],[-50,0],[-100,140],[-12,17],[-17,-115],[8,-71],[113,-134],[14,-42],[6,-47],[-50,-140],[6,-26],[47,-244],[-6,-30],[-47,-3],[-125,90],[-24,5],[-12,-47],[50,-244],[-354,-268]],[[22672,13248],[-36,-155]],[[22636,13093],[-10,-112],[11,-63],[-1,-69],[-23,7],[-31,61],[-91,56],[-52,-9],[-43,-16],[-27,-46],[-52,-27],[-26,-53],[-29,-31],[-19,-60],[-64,-38],[-61,11],[-48,33],[-65,22],[-36,-60],[-54,-35],[-38,-37],[-75,-37],[-46,45],[-70,6],[-306,81],[-77,92]],[[21303,12814],[0,71],[0,69]],[[21303,12954],[-26,83],[-131,33],[-107,-63],[-54,-17],[-68,-4],[-35,-30],[23,-98],[-55,-33],[-68,-4],[-129,14],[-75,-37],[-36,-142],[-63,38],[-33,-1],[0,-78],[-9,-65],[-47,-73],[-57,3],[-98,16],[-88,-57],[-66,43],[-101,23],[-60,-24],[-70,-48],[-75,-68]],[[19510,13290],[-31,8],[-11,2]],[[18705,13905],[-14,-6],[-26,-12]],[[18375,13834],[-88,29]],[[19064,15907],[90,-30],[62,-30],[21,-44],[0,-94],[1,-88],[24,-3],[31,-27],[52,-83],[47,-33],[97,-3],[83,33],[36,6],[53,55],[95,47]],[[19756,15613],[36,0]],[[19792,15613],[71,-53],[59,-3],[80,30],[72,68],[66,27],[36,20],[6,51],[69,122],[69,17],[186,-3],[47,9],[19,54],[42,154],[24,33],[-20,56],[-22,53],[-75,21],[-49,0],[-27,37],[-28,98],[-3,36],[86,62],[47,0],[33,24],[47,3],[105,-48],[42,-2],[44,59],[17,80],[8,116],[67,28],[74,75],[3,59],[30,40],[40,8],[96,-48],[96,-4],[41,32],[-26,40],[-15,43],[0,64],[14,49],[15,95],[28,172],[14,83],[24,30],[4,43],[-28,18],[-29,-8],[-7,-38],[-4,-45],[-26,-18],[-41,34],[-11,63],[13,40],[21,45],[11,60],[42,73]],[[21289,17767],[44,35]],[[21333,17802],[35,42],[10,67],[14,48],[30,47],[9,56],[32,53],[36,50],[21,4],[11,-10],[-2,-40],[7,-24],[47,8],[22,36],[72,196],[35,133],[14,106],[0,155],[-20,77],[8,40]],[[28463,11431],[18,-70],[-5,-75],[11,-48],[35,-36],[15,-33],[-7,-75],[-14,-60],[9,-63],[-31,-29],[-42,-11],[-60,-3],[-57,2],[-94,34],[-50,10],[-27,-181],[-13,-26],[-13,-29],[-65,-55],[71,-129],[-14,-85],[1,-34],[-47,-108],[18,-147],[-30,-57],[-34,-32],[-44,-61],[-96,-60],[-25,56],[-47,45],[-155,39],[-81,5],[-58,38],[-40,9],[-109,13],[-151,38],[-162,81],[-102,7],[-135,24],[-22,1],[-65,2],[-20,-37],[-45,-25],[-61,-11],[-55,-27],[-89,-17],[-74,4],[-44,31],[29,56],[1,53],[51,43],[85,57],[10,32],[-80,55],[-77,21],[-87,40],[36,69],[-46,15],[-57,32],[-28,8],[-70,-10],[-68,34],[-81,66],[-34,29],[-53,36],[-103,23],[-86,-120],[-58,-27],[-48,-5],[-49,-51],[-75,-46],[-60,-16],[-121,14],[3,-55],[-32,-73],[-28,-43],[-15,-37],[-17,-127],[0,-94],[-19,-50],[-55,-62],[-26,-40],[-58,-7],[-88,-1],[-52,-167],[-105,40],[-94,25],[-21,32],[-27,109],[-105,103],[-15,47],[7,45],[-19,72],[-17,31],[-15,2],[-24,-14],[-86,-83],[-38,-25],[-55,-55],[3,-15],[3,-17],[30,-43],[52,-112],[-9,-52],[5,-37],[46,-30],[38,-48],[-6,-56],[-11,-36],[-35,-24],[-84,-35],[0,-22],[4,-51],[-15,-34],[-67,-71],[-22,-32],[17,-1],[158,-66],[130,-46],[114,-24],[235,-77],[81,-55],[79,-67],[51,-31],[55,-44],[85,-31],[-18,80],[11,81],[34,94],[143,-47],[85,-51],[85,115],[293,-194],[114,-3],[39,-82],[9,-42],[-8,-37],[-27,-23],[-29,-11],[-7,-52],[17,-51],[18,-29],[8,-110],[-79,-7],[-90,-34],[-1,-159],[-6,-61],[-13,-52],[-60,-96],[11,-53],[40,-11],[45,0],[37,-42],[109,-45],[60,-73],[33,-49],[49,-35],[-51,-22],[-219,-120],[-51,-65],[-126,40],[-128,20],[-93,-11],[-55,10],[-166,49],[-38,45],[-43,31],[-63,28],[-113,14],[-10,137],[-19,73],[-61,34],[-100,37],[2,28],[-72,18],[-11,65],[-17,33],[-4,10],[-148,62],[4,-106],[-8,-46],[-38,-53],[-115,-47],[-12,-58],[-15,-16],[-23,4],[-45,130],[-19,101],[-27,96],[-20,38],[-60,-14],[-124,20],[19,95],[-78,33],[-63,-1],[-6,54],[-19,55],[1,88],[-22,144],[16,4],[-58,95],[-26,112],[-4,18],[-20,136],[-96,175],[-100,136],[-108,145],[-92,-27],[-71,-38],[-42,-4],[-27,22],[-112,122],[-36,-4],[-93,-50],[-44,41],[5,63],[-15,140],[-94,20],[-90,-121],[-26,-56],[-127,-117],[-13,-13],[-51,-54],[-15,-68],[-52,-66],[-54,-1],[-53,13],[-42,-8],[-15,-30],[-54,-8],[-49,12],[-91,39],[-29,-81],[2,-121],[-297,18]],[[21143,10598],[-95,109],[-30,35]],[[20415,11254],[18,122]],[[20449,11931],[-81,12],[-140,21]],[[21303,12954],[0,-140]],[[22636,13093],[8,37],[28,118]],[[23266,14431],[-8,180]],[[3793,11283],[50,-42]],[[3843,11241],[49,-12],[201,131],[38,-19]],[[4131,11341],[31,-60]],[[4162,11281],[23,-76]],[[4185,11205],[26,-6],[38,-27]],[[4249,11172],[9,-61]],[[4258,11111],[-8,-65],[2,-43],[-134,-203],[32,-24],[25,-49],[-11,-30],[18,-27],[5,-20],[-82,-35],[-59,-144],[18,-64],[-16,-62],[-53,-105],[26,-25],[68,13],[62,-16],[28,-85],[73,-46],[-38,-117],[-38,-89],[-76,10]],[[4100,9885],[-13,-21],[-29,-47]],[[4058,9817],[10,-65],[-11,-23],[-10,-58],[-31,-49],[28,-45],[7,-39],[-31,-67],[-70,-115],[-50,-54],[-92,-52],[0,-26],[73,-16],[5,-119],[28,-92],[-24,-102],[-5,-63],[-12,-38],[-10,-63],[158,-70],[35,-1],[46,37],[34,16],[70,-5],[101,-28],[69,82],[41,37],[35,4],[55,-45],[6,-45],[-4,-114],[50,-32],[105,-37],[7,18],[17,9],[38,-24],[70,-22],[34,45],[31,18],[12,-23],[-18,-29],[-2,-21],[53,5],[30,14],[257,47],[42,-19],[-8,-48],[26,-25],[49,-23],[43,8],[63,110],[31,22],[110,27],[62,-94],[32,-38],[34,-17],[41,1],[45,44],[33,44]],[[5796,8559],[17,82],[6,28]],[[5819,8669],[-45,43],[-21,-46],[-25,-28],[-77,-6],[-9,27],[30,66],[-15,75],[53,9],[60,52],[121,19],[85,23],[28,35],[-4,48],[20,23],[-8,49],[-16,58],[-32,63],[41,71],[-4,56],[-110,19],[-56,28],[-32,35],[77,109],[11,23],[24,19],[-17,10],[-7,5],[-21,24]],[[5870,9578],[-1,20]],[[8346,8523],[21,10]],[[8222,7181],[-75,41]],[[6793,6434],[-34,0]],[[6759,6434],[-118,9],[-53,20],[-71,28],[-51,12],[-35,35],[-9,47],[-21,19],[-76,15],[-55,-7],[-157,-5],[-126,-72],[-97,-36],[-36,-62],[9,-190],[188,-339],[-3,-47],[-111,-51],[-55,-12],[-53,-44],[-69,-39],[-55,-92],[-89,-30],[-77,-47],[-36,-18],[-86,0],[-77,-98],[-42,0],[-61,71],[-19,60],[2,80],[36,77],[-5,36],[-75,65],[-75,3],[-33,-42],[0,-9],[31,-53],[8,-98],[-3,-80],[-27,-39],[5,-39],[14,-53],[127,-53],[47,-6],[36,-36],[-11,-83],[-3,-92],[-166,18],[-116,47],[-77,15],[-107,-8],[-33,39],[-74,159],[-59,122],[-70,32],[-74,79],[-33,56],[0,63],[29,79],[15,75],[-11,64],[-7,115],[-11,15],[-26,0],[-56,-7],[-33,0],[-26,35],[8,56],[7,59],[-4,71],[-11,91],[-22,44],[-7,28],[-12,121],[-33,-29],[-52,-15],[-39,0],[-55,-15],[-6,-48],[30,-74],[23,-53],[-9,-83],[-33,-57],[-83,-30],[-163,0],[-18,2],[10,-119],[11,-107],[42,-71],[51,-70],[6,-62],[-43,-54],[-81,2],[-67,-12],[-30,-20],[18,-24],[35,-30],[51,-10],[44,-35],[23,-39],[-5,-47],[-14,-37],[16,-28],[-13,-34],[-28,-42],[-125,-3],[-30,-25],[3,-37],[73,-69],[17,-39],[-19,-43],[-16,-42],[9,-52],[19,-39]],[[3835,5017],[-3,-82]],[[3832,4935],[40,-52],[16,-52],[-28,-74],[-55,-99],[-97,-57],[-65,-5],[-64,-22],[-30,-37],[-70,-188],[-150,53],[-211,23],[-121,-38],[-100,-71],[-133,-71]],[[2764,4245],[-40,4],[-113,-17],[-134,47],[-39,26],[-40,42],[-72,27],[-50,45],[-76,98],[-17,0],[-51,0],[-121,47],[-102,16],[-155,-19],[-96,3],[-84,-12],[-23,-14],[-57,-63],[-44,-19],[-81,-1],[-82,28],[-101,48],[-116,67],[-160,-27],[-74,25],[-79,72],[-200,47],[-96,47],[-77,28],[-50,64],[-27,59],[-43,44],[-37,58],[-48,144],[-45,50],[-134,123],[29,40],[43,-6],[55,-36],[262,30],[52,18],[29,64],[9,38],[-2,46],[96,-18],[35,-14],[84,-56],[43,-2],[106,12],[0,23],[33,6],[29,-19],[51,-1],[63,8],[7,23],[1,57],[14,70],[29,32],[48,39],[16,7],[59,5],[37,23],[55,9],[88,-18],[26,33],[3,218],[-110,23],[-8,29],[-27,22],[-4,22],[-13,23],[-17,10],[-18,2],[9,45],[47,-15],[36,25],[117,-20],[29,10],[122,134],[51,7],[102,-9],[30,20],[30,7],[0,24],[-22,29],[-20,12],[12,29],[30,-3],[4,19],[-8,61],[-76,22],[0,53],[13,51],[45,40],[9,37],[26,56],[42,63],[-15,28],[-61,16],[-52,-33],[-49,-50],[-34,-25],[-44,3],[-42,12],[25,41],[-29,4],[-17,14],[-17,45],[-53,15],[-34,23],[-2,67],[159,32],[72,63],[119,-15],[26,49],[19,154],[-1,47],[11,52],[-7,12],[-9,15],[-44,10],[-37,-20],[-61,24],[-24,2],[-62,-52],[-32,13],[-25,21],[-36,1],[-15,23],[5,27],[21,5],[6,23],[-10,13],[-4,36],[16,20],[27,58],[31,109],[15,113],[-15,121],[17,46],[55,-26],[176,-29],[30,21],[4,50],[1,93],[-47,38],[-23,30],[-26,110],[-22,50],[30,170],[-1,86],[-21,206],[-42,20],[16,37],[12,154],[-15,14],[-4,23],[52,32],[41,10],[19,25],[1,59],[-26,6],[-8,34],[19,46],[-13,44],[3,54],[-5,53],[40,10],[35,46],[42,72],[7,59],[-13,125],[28,58],[10,13],[80,59],[45,12],[-9,66],[-48,54],[9,94],[-10,49],[-40,48],[-29,73],[-38,63],[-21,74],[19,20],[-7,33],[-66,40],[-35,47],[-28,51],[18,93]],[[1764,10622],[20,39],[34,39],[62,22],[32,120],[-41,32],[-29,42],[31,59],[-11,207],[72,17],[80,-14],[59,-28],[52,17],[130,-46]],[[2255,11128],[74,-17]],[[2329,11111],[44,-68],[19,-111],[34,-38],[61,-22],[73,-37],[83,-25],[40,76],[31,93],[55,-3],[14,5],[41,-16],[32,1],[39,5],[11,24],[29,9],[42,-4],[-19,35],[-26,83],[210,56],[37,67],[130,4],[29,-18],[11,7],[63,-13],[42,-37],[95,9],[55,-19],[5,25],[-52,28],[-7,33],[24,59],[-27,57],[55,44],[52,-25],[37,19],[39,1],[-11,45],[69,-20],[19,-27],[-17,-82],[3,-48]],[[6759,6434],[15,0]],[[7522,2749],[-30,-85]],[[7881,1651],[56,-171],[9,-86],[-19,-47],[-34,-89],[-14,-63],[-22,-21],[-7,-69],[-26,-109],[-9,-82],[-38,-67],[-79,-46],[-174,-53],[-67,-40],[-129,-98],[-7,-46],[18,-61],[-19,-65],[-40,-61],[-25,-50],[-16,-111],[-31,-35],[-106,1],[-20,8],[-81,2],[-94,-11],[8,-117],[-55,-38],[-79,-26],[-65,6],[-291,139],[-40,48],[-75,169],[-63,13],[-7,215],[-27,33],[-47,4],[-11,1],[-36,-34],[-56,-29],[-17,-52],[-63,-140],[-37,-106],[-64,14],[-161,109],[-76,15],[-148,-8],[-122,13],[-161,70],[-154,92],[-87,1],[-74,-31],[-87,-138],[-27,-10],[-16,-6],[-80,1],[-46,13],[-66,-14],[-59,-36],[-66,-21],[-78,-14],[-73,11],[-84,22],[-68,33],[-79,30],[-80,-8],[-84,22],[-53,31],[-55,21],[-68,15],[-69,-20],[-60,-31],[-54,-43],[-70,-11],[-191,21],[-83,21],[-67,34],[-58,73],[-49,61],[-31,22],[-23,16],[-38,34],[-58,32],[-60,-25],[-80,-14],[-64,27],[-66,17],[-176,11],[-133,21],[-173,39],[40,188],[10,117],[-8,47],[-45,36],[-27,43],[-1,51],[23,142],[13,53],[-65,28],[-11,48],[-13,21],[2,27],[-53,70],[-10,42],[38,143],[-9,17],[13,41],[26,-4],[27,158],[-77,53],[-1,35],[38,111],[44,36],[46,17],[-52,49],[-57,43],[-40,13],[-28,-3],[15,89],[-4,174],[-10,47],[-24,46],[37,167],[50,70],[1,69],[-10,90],[12,57],[55,22],[50,-6],[18,18],[-1,22],[-2,30],[-66,12],[-67,-15],[-37,11],[1,145],[-11,67],[89,67],[9,23],[8,60],[92,24],[49,1],[39,-9],[11,-23],[62,-37],[46,167],[27,37],[49,30],[120,58],[33,-24],[39,-49],[49,-24],[75,7],[15,27],[-30,46],[20,75],[-1,61],[-32,70],[-18,64],[56,78]],[[3832,4935],[2,58],[1,24]],[[3804,20175],[24,-95]],[[3828,20080],[-13,-66],[64,3],[12,-79],[28,0],[11,-126],[-9,-37],[26,6],[91,3],[11,-36]],[[4049,19748],[20,-24],[68,-82]],[[4137,19642],[44,19],[4,28],[26,37],[44,-12],[65,52],[76,-9],[46,-47],[133,-21],[19,38]],[[4594,19727],[78,27]],[[4672,19754],[56,-14],[46,41],[93,-35],[-17,-39],[5,-44],[47,-17],[87,-16],[178,41],[-16,-91],[1,-88],[24,-33],[-73,-70],[26,-35],[41,-13],[-10,-58],[19,-17],[37,23],[29,-34],[18,10],[2,21],[31,-11],[37,17],[-29,29],[56,41],[58,-43],[-40,-41],[9,-40],[-11,-10],[-51,11],[-23,-46],[26,-25],[7,-22],[-61,-51],[-39,8],[-23,-20],[63,-68],[91,16],[-24,-100],[-38,-4],[-30,20],[-19,-34],[-41,-5],[-38,28],[8,-59],[-41,-7],[-26,-24],[-12,-21]],[[5105,18825],[1,-18]],[[5106,18807],[-15,-66],[-28,5],[-127,-54],[-87,-8],[-35,-19],[-9,-50],[-7,-82],[0,-91],[23,-59],[19,-80],[-12,-106],[-118,-106],[-73,-42],[-56,-97],[-21,-114],[-28,-18],[18,-25],[0,-29],[-14,-38],[-118,-55],[-47,-29],[-55,-98],[67,-117],[53,-24],[31,-9],[103,-97],[25,-60]],[[4595,17239],[0,-64]],[[4595,17175],[31,-41],[5,-30],[20,-136],[-13,-46],[37,18],[21,32],[44,42],[28,5],[76,-57],[-10,-42],[-18,-89],[5,-109],[69,-101],[67,-38],[77,-17],[42,-6],[30,16],[77,-62],[54,13],[36,-6],[33,-18],[44,0],[30,-6],[36,9],[34,39],[11,2],[-18,35],[-16,41],[9,48],[26,47],[18,56],[-13,18],[30,30],[14,43],[0,34],[30,3],[69,-10],[39,-23],[62,8],[26,52],[13,146],[19,17],[129,15],[19,27],[41,87],[2,17],[43,6],[23,-8],[44,-72],[46,-89],[3,-29],[32,0],[74,49],[11,40],[-2,128],[9,33],[74,71],[48,75],[58,-40],[21,-57]],[[6444,17345],[7,-74]],[[6451,17271],[-12,-74],[3,-33],[9,-37],[-23,-34],[-7,-55],[14,-44],[55,-50],[88,-37],[20,-32],[21,-62],[-14,-62],[-20,-67],[4,-37],[53,-101],[39,-40],[77,16],[131,54],[75,5],[74,8],[55,19],[34,46],[28,19],[9,33],[0,35],[1,19],[-1,33],[17,16],[52,-29],[19,-17],[64,25],[93,3],[29,-28],[6,-46],[13,-82],[49,-86],[-4,-16],[-65,-65],[-8,-42],[40,-38],[98,-34],[113,-9],[24,11],[7,35],[14,88],[22,32],[122,86],[21,1],[28,-9],[59,25],[30,33],[37,7],[25,3],[32,24],[70,15],[25,3],[11,-47],[43,-40],[0,-51],[1,-46],[69,-51],[85,-58],[12,-57],[6,-89],[-4,-95],[11,-57],[37,-67],[62,-15],[99,-94],[80,-70],[6,-30],[15,-69],[60,-89],[33,-76],[23,-8],[70,38],[85,18],[93,28],[59,24],[86,-3]],[[9238,15695],[40,-26]],[[9278,15669],[51,-25],[33,-21]],[[9362,15623],[-62,-78]],[[9300,15545],[-75,12],[-15,-109],[-63,-152],[-139,26],[-51,2],[-65,-65]],[[8892,15259],[-23,-198]],[[8869,15061],[-18,-71],[-48,-37],[-119,-42],[5,-45],[71,-65],[43,-54],[-27,-106],[-2,-70],[-57,-72],[-1,-64],[-18,-68],[-31,-26],[-72,-93]],[[8595,14248],[33,-74]],[[8492,13922],[-27,-13],[-39,-18]],[[8178,13431],[-50,-103]],[[8128,13328],[-119,18],[1,-50],[-18,-55],[-63,-32],[-56,32],[-69,29],[-78,12],[-51,101],[-89,0],[-2,91],[6,100],[-41,198]],[[7549,13772],[-69,16],[-29,7]],[[7451,13795],[-98,7],[44,-86],[-111,-77],[-99,-60],[-71,12],[-95,67],[16,73]],[[7037,13731],[-16,21],[-21,26]],[[7000,13778],[-66,8],[-121,-45],[-63,2],[-55,80],[-141,39],[-22,93],[-5,134],[-84,-26],[-34,-107],[-58,4],[-5,-54],[53,-46],[-4,-64],[-10,-51],[-66,10],[-26,-69],[69,-38],[-48,-97],[-74,8],[-68,35],[-63,54],[-65,34],[-53,51],[-50,58],[-47,65],[-32,32],[-32,60],[-70,-178],[-54,-19],[-81,1],[20,89],[-12,86],[67,116],[-88,137],[-71,15],[-52,-2],[-72,19],[11,112]],[[5428,14324],[-8,12],[-23,34]],[[5397,14370],[-15,62],[-85,73],[-68,10],[-97,32],[-211,16]],[[4921,14563],[-21,45]],[[4900,14608],[-6,52],[20,31],[14,34],[-11,29],[-48,58],[-6,77],[-42,12],[-18,55],[-24,127],[-216,23],[-24,-85],[-68,-80],[-115,9],[-25,-20]],[[4331,14930],[-48,63],[-32,43]],[[4251,15036],[-27,12],[-31,-89],[-20,-15],[-65,-1],[-127,-26],[-40,12],[-11,-57],[28,2],[1,-48],[72,23],[28,-19],[41,-2],[47,-88],[-22,-130],[-44,-14],[-27,-29],[-18,-63],[11,-120],[-140,-79],[-278,-181],[-54,10],[-76,-16],[-29,-61],[23,-94]],[[3493,13963],[-18,-14],[-10,22],[-24,-13],[-99,41],[-38,40],[-36,54],[-52,-2],[-35,-19],[-95,36],[-92,-7],[-36,59],[-67,14],[-36,-3],[-32,28],[-58,-11],[5,128],[1,8],[-5,50],[-16,64],[-34,-6],[0,-31],[-190,-40],[-37,-11],[-26,-18],[-34,-5],[-34,43],[-57,139],[-35,15],[-37,1],[-104,-133],[-33,-67],[-63,-69],[-37,21],[-10,26],[1,29],[-44,135],[-123,-9],[-16,33],[-23,-8],[-30,54],[-31,20],[-165,37],[16,119],[-12,69],[7,21],[40,5],[-6,42],[24,87],[34,67],[-19,13],[-25,123],[-20,11],[5,75],[27,72],[15,122],[3,58],[-8,29],[33,24],[25,40],[106,42],[20,-22],[35,14],[19,32],[26,-27],[38,26],[19,51],[19,26],[87,-13],[31,46],[102,34],[38,25],[50,-16],[42,2],[37,66],[60,9],[22,56],[57,50],[30,141],[-89,-24],[-136,77],[-19,35],[-53,16],[-36,25],[-106,4],[-37,21],[19,86],[30,71],[56,52],[62,33],[-1,126],[138,-5],[8,-77],[38,9],[36,103],[38,68],[33,28],[-10,59],[30,4],[11,138],[41,55],[39,-13],[27,38],[89,-50],[31,6],[8,55],[-41,20],[-56,108],[-17,49],[16,82],[114,-38],[36,15],[94,-22],[18,89],[-2,69],[7,69],[-21,66],[24,53],[34,-6],[35,40],[1,44],[-41,33],[47,43],[16,-78],[29,-25],[39,-8],[26,-27],[27,57],[-36,34],[11,45],[47,10],[14,3],[10,42],[-46,9],[-30,25],[41,42],[7,62],[-15,12],[-13,49],[-30,22],[-31,6],[-43,-12],[-30,-22],[-57,49],[19,23],[-13,29],[-50,12],[-45,37],[-26,62],[-56,-19],[-56,-46],[-39,26],[-17,96],[-82,49],[-129,37],[-36,-4],[-8,102],[-31,9],[-18,48],[13,82],[72,-12],[29,74],[53,43],[78,5],[96,28],[60,34],[24,125],[-8,43],[-23,137],[-24,57],[33,199],[-67,14],[-76,72],[-14,51],[-39,89],[-19,85],[-44,7],[-1,88],[79,-6],[82,140],[-31,50],[-33,86],[-33,63],[70,131],[81,45],[55,93]],[[2822,20346],[137,5],[66,78],[142,8],[162,-22]],[[3329,20415],[167,-134]],[[3496,20281],[3,-43],[144,-11],[33,-20],[90,17],[38,-49]],[[8191,19426],[31,29],[66,62]],[[8288,19517],[40,67],[25,72]],[[8353,19656],[41,64]],[[8394,19720],[31,-3],[108,-93],[150,-140],[65,-103],[-5,-75],[47,-25],[76,-149],[38,-45],[52,56],[66,-11],[84,21],[76,81],[21,64],[5,68],[106,69],[32,-87],[20,-93],[26,-56],[34,-44],[52,-27],[71,-4],[105,18],[39,12],[55,56],[-68,81],[5,69],[46,64]],[[9731,19424],[67,53]],[[9798,19477],[58,23],[49,11],[48,44],[86,27],[77,-20],[64,4],[59,18],[58,31]],[[10425,18345],[3,-58]],[[9701,15460],[-66,11]],[[9635,15471],[-82,37],[-60,52],[-65,45],[-44,47]],[[9384,15652],[-22,-29]],[[9278,15669],[-31,20],[-9,6]],[[6451,17271],[-1,10],[-6,64]],[[4595,17175],[0,54],[0,10]],[[5106,18807],[123,65],[5,-127],[94,48],[50,-137],[28,-42],[39,119],[22,131],[105,-95],[22,-89],[100,18],[0,59],[-56,89],[61,12],[155,-89],[45,-36],[110,24]],[[6009,18757],[105,-77]],[[6114,18680],[67,-42],[127,30],[94,30],[49,56],[30,-16],[25,-24],[98,2],[12,-21],[6,-1],[4,-4],[24,25]],[[6650,18715],[31,102]],[[6681,18817],[58,50],[36,1],[30,-156],[47,-21],[135,-2],[44,23],[34,35],[21,31],[31,17],[4,11],[21,29]],[[7142,18835],[21,14],[13,9]],[[7176,18858],[34,39],[28,43],[30,66],[0,108]],[[7268,19114],[-32,208]],[[7236,19322],[-14,143],[12,76],[27,92],[59,120],[76,86],[72,39],[74,-4],[34,-129],[48,-127],[-40,-79],[57,-26],[49,-32],[66,-61],[64,-37],[102,-106],[87,-25],[78,39],[104,135]],[[14587,17043],[-5,-8]],[[16764,13353],[-30,-59]],[[17070,12734],[-269,-2],[-238,-5],[-129,-12],[-111,-15],[-7,-65],[-30,-19],[-44,-3],[-18,0],[-21,64],[-60,94],[-62,33],[-111,17],[-71,-5],[-134,-15],[-85,0],[-86,7],[2,-95],[28,-47],[40,-22],[342,0],[31,-44],[-4,-49],[-5,-145],[-11,-53],[-67,-81],[-5,31],[-80,-8],[-55,22],[-20,40],[-26,20],[-102,59],[-109,4],[-20,0],[-24,22],[-81,-40],[-113,-168],[-9,-34],[0,-101],[-24,-18],[-48,2],[-37,-17],[-57,-50],[-18,-51],[-101,24],[-24,14],[-59,95],[-26,45],[-30,4],[-22,0],[-144,-51],[-55,-32],[-31,-41],[-6,-50],[-17,-75],[-62,-83],[-22,-4],[-130,65],[-64,14],[-30,24],[-118,4],[-28,8],[-77,63],[-26,12],[-166,-14],[-26,10],[-185,98],[-73,-10],[-24,-42],[19,-42],[37,-42],[4,-104],[28,-64],[-7,-60],[-46,-103],[2,-107],[-27,-89],[-19,-15],[-48,25],[-205,69],[-95,8],[-235,-20],[-141,-32],[-90,-52],[-35,-18],[-66,-2],[-37,-3],[-60,-34],[-63,2],[-117,42],[-165,69]],[[12210,11491],[85,191]],[[11836,12290],[6,8],[8,8]],[[11645,12798],[2,26],[3,39]],[[11680,12926],[2,58],[-14,46],[57,71],[36,76],[32,100],[-13,136],[-44,29],[-57,-48],[-76,-14],[-103,24],[-85,-31],[10,200],[34,41],[60,32],[1,46],[-46,28],[-75,65]],[[11399,13785],[2,26],[17,226]],[[11418,14037],[-2,46],[-54,80],[-18,88],[-39,127],[-87,152]],[[11218,14530],[27,48]],[[11245,14578],[43,43],[-44,39],[-7,25],[40,43],[38,17],[-16,81],[32,103],[60,78],[31,136],[46,126]],[[17441,11986],[25,-16],[15,-10]],[[18999,7182],[-15,-1],[-112,-53],[-102,-83],[-58,-100],[-114,-10],[-128,32],[-131,-12],[-111,-99],[-90,-64],[-81,-46],[-74,-29],[-134,-25],[-191,17],[-116,-26],[-210,-98],[-105,-56],[-46,-24],[-58,-128],[-67,-67],[-61,-26],[-185,-18],[-444,-7],[-94,-9],[-106,-22],[-191,-71],[-99,-16],[-126,-33],[-41,-125],[-235,-225],[-40,-93],[-10,-133],[53,-87],[33,-92],[8,-101],[-76,-50],[-57,-119],[-31,-187],[-19,-183],[6,-161],[-14,-96]],[[14163,5214],[-401,245]],[[11916,5760],[-47,45]],[[11446,5862],[-189,-22]],[[11268,6058],[56,16]],[[11798,7440],[-20,50],[-15,39]],[[11995,7654],[25,49],[8,15]],[[12140,9708],[88,63]],[[12193,11454],[17,37]],[[7338,22303],[22,-2]],[[8654,21855],[177,-109]],[[10090,21869],[8,-4]],[[10164,21765],[21,-71]],[[9942,20422],[39,-25],[168,-109]],[[9798,19477],[-51,-41],[-16,-12]],[[8394,19720],[-19,-29],[-22,-35]],[[8288,19517],[-97,-91]],[[7236,19322],[16,-103],[16,-105]],[[7176,18858],[-34,-23]],[[6681,18817],[-19,-62],[-12,-40]],[[6114,18680],[-55,41],[-50,36]],[[5106,18807],[0,5],[-1,13]],[[4672,19754],[-46,-16],[-32,-11]],[[4137,19642],[-88,106]],[[3828,20080],[-9,33],[-15,62]],[[3496,20281],[-110,88],[-57,46]],[[2822,20346],[31,42],[-40,27],[-109,15],[-74,32],[3,20],[-31,10],[-75,-62],[-86,69],[40,58],[117,82],[-25,81],[-105,111],[-87,22],[-115,46],[-61,82],[15,128],[70,92],[86,79],[60,21],[23,124],[-70,79],[-22,71],[14,75],[47,29],[67,-3],[58,-6],[95,69],[47,22],[20,20],[-15,14],[2,53],[-190,37],[-72,0],[-7,24],[-21,21],[2,20],[90,-4],[18,18],[80,-5],[68,-6],[41,15],[61,6],[38,44],[28,2],[20,92],[-7,51],[-17,5],[2,103],[-8,53],[-26,36],[-8,36],[-8,34],[-9,38],[4,88],[32,8],[81,16],[38,7],[70,13],[22,-11],[103,-72],[130,-41],[19,-15],[35,50],[107,68],[53,-5],[230,114],[120,-24],[67,27],[-9,69],[58,137]],[[4900,14608],[12,-26],[9,-19]],[[5397,14370],[31,-46]],[[7000,13778],[37,-47]],[[7451,13795],[98,-23]],[[7326,10668],[-9,-81]],[[6078,11116],[-20,-48],[-46,-111]],[[5868,9633],[2,-55]],[[5819,8669],[-23,-110]],[[4058,9817],[42,68]],[[4258,11111],[-1,7],[-8,54]],[[4185,11205],[-5,17],[-18,59]],[[4162,11281],[-11,22],[-20,38]],[[3843,11241],[0,1],[-50,41]],[[2329,11111],[-11,2],[-63,15]],[[1764,10622],[-80,30],[-30,32],[-76,26],[-38,-29],[-79,24],[-91,54],[-63,22],[-37,73],[-175,50],[-7,90],[-67,21],[-53,86],[38,28],[-10,37],[37,59],[-7,56],[25,57],[47,24],[39,6],[75,-11],[15,121],[42,15],[2,23],[-46,0],[-66,12],[-26,28],[-7,29],[28,29],[64,44],[28,36],[23,-8],[52,45],[73,-62],[22,24],[18,73],[3,65],[16,32],[115,68],[40,60],[55,10],[38,51],[-13,89],[-45,18],[-101,-5],[29,71],[21,9],[58,130],[13,12],[14,103],[8,6],[21,83],[9,58],[-26,32],[-25,11],[1,108],[13,62],[215,-8],[-30,-12],[-23,-41],[16,-34],[63,-39],[76,9],[52,-12],[82,43],[86,23],[56,84],[17,48],[-28,8],[-41,62],[95,104],[15,44],[-15,17],[-53,-1],[-124,54],[-5,123],[103,78],[78,36],[120,-50],[69,2],[115,-47],[-5,75],[9,130],[134,-51],[42,-45],[67,3],[48,10],[6,72],[-10,98],[6,44],[37,12],[84,-2],[58,9],[50,31],[17,62],[12,95],[29,38],[37,32],[-29,-97],[-7,-87],[130,-40],[149,-29],[5,103],[18,53],[8,58],[-19,59]],[[4251,15036],[80,-106]],[[9635,15471],[99,-17]],[[11245,14578],[-19,-33],[-8,-15]],[[11418,14037],[-9,-121],[-10,-131]],[[9620,13904],[3,-38],[3,-26]],[[9115,13664],[-24,8],[-30,10]],[[8619,14193],[-24,55]],[[8869,15061],[10,88],[13,110]],[[9300,15545],[84,107]],[[17613,18172],[-40,101]],[[18302,19953],[-18,43]],[[19460,19617],[24,-63],[6,-14]],[[21333,17802],[-18,-15],[-26,-20]],[[19792,15613],[-23,0],[-13,0]]],"transform":{"scale":[0.0001289462858438363,0.00012020896663238328],"translate":[77.23517600000098,15.827181000000731]},"objects":{"telugana":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Nirmal","Dist_Code":null}},{"arcs":[[26,27,28,29,30,31]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Hyderabad","Dist_Code":"536"}},{"arcs":[[32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Jaya Shankar","Dist_Code":null}},{"arcs":[[57,58,59,60,61,62,-38,63,-36,64,-34,65]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Kothagudem","Dist_Code":null}},{"arcs":[[66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Nagarkurnool","Dist_Code":null}},{"arcs":[[93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Siddipet","Dist_Code":null}},{"arcs":[[109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Suryapet","Dist_Code":null}},{"arcs":[[132,-19,133,-17,134,-15,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,-25,156,-23,157,-21]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Nizamabad","Dist_Code":"533"}},{"arcs":[[[158]],[[159,-27,160,161,162,163,164,165,166,167,168,169,-70,170,-68,171,-93,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,-29]]],"type":"MultiPolygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Shamshabad","Dist_Code":null}},{"arcs":[[-57,187,-55,188,189,190,191,192,193,194,195,196,197,198,-3,199,200,201,202,203,204,205]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Komaram Bheem","Dist_Code":null}},{"arcs":[[-205,206,-203,207,-201,208,-1,209]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Adilabad","Dist_Code":"532"}},{"arcs":[[210,-195,211,-193,212,213,214,215,216,217,218,219,-142,220,-140,221,-138,222,-136,-14,223,-12,224,-10,225,-8,226,-6,227,-4,-199,228,-197]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Jagtial","Dist_Code":null}},{"arcs":[[229,-190,230,-53,231,-51,232,233,234,235,236,237,238,-213,-192]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Peddapalle","Dist_Code":null}},{"arcs":[[239,-214,-239,240,-237,241,-235,242,243,244,-97,245,-95,246,-109,247,-107,248,249,250,251,252,253,-149,254,-147,255,-145,256,-143,-220,257,-218,258,-216]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Karimnagar","Dist_Code":"534"}},{"arcs":[[[259]],[[260,261,262,-110,263,-131,264,265,-98,-245,266,-243,-234,267,-49,268,-47,269,-45,270,271,272,273]]],"type":"MultiPolygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Hanamkonda","Dist_Code":null}},{"arcs":[[274,-62,275,-60,276,277,278,279,280,281,-116,282,-114,283,-112,284,-262,285,286,287,288,289,-40]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Mahabubabad","Dist_Code":null}},{"arcs":[[-58,290,-123,291,-121,292,-119,293,-117,-282,294,-280,295,-278,296]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Khammam","Dist_Code":"541"}},{"arcs":[[297,298,299,300,301,302,303,304,305,306,307,308,-174,309,-91,310,-89,311,312,313,314,315,316,317,318]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Mahbubnagar","Dist_Code":"538"}},{"arcs":[[319,-87,320,-85,321,-315,322,-313]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Wanaparthy","Dist_Code":null}},{"arcs":[[323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,-184,342,-182,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Sangareddy","Dist_Code":null}},{"arcs":[[359,360,361,362,363,364,-105,365,-103,366,367,368,-337,369,-335,370,-333,371,-331,372,373,374,375,376,377,378,379,380]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Medak","Dist_Code":"535"}},{"arcs":[[381,-265,-130,382,-128,383,384,-166,385,-164,386,-162,387,388,389,390,391,-100]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Yadadri","Dist_Code":null}},{"arcs":[[-127,392,-125,393,-83,394,-81,395,-79,396,-77,397,-75,398,-73,399,-71,-170,400,-168,401,-384]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Nalgonda","Dist_Code":"539"}},{"arcs":[[402,-153,403,-151,404,-253,405,-251,406,-249,-106,-365,407,-363,408,-361,409,-381,410,-379,411,-377,412,-375,413,-373,414,-329,415,-327,416,-325,417,-359,418,-357,419,-155]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Kamareddy","Dist_Code":null}},{"arcs":[[420,-351,421,-349,422,-347,423,-345,-180,424,-178,425,-176,426,-308,427,-306,428,-304,429,-302,430,431,-299,432,-319,433,-317,434,-355,435,-353],[-159]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Rangareddy","Dist_Code":"537"}},{"arcs":[[436,-101,-392,437,-390,438,-388,-161,-32,439,-30,440,-186,441,-341,442,-339,443,-368]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Malkajgiri","Dist_Code":null}},{"arcs":[[-260,-274,444,-272,445,-43,446,-41,-290,447,-288,448,-286,-261]],"type":"Polygon","properties":{"REMARKS_2":null,"Country":"India","st_nm":"Telangana","State_Code":null,"district":"Warangal","Dist_Code":"540"}}]}},"crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [7402, 28844], + [141, -76], + [249, -178], + [281, -208], + [74, -73], + [76, -146], + [30, -67], + [48, -35], + [67, -47], + [113, -39], + [93, -52], + [62, -30], + [76, -74], + [62, -60], + [63, -17], + [103, -20], + [100, 10], + [66, 17], + [81, 57], + [42, 79], + [-7, 90], + [-23, 136], + [18, 29], + [39, 5], + [77, -24], + [87, -5], + [79, -5], + [71, -30], + [56, -17], + [92, 4], + [59, 43], + [7, 36], + [22, 28], + [63, 51], + [321, 174], + [35, 4], + [55, 33], + [32, 0], + [61, -25], + [42, 6], + [20, 39], + [0, 50], + [24, 12], + [34, 7], + [112, 0], + [20, 14], + [2, 60], + [-3, 71], + [12, 34], + [21, 49], + [3, 67], + [17, 60], + [8, -15], + [53, -32], + [74, -12], + [72, 15], + [113, 33], + [195, 87], + [163, 59], + [48, 0], + [11, -63], + [-4, -139], + [11, -79], + [33, -12], + [70, -24], + [126, -71], + [100, -99], + [228, -253], + [22, 0], + [85, 20], + [56, 0], + [44, -20], + [44, 16], + [93, 63], + [151, 182], + [15, 67], + [33, 44], + [55, 24], + [89, 8], + [55, 0], + [44, 39], + [69, 61], + [90, -92], + [143, -91] + ], + [ + [13066, 28597], + [180, -155] + ], + [ + [13246, 28442], + [8, -77], + [-22, -59], + [-152, -137], + [-69, -42], + [-39, -59], + [-69, -157], + [-42, -33], + [-185, -101], + [-28, -56], + [8, -60], + [45, -41], + [58, -24], + [3, -48], + [-64, -154], + [-47, -113], + [-3, -74], + [36, -15], + [100, 30], + [39, 62], + [74, 101], + [81, 86], + [44, 0], + [52, -26], + [42, -104], + [55, -104], + [25, -95], + [0, -116], + [19, -94] + ], + [ + [13215, 26932], + [-85, -65], + [-53, -62], + [-48, -70], + [-78, -82], + [-65, -20], + [-96, 24], + [-99, 39] + ], + [ + [12691, 26696], + [-206, 123] + ], + [ + [12485, 26819], + [-113, 42], + [-77, -22], + [-221, -157] + ], + [ + [12074, 26682], + [-296, -187] + ], + [ + [11778, 26495], + [-134, -27], + [-281, 123], + [-144, 14] + ], + [ + [11219, 26605], + [-90, -35], + [-37, -14] + ], + [ + [11092, 26556], + [-65, -61], + [-62, -110], + [-32, -47], + [-107, -119], + [-46, -17], + [-55, -9] + ], + [ + [10725, 26193], + [-83, 17] + ], + [ + [10642, 26210], + [-164, 67] + ], + [ + [10478, 26277], + [-24, -2], + [-2, -1], + [-45, -4] + ], + [ + [10407, 26270], + [-90, -57], + [-63, -48], + [-144, -184], + [-79, -73] + ], + [ + [10031, 25908], + [-21, 11], + [-54, 25], + [-104, 105], + [-91, 43] + ], + [ + [9761, 26092], + [-146, -30], + [-112, -23] + ], + [ + [9503, 26039], + [-107, -1], + [-65, 12], + [-70, 40], + [-138, 135], + [-86, 68], + [-92, 19], + [-83, -15] + ], + [ + [8862, 26297], + [-44, -13], + [-59, -16] + ], + [ + [8759, 26268], + [-81, -52], + [-219, -176], + [-95, -54], + [-114, -53] + ], + [ + [8250, 25933], + [-111, -31] + ], + [ + [8139, 25902], + [-61, 22], + [-32, 113], + [5, 97], + [-41, 108] + ], + [ + [8010, 26242], + [-35, 42], + [-24, 30] + ], + [ + [7951, 26314], + [-96, 59], + [-24, 9], + [-94, 34], + [-116, -10], + [-123, -25] + ], + [ + [7498, 26381], + [-25, -13], + [-73, -38] + ], + [ + [7400, 26330], + [-117, -38], + [-131, -63], + [-216, -180], + [-94, -50], + [-155, -67], + [-63, -20], + [-57, -31], + [-100, -24], + [-23, -18], + [-42, -30], + [-98, -88], + [-6, -8], + [-65, -111], + [-40, -91], + [-35, -116], + [-34, -29], + [-52, -9], + [-173, 52], + [-213, -52], + [-64, -56] + ], + [ + [5622, 25301], + [-49, -107], + [-24, 22], + [-41, 2], + [-74, 31], + [-121, -8], + [-110, 49], + [-53, 6], + [-5, 131], + [-85, 12], + [-39, 93], + [-8, 101], + [-96, 15], + [-97, -35], + [-126, 43], + [5, 85], + [25, 74], + [34, 8], + [39, 174], + [-180, -17], + [-24, -37], + [-114, 31], + [19, 81], + [-18, 7], + [33, 186], + [-232, 15], + [-44, -66], + [-110, 43], + [8, 149], + [-20, 67], + [-4, 66], + [-8, 35], + [-16, 8], + [-15, 18], + [-22, 49], + [27, 188], + [-10, 68], + [16, 22], + [72, -49], + [54, -15], + [40, 4], + [63, -34], + [26, -4], + [20, 9], + [-11, 81], + [11, 32], + [-28, 53], + [7, 18], + [22, 10], + [31, 81], + [-12, 85], + [4, 36], + [19, 25], + [24, 12], + [73, 3], + [56, -61], + [24, -39], + [24, -56], + [41, 13], + [64, 2], + [35, 15], + [12, 13], + [0, 21], + [-31, 28], + [8, 151], + [-51, 39], + [-37, 115], + [-22, 25], + [51, 22], + [46, 71], + [44, 70], + [-4, 34], + [11, 24], + [2, 45], + [27, 15], + [3, 23], + [-10, 38], + [42, 33], + [-107, 62], + [15, 73], + [48, 63], + [-3, 43], + [48, 73], + [23, 65], + [6, 63], + [25, 33], + [20, 69], + [-5, 76], + [134, 41], + [56, -26], + [66, -8], + [41, 92], + [-39, 83], + [-59, 10], + [-137, 12], + [-104, 36], + [-9, 29], + [14, 64], + [-14, 57], + [80, 30], + [32, 26], + [99, 29], + [41, 73], + [48, -28], + [49, -17], + [50, 18], + [76, 66], + [33, 50], + [85, 32], + [26, 56], + [64, -10], + [107, -79], + [31, -37], + [79, -52], + [67, -100], + [80, -28], + [122, -38], + [52, -40], + [70, -146], + [43, -39], + [100, -27], + [29, -67], + [-14, -59], + [3, -68], + [24, -48], + [50, -16], + [136, 56], + [55, 69], + [100, -41], + [33, -37], + [212, 8], + [97, -58], + [82, -78], + [157, 52], + [103, 44], + [24, 64], + [-24, 99], + [-1, 148], + [50, 129] + ], + [ + [10095, 12900], + [-10, -26], + [-10, -27], + [-6, -3], + [-3, 0], + [-9, 21], + [-25, -39], + [-17, -12], + [-28, 6], + [-16, 19], + [-2, 16], + [6, 20], + [-3, 11], + [-5, 0], + [-18, -9], + [-10, -3], + [-21, 3], + [-9, -4], + [-7, -2], + [-21, -16], + [-3, -33], + [-2, -35], + [-8, -19], + [-30, -46], + [-18, -63], + [3, -36], + [-16, -26], + [-9, -1], + [-22, 9], + [-22, 7], + [-20, 0], + [-26, -6], + [-33, -14], + [-21, -16], + [-13, -8], + [-22, -5], + [-29, -27], + [-9, -13], + [-12, 9], + [3, 22], + [-6, 12], + [-14, 5] + ], + [ + [9552, 12571], + [-30, -4] + ], + [ + [9522, 12567], + [-33, -4], + [-23, -17], + [-8, 3], + [-11, -2], + [-7, -3], + [-10, 6], + [-14, 0], + [-33, -9], + [-20, 1], + [-27, 4], + [-3, 8], + [8, 12], + [6, 14], + [12, 14], + [24, 14], + [20, 7], + [20, 31], + [9, 18], + [8, 77], + [-5, 10], + [-7, 1], + [-14, -1], + [0, 3], + [-5, -1], + [-14, -8], + [-16, 1], + [-20, 5], + [-12, -3], + [-34, -18], + [-18, 0], + [-12, -4], + [-19, -7], + [-16, -1], + [0, 5], + [13, 11], + [11, 4], + [35, 26], + [16, 15], + [12, 25], + [0, 23], + [5, 9], + [12, 6], + [8, 29], + [17, 33], + [4, 12], + [2, 15], + [0, 4], + [-2, 14], + [-13, 15], + [-15, 5], + [-15, 3], + [-11, -3], + [-10, 0], + [-8, 6], + [-13, 20], + [-22, 3], + [-17, -1], + [-60, -15], + [-27, -5], + [-64, -6], + [-23, -3], + [-57, -16], + [-13, -10], + [-15, -6], + [-54, -6], + [-24, -2], + [-27, 5], + [-20, -5], + [-62, -8], + [-19, -3], + [-54, 12], + [-2, 7], + [5, 26], + [12, 15], + [92, 46], + [34, 10], + [11, 0], + [16, -19], + [7, -2], + [34, 2], + [27, -9], + [43, -1], + [35, -1], + [7, 1], + [-13, 17], + [-12, 9], + [0, 12], + [8, 10], + [-6, 28], + [-1, 7], + [2, 27], + [2, 8], + [-5, 11], + [0, 15], + [-10, 14], + [-18, 9], + [-3, 11], + [-5, 54], + [8, 15], + [12, 8], + [12, 18], + [39, 16], + [9, 17], + [14, 9], + [23, 10], + [-6, 21], + [-43, 42], + [-34, 23], + [-36, -1], + [-7, 12], + [0, 6], + [12, 9], + [17, 8], + [7, 8], + [11, 27], + [1, 16], + [6, 19], + [21, 24], + [31, 14], + [25, 26], + [-4, 13], + [-1, 4], + [-1, 10], + [-13, 21], + [14, 33] + ], + [ + [9115, 13664], + [6, 18], + [11, 12], + [12, 0], + [51, 16], + [75, 24], + [31, 11], + [53, -15], + [17, 5], + [56, -7], + [24, -8], + [38, -9], + [24, 0], + [21, -7], + [12, -18], + [7, -28], + [10, -21], + [8, -5], + [15, 7], + [12, 6], + [11, 21], + [8, 6], + [17, 13], + [18, 7], + [17, 18], + [5, 13], + [3, 15], + [-2, 2], + [-4, 4], + [-41, 9], + [-6, 11], + [-3, 26], + [5, 50] + ], + [ + [9626, 13840], + [-6, 64] + ], + [ + [9620, 13904], + [1, 43], + [8, 11], + [19, 7], + [20, -7], + [33, -9], + [23, -4], + [7, -3], + [40, -30], + [14, -3], + [15, 5], + [29, -4], + [64, -32], + [15, 3], + [3, 15], + [-10, 20], + [-54, 46], + [1, 42], + [6, 22], + [14, 2], + [20, 3], + [18, 13], + [9, 0], + [14, -3], + [7, 4], + [11, 16], + [54, -26], + [46, -35], + [4, -23], + [14, -32], + [10, -29], + [12, -24], + [15, -50], + [-11, -15], + [-2, -32], + [3, -14], + [4, -9], + [-5, -17], + [12, -44], + [2, -6], + [17, -39], + [19, -27], + [9, -4], + [8, 36], + [9, 10], + [20, 3], + [16, -7], + [34, -42], + [14, -29], + [7, -17], + [-14, -25], + [-4, -24], + [-14, -27], + [-14, -17], + [-10, -2], + [-5, 0], + [-4, 6], + [-11, 13], + [-13, 8], + [-27, 13], + [-6, -2], + [-6, -2], + [-8, -14], + [-1, -17], + [3, -12], + [19, -45], + [29, -18], + [16, -3], + [32, -43], + [3, -10], + [-15, -13], + [-19, -4], + [-41, 5], + [-26, 1], + [-18, -7], + [2, -11], + [0, -4], + [9, -4], + [8, -4], + [6, -13], + [17, 2], + [5, -4], + [-15, -42], + [-34, -80], + [-6, -45], + [16, -18], + [7, -5], + [1, -7], + [-1, -5], + [0, -4], + [-38, -17], + [-2, -28], + [7, -8], + [8, -4], + [8, -15], + [17, 24], + [13, 7], + [11, 6], + [4, -10], + [4, -6], + [17, -7], + [-7, -14], + [-20, -12], + [-12, -12], + [-16, -8], + [-35, 10], + [-1, -2], + [-8, -18], + [-5, -11], + [-1, -10], + [15, -14], + [17, -57] + ], + [ + [20620, 24987], + [117, -201], + [55, -78], + [122, -107], + [63, -22], + [78, -16], + [243, -47], + [89, -6], + [125, -41], + [25, -15], + [17, -55], + [16, -26], + [17, -50], + [85, -19], + [24, -19], + [105, -212], + [54, -26], + [67, -11], + [28, -27], + [18, -38], + [53, -51], + [33, -10], + [25, 9], + [18, -13], + [19, -28], + [105, -105], + [47, -61], + [33, -12], + [40, -2], + [19, 27], + [22, 17], + [75, 35], + [44, 12], + [44, -5], + [50, 58], + [27, 17], + [46, 6], + [30, -16], + [20, -31], + [22, -85], + [28, -23], + [36, -12], + [103, -3], + [16, 29], + [5, 38], + [19, 41], + [61, 74], + [46, 25], + [50, 6], + [44, -16], + [41, -25], + [36, 11], + [44, 24], + [47, -2], + [39, 10], + [106, 106], + [55, 32], + [27, -37], + [54, -21], + [85, -133], + [58, -78], + [24, -53], + [65, -224], + [56, -133], + [33, -122], + [94, -209], + [41, -50], + [16, -19], + [24, -15], + [52, 17], + [33, 20], + [24, 23], + [12, 39], + [17, 32], + [22, 13], + [34, 7], + [28, -13], + [86, -79] + ], + [ + [24401, 23013], + [71, -129], + [33, -93], + [-4, -38], + [-14, -41], + [-25, -46], + [-124, -113], + [-24, -46], + [-9, -34], + [-3, -48], + [15, -31], + [25, -19], + [3, -75], + [15, -61], + [-36, -38], + [9, -37], + [-10, -102], + [16, -89], + [24, -41], + [36, -35], + [54, -28], + [67, -23], + [54, 1], + [34, 15], + [52, -1], + [54, -12], + [49, 15], + [41, -1], + [100, -27], + [66, -49], + [21, -33], + [10, -81], + [-7, -43], + [-22, -47], + [-14, -53], + [-25, -132], + [5, -34], + [26, -29], + [85, -64], + [21, -33], + [-3, -72], + [-42, -107], + [-17, -74], + [37, -118], + [3, -45], + [-22, -96], + [35, -143], + [25, -52], + [36, -47], + [78, -80], + [31, -45], + [20, -58], + [44, -56], + [46, -18], + [75, 12], + [54, -6], + [85, -31], + [37, -38], + [119, -86], + [38, -15], + [85, -49], + [76, -54], + [42, -37], + [100, -56], + [81, -68], + [39, -66], + [38, -8], + [48, 3], + [17, -32], + [8, -36], + [15, -23], + [-1, -14], + [106, -48], + [93, -85], + [25, -8], + [28, -33] + ], + [ + [26549, 19449], + [-33, -63] + ], + [ + [26516, 19386], + [-8, -65], + [-23, -12], + [-23, 13], + [-27, 5], + [-3, -4], + [-7, -11], + [47, -60], + [4, -10], + [10, -25], + [-14, -76], + [-59, 5], + [-132, 44], + [-16, -24], + [-12, -17], + [-13, -37], + [2, -28], + [136, -17], + [3, -33], + [-44, -87], + [-18, -16], + [-48, 6], + [-80, 32], + [-3, -1], + [-14, -6], + [-14, -73], + [-28, -40], + [-6, -18], + [-17, -54] + ], + [ + [26109, 18777], + [-56, -60] + ], + [ + [26053, 18717], + [-33, -6], + [-93, -81], + [-66, -16], + [-111, -55], + [-155, -111], + [-67, -40], + [-132, 0], + [-447, 118], + [-68, 36], + [-25, 7], + [-70, -43], + [-27, -8], + [-118, 70], + [-42, 35], + [-20, 18], + [-56, 38], + [-76, 30], + [-153, -147], + [-145, -169], + [-35, -28], + [-26, -33], + [-20, -67], + [-8, -95], + [-106, -96], + [-27, -38] + ], + [ + [23927, 18036], + [-34, -61] + ], + [ + [23893, 17975], + [-104, 60], + [-158, 15], + [-196, 84], + [-137, 110], + [-265, 151], + [-237, 111], + [-118, 134], + [-12, 33], + [-67, 30], + [-64, 26], + [-185, 6], + [-112, -32], + [-120, -69], + [-85, -12], + [-91, 24], + [-120, 87], + [-59, 81], + [-35, 40], + [-14, -8] + ], + [ + [21714, 18846], + [-34, 77], + [-80, 63], + [-105, 53], + [-72, -6], + [-97, -53], + [-136, -74], + [-72, -72], + [-30, -29], + [-346, -137], + [-50, 6], + [-55, 18], + [-72, 110], + [-42, 20], + [-384, 27], + [11, 80], + [74, 161], + [92, 110], + [0, 47], + [-25, 30], + [-39, 18], + [-31, -12], + [-83, -10], + [-62, -3], + [-37, 23], + [-62, 116], + [-58, 59], + [-106, 84], + [-44, -5], + [-113, -19], + [-120, 2], + [-46, 10] + ], + [ + [19490, 19540], + [-30, 77] + ], + [ + [19460, 19617], + [9, 54], + [2, 37], + [-27, 10], + [-92, 47], + [-19, 30], + [-14, 62], + [-39, 91], + [-39, 42], + [-21, 32], + [12, 25], + [16, 32], + [-10, 45], + [-63, 85], + [-4, -25], + [-28, -64], + [-76, -50], + [-67, -47], + [-71, -9], + [-67, 14], + [-143, 122], + [-28, 14], + [-34, -14], + [-86, -75], + [-37, -29], + [-80, -15], + [-56, 30], + [-39, 19], + [-39, -12], + [-21, -25], + [-15, -47] + ], + [ + [18284, 19996], + [-33, 78] + ], + [ + [18251, 20074], + [-20, 42], + [-79, 111] + ], + [ + [18152, 20227], + [-52, 140] + ], + [ + [18100, 20367], + [-18, 71], + [-8, 100], + [10, 93], + [69, 26], + [14, 68], + [-36, 69], + [36, 46], + [11, 30], + [5, 94], + [-6, 46] + ], + [ + [18177, 21010], + [-32, 122], + [-8, 33] + ], + [ + [18137, 21165], + [-1, 82], + [15, 75], + [5, 69], + [21, 53], + [-47, 137] + ], + [ + [18130, 21581], + [51, 65] + ], + [ + [18181, 21646], + [73, 117], + [13, 61], + [-6, 67], + [3, 64] + ], + [ + [18264, 21955], + [101, 10] + ], + [ + [18365, 21965], + [136, 38], + [81, 9], + [66, 57], + [87, 32], + [51, 63], + [166, 232], + [39, 85], + [74, 128], + [11, 74], + [65, 144], + [72, 48], + [107, 27], + [70, -8], + [173, -39], + [44, 4], + [89, 63], + [140, 329], + [15, 95], + [48, 87], + [0, 83], + [15, 40], + [33, 87], + [-11, 43], + [-48, 75], + [-113, 205] + ], + [ + [19775, 23966], + [72, 48] + ], + [ + [19847, 24014], + [70, 69], + [32, 143] + ], + [ + [19949, 24226], + [42, 87], + [47, 99] + ], + [ + [20038, 24412], + [80, 117], + [52, 45], + [62, 41], + [23, 94], + [-24, 73], + [-59, 60], + [-80, 114], + [-15, 82], + [11, 124], + [31, 111], + [48, 80], + [45, 33], + [105, -87], + [22, -125], + [6, -69], + [34, -104], + [80, -29], + [84, -8], + [53, 12], + [24, 11] + ], + [ + [28463, 11431], + [-392, 319], + [-22, 32], + [7, 47], + [74, 95], + [7, 52], + [-14, 43], + [-22, 56], + [3, 23], + [33, 60], + [0, 87], + [12, 59], + [3, 131], + [-3, 87], + [-34, 87], + [8, 36], + [-281, -95], + [-96, -64], + [-136, 12], + [-126, 48], + [-40, -12], + [-56, -68], + [-86, -139], + [-222, -52], + [-129, -114], + [-243, -99], + [7, -16], + [-37, -56], + [-55, -11], + [-211, 122], + [-55, 16], + [-66, -20], + [-83, -22], + [-60, 134], + [-51, 134], + [-44, 22], + [-219, 32], + [-25, 17], + [-25, 112], + [-42, 203], + [7, 111], + [41, 96], + [-2, 80], + [-32, 126], + [-2, 81], + [46, 62], + [20, 65], + [7, 126], + [-13, 62], + [-3, 42], + [-14, 59], + [-57, 87], + [0, 37], + [-10, 42], + [-16, 30], + [-43, 28], + [-144, 67], + [-67, 16], + [-313, 4], + [-45, 59], + [-18, 67], + [-74, 79], + [-62, 5], + [-87, -35], + [-60, 10], + [-88, 74], + [-51, 3], + [-69, -20], + [-32, -7], + [-16, 69], + [-24, 57], + [0, 86], + [-13, 42], + [-30, -9], + [-65, -50], + [-81, -67], + [-25, -54], + [-46, -47], + [-72, -126], + [-71, -55], + [-56, -7], + [-13, 29], + [-17, 87], + [-73, 119], + [-7, 42], + [46, 44], + [11, 85], + [-13, 42], + [-19, 39], + [-39, 65], + [-46, 19], + [-150, -7], + [-256, 0], + [-228, 23] + ], + [ + [23258, 14611], + [0, 4] + ], + [ + [23258, 14615], + [-14, 116], + [-28, 35], + [-55, 9], + [-39, 36], + [-41, 151], + [5, 119], + [61, 86], + [50, 0], + [91, 12], + [117, 98], + [22, 77], + [63, 101], + [11, 45], + [-22, 80], + [-27, 80], + [-25, 131], + [-78, 93], + [20, 5], + [27, 51] + ], + [ + [23396, 15940], + [15, 125], + [4, 35] + ], + [ + [23415, 16100], + [-31, 119], + [-34, 374], + [147, 270], + [37, 91], + [19, 92], + [-1, 117], + [30, 107], + [-65, 95], + [-19, 108], + [30, 129], + [10, 97], + [-5, 63], + [131, -12], + [41, 7], + [71, 44], + [8, 5], + [30, 30] + ], + [ + [23814, 17836], + [113, 200] + ], + [ + [26053, 18717], + [37, 40], + [19, 20] + ], + [ + [26516, 19386], + [15, 29], + [18, 34] + ], + [ + [24401, 23013], + [31, 24], + [30, 23], + [29, 31], + [69, 35], + [38, 5], + [70, 9], + [12, 16], + [253, 130], + [39, -12], + [60, -19], + [37, 1], + [35, 8], + [61, 33], + [15, 2], + [11, 2], + [38, -12], + [76, -75], + [97, -17], + [25, -21], + [11, -49], + [21, -32], + [29, -22], + [53, -59], + [1, -7], + [5, -25], + [5, -9], + [15, -22], + [66, -26], + [134, -85], + [33, -27], + [46, -67], + [105, -33], + [109, -70], + [42, -34], + [24, -35], + [53, -60], + [23, -63], + [58, -24], + [44, -41], + [44, 5], + [6, -10], + [12, -19], + [5, -31], + [6, -36], + [-8, -13], + [-14, -21], + [3, -16], + [5, -22], + [17, -39], + [63, -86], + [26, -37], + [20, -57], + [89, -54], + [29, -26], + [29, -12], + [14, -12], + [12, -12], + [8, -17], + [49, -23], + [15, -29], + [3, -24], + [2, -21], + [43, -21], + [26, -14], + [23, 3], + [31, -40], + [-28, -12], + [-21, -47], + [-12, -79], + [170, -113], + [34, 27], + [7, 6], + [33, 5], + [31, -11], + [18, -43], + [-13, -32], + [-25, -40], + [-64, -66], + [2, -15], + [2, -21], + [19, -31], + [32, -28], + [11, -32], + [-9, -34], + [-1, -31], + [-1, -24], + [10, -33], + [18, -59], + [65, -96], + [63, -138], + [12, -44], + [6, -98], + [-5, -24], + [52, -39], + [13, -52], + [32, -54], + [19, -18], + [16, -4], + [13, -3], + [24, -29], + [55, -111], + [31, -43], + [32, -1], + [26, -13], + [13, -18], + [12, -15], + [1, -36], + [-8, -27], + [-23, -27], + [-116, -57], + [-97, -57], + [-183, -90], + [-8, -111], + [3, -93], + [15, -187], + [82, -57], + [68, -8], + [66, -8], + [130, 7], + [60, 3], + [52, 11], + [34, 7], + [100, 101], + [-1, 40], + [56, 32], + [6, 41], + [-8, 172], + [5, 52], + [-9, 52], + [14, 48], + [40, 21], + [42, 5], + [36, -7], + [42, -44], + [151, -17], + [21, -36], + [14, -37], + [30, -82], + [-2, -34], + [-12, -19], + [-34, -19], + [-37, -2], + [-57, 15], + [-3, -9], + [-4, -12], + [2, -15], + [3, -23], + [26, -80], + [3, -42], + [-7, -84], + [31, -139], + [-2, -21], + [-2, -20], + [2, -14], + [2, -18], + [21, -31], + [15, -14], + [10, -8], + [3, -32], + [148, -1], + [91, 16], + [61, 2], + [87, 32], + [155, 90], + [30, 26], + [7, 19], + [58, 19], + [44, 60], + [34, 22], + [88, 12], + [63, -2], + [1, -82], + [7, -53], + [-16, -69], + [-40, -47], + [-141, -123], + [-14, -53], + [18, -109], + [0, -45], + [-12, -58], + [-18, -59], + [-16, -27], + [66, -76], + [86, -184], + [19, -52], + [-29, -99], + [3, -3], + [5, -25], + [5, -31], + [17, -49], + [18, -56], + [12, -73], + [12, -48], + [9, -34], + [4, -57], + [5, -80], + [17, -115], + [16, -111], + [13, -32], + [3, -21], + [3, -28], + [21, -41], + [11, -100], + [57, -29], + [18, -43], + [22, -159], + [36, -253], + [12, -130], + [8, -89], + [63, -181], + [154, -224], + [41, -29], + [59, -19], + [83, -9], + [41, 6], + [35, 5], + [26, 8], + [35, 10], + [22, 35], + [24, 37], + [58, 69], + [98, -131], + [41, -75], + [0, -64], + [42, -64], + [-121, -177], + [-78, -48], + [0, -38], + [-78, -29], + [-83, 10], + [-37, 29], + [-64, 50], + [-65, 25], + [-55, 79], + [-120, 19], + [-111, 20], + [-101, 5], + [-102, 52], + [-14, 39], + [-89, 12], + [-11, -6], + [-200, 7], + [-161, -79], + [-46, -50], + [-23, 30], + [-102, 25], + [-92, 54], + [41, -247], + [5, -30], + [0, -168], + [-23, -99], + [-52, -64], + [-40, -70], + [-37, -74], + [-5, -94], + [97, -163], + [111, -60], + [119, -35], + [104, 35], + [28, 22], + [39, 31], + [78, 19], + [14, 4], + [35, 9], + [13, 3], + [75, 18], + [250, -59], + [71, -137], + [-7, -9], + [-18, -24], + [-25, -34], + [-3, -4], + [-13, -18], + [-103, -16], + [-8, -1], + [-48, -92], + [-99, -188], + [10, -40], + [27, -138], + [6, -29], + [78, -95], + [160, -136], + [61, -119], + [28, -154], + [122, -83], + [121, -6], + [183, -131], + [149, -113], + [161, 12], + [66, 89], + [39, 83], + [41, 24], + [59, 36], + [88, 0], + [35, -17], + [15, -97], + [9, -119], + [-46, -114], + [60, -89], + [139, -99], + [69, -5], + [68, 43], + [107, 66], + [42, -5], + [15, -65], + [17, -68], + [175, -174], + [202, -8], + [140, -6], + [8, -44], + [33, -174], + [100, -174], + [-47, -75], + [-57, -65], + [-113, -81], + [-39, 16], + [-36, 6], + [-180, 1], + [-121, -9], + [-220, 47], + [-68, -43], + [-26, -64], + [-49, -75], + [-10, -75], + [4, -248], + [27, -53], + [46, -48], + [-97, -102], + [-41, -81], + [-133, -7], + [-213, -59], + [-261, -91], + [-173, -80], + [-65, 51], + [-21, 11], + [-35, 19], + [-21, -77], + [-30, -38], + [-40, -23], + [-26, -40], + [-41, -48], + [-161, -18], + [-60, -20], + [-50, -20], + [-47, -2], + [-146, 43], + [-80, 30], + [-65, 43], + [-67, 58], + [-65, 39], + [-78, 7], + [-52, -5], + [-66, -33] + ], + [ + [9935, 9651], + [71, -42] + ], + [ + [10006, 9609], + [134, -21], + [102, -33], + [48, -113], + [46, -53], + [84, -75], + [142, 28], + [89, 31], + [60, -2], + [211, -28], + [50, -35], + [47, -48] + ], + [ + [11019, 9260], + [85, -50], + [21, -11] + ], + [ + [11125, 9199], + [84, -62], + [113, 19] + ], + [ + [11322, 9156], + [128, -53], + [116, -56], + [133, -85], + [-67, -81], + [-83, -154], + [-23, -86], + [63, -92], + [116, -49], + [77, 97], + [72, 72], + [59, 49], + [50, -104], + [-1, -83], + [-48, -118], + [48, -50], + [71, -99], + [84, -27], + [-15, -74], + [-55, -72], + [14, -112], + [0, -105], + [-33, -156] + ], + [ + [12028, 7718], + [-33, -64] + ], + [ + [11995, 7654], + [-50, -51], + [-39, -16], + [-112, -1], + [-31, -57] + ], + [ + [11763, 7529], + [35, -89] + ], + [ + [11798, 7440], + [-45, -171], + [-73, -23], + [-58, -34], + [-104, -104], + [-66, -53], + [-52, -96], + [42, -173], + [-124, 3], + [-90, -6], + [-77, 9], + [-45, -7], + [28, -82], + [57, -127], + [83, -31], + [117, -193], + [56, -127], + [-65, -93], + [-58, -58] + ], + [ + [11324, 6074], + [-32, -9], + [-24, -7] + ], + [ + [11268, 6058], + [-76, -64], + [-21, -131], + [86, -23] + ], + [ + [11257, 5840], + [29, 3], + [160, 19] + ], + [ + [11446, 5862], + [243, -17], + [71, 1], + [60, -15], + [49, -26] + ], + [ + [11869, 5805], + [21, -20], + [26, -25] + ], + [ + [11916, 5760], + [122, -77], + [80, 11], + [160, 125], + [80, 78], + [70, 44], + [88, 25], + [45, -8], + [65, -45], + [26, -11], + [111, 41], + [145, 22], + [47, 0], + [93, -118], + [26, -103], + [30, -54], + [236, -140], + [142, -56], + [148, 10], + [132, -45] + ], + [ + [13762, 5459], + [380, -232], + [21, -13] + ], + [ + [14163, 5214], + [231, -176], + [148, -137], + [277, -148], + [290, -196], + [218, -101] + ], + [ + [15327, 4456], + [91, -104], + [36, -112], + [15, -305], + [-37, -417], + [-50, -87], + [-86, -74], + [-121, -67], + [-119, -46], + [-108, 26], + [-89, 36], + [-67, 39], + [-73, 59], + [-79, 13], + [-422, 2], + [-112, 36], + [-90, 20], + [-90, 7], + [-83, -12], + [-78, -32], + [-137, -101], + [-112, -44], + [-147, -48], + [-139, -62], + [-121, -62], + [-135, -94], + [-21, -76], + [1, -141], + [119, -260], + [8, -99], + [-36, -69], + [-30, -39], + [-23, -30], + [-72, -63], + [-94, 8], + [-127, 96], + [-25, 95], + [-11, 114], + [-13, 71], + [-26, 77], + [-51, 46], + [-79, 8], + [-65, -23], + [-44, -42], + [-13, -80], + [6, -76], + [21, -107], + [32, -77], + [17, -67], + [-7, -71], + [-22, -57], + [-116, -210], + [-61, -83], + [-44, -50], + [-140, -112], + [-116, -76], + [-164, -22], + [-116, 2], + [-101, 15], + [-95, 30], + [-210, 115], + [-90, 72], + [-51, 56], + [-83, 130], + [-85, 94], + [-66, 60], + [-14, 12], + [-151, 62], + [-104, -20], + [-85, -77], + [-125, -140], + [-73, -71], + [-62, -45], + [-94, -2], + [-109, 51], + [-93, 23], + [-196, 67], + [-346, 66], + [-233, 15], + [-119, -16], + [-166, -76], + [-110, -100], + [-131, -44], + [-99, -14], + [-72, -48], + [-58, -82], + [-57, -67], + [-187, -5], + [-86, 30], + [-100, 22], + [-89, -29], + [-41, -47] + ], + [ + [7881, 1651], + [-207, 59], + [-42, 42], + [-71, 106], + [-33, 143], + [-18, 265], + [-16, 45], + [-97, 136], + [-24, 28], + [58, 55], + [37, 49], + [24, 85] + ], + [ + [7492, 2664], + [16, 46], + [14, 39] + ], + [ + [7522, 2749], + [29, 135], + [-13, 57], + [-31, 4], + [-104, 2], + [-114, 34], + [-61, 32], + [-11, 61], + [4, 61], + [42, 50], + [104, 93], + [12, 55], + [-25, 71], + [-2, 52], + [15, 71], + [7, 79], + [-44, 28], + [-45, 0], + [-42, -10], + [-59, 2], + [-46, 77], + [-41, 56], + [-20, 93], + [15, 109], + [27, 55], + [146, 58], + [17, 35], + [137, 9], + [41, -6], + [28, -30], + [25, -59], + [108, -101], + [108, -30], + [50, 21], + [-3, 54], + [-25, 107], + [19, 92], + [64, 62], + [91, 6], + [89, -33], + [75, -12], + [-3, 35], + [11, 74], + [36, 77], + [72, 21], + [66, 6], + [6, 29], + [-31, 39], + [-30, 68], + [-17, 66], + [22, 62], + [-5, 36], + [-58, 92], + [-119, 74], + [-61, 0], + [-47, 33], + [-20, 5], + [-61, -35], + [-66, 3], + [-86, 53], + [-36, 15], + [-55, -30], + [-61, -47], + [-91, -6], + [-75, 6], + [-31, 53], + [4, 126], + [-24, 62], + [-22, 59], + [-112, 52], + [-28, -12], + [-66, -16], + [-61, 2], + [-70, 26], + [-58, 51], + [-92, 66], + [-120, 107], + [-23, 54], + [-2, 47], + [-21, 52], + [-14, 84], + [7, 112], + [109, 410], + [30, 146], + [-12, 88] + ], + [ + [6774, 6434], + [19, 0] + ], + [ + [6793, 6434], + [32, 17], + [-2, 40], + [13, 69], + [83, 86], + [26, 45], + [14, 101], + [-12, 30], + [-53, 69], + [-18, 57], + [4, 55], + [21, 69], + [58, 92], + [33, 52], + [14, 80], + [44, 45], + [50, 68], + [41, -3], + [69, -95], + [14, -62], + [28, -21], + [94, 18], + [64, 74], + [5, 74], + [39, 83], + [66, 161], + [104, -45], + [155, -62], + [19, -39], + [28, -65], + [144, -139], + [97, -60], + [80, -6] + ], + [ + [8147, 7222], + [55, -30], + [20, -11] + ], + [ + [8222, 7181], + [74, -101], + [20, -57], + [19, -32], + [47, -27], + [75, 0], + [53, -42], + [77, -26], + [61, 0], + [25, 35], + [22, 86], + [55, 18], + [144, -33], + [36, 9], + [6, 66], + [28, 65], + [49, 18], + [72, 15], + [45, 56], + [16, 95], + [6, 71], + [55, 24], + [136, 45], + [33, 38], + [22, 45], + [9, 77], + [11, 75], + [18, 44], + [48, 8], + [63, -20], + [37, 4], + [7, 39], + [-3, 56], + [-23, 63], + [-69, 72], + [-79, -10], + [-62, 12], + [-122, 97], + [-16, 39], + [11, 47], + [26, 45], + [23, 109], + [4, 34], + [26, 55], + [4, 39], + [-30, 20], + [-124, -96], + [-42, -20], + [-92, -178], + [-39, -8], + [-49, -5], + [-90, -123], + [-36, -18], + [-37, 8], + [-49, 99], + [-21, -3], + [-18, -12], + [-85, 2], + [-74, -44], + [-32, -5], + [-19, 20], + [-32, 84], + [2, 128], + [-7, 40], + [-28, 12], + [-133, 33], + [44, 77], + [47, 88] + ], + [ + [8367, 8533], + [43, 20] + ], + [ + [8410, 8553], + [19, 86], + [-33, 92], + [3, 54], + [36, 32], + [60, -12], + [142, -17], + [119, 11], + [38, 33], + [25, 74], + [-11, 63], + [-61, 44], + [-50, 24], + [-41, 15], + [-11, 18], + [25, 44], + [36, 48], + [75, 38], + [132, 208], + [153, 350], + [41, 147], + [83, -37], + [131, -87], + [78, -64], + [3, -57], + [39, -21], + [18, -74], + [40, -1], + [64, 27], + [37, 25], + [37, 34], + [25, 66], + [31, 42], + [41, 36], + [60, 32], + [51, 1], + [39, -18], + [13, -23], + [4, -35], + [-6, -35], + [40, -65] + ], + [ + [13867, 21426], + [19, -68] + ], + [ + [13886, 21358], + [39, -63], + [-11, -104], + [-28, -35], + [0, -169], + [19, -42], + [20, -68], + [-69, -178], + [-28, -12], + [-130, -6], + [-67, -71], + [20, -45], + [-28, -137], + [-28, -112], + [36, -199], + [-5, -9], + [-138, -296], + [87, -23], + [70, -23], + [67, -27], + [134, 200], + [7, 52], + [109, 54], + [76, 3], + [14, -57], + [-12, -94], + [39, -104], + [95, -25], + [85, 45], + [32, 74], + [0, 104], + [3, 42], + [87, 188], + [56, 74], + [30, 92], + [23, 12], + [134, 12], + [30, 30], + [2, 15] + ], + [ + [14656, 20456], + [45, -56] + ], + [ + [14701, 20400], + [-14, -72], + [-53, -83], + [-69, -187], + [-3, -59], + [0, -33], + [125, -50], + [66, -51], + [86, -12], + [33, -32], + [-3, -75], + [28, -74], + [94, -142], + [153, 29], + [33, 5], + [27, -17], + [86, -3], + [92, 25], + [48, 47], + [72, 32], + [104, -111], + [80, -47], + [153, -37], + [16, -22], + [11, -109], + [33, -42], + [64, -55], + [9, -47] + ], + [ + [15972, 19178], + [-30, -178], + [-50, -129], + [-30, -37], + [-5, -49], + [23, -82], + [-11, -22], + [-72, -104], + [-34, -25], + [-56, 13], + [-154, 89], + [-35, -8], + [-37, -52], + [-21, -220], + [16, -40], + [54, -113], + [0, -35], + [-70, -161], + [-43, -57], + [-71, -40], + [-18, 18], + [-104, 36], + [-89, 13], + [-138, -43], + [-37, -105], + [-32, -79], + [-44, -117], + [-74, -91], + [-50, -32], + [-35, -35], + [-46, -69], + [-12, -45], + [7, -49], + [46, -50], + [10, -47], + [-44, -42] + ], + [ + [14686, 17191], + [-99, -148] + ], + [ + [14587, 17043], + [-99, -23], + [-201, -44], + [-87, -5], + [-67, 64], + [-81, 10], + [-81, -35], + [-27, -57], + [-58, -106], + [-30, -89], + [-25, -27], + [-28, 2], + [-92, 124], + [-35, 20], + [-157, -18], + [-37, 23], + [-94, 76], + [-79, 8], + [-37, -18], + [-39, -47], + [-14, -94], + [-30, -19], + [-41, -8], + [-76, -79], + [-72, -57], + [-115, -10], + [-95, 0], + [-116, 10], + [4, -28], + [-54, -33], + [-8, -57], + [11, -73], + [-22, -35], + [-5, -49], + [6, -147], + [-31, -79], + [-11, -100], + [-18, -67], + [-52, -25], + [-63, -18], + [-68, -10], + [-66, -23], + [-41, -74], + [-24, -55], + [-27, -35], + [-25, -66], + [-2, -69], + [-66, 8], + [-53, 36], + [-32, -26], + [-42, -3], + [-14, -15], + [28, -53], + [35, -45], + [-104, -92], + [-11, -62], + [-25, -4], + [-77, 66], + [-82, -4], + [-86, -22], + [-52, -74], + [-49, -43], + [-80, 1] + ], + [ + [11468, 15269], + [-128, 146], + [-134, 12], + [-25, 59], + [-61, 21], + [-86, 5], + [-54, -107], + [-35, -50], + [-70, -52], + [-74, -27], + [-66, 1], + [-75, 12], + [-15, 96], + [-41, 53], + [-73, 116], + [-129, -2], + [-46, -69], + [-35, -42], + [-94, -3], + [-69, 17], + [-120, 66], + [-67, 24], + [-58, -21], + [-44, -94], + [-90, -16], + [-45, 40] + ], + [ + [9734, 15454], + [-33, 6] + ], + [ + [9701, 15460], + [8, 59], + [33, 53], + [120, 95], + [7, 46], + [20, 20], + [4, 24], + [-37, 53], + [6, 45], + [26, 32], + [51, 28], + [-5, 35], + [-48, 44], + [-54, 111], + [-2, 65], + [32, 79], + [-19, 151], + [-3, 37], + [49, 14], + [26, 28], + [2, 194], + [28, 42], + [160, 112], + [98, 40], + [13, 67], + [35, 30], + [48, 40], + [17, 51], + [1, 99], + [-23, 48], + [-21, 15], + [-31, -8], + [-26, -51], + [-39, -71], + [-37, -6], + [-46, -4], + [-35, -26], + [-48, 8], + [-35, 26], + [-17, 29], + [-6, 68], + [31, 42], + [77, 18], + [31, 32], + [5, 84], + [-22, 35], + [-44, 71], + [2, 90], + [-27, 59], + [5, 53], + [36, 104], + [68, 107], + [26, 15], + [42, 21], + [13, 57], + [15, 59], + [34, 28], + [62, 22], + [72, 75], + [7, 63], + [21, 40], + [21, 30] + ], + [ + [10428, 18287], + [-2, 25], + [-1, 33] + ], + [ + [10425, 18345], + [-30, 51], + [0, 87], + [3, 55], + [-10, 48], + [-22, 30], + [-35, 24], + [-7, 54], + [-4, 57], + [15, 69], + [35, 34], + [26, 61], + [0, 40], + [-70, 32], + [-41, -2], + [-61, -18], + [-44, 10], + [-26, 23], + [-13, 38], + [24, 81], + [61, 81], + [65, 40], + [31, 22], + [15, 35], + [5, 16], + [28, 36], + [65, 41], + [7, 24], + [-7, 36], + [-6, 39], + [-44, 50], + [-22, 24], + [-66, 52] + ], + [ + [10297, 19615], + [-5, 113], + [13, 163], + [-7, 71] + ], + [ + [10298, 19962], + [70, -43], + [53, 53], + [74, 130], + [66, 26], + [220, 12], + [91, -2], + [8, 89], + [3, 80], + [-8, 47], + [-34, 48], + [-16, 62], + [0, 62], + [33, 54], + [33, 50], + [8, 45], + [38, 115], + [16, -28], + [37, -10], + [163, 18], + [47, 24], + [13, 55], + [-16, 44], + [-76, 89], + [2, 30], + [79, 89], + [60, 15], + [64, 32], + [49, 25], + [46, -12], + [53, -20], + [74, 0], + [51, -15], + [25, -30], + [-7, -69], + [0, -64], + [21, -43], + [48, -2], + [44, -25], + [188, -168], + [14, -44], + [3, -345], + [2, -29], + [30, -69], + [66, -25] + ], + [ + [12033, 20213], + [59, -9], + [34, -6] + ], + [ + [12126, 20198], + [163, -2], + [55, -24], + [-2, 161], + [13, 33], + [83, 56], + [28, 45], + [39, 33], + [163, 98], + [0, 29], + [-14, 72], + [20, 35], + [61, 60], + [27, 74], + [-5, 74], + [-22, 77], + [0, 107], + [13, 36], + [14, 62], + [0, 68], + [34, 42], + [22, -3], + [14, -65], + [30, -33], + [47, -24], + [61, 0], + [97, 18], + [61, 62], + [47, 42], + [47, 51], + [19, 89], + [150, 8], + [146, -56], + [128, -27], + [69, 21], + [5, 54], + [128, -45] + ], + [ + [17939, 13923], + [29, -39], + [84, 8], + [125, -48], + [61, 36] + ], + [ + [18238, 13880], + [137, -46] + ], + [ + [18375, 13834], + [134, -36], + [82, 31], + [74, 58] + ], + [ + [18665, 13887], + [40, 18] + ], + [ + [18705, 13905], + [10, -40], + [2, -82], + [-13, -152], + [108, -73], + [118, -53], + [100, -6], + [58, -24], + [47, -61], + [41, -65], + [46, -42], + [53, -15], + [193, 8] + ], + [ + [19468, 13300], + [42, -10] + ], + [ + [19510, 13290], + [8, -131], + [25, -58], + [122, -101], + [66, -70], + [-108, -51], + [-37, -25], + [-8, -28], + [24, -60], + [99, -127], + [26, -74], + [36, -185], + [12, -15] + ], + [ + [19775, 12365], + [31, -63], + [140, -212], + [39, -51], + [47, -37], + [101, -12], + [95, -26] + ], + [ + [20228, 11964], + [221, -33] + ], + [ + [20449, 11931], + [84, -42], + [53, -82], + [7, -48], + [-14, -94], + [22, -146], + [-114, -42], + [-35, -35], + [-19, -66] + ], + [ + [20433, 11376], + [-6, -44], + [-12, -78] + ], + [ + [20415, 11254], + [18, -67], + [43, -46], + [63, -55], + [136, -73], + [38, -37], + [8, -48], + [-9, -54], + [-2, -46], + [54, -23], + [51, -5], + [107, 5], + [49, -23], + [47, -40] + ], + [ + [21018, 10742], + [80, -92], + [45, -52] + ], + [ + [21143, 10598], + [75, -64], + [70, -100], + [90, -158], + [76, -56], + [87, -49], + [124, -118], + [87, -105], + [74, -31], + [34, -76], + [-50, -77], + [-33, -66], + [7, -106], + [14, -124] + ], + [ + [21798, 9468], + [-69, -240], + [-66, -75], + [-77, -72], + [-70, -96], + [-53, -131], + [-49, -97], + [-11, -21], + [-26, -117], + [19, -9], + [153, -77], + [149, -4], + [10, -39], + [0, -72], + [18, -56], + [40, -52], + [216, -104], + [-37, -92], + [-56, -172], + [-47, -88], + [-29, -218], + [-35, -45], + [-82, -66], + [-74, -110], + [-51, -56], + [-111, -74], + [-67, -70], + [-17, -16], + [-144, -275], + [-115, -145], + [-121, -79], + [-146, -15], + [-77, 20], + [-91, 39], + [-86, 97], + [-80, 222], + [-38, 70], + [-19, 34], + [-89, 79], + [-134, -15], + [-144, -41], + [-122, -8], + [-208, 285], + [-66, 39], + [-43, -9], + [-49, -10], + [-97, -59], + [-130, -184], + [-86, -45], + [-292, -17] + ], + [ + [18999, 7182], + [-14, 86], + [-18, 90], + [-25, 180], + [0, 13], + [-53, 12], + [-35, 30], + [-21, 49], + [-18, 97], + [14, 195], + [-3, 168], + [-16, 159], + [10, 158], + [-6, 29], + [-15, 24], + [-114, 131], + [-26, 77], + [-20, 45], + [-70, 117], + [-24, 97], + [-26, 81], + [-67, 109], + [-57, 117], + [-15, 129], + [15, 55], + [-59, -24], + [-4, 26], + [-38, 170], + [7, 85], + [13, 64], + [5, 30], + [2, 22], + [-12, 33], + [-22, 37], + [-8, 38], + [2, 30], + [-17, 28], + [-25, 38], + [3, 40], + [5, 154], + [-8, 31], + [-53, 109], + [8, 42], + [0, 20], + [-17, 18], + [-14, 50], + [-4, 38], + [-30, 76], + [-83, 178], + [-76, 162], + [-121, 210], + [-172, 225], + [-19, 42], + [-22, 97], + [-14, 71], + [-56, 125], + [13, 69], + [-11, 32], + [-42, 87], + [-45, 77] + ], + [ + [17481, 11960], + [-40, 26] + ], + [ + [17441, 11986], + [-33, 34], + [-34, 73], + [-24, 68], + [-25, 38], + [-87, 267], + [-37, 62], + [-131, 206] + ], + [ + [17070, 12734], + [-62, 84], + [-41, 20], + [-53, 30], + [-65, 59], + [-85, 92], + [-65, 173], + [5, 50], + [30, 52] + ], + [ + [16734, 13294], + [21, 42], + [9, 17] + ], + [ + [16764, 13353], + [2, 52], + [-16, 32], + [-99, 129], + [-72, 49], + [-51, 74], + [-120, 114], + [-52, 65], + [4, 7], + [-56, 49], + [-13, 80], + [26, 43], + [97, -23], + [107, -65], + [86, -49], + [104, -36] + ], + [ + [16711, 13874], + [49, -2], + [142, 130], + [64, 8], + [104, -21], + [102, 15], + [90, -3], + [87, -23], + [49, -29], + [49, -71], + [106, -39], + [99, -9], + [38, 145], + [53, 55], + [63, 38] + ], + [ + [17806, 14068], + [95, -103], + [38, -42] + ], + [ + [8139, 25902], + [99, 27], + [12, 4] + ], + [ + [8759, 26268], + [103, 29] + ], + [ + [9503, 26039], + [258, 53] + ], + [ + [10031, 25908], + [-49, -113], + [-39, -122], + [7, -50] + ], + [ + [9950, 25623], + [20, -21], + [74, -76] + ], + [ + [10044, 25526], + [38, -52], + [43, -128], + [15, -151], + [16, -97], + [3, -109], + [8, -75], + [20, -28], + [18, -42] + ], + [ + [10205, 24844], + [26, -155] + ], + [ + [10231, 24689], + [66, -100], + [-54, -108], + [-2, -71], + [109, -153], + [76, -60], + [69, -22], + [80, -9], + [74, 16], + [91, 3] + ], + [ + [10740, 24185], + [89, -34] + ], + [ + [10829, 24151], + [41, -41], + [5, -68], + [17, -69], + [-20, -127], + [4, -43], + [30, -93], + [41, -167], + [57, -138], + [43, -65], + [23, -14], + [58, -38] + ], + [ + [11128, 23288], + [28, -32], + [-31, -55], + [-130, -157], + [-100, -59] + ], + [ + [10895, 22985], + [-115, -28], + [-79, -19] + ], + [ + [10701, 22938], + [-67, -27], + [-60, -48], + [-29, -55] + ], + [ + [10545, 22808], + [-45, -204] + ], + [ + [10500, 22604], + [-46, -20], + [-65, 19], + [-54, 5], + [-71, -41], + [-41, -49] + ], + [ + [10223, 22518], + [-64, -139], + [-11, -24] + ], + [ + [10148, 22355], + [-93, -166], + [-82, -165], + [-15, -59], + [66, -61] + ], + [ + [10024, 21904], + [21, -11], + [45, -24] + ], + [ + [10090, 21869], + [-23, -21], + [-17, -39], + [-19, -21], + [-48, -30], + [-65, -44], + [-28, -56], + [-19, -14], + [-78, 9], + [-59, 21], + [-16, 13], + [-18, 38], + [-40, 103], + [-34, 45], + [-30, 4], + [-69, 34], + [-26, 27], + [-34, 2], + [-65, -10], + [-15, 2], + [-132, 68], + [-28, 3], + [-32, -8], + [-50, -36], + [-28, -2], + [-34, 29], + [-22, 20], + [-34, 8], + [-51, -23], + [-8, -16], + [-21, -102], + [-16, -22], + [-34, -9], + [-19, -13], + [-47, -83] + ], + [ + [8831, 21746], + [-9, 6], + [-168, 103] + ], + [ + [8654, 21855], + [-7, 7], + [60, 52], + [-21, 52], + [-60, -27], + [-32, 5], + [-58, -5], + [-94, -17], + [-125, -67], + [-9, -44], + [-51, -23], + [-37, -5], + [-171, 47], + [-122, 25], + [-28, 10], + [-72, 238], + [-27, 31], + [-13, 0], + [-37, -49], + [-28, 2], + [-90, 69], + [-59, 10], + [-43, 26], + [-26, 16], + [-78, -12], + [-44, 79], + [-22, 26] + ], + [ + [7360, 22301], + [-15, 1], + [-7, 1] + ], + [ + [7338, 22303], + [-33, -30], + [-43, -95], + [-88, -81], + [-104, 0], + [-49, 14], + [-157, 51], + [-74, 12], + [-102, 48], + [-64, 13], + [-43, 0], + [-27, -2], + [-122, 80], + [-13, 0], + [-89, -161], + [-22, -16], + [-105, -9], + [8, -111], + [-10, -116], + [-16, -28], + [-82, -119], + [-9, -37], + [-7, -41], + [-193, 2], + [-118, 27], + [-79, 8], + [9, 41], + [28, 38], + [14, 60], + [-4, 46], + [-43, 38], + [-128, 95], + [-92, 73], + [-26, 17], + [-98, 8], + [-260, 7], + [-51, 35], + [-42, 42], + [-68, 21], + [-67, 3], + [-82, -1], + [-67, -5], + [-152, -30], + [-37, 0], + [-214, 22], + [-139, 57], + [-76, -47], + [-5, 57], + [28, 107], + [7, 163], + [-35, 45], + [-32, 103], + [-16, 65], + [-14, 52], + [-34, 24], + [-64, 49] + ], + [ + [3937, 22897], + [34, 79], + [7, 135], + [-40, 134], + [-54, 79], + [-36, 72], + [-13, 26], + [1, 24], + [2, 21], + [7, 60], + [17, 3], + [1, 53], + [-40, 18], + [37, 98], + [91, 66], + [38, 49], + [3, 66], + [60, 78], + [52, 7], + [34, -53], + [5, -92], + [132, -54], + [1, 85], + [122, 182], + [3, 109], + [60, 91], + [99, 235], + [34, 146], + [77, 178], + [128, 42], + [41, 13], + [375, 129], + [164, -65], + [61, 3], + [46, 2], + [21, 82], + [-9, 84], + [66, 94], + [58, 125] + ], + [ + [7400, 26330], + [98, 51] + ], + [ + [7951, 26314], + [59, -72] + ], + [ + [5805, 10885], + [-50, -39], + [-46, 18], + [-18, 112], + [3, 127], + [63, 53], + [50, -9], + [15, -22], + [9, -87], + [-4, -78], + [-22, -75] + ], + [ + [9522, 12567], + [15, 2], + [15, 2] + ], + [ + [10095, 12900], + [70, -23], + [42, -30], + [25, 0], + [19, 33], + [47, 27], + [33, 6], + [122, -30], + [86, -21], + [28, -12], + [138, 92], + [8, 21], + [45, 9], + [163, 9], + [174, 18], + [34, 0], + [66, -33], + [14, 3], + [36, 42], + [83, 14], + [39, -11], + [69, -39], + [64, 0], + [47, -30], + [72, -35], + [24, 3], + [37, 13] + ], + [ + [11680, 12926], + [-30, -63] + ], + [ + [11650, 12863], + [-5, -65] + ], + [ + [11645, 12798], + [-19, -90], + [85, -6], + [143, -85], + [2, -66], + [-41, -30], + [-89, -48], + [-51, -45], + [76, -60], + [76, -30], + [23, -32] + ], + [ + [11850, 12306], + [-14, -16] + ], + [ + [11836, 12290], + [-108, -59], + [-50, -45], + [73, -82], + [34, -61], + [-44, -64], + [57, -63], + [63, -49], + [275, -81], + [87, -38], + [72, -66] + ], + [ + [12295, 11682], + [-102, -228] + ], + [ + [12193, 11454], + [-232, 51], + [-113, 35], + [45, -57], + [32, -55], + [15, -80], + [76, -24], + [-4, -92], + [31, -79], + [-84, -97], + [18, -80], + [73, -89], + [99, -62], + [76, -32], + [111, -22], + [53, -17], + [33, -60], + [-15, -61], + [-121, 28], + [-11, -64], + [130, -98], + [68, -61], + [42, -66], + [-73, -84], + [-6, -50], + [5, -94], + [-59, -76], + [-87, -21], + [-217, 69], + [-48, -42], + [-35, -40], + [112, -9], + [133, -44], + [68, -62], + [13, -58], + [-93, -90] + ], + [ + [12228, 9771], + [-24, -17], + [-64, -46] + ], + [ + [12140, 9708], + [-75, -74], + [-23, -85], + [-37, -58], + [-104, 32], + [-133, 5], + [-32, -65], + [-2, -32], + [-98, 20], + [-93, 5], + [-96, -5], + [-84, -50], + [-38, -144], + [-27, -48], + [24, -53] + ], + [ + [11125, 9199], + [-106, 61] + ], + [ + [10006, 9609], + [-42, 24], + [-29, 18] + ], + [ + [8410, 8553], + [-64, -30] + ], + [ + [8346, 8523], + [-66, 0], + [-34, 54], + [-27, 3], + [-9, 41], + [-52, 21], + [-22, 36], + [27, 83], + [0, 47], + [-11, 63], + [14, 47], + [-8, 39], + [-78, 175], + [-42, 227], + [-19, -18], + [-39, -10], + [-44, -42], + [-39, -7], + [-51, 72], + [-34, 39], + [-44, 0], + [-37, -44], + [-72, 0], + [-55, -42], + [-37, -18], + [-67, 5], + [-67, -12], + [-32, -30], + [-30, 20], + [-69, 25], + [-28, 47], + [3, 54], + [180, 171], + [6, 40], + [-20, 34], + [-42, 13], + [-53, 2], + [-51, 27], + [-57, 18], + [-42, 19], + [-94, 60], + [-93, 5], + [-64, 12], + [-63, -64], + [0, -50], + [-27, -32], + [-28, -15], + [-39, 20], + [-32, 3], + [-56, -35], + [-113, -35], + [-49, 4], + [-20, 36], + [-8, 38], + [-6, 39], + [-47, 44], + [-47, -20], + [-61, -12], + [-188, 18], + [-58, 44], + [-61, 33], + [-50, -15], + [-25, -18], + [-19, -59], + [6, -66], + [5, -38], + [-22, -33], + [-70, 12] + ], + [ + [5869, 9598], + [-1, 35] + ], + [ + [5868, 9633], + [-93, 87], + [-13, 10], + [-38, 12], + [6, 49], + [-39, 8], + [-42, 25], + [-49, -6], + [-88, 37], + [0, 30], + [-37, 2], + [-45, 32], + [-30, 39], + [-26, 76], + [-2, 70], + [-58, 45], + [-19, 93], + [51, 39], + [76, 36], + [31, 28], + [56, -8], + [-25, 51], + [-72, 2], + [-26, 25], + [10, 22], + [45, 1], + [26, 23], + [65, 14], + [18, 59], + [67, 0], + [58, 15], + [42, -10], + [64, 39], + [38, 3], + [8, 60], + [16, 52], + [-4, 35], + [-9, 17], + [5, 34], + [59, 34], + [71, 70], + [47, 74] + ], + [ + [6012, 10957], + [66, 159] + ], + [ + [6078, 11116], + [30, 45], + [115, 36], + [55, 76], + [43, 80], + [96, 24], + [75, -11], + [63, -20], + [23, -67], + [-8, -93], + [57, -41], + [28, -164], + [-91, -138], + [-11, -78], + [40, -80], + [92, -119], + [124, 66], + [106, 25], + [85, -22], + [163, -66], + [144, -17], + [10, 35] + ], + [ + [7317, 10587], + [7, 64], + [2, 17] + ], + [ + [7326, 10668], + [-41, 163], + [88, 59], + [14, 46], + [-46, 25], + [-66, 15], + [-53, 44], + [-8, 56], + [20, 69], + [129, 55], + [63, 17], + [122, 49], + [49, 62], + [20, 76], + [30, 32], + [126, 2], + [81, -16], + [67, 13], + [27, 76], + [41, 82], + [-36, 36], + [-27, 59], + [-117, 44], + [-27, 60], + [19, 139], + [3, 42], + [25, 9], + [44, -3], + [61, -51], + [53, -29], + [102, 80], + [39, 50], + [69, 51], + [111, 50], + [44, 12], + [47, 45], + [64, 35], + [30, 78], + [0, 74], + [0, 86], + [44, 44], + [-38, 72], + [21, 64], + [-18, 18], + [-2, 24], + [0, 22], + [-43, 65], + [-25, 50], + [6, 86], + [-22, 83], + [-64, 89], + [-64, 66], + [-94, 38], + [-54, 56], + [9, 34], + [-21, 57] + ], + [ + [8128, 13328], + [27, 56], + [23, 47] + ], + [ + [8178, 13431], + [62, 83], + [24, 82], + [-72, 217], + [108, 5], + [48, 45], + [78, 28] + ], + [ + [8426, 13891], + [66, 31] + ], + [ + [8492, 13922], + [64, 82], + [82, 75], + [1, 47], + [-11, 48] + ], + [ + [8628, 14174], + [-9, 19] + ], + [ + [8619, 14193], + [96, 38], + [69, 9], + [33, -6], + [25, -24], + [-41, -77], + [-6, -131], + [36, -89], + [20, -21], + [77, -23], + [61, -45], + [47, -95], + [25, -47] + ], + [ + [9061, 13682], + [54, -18] + ], + [ + [20038, 24412], + [-89, -186] + ], + [ + [19847, 24014], + [-181, -122] + ], + [ + [19666, 23892], + [-118, -62], + [-98, -27], + [-105, 4], + [-81, 18], + [-85, -10], + [-29, -31], + [-81, -37], + [-76, -12], + [-62, 34], + [-73, 117], + [-41, 41], + [-64, 151], + [-35, 46], + [-92, 54], + [-57, 48], + [-81, -1], + [-22, 35], + [-64, 36], + [-109, 91] + ], + [ + [18293, 24387], + [-57, 30] + ], + [ + [18236, 24417], + [-183, 135], + [-79, 38], + [-99, 33], + [-85, 47], + [-78, -11], + [-49, -15], + [-56, 35], + [-47, 79], + [-14, 15], + [-68, 81], + [-57, 54], + [-66, 48], + [-129, 71], + [-45, 60], + [-55, 55], + [-57, 34], + [-71, 29], + [-161, 80], + [-76, 24], + [-62, 2], + [-44, -14], + [-43, -105], + [-34, -66], + [-59, -81], + [-77, -65], + [-49, -27], + [-64, -16], + [-79, -19], + [-134, -22], + [-77, 27], + [-60, 8], + [-60, 17] + ], + [ + [15919, 24948], + [-51, 25], + [-51, 43] + ], + [ + [15817, 25016], + [-82, 104], + [-27, 34] + ], + [ + [15708, 25154], + [-70, 70], + [-102, 89], + [-85, 17], + [-218, -12], + [-111, 22], + [-153, 197], + [-48, 62], + [-77, 83], + [-172, 126], + [-95, 88], + [-71, 93], + [-23, 91], + [-16, 104], + [-74, 101], + [-37, 21], + [-28, 62], + [-6, 17] + ], + [ + [14322, 26385], + [-68, 172], + [-7, 20] + ], + [ + [14247, 26577], + [-64, 82], + [-103, 83], + [-92, 61], + [-76, 39], + [-116, 50] + ], + [ + [13796, 26892], + [-121, 42] + ], + [ + [13675, 26934], + [-19, 6], + [-26, 7], + [-60, 19], + [-113, 19], + [-159, -15], + [-83, -38] + ], + [ + [13246, 28442], + [14, -11] + ], + [ + [13260, 28431], + [55, -32], + [69, -67], + [49, -27], + [78, -35], + [106, -111], + [40, -25], + [69, -3], + [94, -54], + [93, -72], + [41, -47], + [74, -42], + [48, 0], + [56, 30], + [44, 52], + [89, 55], + [36, 24], + [22, 36], + [0, 80], + [52, 74], + [39, 71], + [0, 119], + [14, 80], + [64, 54], + [22, 50], + [27, 134], + [-55, 35], + [-44, 89], + [-42, 86], + [-94, 154], + [-56, 86], + [-13, 83], + [0, 95], + [-34, 71], + [-47, 57], + [-3, 71], + [-13, 48], + [-92, 32], + [-69, 18], + [-28, 77], + [-5, 66], + [36, 106], + [5, 36], + [-22, 89], + [-41, 9], + [-197, 92], + [-152, 95] + ], + [ + [13575, 30270], + [-78, 80] + ], + [ + [13497, 30350], + [-49, 75], + [-39, 17], + [-19, 51], + [0, 71], + [-17, 77], + [-47, 128], + [-3, 33] + ], + [ + [13323, 30802], + [14, 38] + ], + [ + [13337, 30840], + [48, 50] + ], + [ + [13385, 30890], + [4, -5], + [63, -6], + [67, 18], + [25, 42], + [8, 20], + [144, 27], + [22, -24], + [14, -23], + [36, -3], + [36, -3], + [82, -32], + [42, -16], + [48, -39], + [71, -53], + [84, 6], + [47, 15], + [8, -27], + [52, -33], + [42, 18], + [34, 24], + [122, 11], + [48, -21], + [63, -95], + [59, -35], + [111, -12], + [100, -79], + [107, -91], + [51, -72], + [33, -125], + [57, -50], + [88, -17], + [29, 6], + [201, 42], + [32, 28], + [-17, 65], + [-92, 76], + [-15, 57], + [9, 58], + [59, 100], + [60, 53], + [67, 31], + [36, 51], + [13, 49], + [5, 47], + [3, 30], + [-9, 74], + [8, 50], + [69, 83], + [46, 71], + [-7, 94], + [5, 23], + [11, 52], + [-25, 39], + [-37, 22], + [-23, 8], + [11, 25], + [28, 12], + [44, -17], + [131, -67], + [28, -42], + [23, -30], + [39, -20], + [62, -10], + [54, -34], + [59, -50], + [0, -37], + [0, -39], + [17, -23], + [11, -19], + [21, 0], + [15, 31], + [56, 52], + [63, 16], + [40, 0], + [47, 0], + [218, -21], + [17, -80], + [74, -48], + [64, -57], + [100, -76], + [36, -21], + [55, -32], + [74, -5], + [55, 19], + [86, -14], + [131, -121], + [54, -82], + [41, -97], + [74, 53], + [103, 12], + [156, 107], + [19, 36], + [1, 120], + [-9, 33], + [1, 10], + [87, 34], + [68, 17], + [60, 3], + [16, -48], + [4, -73], + [19, -65], + [37, -51], + [102, -76], + [61, -35], + [71, -30], + [67, -11], + [52, 17], + [22, 35], + [13, 54], + [3, 55], + [34, 153], + [28, 81], + [38, 78], + [40, 50], + [3, 4], + [143, 83], + [100, 14], + [96, 4], + [101, -5], + [52, 21], + [85, 16], + [73, 1], + [60, 18], + [132, 110], + [81, 55], + [108, -7], + [93, -18], + [88, -21], + [61, -34], + [6, -33], + [55, -79], + [92, -28], + [46, -24], + [42, -40], + [23, -63], + [9, -76], + [19, -67], + [39, -61], + [182, -138], + [36, -27], + [58, -29], + [50, -72], + [62, -36], + [187, -35], + [68, -34], + [52, -57], + [45, -66], + [72, -70], + [34, -18], + [23, -21], + [37, -47], + [10, -66], + [-4, -84], + [105, -124], + [83, -137], + [24, -70], + [-4, -78], + [-14, -79], + [-27, -63], + [-6, -114], + [-15, -85], + [-58, -134], + [2, -84], + [49, -149], + [-15, -75], + [-99, -72], + [-29, -39], + [-103, -207], + [-91, -273], + [-5, -70], + [-2, -25], + [25, -97], + [99, -162], + [55, -67], + [6, -44], + [-19, -51], + [-113, -29], + [-30, -32], + [-77, -78], + [-50, -49], + [-269, -159], + [-63, -57], + [-39, -98], + [16, -109], + [7, -258], + [-31, -148], + [8, -26], + [12, -37], + [89, 8], + [78, 49], + [75, 33], + [94, 21], + [102, -5], + [77, -40], + [55, -107], + [11, -66], + [-14, -217], + [-11, -174], + [7, -26], + [28, -116], + [40, -166], + [3, -183], + [-10, -158], + [7, -161], + [-15, -154], + [-44, -115], + [-61, -62], + [-36, -11], + [-130, -11], + [-78, -34] + ], + [ + [13337, 30840], + [-5, -14], + [-9, -24] + ], + [ + [13497, 30350], + [24, -24], + [54, -56] + ], + [ + [13260, 28431], + [-194, 166] + ], + [ + [7402, 28844], + [27, 70], + [19, 95], + [-2, 51], + [-110, 7], + [-130, 254], + [-144, 150], + [-99, 59], + [-56, 24], + [-81, 28], + [81, 154], + [71, 60], + [81, 15], + [74, 20], + [92, 72], + [122, 35], + [66, -24], + [63, -8], + [81, 107], + [78, 16], + [59, 0], + [83, -45], + [61, -21], + [48, 9], + [76, 83], + [39, 65], + [49, 50], + [68, -7], + [71, -35], + [-19, 56], + [-11, 19], + [-8, 36], + [-37, 59], + [-7, 48], + [41, -44], + [55, -75], + [85, -63], + [39, 27], + [-13, 80], + [37, -1], + [0, 64], + [22, 103], + [18, 127], + [-140, 52], + [-3, 50], + [-9, 52], + [34, 44], + [-7, 47], + [-47, 55], + [2, 96], + [-77, 96], + [-89, 120], + [60, 47], + [61, 89], + [28, 125], + [64, 120], + [-18, 23], + [-27, 70], + [-24, 103], + [-38, 86], + [-79, 32], + [-24, 10], + [-12, 5], + [-23, 25], + [7, 14], + [-81, 53], + [-10, 42], + [90, 96], + [21, 67], + [32, 37], + [113, -49], + [72, -15], + [70, -27], + [45, 10], + [19, 30], + [13, 21], + [20, 58], + [76, 40], + [99, 42], + [-8, 90], + [9, 84], + [60, 27], + [59, 135], + [31, 112], + [23, 114], + [-6, 112], + [-50, 93], + [-69, 38], + [-96, 27], + [-25, 43], + [42, 118], + [-19, 52], + [-278, 56], + [-70, 30], + [1, 50], + [27, 148], + [77, 293], + [20, 35], + [72, 23], + [69, 5], + [52, -50], + [-4, -48], + [-62, -41], + [-28, -37], + [18, -37], + [85, -61], + [81, -15], + [148, 13], + [67, -30], + [75, -1], + [7, -44], + [-6, -85], + [14, -66], + [-1, -25], + [26, -55], + [65, -81], + [89, -54], + [152, -56], + [123, -33], + [156, -25], + [89, 1], + [63, -76], + [40, -72], + [19, -24], + [16, -21], + [75, -6], + [46, 73], + [22, 109], + [53, 47], + [55, 14], + [245, -50], + [123, -15], + [87, -17], + [52, 30], + [28, 17], + [65, 1], + [83, -35], + [38, -38], + [123, -41], + [102, -20], + [295, -95], + [74, -2], + [46, -35], + [18, -34], + [39, -73], + [56, -49], + [65, 18], + [55, 32], + [50, 55], + [37, 2], + [71, -20], + [85, -13], + [78, 31], + [90, -6], + [94, -84], + [48, -71], + [34, -17], + [74, 20], + [64, 0], + [101, 14], + [46, -26], + [10, -5], + [62, -169], + [26, -56], + [3, -96], + [34, -116], + [14, -75], + [4, -84], + [-6, -60], + [-32, -88], + [-3, -105], + [149, 4], + [68, -9], + [33, -4], + [265, -32], + [167, -12], + [44, -3], + [129, -3], + [13, -17], + [55, -31], + [2, -1], + [24, -18], + [20, -15], + [11, -65], + [-16, -68], + [-47, -57], + [-33, -47], + [-20, -54], + [9, -59], + [54, -57], + [18, -45], + [13, -73], + [-52, -65], + [-83, -54], + [-42, -24], + [-19, -35], + [5, -29], + [-16, -37], + [43, -54] + ], + [ + [14247, 26577], + [75, -192] + ], + [ + [15708, 25154], + [109, -138] + ], + [ + [15919, 24948], + [-11, -48], + [-7, -102], + [16, -52], + [11, -64], + [-18, -37], + [-46, -42], + [-26, -62], + [-11, -124], + [-16, -49], + [-46, -13], + [-141, 47], + [-60, 20], + [-58, -5], + [-37, -44], + [-37, -5], + [-90, -5], + [-53, -32], + [-43, -5], + [-47, 25], + [-46, 12], + [-124, 0], + [-76, 39], + [-74, 5], + [-12, -14], + [-9, -89], + [-60, -139], + [-48, -42], + [-33, -3], + [4, -43], + [-86, -9], + [-25, -33], + [6, -50], + [-81, -42], + [-16, -29], + [22, -60], + [25, -196] + ], + [ + [14566, 23658], + [-3, -60], + [-83, -86], + [-113, -6], + [-61, 12], + [-100, 104], + [-80, -36], + [-8, -86], + [-53, -51], + [-22, 21] + ], + [ + [14043, 23470], + [-36, 18] + ], + [ + [14007, 23488], + [-44, 9], + [-36, 47], + [-14, 6], + [-103, -12], + [-24, 30], + [-23, 151], + [-38, 39], + [-42, -44], + [-30, -12], + [-47, -24], + [-100, -98], + [-17, -74], + [-28, -44], + [-28, -54], + [-57, -60], + [-26, -52], + [19, -77], + [25, -37], + [58, -37], + [51, -10], + [71, -64], + [7, -27], + [-23, -30], + [-35, -17], + [-99, -57], + [-41, 10] + ], + [ + [13383, 22950], + [-63, 25] + ], + [ + [13320, 22975], + [-43, 12], + [-44, -17], + [-76, -62], + [-77, -30], + [-120, 5], + [-27, 22], + [-72, 84], + [-110, 67], + [-44, 3], + [-134, 7], + [-92, 10] + ], + [ + [12481, 23076], + [-157, 84] + ], + [ + [12324, 23160], + [-12, 8], + [-62, 0], + [-62, 27], + [-81, 39], + [-76, 3], + [-98, -14], + [-50, 3], + [-66, 9], + [-127, 86], + [-64, 9], + [-166, 83], + [-64, 9], + [-39, 0], + [-36, -15], + [-30, -27], + [-91, -23], + [-64, -36], + [-8, -33] + ], + [ + [10829, 24151], + [-44, 17], + [-45, 17] + ], + [ + [10231, 24689], + [-13, 76], + [-13, 79] + ], + [ + [10044, 25526], + [-94, 97] + ], + [ + [10407, 26270], + [71, 7] + ], + [ + [10642, 26210], + [35, -7], + [48, -10] + ], + [ + [11092, 26556], + [127, 49] + ], + [ + [11778, 26495], + [126, 79], + [170, 108] + ], + [ + [12485, 26819], + [121, -72], + [85, -51] + ], + [ + [13675, 26934], + [32, -11], + [89, -31] + ], + [ + [18236, 24417], + [29, -16], + [28, -14] + ], + [ + [19666, 23892], + [109, 74] + ], + [ + [18365, 21965], + [-69, -7], + [-32, -3] + ], + [ + [18181, 21646], + [-45, -58] + ], + [ + [18136, 21588], + [-54, 0], + [-56, -5] + ], + [ + [18026, 21583], + [-36, 45], + [-76, 60], + [-70, 59], + [-69, 12], + [-55, 0], + [-99, 82], + [-39, 8], + [-37, 44], + [-67, 25], + [-26, 25], + [-9, 52], + [-32, 61], + [-28, 55], + [-4, 44], + [-24, 65], + [-39, 29], + [-94, 13], + [-79, 39], + [-23, 15], + [-7, 141], + [-39, 82], + [-32, 22], + [-37, -15], + [-67, 3], + [-58, 15] + ], + [ + [16880, 22564], + [-174, -7], + [-22, -1] + ], + [ + [16684, 22556], + [-4, -20], + [96, -123], + [0, -25], + [-6, -40], + [-26, -52], + [5, -52], + [7, -74], + [-16, -89], + [-49, -82], + [-60, -42], + [-14, -42], + [-36, -50], + [-28, -6], + [-46, -26], + [-37, 6], + [-104, 91], + [-210, 147], + [-100, 43], + [-158, -20], + [-240, -138], + [-56, -91], + [-22, -12], + [-40, 27], + [-22, 119], + [11, 113], + [-17, 38], + [-69, 71], + [3, 63], + [3, 47], + [-45, 95], + [3, 36], + [-19, 30], + [-45, 35], + [-44, 57], + [47, 70], + [27, 68], + [-8, 95] + ], + [ + [15365, 22823], + [-20, 94], + [-2, 13] + ], + [ + [15343, 22930], + [-58, 122], + [-34, 27], + [-130, 53], + [-33, 39], + [0, 47], + [-3, 51], + [-37, 66], + [2, 65], + [-83, 104], + [-27, 12], + [-81, -6], + [-30, 18], + [-169, 121], + [-94, 9] + ], + [ + [14007, 23488], + [13, -6], + [23, -12] + ], + [ + [15343, 22930], + [22, -107] + ], + [ + [16684, 22556], + [196, 8] + ], + [ + [18026, 21583], + [-62, -15], + [-122, -57], + [-81, -17], + [-85, -10], + [-69, -42], + [-136, -69], + [-26, -55], + [-53, -74], + [-23, -32], + [5, -55], + [-28, -32], + [2, -49], + [-62, -82], + [-37, -12], + [-60, 12], + [-23, -25], + [-5, -52], + [-23, -42], + [10, -44], + [-7, -47], + [-67, -136], + [-19, -5], + [-108, 32], + [-42, 0], + [-71, -97], + [-42, -33], + [-12, -39], + [-11, -89], + [-14, -32], + [-37, -18], + [-116, -2], + [-55, -8], + [-58, -47], + [-4, -39], + [-35, -42], + [-51, -30] + ], + [ + [16399, 20199], + [-9, -13], + [-11, -14] + ], + [ + [16379, 20172], + [2, -52], + [12, -42], + [99, -62], + [134, -27], + [30, -27], + [0, -35], + [-37, -45], + [-12, -32], + [28, -72], + [11, -64], + [-25, -354], + [-89, -77], + [-36, -9], + [-38, 12], + [-67, 32], + [-66, -6], + [-353, -134] + ], + [ + [14701, 20400], + [-20, 25], + [-25, 31] + ], + [ + [13886, 21358], + [-16, 57], + [-3, 11] + ], + [ + [12126, 20198], + [-93, 15] + ], + [ + [10298, 19962], + [-35, 97], + [-30, 107], + [-27, 55], + [-57, 67] + ], + [ + [10149, 20288], + [-207, 134] + ], + [ + [9942, 20422], + [37, 59], + [74, 52], + [40, 36], + [6, 122], + [64, 175], + [-14, 57], + [-34, 58], + [-60, 132], + [-23, 148], + [27, 42], + [94, 3], + [77, -7], + [50, 4], + [-23, 56], + [-91, 77], + [-33, 38], + [-17, 68], + [22, 47], + [39, 48], + [8, 57] + ], + [ + [10185, 21694], + [-2, 7], + [-19, 64] + ], + [ + [10164, 21765], + [-66, 100] + ], + [ + [10098, 21865], + [-74, 39] + ], + [ + [10148, 22355], + [75, 163] + ], + [ + [10500, 22604], + [26, 118], + [19, 86] + ], + [ + [10701, 22938], + [194, 47] + ], + [ + [12324, 23160], + [138, -74], + [19, -10] + ], + [ + [13320, 22975], + [46, -19], + [17, -6] + ], + [ + [18505, 18298], + [28, 20], + [31, 22], + [40, 40], + [73, -8], + [97, 30], + [86, 5], + [55, -5], + [37, -38], + [-112, -47], + [-30, -32], + [-5, -32], + [28, -81], + [-2, -23], + [-69, -6], + [-18, -28], + [41, -71], + [-4, -30], + [-30, -20], + [-94, -30], + [-35, 2], + [-10, -3], + [-9, 88], + [-9, 67], + [-28, 26], + [-37, 32], + [-20, 81], + [-4, 41] + ], + [ + [18505, 18298], + [-61, -25], + [-18, -28], + [-28, -95], + [-86, -212], + [-65, -87], + [-76, -135], + [-5, -85], + [15, -87], + [29, -35], + [103, -16], + [96, 10], + [35, -8], + [41, -44], + [55, -6], + [25, 0], + [-2, -15], + [-20, -62], + [-22, -30], + [-28, -12], + [-22, -38], + [-33, -51], + [-42, -6], + [-34, 11], + [-52, 8], + [-85, 73], + [-50, -6], + [-46, -49], + [-46, -89], + [-98, -38], + [-107, 6], + [-34, -185], + [-30, -161], + [-23, -67], + [-62, -158], + [-18, -188], + [-3, -218], + [-21, -57], + [-27, -34], + [-62, -3], + [-70, 0], + [-30, -22], + [10, -65], + [76, -39], + [27, -45], + [17, -71], + [-14, -65], + [64, -79], + [86, -40], + [57, 8], + [51, 30], + [16, 22], + [-23, 67], + [-11, 49], + [32, 35], + [78, 5], + [49, -18], + [62, 33], + [48, 19], + [47, 23], + [55, 10], + [74, -40], + [83, -5], + [74, 0], + [101, -40], + [65, -29], + [48, 15], + [32, 89], + [-9, 91], + [-2, 35], + [30, 27], + [101, 7], + [48, 8], + [149, -95], + [25, -18], + [20, -71] + ], + [ + [19064, 15907], + [-21, -42], + [-32, -35], + [-7, -35], + [-2, -54], + [-44, -45], + [-9, -69], + [32, -30], + [9, -34], + [-18, -42], + [-19, -97], + [-55, -111], + [-37, -8], + [-46, -22], + [-65, -89], + [-30, -99], + [-48, -49], + [-106, -23], + [-60, 5], + [-92, 70], + [-93, 14], + [-55, -24], + [-14, -55], + [-30, -141], + [12, -62], + [53, -76], + [-10, -171], + [-23, -114], + [-27, -47], + [16, -64], + [14, -47], + [60, -47], + [0, -45], + [-28, -44], + [-37, -70], + [0, -94], + [35, -148] + ], + [ + [18287, 13863], + [-49, 17] + ], + [ + [17939, 13923], + [-133, 145] + ], + [ + [16711, 13874], + [46, 198], + [0, 168], + [-23, 79], + [20, 123], + [39, 68], + [39, 51], + [-1, 114], + [3, 29], + [-116, 67], + [-2, 32], + [2, 104], + [-51, 191], + [-39, 22], + [-101, 7], + [-42, 5], + [-14, 40], + [51, 89], + [7, 74], + [-7, 55], + [-23, 29], + [-50, -47], + [-111, -35], + [-55, -9], + [-33, 74], + [-36, 62], + [-114, 104], + [-75, 0], + [-52, 39], + [-78, 41], + [-119, 21], + [-77, -83], + [-61, -41], + [-83, 29], + [-108, 101], + [-50, 92], + [-46, 145], + [-22, 71], + [-30, 75], + [-44, 35], + [-34, 54], + [17, 59], + [3, 59], + [-34, 78], + [-5, 56], + [25, 74], + [28, 98], + [-17, 66], + [-39, 56], + [-63, -9], + [-49, -7], + [-46, 34], + [-97, 102], + [-48, 0], + [-33, -38], + [-13, -64], + [-60, -49], + [-136, -112], + [-26, 3], + [-51, 44], + [14, 20], + [5, 50], + [-2, 59], + [-37, 35], + [-7, 34], + [27, 107], + [-2, 52], + [-9, 44], + [16, 37] + ], + [ + [14582, 17035], + [104, 156] + ], + [ + [16379, 20172], + [20, 27] + ], + [ + [18136, 21588], + [-6, -7] + ], + [ + [18137, 21165], + [40, -155] + ], + [ + [18100, 20367], + [10, -27], + [42, -113] + ], + [ + [18251, 20074], + [51, -121] + ], + [ + [18302, 19953], + [12, -59], + [57, -91], + [16, -65], + [23, -59], + [33, -33], + [19, -59], + [6, -32], + [-46, -50], + [-26, -60], + [-4, -65], + [16, -55], + [-47, -83], + [-49, 3], + [-56, 15], + [-48, -5], + [-24, -13], + [8, -88], + [13, -37], + [34, -47], + [-51, -2], + [-81, 17], + [-38, -41], + [-19, -29], + [-47, -99], + [-143, 0], + [-54, -13], + [-53, -4], + [-62, 37], + [-78, -56], + [-72, 8], + [-61, 19], + [-73, 59], + [-62, 25], + [-42, -111], + [-52, -98], + [-13, -51], + [-27, -43], + [-57, -47], + [-34, -20], + [1, -67], + [38, -35], + [17, -63], + [22, -66], + [69, -77], + [83, -26], + [40, 32], + [57, 41], + [65, -7], + [61, -80] + ], + [ + [17573, 18273], + [33, -83], + [7, -18] + ], + [ + [17613, 18172], + [10, -25], + [48, -46], + [35, -39], + [51, -20], + [50, 31], + [-5, 64], + [48, 59], + [64, 18], + [94, 105], + [6, 87], + [44, 65], + [70, 8], + [117, -65], + [70, -24], + [103, -22], + [87, -70] + ], + [ + [23893, 17975], + [-79, -139] + ], + [ + [23415, 16100], + [-19, -160] + ], + [ + [23258, 14615], + [8, -184] + ], + [ + [23266, 14431], + [-41, -24], + [-50, 0], + [-100, 140], + [-12, 17], + [-17, -115], + [8, -71], + [113, -134], + [14, -42], + [6, -47], + [-50, -140], + [6, -26], + [47, -244], + [-6, -30], + [-47, -3], + [-125, 90], + [-24, 5], + [-12, -47], + [50, -244], + [-354, -268] + ], + [ + [22672, 13248], + [-36, -155] + ], + [ + [22636, 13093], + [-10, -112], + [11, -63], + [-1, -69], + [-23, 7], + [-31, 61], + [-91, 56], + [-52, -9], + [-43, -16], + [-27, -46], + [-52, -27], + [-26, -53], + [-29, -31], + [-19, -60], + [-64, -38], + [-61, 11], + [-48, 33], + [-65, 22], + [-36, -60], + [-54, -35], + [-38, -37], + [-75, -37], + [-46, 45], + [-70, 6], + [-306, 81], + [-77, 92] + ], + [ + [21303, 12814], + [0, 71], + [0, 69] + ], + [ + [21303, 12954], + [-26, 83], + [-131, 33], + [-107, -63], + [-54, -17], + [-68, -4], + [-35, -30], + [23, -98], + [-55, -33], + [-68, -4], + [-129, 14], + [-75, -37], + [-36, -142], + [-63, 38], + [-33, -1], + [0, -78], + [-9, -65], + [-47, -73], + [-57, 3], + [-98, 16], + [-88, -57], + [-66, 43], + [-101, 23], + [-60, -24], + [-70, -48], + [-75, -68] + ], + [ + [19510, 13290], + [-31, 8], + [-11, 2] + ], + [ + [18705, 13905], + [-14, -6], + [-26, -12] + ], + [ + [18375, 13834], + [-88, 29] + ], + [ + [19064, 15907], + [90, -30], + [62, -30], + [21, -44], + [0, -94], + [1, -88], + [24, -3], + [31, -27], + [52, -83], + [47, -33], + [97, -3], + [83, 33], + [36, 6], + [53, 55], + [95, 47] + ], + [ + [19756, 15613], + [36, 0] + ], + [ + [19792, 15613], + [71, -53], + [59, -3], + [80, 30], + [72, 68], + [66, 27], + [36, 20], + [6, 51], + [69, 122], + [69, 17], + [186, -3], + [47, 9], + [19, 54], + [42, 154], + [24, 33], + [-20, 56], + [-22, 53], + [-75, 21], + [-49, 0], + [-27, 37], + [-28, 98], + [-3, 36], + [86, 62], + [47, 0], + [33, 24], + [47, 3], + [105, -48], + [42, -2], + [44, 59], + [17, 80], + [8, 116], + [67, 28], + [74, 75], + [3, 59], + [30, 40], + [40, 8], + [96, -48], + [96, -4], + [41, 32], + [-26, 40], + [-15, 43], + [0, 64], + [14, 49], + [15, 95], + [28, 172], + [14, 83], + [24, 30], + [4, 43], + [-28, 18], + [-29, -8], + [-7, -38], + [-4, -45], + [-26, -18], + [-41, 34], + [-11, 63], + [13, 40], + [21, 45], + [11, 60], + [42, 73] + ], + [ + [21289, 17767], + [44, 35] + ], + [ + [21333, 17802], + [35, 42], + [10, 67], + [14, 48], + [30, 47], + [9, 56], + [32, 53], + [36, 50], + [21, 4], + [11, -10], + [-2, -40], + [7, -24], + [47, 8], + [22, 36], + [72, 196], + [35, 133], + [14, 106], + [0, 155], + [-20, 77], + [8, 40] + ], + [ + [28463, 11431], + [18, -70], + [-5, -75], + [11, -48], + [35, -36], + [15, -33], + [-7, -75], + [-14, -60], + [9, -63], + [-31, -29], + [-42, -11], + [-60, -3], + [-57, 2], + [-94, 34], + [-50, 10], + [-27, -181], + [-13, -26], + [-13, -29], + [-65, -55], + [71, -129], + [-14, -85], + [1, -34], + [-47, -108], + [18, -147], + [-30, -57], + [-34, -32], + [-44, -61], + [-96, -60], + [-25, 56], + [-47, 45], + [-155, 39], + [-81, 5], + [-58, 38], + [-40, 9], + [-109, 13], + [-151, 38], + [-162, 81], + [-102, 7], + [-135, 24], + [-22, 1], + [-65, 2], + [-20, -37], + [-45, -25], + [-61, -11], + [-55, -27], + [-89, -17], + [-74, 4], + [-44, 31], + [29, 56], + [1, 53], + [51, 43], + [85, 57], + [10, 32], + [-80, 55], + [-77, 21], + [-87, 40], + [36, 69], + [-46, 15], + [-57, 32], + [-28, 8], + [-70, -10], + [-68, 34], + [-81, 66], + [-34, 29], + [-53, 36], + [-103, 23], + [-86, -120], + [-58, -27], + [-48, -5], + [-49, -51], + [-75, -46], + [-60, -16], + [-121, 14], + [3, -55], + [-32, -73], + [-28, -43], + [-15, -37], + [-17, -127], + [0, -94], + [-19, -50], + [-55, -62], + [-26, -40], + [-58, -7], + [-88, -1], + [-52, -167], + [-105, 40], + [-94, 25], + [-21, 32], + [-27, 109], + [-105, 103], + [-15, 47], + [7, 45], + [-19, 72], + [-17, 31], + [-15, 2], + [-24, -14], + [-86, -83], + [-38, -25], + [-55, -55], + [3, -15], + [3, -17], + [30, -43], + [52, -112], + [-9, -52], + [5, -37], + [46, -30], + [38, -48], + [-6, -56], + [-11, -36], + [-35, -24], + [-84, -35], + [0, -22], + [4, -51], + [-15, -34], + [-67, -71], + [-22, -32], + [17, -1], + [158, -66], + [130, -46], + [114, -24], + [235, -77], + [81, -55], + [79, -67], + [51, -31], + [55, -44], + [85, -31], + [-18, 80], + [11, 81], + [34, 94], + [143, -47], + [85, -51], + [85, 115], + [293, -194], + [114, -3], + [39, -82], + [9, -42], + [-8, -37], + [-27, -23], + [-29, -11], + [-7, -52], + [17, -51], + [18, -29], + [8, -110], + [-79, -7], + [-90, -34], + [-1, -159], + [-6, -61], + [-13, -52], + [-60, -96], + [11, -53], + [40, -11], + [45, 0], + [37, -42], + [109, -45], + [60, -73], + [33, -49], + [49, -35], + [-51, -22], + [-219, -120], + [-51, -65], + [-126, 40], + [-128, 20], + [-93, -11], + [-55, 10], + [-166, 49], + [-38, 45], + [-43, 31], + [-63, 28], + [-113, 14], + [-10, 137], + [-19, 73], + [-61, 34], + [-100, 37], + [2, 28], + [-72, 18], + [-11, 65], + [-17, 33], + [-4, 10], + [-148, 62], + [4, -106], + [-8, -46], + [-38, -53], + [-115, -47], + [-12, -58], + [-15, -16], + [-23, 4], + [-45, 130], + [-19, 101], + [-27, 96], + [-20, 38], + [-60, -14], + [-124, 20], + [19, 95], + [-78, 33], + [-63, -1], + [-6, 54], + [-19, 55], + [1, 88], + [-22, 144], + [16, 4], + [-58, 95], + [-26, 112], + [-4, 18], + [-20, 136], + [-96, 175], + [-100, 136], + [-108, 145], + [-92, -27], + [-71, -38], + [-42, -4], + [-27, 22], + [-112, 122], + [-36, -4], + [-93, -50], + [-44, 41], + [5, 63], + [-15, 140], + [-94, 20], + [-90, -121], + [-26, -56], + [-127, -117], + [-13, -13], + [-51, -54], + [-15, -68], + [-52, -66], + [-54, -1], + [-53, 13], + [-42, -8], + [-15, -30], + [-54, -8], + [-49, 12], + [-91, 39], + [-29, -81], + [2, -121], + [-297, 18] + ], + [ + [21143, 10598], + [-95, 109], + [-30, 35] + ], + [ + [20415, 11254], + [18, 122] + ], + [ + [20449, 11931], + [-81, 12], + [-140, 21] + ], + [ + [21303, 12954], + [0, -140] + ], + [ + [22636, 13093], + [8, 37], + [28, 118] + ], + [ + [23266, 14431], + [-8, 180] + ], + [ + [3793, 11283], + [50, -42] + ], + [ + [3843, 11241], + [49, -12], + [201, 131], + [38, -19] + ], + [ + [4131, 11341], + [31, -60] + ], + [ + [4162, 11281], + [23, -76] + ], + [ + [4185, 11205], + [26, -6], + [38, -27] + ], + [ + [4249, 11172], + [9, -61] + ], + [ + [4258, 11111], + [-8, -65], + [2, -43], + [-134, -203], + [32, -24], + [25, -49], + [-11, -30], + [18, -27], + [5, -20], + [-82, -35], + [-59, -144], + [18, -64], + [-16, -62], + [-53, -105], + [26, -25], + [68, 13], + [62, -16], + [28, -85], + [73, -46], + [-38, -117], + [-38, -89], + [-76, 10] + ], + [ + [4100, 9885], + [-13, -21], + [-29, -47] + ], + [ + [4058, 9817], + [10, -65], + [-11, -23], + [-10, -58], + [-31, -49], + [28, -45], + [7, -39], + [-31, -67], + [-70, -115], + [-50, -54], + [-92, -52], + [0, -26], + [73, -16], + [5, -119], + [28, -92], + [-24, -102], + [-5, -63], + [-12, -38], + [-10, -63], + [158, -70], + [35, -1], + [46, 37], + [34, 16], + [70, -5], + [101, -28], + [69, 82], + [41, 37], + [35, 4], + [55, -45], + [6, -45], + [-4, -114], + [50, -32], + [105, -37], + [7, 18], + [17, 9], + [38, -24], + [70, -22], + [34, 45], + [31, 18], + [12, -23], + [-18, -29], + [-2, -21], + [53, 5], + [30, 14], + [257, 47], + [42, -19], + [-8, -48], + [26, -25], + [49, -23], + [43, 8], + [63, 110], + [31, 22], + [110, 27], + [62, -94], + [32, -38], + [34, -17], + [41, 1], + [45, 44], + [33, 44] + ], + [ + [5796, 8559], + [17, 82], + [6, 28] + ], + [ + [5819, 8669], + [-45, 43], + [-21, -46], + [-25, -28], + [-77, -6], + [-9, 27], + [30, 66], + [-15, 75], + [53, 9], + [60, 52], + [121, 19], + [85, 23], + [28, 35], + [-4, 48], + [20, 23], + [-8, 49], + [-16, 58], + [-32, 63], + [41, 71], + [-4, 56], + [-110, 19], + [-56, 28], + [-32, 35], + [77, 109], + [11, 23], + [24, 19], + [-17, 10], + [-7, 5], + [-21, 24] + ], + [ + [5870, 9578], + [-1, 20] + ], + [ + [8346, 8523], + [21, 10] + ], + [ + [8222, 7181], + [-75, 41] + ], + [ + [6793, 6434], + [-34, 0] + ], + [ + [6759, 6434], + [-118, 9], + [-53, 20], + [-71, 28], + [-51, 12], + [-35, 35], + [-9, 47], + [-21, 19], + [-76, 15], + [-55, -7], + [-157, -5], + [-126, -72], + [-97, -36], + [-36, -62], + [9, -190], + [188, -339], + [-3, -47], + [-111, -51], + [-55, -12], + [-53, -44], + [-69, -39], + [-55, -92], + [-89, -30], + [-77, -47], + [-36, -18], + [-86, 0], + [-77, -98], + [-42, 0], + [-61, 71], + [-19, 60], + [2, 80], + [36, 77], + [-5, 36], + [-75, 65], + [-75, 3], + [-33, -42], + [0, -9], + [31, -53], + [8, -98], + [-3, -80], + [-27, -39], + [5, -39], + [14, -53], + [127, -53], + [47, -6], + [36, -36], + [-11, -83], + [-3, -92], + [-166, 18], + [-116, 47], + [-77, 15], + [-107, -8], + [-33, 39], + [-74, 159], + [-59, 122], + [-70, 32], + [-74, 79], + [-33, 56], + [0, 63], + [29, 79], + [15, 75], + [-11, 64], + [-7, 115], + [-11, 15], + [-26, 0], + [-56, -7], + [-33, 0], + [-26, 35], + [8, 56], + [7, 59], + [-4, 71], + [-11, 91], + [-22, 44], + [-7, 28], + [-12, 121], + [-33, -29], + [-52, -15], + [-39, 0], + [-55, -15], + [-6, -48], + [30, -74], + [23, -53], + [-9, -83], + [-33, -57], + [-83, -30], + [-163, 0], + [-18, 2], + [10, -119], + [11, -107], + [42, -71], + [51, -70], + [6, -62], + [-43, -54], + [-81, 2], + [-67, -12], + [-30, -20], + [18, -24], + [35, -30], + [51, -10], + [44, -35], + [23, -39], + [-5, -47], + [-14, -37], + [16, -28], + [-13, -34], + [-28, -42], + [-125, -3], + [-30, -25], + [3, -37], + [73, -69], + [17, -39], + [-19, -43], + [-16, -42], + [9, -52], + [19, -39] + ], + [ + [3835, 5017], + [-3, -82] + ], + [ + [3832, 4935], + [40, -52], + [16, -52], + [-28, -74], + [-55, -99], + [-97, -57], + [-65, -5], + [-64, -22], + [-30, -37], + [-70, -188], + [-150, 53], + [-211, 23], + [-121, -38], + [-100, -71], + [-133, -71] + ], + [ + [2764, 4245], + [-40, 4], + [-113, -17], + [-134, 47], + [-39, 26], + [-40, 42], + [-72, 27], + [-50, 45], + [-76, 98], + [-17, 0], + [-51, 0], + [-121, 47], + [-102, 16], + [-155, -19], + [-96, 3], + [-84, -12], + [-23, -14], + [-57, -63], + [-44, -19], + [-81, -1], + [-82, 28], + [-101, 48], + [-116, 67], + [-160, -27], + [-74, 25], + [-79, 72], + [-200, 47], + [-96, 47], + [-77, 28], + [-50, 64], + [-27, 59], + [-43, 44], + [-37, 58], + [-48, 144], + [-45, 50], + [-134, 123], + [29, 40], + [43, -6], + [55, -36], + [262, 30], + [52, 18], + [29, 64], + [9, 38], + [-2, 46], + [96, -18], + [35, -14], + [84, -56], + [43, -2], + [106, 12], + [0, 23], + [33, 6], + [29, -19], + [51, -1], + [63, 8], + [7, 23], + [1, 57], + [14, 70], + [29, 32], + [48, 39], + [16, 7], + [59, 5], + [37, 23], + [55, 9], + [88, -18], + [26, 33], + [3, 218], + [-110, 23], + [-8, 29], + [-27, 22], + [-4, 22], + [-13, 23], + [-17, 10], + [-18, 2], + [9, 45], + [47, -15], + [36, 25], + [117, -20], + [29, 10], + [122, 134], + [51, 7], + [102, -9], + [30, 20], + [30, 7], + [0, 24], + [-22, 29], + [-20, 12], + [12, 29], + [30, -3], + [4, 19], + [-8, 61], + [-76, 22], + [0, 53], + [13, 51], + [45, 40], + [9, 37], + [26, 56], + [42, 63], + [-15, 28], + [-61, 16], + [-52, -33], + [-49, -50], + [-34, -25], + [-44, 3], + [-42, 12], + [25, 41], + [-29, 4], + [-17, 14], + [-17, 45], + [-53, 15], + [-34, 23], + [-2, 67], + [159, 32], + [72, 63], + [119, -15], + [26, 49], + [19, 154], + [-1, 47], + [11, 52], + [-7, 12], + [-9, 15], + [-44, 10], + [-37, -20], + [-61, 24], + [-24, 2], + [-62, -52], + [-32, 13], + [-25, 21], + [-36, 1], + [-15, 23], + [5, 27], + [21, 5], + [6, 23], + [-10, 13], + [-4, 36], + [16, 20], + [27, 58], + [31, 109], + [15, 113], + [-15, 121], + [17, 46], + [55, -26], + [176, -29], + [30, 21], + [4, 50], + [1, 93], + [-47, 38], + [-23, 30], + [-26, 110], + [-22, 50], + [30, 170], + [-1, 86], + [-21, 206], + [-42, 20], + [16, 37], + [12, 154], + [-15, 14], + [-4, 23], + [52, 32], + [41, 10], + [19, 25], + [1, 59], + [-26, 6], + [-8, 34], + [19, 46], + [-13, 44], + [3, 54], + [-5, 53], + [40, 10], + [35, 46], + [42, 72], + [7, 59], + [-13, 125], + [28, 58], + [10, 13], + [80, 59], + [45, 12], + [-9, 66], + [-48, 54], + [9, 94], + [-10, 49], + [-40, 48], + [-29, 73], + [-38, 63], + [-21, 74], + [19, 20], + [-7, 33], + [-66, 40], + [-35, 47], + [-28, 51], + [18, 93] + ], + [ + [1764, 10622], + [20, 39], + [34, 39], + [62, 22], + [32, 120], + [-41, 32], + [-29, 42], + [31, 59], + [-11, 207], + [72, 17], + [80, -14], + [59, -28], + [52, 17], + [130, -46] + ], + [ + [2255, 11128], + [74, -17] + ], + [ + [2329, 11111], + [44, -68], + [19, -111], + [34, -38], + [61, -22], + [73, -37], + [83, -25], + [40, 76], + [31, 93], + [55, -3], + [14, 5], + [41, -16], + [32, 1], + [39, 5], + [11, 24], + [29, 9], + [42, -4], + [-19, 35], + [-26, 83], + [210, 56], + [37, 67], + [130, 4], + [29, -18], + [11, 7], + [63, -13], + [42, -37], + [95, 9], + [55, -19], + [5, 25], + [-52, 28], + [-7, 33], + [24, 59], + [-27, 57], + [55, 44], + [52, -25], + [37, 19], + [39, 1], + [-11, 45], + [69, -20], + [19, -27], + [-17, -82], + [3, -48] + ], + [ + [6759, 6434], + [15, 0] + ], + [ + [7522, 2749], + [-30, -85] + ], + [ + [7881, 1651], + [56, -171], + [9, -86], + [-19, -47], + [-34, -89], + [-14, -63], + [-22, -21], + [-7, -69], + [-26, -109], + [-9, -82], + [-38, -67], + [-79, -46], + [-174, -53], + [-67, -40], + [-129, -98], + [-7, -46], + [18, -61], + [-19, -65], + [-40, -61], + [-25, -50], + [-16, -111], + [-31, -35], + [-106, 1], + [-20, 8], + [-81, 2], + [-94, -11], + [8, -117], + [-55, -38], + [-79, -26], + [-65, 6], + [-291, 139], + [-40, 48], + [-75, 169], + [-63, 13], + [-7, 215], + [-27, 33], + [-47, 4], + [-11, 1], + [-36, -34], + [-56, -29], + [-17, -52], + [-63, -140], + [-37, -106], + [-64, 14], + [-161, 109], + [-76, 15], + [-148, -8], + [-122, 13], + [-161, 70], + [-154, 92], + [-87, 1], + [-74, -31], + [-87, -138], + [-27, -10], + [-16, -6], + [-80, 1], + [-46, 13], + [-66, -14], + [-59, -36], + [-66, -21], + [-78, -14], + [-73, 11], + [-84, 22], + [-68, 33], + [-79, 30], + [-80, -8], + [-84, 22], + [-53, 31], + [-55, 21], + [-68, 15], + [-69, -20], + [-60, -31], + [-54, -43], + [-70, -11], + [-191, 21], + [-83, 21], + [-67, 34], + [-58, 73], + [-49, 61], + [-31, 22], + [-23, 16], + [-38, 34], + [-58, 32], + [-60, -25], + [-80, -14], + [-64, 27], + [-66, 17], + [-176, 11], + [-133, 21], + [-173, 39], + [40, 188], + [10, 117], + [-8, 47], + [-45, 36], + [-27, 43], + [-1, 51], + [23, 142], + [13, 53], + [-65, 28], + [-11, 48], + [-13, 21], + [2, 27], + [-53, 70], + [-10, 42], + [38, 143], + [-9, 17], + [13, 41], + [26, -4], + [27, 158], + [-77, 53], + [-1, 35], + [38, 111], + [44, 36], + [46, 17], + [-52, 49], + [-57, 43], + [-40, 13], + [-28, -3], + [15, 89], + [-4, 174], + [-10, 47], + [-24, 46], + [37, 167], + [50, 70], + [1, 69], + [-10, 90], + [12, 57], + [55, 22], + [50, -6], + [18, 18], + [-1, 22], + [-2, 30], + [-66, 12], + [-67, -15], + [-37, 11], + [1, 145], + [-11, 67], + [89, 67], + [9, 23], + [8, 60], + [92, 24], + [49, 1], + [39, -9], + [11, -23], + [62, -37], + [46, 167], + [27, 37], + [49, 30], + [120, 58], + [33, -24], + [39, -49], + [49, -24], + [75, 7], + [15, 27], + [-30, 46], + [20, 75], + [-1, 61], + [-32, 70], + [-18, 64], + [56, 78] + ], + [ + [3832, 4935], + [2, 58], + [1, 24] + ], + [ + [3804, 20175], + [24, -95] + ], + [ + [3828, 20080], + [-13, -66], + [64, 3], + [12, -79], + [28, 0], + [11, -126], + [-9, -37], + [26, 6], + [91, 3], + [11, -36] + ], + [ + [4049, 19748], + [20, -24], + [68, -82] + ], + [ + [4137, 19642], + [44, 19], + [4, 28], + [26, 37], + [44, -12], + [65, 52], + [76, -9], + [46, -47], + [133, -21], + [19, 38] + ], + [ + [4594, 19727], + [78, 27] + ], + [ + [4672, 19754], + [56, -14], + [46, 41], + [93, -35], + [-17, -39], + [5, -44], + [47, -17], + [87, -16], + [178, 41], + [-16, -91], + [1, -88], + [24, -33], + [-73, -70], + [26, -35], + [41, -13], + [-10, -58], + [19, -17], + [37, 23], + [29, -34], + [18, 10], + [2, 21], + [31, -11], + [37, 17], + [-29, 29], + [56, 41], + [58, -43], + [-40, -41], + [9, -40], + [-11, -10], + [-51, 11], + [-23, -46], + [26, -25], + [7, -22], + [-61, -51], + [-39, 8], + [-23, -20], + [63, -68], + [91, 16], + [-24, -100], + [-38, -4], + [-30, 20], + [-19, -34], + [-41, -5], + [-38, 28], + [8, -59], + [-41, -7], + [-26, -24], + [-12, -21] + ], + [ + [5105, 18825], + [1, -18] + ], + [ + [5106, 18807], + [-15, -66], + [-28, 5], + [-127, -54], + [-87, -8], + [-35, -19], + [-9, -50], + [-7, -82], + [0, -91], + [23, -59], + [19, -80], + [-12, -106], + [-118, -106], + [-73, -42], + [-56, -97], + [-21, -114], + [-28, -18], + [18, -25], + [0, -29], + [-14, -38], + [-118, -55], + [-47, -29], + [-55, -98], + [67, -117], + [53, -24], + [31, -9], + [103, -97], + [25, -60] + ], + [ + [4595, 17239], + [0, -64] + ], + [ + [4595, 17175], + [31, -41], + [5, -30], + [20, -136], + [-13, -46], + [37, 18], + [21, 32], + [44, 42], + [28, 5], + [76, -57], + [-10, -42], + [-18, -89], + [5, -109], + [69, -101], + [67, -38], + [77, -17], + [42, -6], + [30, 16], + [77, -62], + [54, 13], + [36, -6], + [33, -18], + [44, 0], + [30, -6], + [36, 9], + [34, 39], + [11, 2], + [-18, 35], + [-16, 41], + [9, 48], + [26, 47], + [18, 56], + [-13, 18], + [30, 30], + [14, 43], + [0, 34], + [30, 3], + [69, -10], + [39, -23], + [62, 8], + [26, 52], + [13, 146], + [19, 17], + [129, 15], + [19, 27], + [41, 87], + [2, 17], + [43, 6], + [23, -8], + [44, -72], + [46, -89], + [3, -29], + [32, 0], + [74, 49], + [11, 40], + [-2, 128], + [9, 33], + [74, 71], + [48, 75], + [58, -40], + [21, -57] + ], + [ + [6444, 17345], + [7, -74] + ], + [ + [6451, 17271], + [-12, -74], + [3, -33], + [9, -37], + [-23, -34], + [-7, -55], + [14, -44], + [55, -50], + [88, -37], + [20, -32], + [21, -62], + [-14, -62], + [-20, -67], + [4, -37], + [53, -101], + [39, -40], + [77, 16], + [131, 54], + [75, 5], + [74, 8], + [55, 19], + [34, 46], + [28, 19], + [9, 33], + [0, 35], + [1, 19], + [-1, 33], + [17, 16], + [52, -29], + [19, -17], + [64, 25], + [93, 3], + [29, -28], + [6, -46], + [13, -82], + [49, -86], + [-4, -16], + [-65, -65], + [-8, -42], + [40, -38], + [98, -34], + [113, -9], + [24, 11], + [7, 35], + [14, 88], + [22, 32], + [122, 86], + [21, 1], + [28, -9], + [59, 25], + [30, 33], + [37, 7], + [25, 3], + [32, 24], + [70, 15], + [25, 3], + [11, -47], + [43, -40], + [0, -51], + [1, -46], + [69, -51], + [85, -58], + [12, -57], + [6, -89], + [-4, -95], + [11, -57], + [37, -67], + [62, -15], + [99, -94], + [80, -70], + [6, -30], + [15, -69], + [60, -89], + [33, -76], + [23, -8], + [70, 38], + [85, 18], + [93, 28], + [59, 24], + [86, -3] + ], + [ + [9238, 15695], + [40, -26] + ], + [ + [9278, 15669], + [51, -25], + [33, -21] + ], + [ + [9362, 15623], + [-62, -78] + ], + [ + [9300, 15545], + [-75, 12], + [-15, -109], + [-63, -152], + [-139, 26], + [-51, 2], + [-65, -65] + ], + [ + [8892, 15259], + [-23, -198] + ], + [ + [8869, 15061], + [-18, -71], + [-48, -37], + [-119, -42], + [5, -45], + [71, -65], + [43, -54], + [-27, -106], + [-2, -70], + [-57, -72], + [-1, -64], + [-18, -68], + [-31, -26], + [-72, -93] + ], + [ + [8595, 14248], + [33, -74] + ], + [ + [8492, 13922], + [-27, -13], + [-39, -18] + ], + [ + [8178, 13431], + [-50, -103] + ], + [ + [8128, 13328], + [-119, 18], + [1, -50], + [-18, -55], + [-63, -32], + [-56, 32], + [-69, 29], + [-78, 12], + [-51, 101], + [-89, 0], + [-2, 91], + [6, 100], + [-41, 198] + ], + [ + [7549, 13772], + [-69, 16], + [-29, 7] + ], + [ + [7451, 13795], + [-98, 7], + [44, -86], + [-111, -77], + [-99, -60], + [-71, 12], + [-95, 67], + [16, 73] + ], + [ + [7037, 13731], + [-16, 21], + [-21, 26] + ], + [ + [7000, 13778], + [-66, 8], + [-121, -45], + [-63, 2], + [-55, 80], + [-141, 39], + [-22, 93], + [-5, 134], + [-84, -26], + [-34, -107], + [-58, 4], + [-5, -54], + [53, -46], + [-4, -64], + [-10, -51], + [-66, 10], + [-26, -69], + [69, -38], + [-48, -97], + [-74, 8], + [-68, 35], + [-63, 54], + [-65, 34], + [-53, 51], + [-50, 58], + [-47, 65], + [-32, 32], + [-32, 60], + [-70, -178], + [-54, -19], + [-81, 1], + [20, 89], + [-12, 86], + [67, 116], + [-88, 137], + [-71, 15], + [-52, -2], + [-72, 19], + [11, 112] + ], + [ + [5428, 14324], + [-8, 12], + [-23, 34] + ], + [ + [5397, 14370], + [-15, 62], + [-85, 73], + [-68, 10], + [-97, 32], + [-211, 16] + ], + [ + [4921, 14563], + [-21, 45] + ], + [ + [4900, 14608], + [-6, 52], + [20, 31], + [14, 34], + [-11, 29], + [-48, 58], + [-6, 77], + [-42, 12], + [-18, 55], + [-24, 127], + [-216, 23], + [-24, -85], + [-68, -80], + [-115, 9], + [-25, -20] + ], + [ + [4331, 14930], + [-48, 63], + [-32, 43] + ], + [ + [4251, 15036], + [-27, 12], + [-31, -89], + [-20, -15], + [-65, -1], + [-127, -26], + [-40, 12], + [-11, -57], + [28, 2], + [1, -48], + [72, 23], + [28, -19], + [41, -2], + [47, -88], + [-22, -130], + [-44, -14], + [-27, -29], + [-18, -63], + [11, -120], + [-140, -79], + [-278, -181], + [-54, 10], + [-76, -16], + [-29, -61], + [23, -94] + ], + [ + [3493, 13963], + [-18, -14], + [-10, 22], + [-24, -13], + [-99, 41], + [-38, 40], + [-36, 54], + [-52, -2], + [-35, -19], + [-95, 36], + [-92, -7], + [-36, 59], + [-67, 14], + [-36, -3], + [-32, 28], + [-58, -11], + [5, 128], + [1, 8], + [-5, 50], + [-16, 64], + [-34, -6], + [0, -31], + [-190, -40], + [-37, -11], + [-26, -18], + [-34, -5], + [-34, 43], + [-57, 139], + [-35, 15], + [-37, 1], + [-104, -133], + [-33, -67], + [-63, -69], + [-37, 21], + [-10, 26], + [1, 29], + [-44, 135], + [-123, -9], + [-16, 33], + [-23, -8], + [-30, 54], + [-31, 20], + [-165, 37], + [16, 119], + [-12, 69], + [7, 21], + [40, 5], + [-6, 42], + [24, 87], + [34, 67], + [-19, 13], + [-25, 123], + [-20, 11], + [5, 75], + [27, 72], + [15, 122], + [3, 58], + [-8, 29], + [33, 24], + [25, 40], + [106, 42], + [20, -22], + [35, 14], + [19, 32], + [26, -27], + [38, 26], + [19, 51], + [19, 26], + [87, -13], + [31, 46], + [102, 34], + [38, 25], + [50, -16], + [42, 2], + [37, 66], + [60, 9], + [22, 56], + [57, 50], + [30, 141], + [-89, -24], + [-136, 77], + [-19, 35], + [-53, 16], + [-36, 25], + [-106, 4], + [-37, 21], + [19, 86], + [30, 71], + [56, 52], + [62, 33], + [-1, 126], + [138, -5], + [8, -77], + [38, 9], + [36, 103], + [38, 68], + [33, 28], + [-10, 59], + [30, 4], + [11, 138], + [41, 55], + [39, -13], + [27, 38], + [89, -50], + [31, 6], + [8, 55], + [-41, 20], + [-56, 108], + [-17, 49], + [16, 82], + [114, -38], + [36, 15], + [94, -22], + [18, 89], + [-2, 69], + [7, 69], + [-21, 66], + [24, 53], + [34, -6], + [35, 40], + [1, 44], + [-41, 33], + [47, 43], + [16, -78], + [29, -25], + [39, -8], + [26, -27], + [27, 57], + [-36, 34], + [11, 45], + [47, 10], + [14, 3], + [10, 42], + [-46, 9], + [-30, 25], + [41, 42], + [7, 62], + [-15, 12], + [-13, 49], + [-30, 22], + [-31, 6], + [-43, -12], + [-30, -22], + [-57, 49], + [19, 23], + [-13, 29], + [-50, 12], + [-45, 37], + [-26, 62], + [-56, -19], + [-56, -46], + [-39, 26], + [-17, 96], + [-82, 49], + [-129, 37], + [-36, -4], + [-8, 102], + [-31, 9], + [-18, 48], + [13, 82], + [72, -12], + [29, 74], + [53, 43], + [78, 5], + [96, 28], + [60, 34], + [24, 125], + [-8, 43], + [-23, 137], + [-24, 57], + [33, 199], + [-67, 14], + [-76, 72], + [-14, 51], + [-39, 89], + [-19, 85], + [-44, 7], + [-1, 88], + [79, -6], + [82, 140], + [-31, 50], + [-33, 86], + [-33, 63], + [70, 131], + [81, 45], + [55, 93] + ], + [ + [2822, 20346], + [137, 5], + [66, 78], + [142, 8], + [162, -22] + ], + [ + [3329, 20415], + [167, -134] + ], + [ + [3496, 20281], + [3, -43], + [144, -11], + [33, -20], + [90, 17], + [38, -49] + ], + [ + [8191, 19426], + [31, 29], + [66, 62] + ], + [ + [8288, 19517], + [40, 67], + [25, 72] + ], + [ + [8353, 19656], + [41, 64] + ], + [ + [8394, 19720], + [31, -3], + [108, -93], + [150, -140], + [65, -103], + [-5, -75], + [47, -25], + [76, -149], + [38, -45], + [52, 56], + [66, -11], + [84, 21], + [76, 81], + [21, 64], + [5, 68], + [106, 69], + [32, -87], + [20, -93], + [26, -56], + [34, -44], + [52, -27], + [71, -4], + [105, 18], + [39, 12], + [55, 56], + [-68, 81], + [5, 69], + [46, 64] + ], + [ + [9731, 19424], + [67, 53] + ], + [ + [9798, 19477], + [58, 23], + [49, 11], + [48, 44], + [86, 27], + [77, -20], + [64, 4], + [59, 18], + [58, 31] + ], + [ + [10425, 18345], + [3, -58] + ], + [ + [9701, 15460], + [-66, 11] + ], + [ + [9635, 15471], + [-82, 37], + [-60, 52], + [-65, 45], + [-44, 47] + ], + [ + [9384, 15652], + [-22, -29] + ], + [ + [9278, 15669], + [-31, 20], + [-9, 6] + ], + [ + [6451, 17271], + [-1, 10], + [-6, 64] + ], + [ + [4595, 17175], + [0, 54], + [0, 10] + ], + [ + [5106, 18807], + [123, 65], + [5, -127], + [94, 48], + [50, -137], + [28, -42], + [39, 119], + [22, 131], + [105, -95], + [22, -89], + [100, 18], + [0, 59], + [-56, 89], + [61, 12], + [155, -89], + [45, -36], + [110, 24] + ], + [ + [6009, 18757], + [105, -77] + ], + [ + [6114, 18680], + [67, -42], + [127, 30], + [94, 30], + [49, 56], + [30, -16], + [25, -24], + [98, 2], + [12, -21], + [6, -1], + [4, -4], + [24, 25] + ], + [ + [6650, 18715], + [31, 102] + ], + [ + [6681, 18817], + [58, 50], + [36, 1], + [30, -156], + [47, -21], + [135, -2], + [44, 23], + [34, 35], + [21, 31], + [31, 17], + [4, 11], + [21, 29] + ], + [ + [7142, 18835], + [21, 14], + [13, 9] + ], + [ + [7176, 18858], + [34, 39], + [28, 43], + [30, 66], + [0, 108] + ], + [ + [7268, 19114], + [-32, 208] + ], + [ + [7236, 19322], + [-14, 143], + [12, 76], + [27, 92], + [59, 120], + [76, 86], + [72, 39], + [74, -4], + [34, -129], + [48, -127], + [-40, -79], + [57, -26], + [49, -32], + [66, -61], + [64, -37], + [102, -106], + [87, -25], + [78, 39], + [104, 135] + ], + [ + [14587, 17043], + [-5, -8] + ], + [ + [16764, 13353], + [-30, -59] + ], + [ + [17070, 12734], + [-269, -2], + [-238, -5], + [-129, -12], + [-111, -15], + [-7, -65], + [-30, -19], + [-44, -3], + [-18, 0], + [-21, 64], + [-60, 94], + [-62, 33], + [-111, 17], + [-71, -5], + [-134, -15], + [-85, 0], + [-86, 7], + [2, -95], + [28, -47], + [40, -22], + [342, 0], + [31, -44], + [-4, -49], + [-5, -145], + [-11, -53], + [-67, -81], + [-5, 31], + [-80, -8], + [-55, 22], + [-20, 40], + [-26, 20], + [-102, 59], + [-109, 4], + [-20, 0], + [-24, 22], + [-81, -40], + [-113, -168], + [-9, -34], + [0, -101], + [-24, -18], + [-48, 2], + [-37, -17], + [-57, -50], + [-18, -51], + [-101, 24], + [-24, 14], + [-59, 95], + [-26, 45], + [-30, 4], + [-22, 0], + [-144, -51], + [-55, -32], + [-31, -41], + [-6, -50], + [-17, -75], + [-62, -83], + [-22, -4], + [-130, 65], + [-64, 14], + [-30, 24], + [-118, 4], + [-28, 8], + [-77, 63], + [-26, 12], + [-166, -14], + [-26, 10], + [-185, 98], + [-73, -10], + [-24, -42], + [19, -42], + [37, -42], + [4, -104], + [28, -64], + [-7, -60], + [-46, -103], + [2, -107], + [-27, -89], + [-19, -15], + [-48, 25], + [-205, 69], + [-95, 8], + [-235, -20], + [-141, -32], + [-90, -52], + [-35, -18], + [-66, -2], + [-37, -3], + [-60, -34], + [-63, 2], + [-117, 42], + [-165, 69] + ], + [ + [12210, 11491], + [85, 191] + ], + [ + [11836, 12290], + [6, 8], + [8, 8] + ], + [ + [11645, 12798], + [2, 26], + [3, 39] + ], + [ + [11680, 12926], + [2, 58], + [-14, 46], + [57, 71], + [36, 76], + [32, 100], + [-13, 136], + [-44, 29], + [-57, -48], + [-76, -14], + [-103, 24], + [-85, -31], + [10, 200], + [34, 41], + [60, 32], + [1, 46], + [-46, 28], + [-75, 65] + ], + [ + [11399, 13785], + [2, 26], + [17, 226] + ], + [ + [11418, 14037], + [-2, 46], + [-54, 80], + [-18, 88], + [-39, 127], + [-87, 152] + ], + [ + [11218, 14530], + [27, 48] + ], + [ + [11245, 14578], + [43, 43], + [-44, 39], + [-7, 25], + [40, 43], + [38, 17], + [-16, 81], + [32, 103], + [60, 78], + [31, 136], + [46, 126] + ], + [ + [17441, 11986], + [25, -16], + [15, -10] + ], + [ + [18999, 7182], + [-15, -1], + [-112, -53], + [-102, -83], + [-58, -100], + [-114, -10], + [-128, 32], + [-131, -12], + [-111, -99], + [-90, -64], + [-81, -46], + [-74, -29], + [-134, -25], + [-191, 17], + [-116, -26], + [-210, -98], + [-105, -56], + [-46, -24], + [-58, -128], + [-67, -67], + [-61, -26], + [-185, -18], + [-444, -7], + [-94, -9], + [-106, -22], + [-191, -71], + [-99, -16], + [-126, -33], + [-41, -125], + [-235, -225], + [-40, -93], + [-10, -133], + [53, -87], + [33, -92], + [8, -101], + [-76, -50], + [-57, -119], + [-31, -187], + [-19, -183], + [6, -161], + [-14, -96] + ], + [ + [14163, 5214], + [-401, 245] + ], + [ + [11916, 5760], + [-47, 45] + ], + [ + [11446, 5862], + [-189, -22] + ], + [ + [11268, 6058], + [56, 16] + ], + [ + [11798, 7440], + [-20, 50], + [-15, 39] + ], + [ + [11995, 7654], + [25, 49], + [8, 15] + ], + [ + [12140, 9708], + [88, 63] + ], + [ + [12193, 11454], + [17, 37] + ], + [ + [7338, 22303], + [22, -2] + ], + [ + [8654, 21855], + [177, -109] + ], + [ + [10090, 21869], + [8, -4] + ], + [ + [10164, 21765], + [21, -71] + ], + [ + [9942, 20422], + [39, -25], + [168, -109] + ], + [ + [9798, 19477], + [-51, -41], + [-16, -12] + ], + [ + [8394, 19720], + [-19, -29], + [-22, -35] + ], + [ + [8288, 19517], + [-97, -91] + ], + [ + [7236, 19322], + [16, -103], + [16, -105] + ], + [ + [7176, 18858], + [-34, -23] + ], + [ + [6681, 18817], + [-19, -62], + [-12, -40] + ], + [ + [6114, 18680], + [-55, 41], + [-50, 36] + ], + [ + [5106, 18807], + [0, 5], + [-1, 13] + ], + [ + [4672, 19754], + [-46, -16], + [-32, -11] + ], + [ + [4137, 19642], + [-88, 106] + ], + [ + [3828, 20080], + [-9, 33], + [-15, 62] + ], + [ + [3496, 20281], + [-110, 88], + [-57, 46] + ], + [ + [2822, 20346], + [31, 42], + [-40, 27], + [-109, 15], + [-74, 32], + [3, 20], + [-31, 10], + [-75, -62], + [-86, 69], + [40, 58], + [117, 82], + [-25, 81], + [-105, 111], + [-87, 22], + [-115, 46], + [-61, 82], + [15, 128], + [70, 92], + [86, 79], + [60, 21], + [23, 124], + [-70, 79], + [-22, 71], + [14, 75], + [47, 29], + [67, -3], + [58, -6], + [95, 69], + [47, 22], + [20, 20], + [-15, 14], + [2, 53], + [-190, 37], + [-72, 0], + [-7, 24], + [-21, 21], + [2, 20], + [90, -4], + [18, 18], + [80, -5], + [68, -6], + [41, 15], + [61, 6], + [38, 44], + [28, 2], + [20, 92], + [-7, 51], + [-17, 5], + [2, 103], + [-8, 53], + [-26, 36], + [-8, 36], + [-8, 34], + [-9, 38], + [4, 88], + [32, 8], + [81, 16], + [38, 7], + [70, 13], + [22, -11], + [103, -72], + [130, -41], + [19, -15], + [35, 50], + [107, 68], + [53, -5], + [230, 114], + [120, -24], + [67, 27], + [-9, 69], + [58, 137] + ], + [ + [4900, 14608], + [12, -26], + [9, -19] + ], + [ + [5397, 14370], + [31, -46] + ], + [ + [7000, 13778], + [37, -47] + ], + [ + [7451, 13795], + [98, -23] + ], + [ + [7326, 10668], + [-9, -81] + ], + [ + [6078, 11116], + [-20, -48], + [-46, -111] + ], + [ + [5868, 9633], + [2, -55] + ], + [ + [5819, 8669], + [-23, -110] + ], + [ + [4058, 9817], + [42, 68] + ], + [ + [4258, 11111], + [-1, 7], + [-8, 54] + ], + [ + [4185, 11205], + [-5, 17], + [-18, 59] + ], + [ + [4162, 11281], + [-11, 22], + [-20, 38] + ], + [ + [3843, 11241], + [0, 1], + [-50, 41] + ], + [ + [2329, 11111], + [-11, 2], + [-63, 15] + ], + [ + [1764, 10622], + [-80, 30], + [-30, 32], + [-76, 26], + [-38, -29], + [-79, 24], + [-91, 54], + [-63, 22], + [-37, 73], + [-175, 50], + [-7, 90], + [-67, 21], + [-53, 86], + [38, 28], + [-10, 37], + [37, 59], + [-7, 56], + [25, 57], + [47, 24], + [39, 6], + [75, -11], + [15, 121], + [42, 15], + [2, 23], + [-46, 0], + [-66, 12], + [-26, 28], + [-7, 29], + [28, 29], + [64, 44], + [28, 36], + [23, -8], + [52, 45], + [73, -62], + [22, 24], + [18, 73], + [3, 65], + [16, 32], + [115, 68], + [40, 60], + [55, 10], + [38, 51], + [-13, 89], + [-45, 18], + [-101, -5], + [29, 71], + [21, 9], + [58, 130], + [13, 12], + [14, 103], + [8, 6], + [21, 83], + [9, 58], + [-26, 32], + [-25, 11], + [1, 108], + [13, 62], + [215, -8], + [-30, -12], + [-23, -41], + [16, -34], + [63, -39], + [76, 9], + [52, -12], + [82, 43], + [86, 23], + [56, 84], + [17, 48], + [-28, 8], + [-41, 62], + [95, 104], + [15, 44], + [-15, 17], + [-53, -1], + [-124, 54], + [-5, 123], + [103, 78], + [78, 36], + [120, -50], + [69, 2], + [115, -47], + [-5, 75], + [9, 130], + [134, -51], + [42, -45], + [67, 3], + [48, 10], + [6, 72], + [-10, 98], + [6, 44], + [37, 12], + [84, -2], + [58, 9], + [50, 31], + [17, 62], + [12, 95], + [29, 38], + [37, 32], + [-29, -97], + [-7, -87], + [130, -40], + [149, -29], + [5, 103], + [18, 53], + [8, 58], + [-19, 59] + ], + [ + [4251, 15036], + [80, -106] + ], + [ + [9635, 15471], + [99, -17] + ], + [ + [11245, 14578], + [-19, -33], + [-8, -15] + ], + [ + [11418, 14037], + [-9, -121], + [-10, -131] + ], + [ + [9620, 13904], + [3, -38], + [3, -26] + ], + [ + [9115, 13664], + [-24, 8], + [-30, 10] + ], + [ + [8619, 14193], + [-24, 55] + ], + [ + [8869, 15061], + [10, 88], + [13, 110] + ], + [ + [9300, 15545], + [84, 107] + ], + [ + [17613, 18172], + [-40, 101] + ], + [ + [18302, 19953], + [-18, 43] + ], + [ + [19460, 19617], + [24, -63], + [6, -14] + ], + [ + [21333, 17802], + [-18, -15], + [-26, -20] + ], + [ + [19792, 15613], + [-23, 0], + [-13, 0] + ] + ], + "transform": { + "scale": [0.0001289462858438363, 0.00012020896663238328], + "translate": [77.23517600000098, 15.827181000000731] + }, + "objects": { + "telugana": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [ + [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Nirmal", + "Dist_Code": null + } + }, + { + "arcs": [[26, 27, 28, 29, 30, 31]], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Hyderabad", + "Dist_Code": "536" + } + }, + { + "arcs": [ + [ + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Jaya Shankar", + "Dist_Code": null + } + }, + { + "arcs": [[57, 58, 59, 60, 61, 62, -38, 63, -36, 64, -34, 65]], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Kothagudem", + "Dist_Code": null + } + }, + { + "arcs": [ + [ + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Nagarkurnool", + "Dist_Code": null + } + }, + { + "arcs": [ + [ + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Siddipet", + "Dist_Code": null + } + }, + { + "arcs": [ + [ + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Suryapet", + "Dist_Code": null + } + }, + { + "arcs": [ + [ + 132, + -19, + 133, + -17, + 134, + -15, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + -25, + 156, + -23, + 157, + -21 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Nizamabad", + "Dist_Code": "533" + } + }, + { + "arcs": [ + [[158]], + [ + [ + 159, + -27, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + -70, + 170, + -68, + 171, + -93, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + -29 + ] + ] + ], + "type": "MultiPolygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Shamshabad", + "Dist_Code": null + } + }, + { + "arcs": [ + [ + -57, + 187, + -55, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + -3, + 199, + 200, + 201, + 202, + 203, + 204, + 205 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Komaram Bheem", + "Dist_Code": null + } + }, + { + "arcs": [[-205, 206, -203, 207, -201, 208, -1, 209]], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Adilabad", + "Dist_Code": "532" + } + }, + { + "arcs": [ + [ + 210, + -195, + 211, + -193, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + -142, + 220, + -140, + 221, + -138, + 222, + -136, + -14, + 223, + -12, + 224, + -10, + 225, + -8, + 226, + -6, + 227, + -4, + -199, + 228, + -197 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Jagtial", + "Dist_Code": null + } + }, + { + "arcs": [ + [ + 229, + -190, + 230, + -53, + 231, + -51, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + -213, + -192 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Peddapalle", + "Dist_Code": null + } + }, + { + "arcs": [ + [ + 239, + -214, + -239, + 240, + -237, + 241, + -235, + 242, + 243, + 244, + -97, + 245, + -95, + 246, + -109, + 247, + -107, + 248, + 249, + 250, + 251, + 252, + 253, + -149, + 254, + -147, + 255, + -145, + 256, + -143, + -220, + 257, + -218, + 258, + -216 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Karimnagar", + "Dist_Code": "534" + } + }, + { + "arcs": [ + [[259]], + [ + [ + 260, + 261, + 262, + -110, + 263, + -131, + 264, + 265, + -98, + -245, + 266, + -243, + -234, + 267, + -49, + 268, + -47, + 269, + -45, + 270, + 271, + 272, + 273 + ] + ] + ], + "type": "MultiPolygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Hanamkonda", + "Dist_Code": null + } + }, + { + "arcs": [ + [ + 274, + -62, + 275, + -60, + 276, + 277, + 278, + 279, + 280, + 281, + -116, + 282, + -114, + 283, + -112, + 284, + -262, + 285, + 286, + 287, + 288, + 289, + -40 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Mahabubabad", + "Dist_Code": null + } + }, + { + "arcs": [ + [ + -58, + 290, + -123, + 291, + -121, + 292, + -119, + 293, + -117, + -282, + 294, + -280, + 295, + -278, + 296 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Khammam", + "Dist_Code": "541" + } + }, + { + "arcs": [ + [ + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + -174, + 309, + -91, + 310, + -89, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Mahbubnagar", + "Dist_Code": "538" + } + }, + { + "arcs": [[319, -87, 320, -85, 321, -315, 322, -313]], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Wanaparthy", + "Dist_Code": null + } + }, + { + "arcs": [ + [ + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + -184, + 342, + -182, + 343, + 344, + 345, + 346, + 347, + 348, + 349, + 350, + 351, + 352, + 353, + 354, + 355, + 356, + 357, + 358 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Sangareddy", + "Dist_Code": null + } + }, + { + "arcs": [ + [ + 359, + 360, + 361, + 362, + 363, + 364, + -105, + 365, + -103, + 366, + 367, + 368, + -337, + 369, + -335, + 370, + -333, + 371, + -331, + 372, + 373, + 374, + 375, + 376, + 377, + 378, + 379, + 380 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Medak", + "Dist_Code": "535" + } + }, + { + "arcs": [ + [ + 381, + -265, + -130, + 382, + -128, + 383, + 384, + -166, + 385, + -164, + 386, + -162, + 387, + 388, + 389, + 390, + 391, + -100 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Yadadri", + "Dist_Code": null + } + }, + { + "arcs": [ + [ + -127, + 392, + -125, + 393, + -83, + 394, + -81, + 395, + -79, + 396, + -77, + 397, + -75, + 398, + -73, + 399, + -71, + -170, + 400, + -168, + 401, + -384 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Nalgonda", + "Dist_Code": "539" + } + }, + { + "arcs": [ + [ + 402, + -153, + 403, + -151, + 404, + -253, + 405, + -251, + 406, + -249, + -106, + -365, + 407, + -363, + 408, + -361, + 409, + -381, + 410, + -379, + 411, + -377, + 412, + -375, + 413, + -373, + 414, + -329, + 415, + -327, + 416, + -325, + 417, + -359, + 418, + -357, + 419, + -155 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Kamareddy", + "Dist_Code": null + } + }, + { + "arcs": [ + [ + 420, + -351, + 421, + -349, + 422, + -347, + 423, + -345, + -180, + 424, + -178, + 425, + -176, + 426, + -308, + 427, + -306, + 428, + -304, + 429, + -302, + 430, + 431, + -299, + 432, + -319, + 433, + -317, + 434, + -355, + 435, + -353 + ], + [-159] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Rangareddy", + "Dist_Code": "537" + } + }, + { + "arcs": [ + [ + 436, + -101, + -392, + 437, + -390, + 438, + -388, + -161, + -32, + 439, + -30, + 440, + -186, + 441, + -341, + 442, + -339, + 443, + -368 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Malkajgiri", + "Dist_Code": null + } + }, + { + "arcs": [ + [ + -260, + -274, + 444, + -272, + 445, + -43, + 446, + -41, + -290, + 447, + -288, + 448, + -286, + -261 + ] + ], + "type": "Polygon", + "properties": { + "REMARKS_2": null, + "Country": "India", + "st_nm": "Telangana", + "State_Code": null, + "district": "Warangal", + "Dist_Code": "540" + } + } + ] + } + }, + "crs": { + "type": "name", + "properties": {"name": "urn:ogc:def:crs:OGC:1.3:CRS84"} + } +} diff --git a/public/maps/tripura.json b/public/maps/tripura.json index 731c667b69..d2e5ec2b76 100644 --- a/public/maps/tripura.json +++ b/public/maps/tripura.json @@ -1 +1,776 @@ -{"type":"Topology","arcs":[[[5027,6061],[366,-348],[139,32],[148,55],[274,51],[132,-10],[-12,-24],[13,-93],[-22,-117],[24,-48],[0,-38],[-41,-16],[79,-76],[29,15],[28,-21],[18,-37],[13,-39],[-31,-54],[18,-90],[53,-52],[-48,-88],[2,-25],[24,-24],[41,2],[106,-29],[77,12],[42,-59],[25,-108],[46,-50],[73,-204],[-12,-75],[30,-311],[-12,-66],[23,-29],[46,-1],[37,-24],[-22,-51]],[[6733,4021],[-110,-19],[-55,-29],[-63,-106],[-44,-24],[-28,-38],[-71,-34],[-55,-61],[-112,0],[-33,-49],[2,-36],[-26,-55],[-26,-17],[-233,11],[-195,79],[-82,111],[-107,231],[-86,20],[-57,-9],[-38,-25],[-20,-74],[54,-78],[-139,-51],[-11,-34],[20,-53],[-10,-33],[60,-91],[-19,-56],[10,-43],[76,-110],[-28,-96],[8,-77],[39,-48],[30,-117],[-36,-56],[1,-43],[61,-35],[51,-150],[-28,-17],[-183,-41],[-24,-47],[19,-114],[-24,-17],[-201,19],[-129,-29],[-171,-132]],[[4720,2348],[-31,145],[-168,214],[-211,232],[-84,234],[-38,245],[-56,185],[30,62],[6,104],[-29,13]],[[4139,3782],[-39,142],[94,119],[-48,38],[-38,107],[-1,51],[29,50],[-19,44],[46,25],[0,13],[-47,19],[-57,63],[57,-19],[47,0],[7,258],[18,63],[-47,31],[9,38],[-19,76],[-103,38],[-9,44],[38,25],[-18,19],[-13,82],[-45,19],[22,82],[-19,69],[37,206],[-27,54],[11,38],[-17,84],[12,19],[-38,39],[38,79],[-10,127],[31,128]],[[4021,6052],[46,52],[-35,95],[-84,391],[99,-24],[138,-68],[47,-4],[35,-22],[109,6],[52,-42],[59,-5],[110,60],[44,-25],[3,-28],[-41,-48],[10,-32],[213,-205],[48,-91],[38,-26],[77,7],[38,18]],[[5027,6061],[125,444],[79,150],[-5,130],[-104,194],[3,88],[149,49],[79,47],[49,-30],[40,-67],[37,-27],[68,-26],[45,-2],[41,26],[1,25],[-83,65],[-118,162],[34,18],[51,-23],[44,20],[9,23],[70,14],[28,-43],[71,7],[50,-10],[54,-34],[141,-10],[241,-5],[101,30],[56,-3],[39,13],[19,28],[-10,40],[91,132],[55,19],[160,-20],[4,24],[-40,68],[-41,123],[-39,199],[30,109],[77,14],[68,-15],[267,-118],[44,-13],[37,15],[41,-68],[-60,-50],[-10,-41],[15,-59],[53,-67],[115,-55],[-4,-88],[44,-46],[10,-62],[37,-14],[22,-32],[-21,-32],[16,-15],[-27,-22],[-1,-39],[-366,-597],[553,12],[-17,-38],[15,-53],[21,-11],[-12,-22],[28,-11],[-7,-16],[85,4],[-27,-40],[20,-20],[22,11],[57,-37],[-29,-16],[32,-19],[-2,-21],[30,-18],[-15,-26],[22,-6],[2,-15],[-15,-80],[22,-13],[33,-85],[-57,-42],[4,-45],[15,-8],[-19,-18],[2,-43],[21,-15],[-16,-14],[20,-18],[-26,-41],[21,1],[-24,-26],[7,-59],[-41,-23],[30,-15],[-24,-6],[-3,-19],[-34,-3],[-9,-11],[33,-41],[-21,-8],[12,-31],[-23,1],[-11,-13],[15,-47],[-22,-24],[34,-17],[-18,-17],[33,-47],[-30,-5],[68,-68],[11,-74],[-22,-11],[13,-14],[-33,-25],[-5,-23],[-62,-26],[-9,-124],[14,-12],[0,-44],[51,-43],[63,-24],[3,-48],[-9,-32],[-45,-7],[-9,-65],[-21,-4],[6,-35],[-21,-2],[39,-48],[-1,-20],[-25,-14],[13,-6],[-68,-16],[-61,19],[-36,-5],[0,24],[-21,6],[-27,-22],[-17,-49],[-58,-22],[-12,-19],[-5,-38],[54,-55],[-4,-24],[27,-18],[7,-30],[-66,-7],[-48,13],[-66,-14],[55,-228],[-10,-158],[18,-65],[-95,-12],[-67,-61],[18,-71],[-44,-30],[-16,-32],[6,-68],[-40,-52],[-53,-36],[-60,7],[-23,35],[39,124],[-62,97],[-50,2],[-54,19],[-75,-4],[-20,26],[-7,124],[-40,0]],[[4720,2348],[-93,-12],[-64,-40],[-18,-24],[8,-97],[-110,-127],[-101,-56],[-19,-25],[9,-29],[-37,-43],[-91,-59],[-72,-153],[6,-128],[86,-100],[10,-155],[81,-106],[37,-122],[4,-107],[58,-141],[-9,-18],[15,-20],[84,6],[9,-24],[-54,-45],[-70,-24],[25,-20],[-63,-44],[-97,-5],[-56,27],[-57,-20],[-12,-30],[56,-107],[-33,-48],[-44,38],[-170,-141],[-117,-60],[-25,-35],[-73,-34],[-37,0],[-44,17],[-46,-5],[-33,-27],[-94,-15],[-18,-14],[-99,8],[-139,-60],[-113,-124],[-31,1],[-63,69],[22,29],[-12,17],[-88,50],[-31,-1],[-77,-34],[-138,60],[18,84],[-14,19],[-68,-37],[-18,14],[25,98],[-41,36],[55,76],[-23,11],[-73,-8],[9,89],[-56,22],[29,14],[8,25],[-43,67],[29,36],[-44,14],[-22,55],[-39,20],[14,57],[-17,22],[-62,23],[-5,26],[70,60],[-85,17],[4,19],[-59,8],[-16,15],[31,76],[-13,46],[71,32],[-21,19],[-142,3],[-37,16],[-12,23],[81,33],[-16,45],[-17,26],[-125,-14],[-36,20],[81,63],[-52,70],[-53,3],[-8,22],[24,35],[-56,24],[-158,-12],[-58,110],[-30,-2],[34,-105],[-20,-17],[-50,38],[-27,-11],[5,-29],[41,-21],[-52,-40],[14,-76],[-52,-8],[-25,-17],[-1,-41],[-19,-22],[20,-49],[-47,-41],[2,-61],[29,-69],[-4,-44],[47,-49],[42,-169],[28,-12],[11,-21],[-6,-62],[97,-140],[-49,-37],[-140,-10],[-148,64],[-112,130],[-124,280],[-47,44],[-1,305],[-7,70],[-22,37],[38,36],[-21,20],[-39,-1],[-32,85]],[[1075,1668],[44,14],[113,0],[65,25],[47,44],[103,44],[65,119],[38,6],[28,57],[-11,88],[57,13],[150,88],[-10,69],[-169,44],[-66,38],[17,132],[-9,19],[-38,13],[-19,44],[37,120],[38,18],[18,32],[-56,25],[9,82],[-19,12],[-19,76],[27,19],[104,6],[19,13],[-29,50],[19,25],[-10,63],[-19,19],[28,19],[-10,119],[56,19],[160,94],[47,51],[0,19],[-19,6],[75,44],[19,31],[56,26],[37,87],[198,101],[84,81],[9,45],[76,-20],[37,6],[0,13],[76,32],[-10,12],[19,69],[94,0],[94,44],[66,81],[-29,51],[57,0],[47,-19],[66,12],[9,19],[228,16],[244,-18],[132,-25],[28,19],[66,-7],[38,38],[28,-7],[47,-88],[113,-57],[10,-44],[19,-7],[-19,-69],[-56,-38],[-19,-31],[66,-38],[57,-57],[9,-38],[85,63],[94,12],[28,31]],[[1075,1668],[28,24],[-9,25],[-88,18],[-12,31],[8,25],[91,55],[-12,27],[-28,11],[-65,0],[-49,21],[37,100],[28,28],[63,18],[20,56],[-41,-12],[-43,-38],[-30,1],[-52,100],[36,15],[-4,33],[-26,7],[-17,-25],[-27,2],[-37,102],[9,75],[-73,62],[11,47],[-87,78],[-49,108],[-14,102],[-47,2],[-31,47],[-86,-2],[-30,63],[-45,-4],[-36,15],[-17,34],[16,61],[44,72],[-9,18],[-49,-11],[-40,19],[-9,50],[-133,130],[3,43],[-81,12],[-22,17],[0,84],[-17,47],[20,86],[-15,98],[26,5],[118,-45],[83,-14],[11,-31],[38,-7],[28,21],[7,43],[-6,122],[-19,38],[-310,-1],[-7,65],[-28,47],[15,90],[83,98],[54,-8],[162,37],[38,-2],[55,-18],[58,-46],[31,20],[23,132],[-18,79],[43,70],[-1,35],[128,152],[-76,133],[-16,65],[-45,45],[24,91],[67,46],[-7,34],[-51,28],[24,17],[178,-16],[52,17],[-5,23],[-70,71],[33,55],[93,113],[35,-2],[7,-48],[44,-2],[28,18],[37,81],[138,18],[41,-12],[43,-45],[60,-6],[88,24],[64,-37],[82,-11],[-39,114],[47,73],[60,50],[2,46],[54,113],[-133,94],[-22,142],[9,22],[37,21],[67,-9],[201,8],[50,-13],[21,-17],[71,0],[133,-31],[135,4],[42,-6],[33,-52],[343,-53],[107,1],[59,22],[82,-29],[96,31],[-17,75],[178,6],[56,33],[40,57],[-26,157],[42,43],[18,103],[14,22],[73,35],[8,18],[-47,87],[-15,67],[112,69],[28,-4],[-29,-94],[80,-79],[15,-58],[59,-101],[50,-33],[51,11],[38,-40],[226,-62],[39,0],[34,-18]]],"transform":{"scale":[0.00015129683107590106,0.00019737185240588392],"translate":[91.15250899999998,22.944181]},"objects":{"tripura_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"cartodb_id":144,"censuscode":291,"dt_cen_cd":3,"st_cen_cd":16,"st_nm":"Tripura","district":"Dhalai"}},{"arcs":[[-1,5]],"type":"Polygon","properties":{"cartodb_id":418,"censuscode":292,"dt_cen_cd":4,"st_cen_cd":16,"st_nm":"Tripura","district":"North Tripura"}},{"arcs":[[-3,6,7]],"type":"Polygon","properties":{"cartodb_id":548,"censuscode":290,"dt_cen_cd":2,"st_cen_cd":16,"st_nm":"Tripura","district":"South Tripura"}},{"arcs":[[-4,-8,8]],"type":"Polygon","properties":{"cartodb_id":620,"censuscode":289,"dt_cen_cd":1,"st_cen_cd":16,"st_nm":"Tripura","district":"West Tripura"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [5027, 6061], + [366, -348], + [139, 32], + [148, 55], + [274, 51], + [132, -10], + [-12, -24], + [13, -93], + [-22, -117], + [24, -48], + [0, -38], + [-41, -16], + [79, -76], + [29, 15], + [28, -21], + [18, -37], + [13, -39], + [-31, -54], + [18, -90], + [53, -52], + [-48, -88], + [2, -25], + [24, -24], + [41, 2], + [106, -29], + [77, 12], + [42, -59], + [25, -108], + [46, -50], + [73, -204], + [-12, -75], + [30, -311], + [-12, -66], + [23, -29], + [46, -1], + [37, -24], + [-22, -51] + ], + [ + [6733, 4021], + [-110, -19], + [-55, -29], + [-63, -106], + [-44, -24], + [-28, -38], + [-71, -34], + [-55, -61], + [-112, 0], + [-33, -49], + [2, -36], + [-26, -55], + [-26, -17], + [-233, 11], + [-195, 79], + [-82, 111], + [-107, 231], + [-86, 20], + [-57, -9], + [-38, -25], + [-20, -74], + [54, -78], + [-139, -51], + [-11, -34], + [20, -53], + [-10, -33], + [60, -91], + [-19, -56], + [10, -43], + [76, -110], + [-28, -96], + [8, -77], + [39, -48], + [30, -117], + [-36, -56], + [1, -43], + [61, -35], + [51, -150], + [-28, -17], + [-183, -41], + [-24, -47], + [19, -114], + [-24, -17], + [-201, 19], + [-129, -29], + [-171, -132] + ], + [ + [4720, 2348], + [-31, 145], + [-168, 214], + [-211, 232], + [-84, 234], + [-38, 245], + [-56, 185], + [30, 62], + [6, 104], + [-29, 13] + ], + [ + [4139, 3782], + [-39, 142], + [94, 119], + [-48, 38], + [-38, 107], + [-1, 51], + [29, 50], + [-19, 44], + [46, 25], + [0, 13], + [-47, 19], + [-57, 63], + [57, -19], + [47, 0], + [7, 258], + [18, 63], + [-47, 31], + [9, 38], + [-19, 76], + [-103, 38], + [-9, 44], + [38, 25], + [-18, 19], + [-13, 82], + [-45, 19], + [22, 82], + [-19, 69], + [37, 206], + [-27, 54], + [11, 38], + [-17, 84], + [12, 19], + [-38, 39], + [38, 79], + [-10, 127], + [31, 128] + ], + [ + [4021, 6052], + [46, 52], + [-35, 95], + [-84, 391], + [99, -24], + [138, -68], + [47, -4], + [35, -22], + [109, 6], + [52, -42], + [59, -5], + [110, 60], + [44, -25], + [3, -28], + [-41, -48], + [10, -32], + [213, -205], + [48, -91], + [38, -26], + [77, 7], + [38, 18] + ], + [ + [5027, 6061], + [125, 444], + [79, 150], + [-5, 130], + [-104, 194], + [3, 88], + [149, 49], + [79, 47], + [49, -30], + [40, -67], + [37, -27], + [68, -26], + [45, -2], + [41, 26], + [1, 25], + [-83, 65], + [-118, 162], + [34, 18], + [51, -23], + [44, 20], + [9, 23], + [70, 14], + [28, -43], + [71, 7], + [50, -10], + [54, -34], + [141, -10], + [241, -5], + [101, 30], + [56, -3], + [39, 13], + [19, 28], + [-10, 40], + [91, 132], + [55, 19], + [160, -20], + [4, 24], + [-40, 68], + [-41, 123], + [-39, 199], + [30, 109], + [77, 14], + [68, -15], + [267, -118], + [44, -13], + [37, 15], + [41, -68], + [-60, -50], + [-10, -41], + [15, -59], + [53, -67], + [115, -55], + [-4, -88], + [44, -46], + [10, -62], + [37, -14], + [22, -32], + [-21, -32], + [16, -15], + [-27, -22], + [-1, -39], + [-366, -597], + [553, 12], + [-17, -38], + [15, -53], + [21, -11], + [-12, -22], + [28, -11], + [-7, -16], + [85, 4], + [-27, -40], + [20, -20], + [22, 11], + [57, -37], + [-29, -16], + [32, -19], + [-2, -21], + [30, -18], + [-15, -26], + [22, -6], + [2, -15], + [-15, -80], + [22, -13], + [33, -85], + [-57, -42], + [4, -45], + [15, -8], + [-19, -18], + [2, -43], + [21, -15], + [-16, -14], + [20, -18], + [-26, -41], + [21, 1], + [-24, -26], + [7, -59], + [-41, -23], + [30, -15], + [-24, -6], + [-3, -19], + [-34, -3], + [-9, -11], + [33, -41], + [-21, -8], + [12, -31], + [-23, 1], + [-11, -13], + [15, -47], + [-22, -24], + [34, -17], + [-18, -17], + [33, -47], + [-30, -5], + [68, -68], + [11, -74], + [-22, -11], + [13, -14], + [-33, -25], + [-5, -23], + [-62, -26], + [-9, -124], + [14, -12], + [0, -44], + [51, -43], + [63, -24], + [3, -48], + [-9, -32], + [-45, -7], + [-9, -65], + [-21, -4], + [6, -35], + [-21, -2], + [39, -48], + [-1, -20], + [-25, -14], + [13, -6], + [-68, -16], + [-61, 19], + [-36, -5], + [0, 24], + [-21, 6], + [-27, -22], + [-17, -49], + [-58, -22], + [-12, -19], + [-5, -38], + [54, -55], + [-4, -24], + [27, -18], + [7, -30], + [-66, -7], + [-48, 13], + [-66, -14], + [55, -228], + [-10, -158], + [18, -65], + [-95, -12], + [-67, -61], + [18, -71], + [-44, -30], + [-16, -32], + [6, -68], + [-40, -52], + [-53, -36], + [-60, 7], + [-23, 35], + [39, 124], + [-62, 97], + [-50, 2], + [-54, 19], + [-75, -4], + [-20, 26], + [-7, 124], + [-40, 0] + ], + [ + [4720, 2348], + [-93, -12], + [-64, -40], + [-18, -24], + [8, -97], + [-110, -127], + [-101, -56], + [-19, -25], + [9, -29], + [-37, -43], + [-91, -59], + [-72, -153], + [6, -128], + [86, -100], + [10, -155], + [81, -106], + [37, -122], + [4, -107], + [58, -141], + [-9, -18], + [15, -20], + [84, 6], + [9, -24], + [-54, -45], + [-70, -24], + [25, -20], + [-63, -44], + [-97, -5], + [-56, 27], + [-57, -20], + [-12, -30], + [56, -107], + [-33, -48], + [-44, 38], + [-170, -141], + [-117, -60], + [-25, -35], + [-73, -34], + [-37, 0], + [-44, 17], + [-46, -5], + [-33, -27], + [-94, -15], + [-18, -14], + [-99, 8], + [-139, -60], + [-113, -124], + [-31, 1], + [-63, 69], + [22, 29], + [-12, 17], + [-88, 50], + [-31, -1], + [-77, -34], + [-138, 60], + [18, 84], + [-14, 19], + [-68, -37], + [-18, 14], + [25, 98], + [-41, 36], + [55, 76], + [-23, 11], + [-73, -8], + [9, 89], + [-56, 22], + [29, 14], + [8, 25], + [-43, 67], + [29, 36], + [-44, 14], + [-22, 55], + [-39, 20], + [14, 57], + [-17, 22], + [-62, 23], + [-5, 26], + [70, 60], + [-85, 17], + [4, 19], + [-59, 8], + [-16, 15], + [31, 76], + [-13, 46], + [71, 32], + [-21, 19], + [-142, 3], + [-37, 16], + [-12, 23], + [81, 33], + [-16, 45], + [-17, 26], + [-125, -14], + [-36, 20], + [81, 63], + [-52, 70], + [-53, 3], + [-8, 22], + [24, 35], + [-56, 24], + [-158, -12], + [-58, 110], + [-30, -2], + [34, -105], + [-20, -17], + [-50, 38], + [-27, -11], + [5, -29], + [41, -21], + [-52, -40], + [14, -76], + [-52, -8], + [-25, -17], + [-1, -41], + [-19, -22], + [20, -49], + [-47, -41], + [2, -61], + [29, -69], + [-4, -44], + [47, -49], + [42, -169], + [28, -12], + [11, -21], + [-6, -62], + [97, -140], + [-49, -37], + [-140, -10], + [-148, 64], + [-112, 130], + [-124, 280], + [-47, 44], + [-1, 305], + [-7, 70], + [-22, 37], + [38, 36], + [-21, 20], + [-39, -1], + [-32, 85] + ], + [ + [1075, 1668], + [44, 14], + [113, 0], + [65, 25], + [47, 44], + [103, 44], + [65, 119], + [38, 6], + [28, 57], + [-11, 88], + [57, 13], + [150, 88], + [-10, 69], + [-169, 44], + [-66, 38], + [17, 132], + [-9, 19], + [-38, 13], + [-19, 44], + [37, 120], + [38, 18], + [18, 32], + [-56, 25], + [9, 82], + [-19, 12], + [-19, 76], + [27, 19], + [104, 6], + [19, 13], + [-29, 50], + [19, 25], + [-10, 63], + [-19, 19], + [28, 19], + [-10, 119], + [56, 19], + [160, 94], + [47, 51], + [0, 19], + [-19, 6], + [75, 44], + [19, 31], + [56, 26], + [37, 87], + [198, 101], + [84, 81], + [9, 45], + [76, -20], + [37, 6], + [0, 13], + [76, 32], + [-10, 12], + [19, 69], + [94, 0], + [94, 44], + [66, 81], + [-29, 51], + [57, 0], + [47, -19], + [66, 12], + [9, 19], + [228, 16], + [244, -18], + [132, -25], + [28, 19], + [66, -7], + [38, 38], + [28, -7], + [47, -88], + [113, -57], + [10, -44], + [19, -7], + [-19, -69], + [-56, -38], + [-19, -31], + [66, -38], + [57, -57], + [9, -38], + [85, 63], + [94, 12], + [28, 31] + ], + [ + [1075, 1668], + [28, 24], + [-9, 25], + [-88, 18], + [-12, 31], + [8, 25], + [91, 55], + [-12, 27], + [-28, 11], + [-65, 0], + [-49, 21], + [37, 100], + [28, 28], + [63, 18], + [20, 56], + [-41, -12], + [-43, -38], + [-30, 1], + [-52, 100], + [36, 15], + [-4, 33], + [-26, 7], + [-17, -25], + [-27, 2], + [-37, 102], + [9, 75], + [-73, 62], + [11, 47], + [-87, 78], + [-49, 108], + [-14, 102], + [-47, 2], + [-31, 47], + [-86, -2], + [-30, 63], + [-45, -4], + [-36, 15], + [-17, 34], + [16, 61], + [44, 72], + [-9, 18], + [-49, -11], + [-40, 19], + [-9, 50], + [-133, 130], + [3, 43], + [-81, 12], + [-22, 17], + [0, 84], + [-17, 47], + [20, 86], + [-15, 98], + [26, 5], + [118, -45], + [83, -14], + [11, -31], + [38, -7], + [28, 21], + [7, 43], + [-6, 122], + [-19, 38], + [-310, -1], + [-7, 65], + [-28, 47], + [15, 90], + [83, 98], + [54, -8], + [162, 37], + [38, -2], + [55, -18], + [58, -46], + [31, 20], + [23, 132], + [-18, 79], + [43, 70], + [-1, 35], + [128, 152], + [-76, 133], + [-16, 65], + [-45, 45], + [24, 91], + [67, 46], + [-7, 34], + [-51, 28], + [24, 17], + [178, -16], + [52, 17], + [-5, 23], + [-70, 71], + [33, 55], + [93, 113], + [35, -2], + [7, -48], + [44, -2], + [28, 18], + [37, 81], + [138, 18], + [41, -12], + [43, -45], + [60, -6], + [88, 24], + [64, -37], + [82, -11], + [-39, 114], + [47, 73], + [60, 50], + [2, 46], + [54, 113], + [-133, 94], + [-22, 142], + [9, 22], + [37, 21], + [67, -9], + [201, 8], + [50, -13], + [21, -17], + [71, 0], + [133, -31], + [135, 4], + [42, -6], + [33, -52], + [343, -53], + [107, 1], + [59, 22], + [82, -29], + [96, 31], + [-17, 75], + [178, 6], + [56, 33], + [40, 57], + [-26, 157], + [42, 43], + [18, 103], + [14, 22], + [73, 35], + [8, 18], + [-47, 87], + [-15, 67], + [112, 69], + [28, -4], + [-29, -94], + [80, -79], + [15, -58], + [59, -101], + [50, -33], + [51, 11], + [38, -40], + [226, -62], + [39, 0], + [34, -18] + ] + ], + "transform": { + "scale": [0.00015129683107590106, 0.00019737185240588392], + "translate": [91.15250899999998, 22.944181] + }, + "objects": { + "tripura_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4]], + "type": "Polygon", + "properties": { + "cartodb_id": 144, + "censuscode": 291, + "dt_cen_cd": 3, + "st_cen_cd": 16, + "st_nm": "Tripura", + "district": "Dhalai" + } + }, + { + "arcs": [[-1, 5]], + "type": "Polygon", + "properties": { + "cartodb_id": 418, + "censuscode": 292, + "dt_cen_cd": 4, + "st_cen_cd": 16, + "st_nm": "Tripura", + "district": "North Tripura" + } + }, + { + "arcs": [[-3, 6, 7]], + "type": "Polygon", + "properties": { + "cartodb_id": 548, + "censuscode": 290, + "dt_cen_cd": 2, + "st_cen_cd": 16, + "st_nm": "Tripura", + "district": "South Tripura" + } + }, + { + "arcs": [[-4, -8, 8]], + "type": "Polygon", + "properties": { + "cartodb_id": 620, + "censuscode": 289, + "dt_cen_cd": 1, + "st_cen_cd": 16, + "st_nm": "Tripura", + "district": "West Tripura" + } + } + ] + } + } +} diff --git a/public/maps/uttarakhand.json b/public/maps/uttarakhand.json index 18ca7fc884..e7855ed670 100644 --- a/public/maps/uttarakhand.json +++ b/public/maps/uttarakhand.json @@ -1 +1,3111 @@ -{"type":"Topology","arcs":[[[16599,5344],[-59,18],[-121,62],[-93,-4],[-49,50],[-92,-12],[-8,54],[-33,8],[-56,-8],[-8,24],[-28,9],[4,41],[-81,-24],[-8,45],[-32,25],[-21,46],[-44,0],[-40,53],[32,79],[-32,38],[-65,37],[-36,54],[-36,16],[-45,-37],[-93,13],[-42,-18]],[[15513,5913],[-9,19],[-29,8],[-24,74],[-58,39],[-141,44],[-90,3],[-36,15],[-43,85],[-74,307],[-30,66],[-14,65],[-102,201],[-48,65],[17,29],[-1,31],[-23,22],[5,32],[-18,49],[-69,43],[-18,-16],[-49,58],[-73,45],[-28,-13],[-34,3],[-72,17],[-29,27]],[[14423,7231],[-18,33],[4,71],[-97,121],[-52,47],[-230,81],[-70,164],[19,71],[51,-5],[51,-23],[92,-76],[93,3],[26,29],[76,18],[41,123],[36,6],[26,37],[18,3],[24,-57],[17,11],[106,-18],[19,-162],[67,-24],[115,-3],[107,-31],[55,22],[105,103],[53,-4],[21,8],[24,44],[81,12],[29,54],[-46,107],[-47,22],[-16,26],[-8,118],[-18,13],[-111,23],[-44,58],[-64,-7],[-36,62],[144,5],[78,14],[-19,83],[2,84],[24,70],[22,29],[124,60],[91,5],[35,28],[65,1],[57,-25],[37,-58],[51,-25],[51,76],[89,45],[112,-40],[82,5],[35,-28],[43,30],[18,44],[1,26],[-103,231],[-287,189],[-30,37],[-109,246],[-21,100],[0,39],[87,265],[-16,159],[14,80],[-2,144],[39,76],[44,40],[45,115],[5,124],[26,119],[7,147],[38,115],[6,74],[-12,20],[-18,4],[-64,-10],[-98,17],[-27,27],[-48,107],[-3,101],[-10,24],[-29,0],[-24,18],[25,90],[-114,70],[-42,39],[-93,136],[-92,20],[-132,-6]],[[15026,11697],[-16,27],[11,54],[41,177],[25,20],[0,20],[-40,30],[1,17],[15,18],[89,40],[27,55],[75,86],[49,107],[-29,95],[22,40],[0,133],[-52,28],[-29,88],[-60,65],[2,37],[41,39],[-2,19],[-23,74],[-26,14],[8,46],[-18,36],[-8,73],[-21,65],[-56,63],[-6,65],[73,82],[44,141],[68,118],[29,35],[57,14],[13,72],[-76,93],[21,19],[11,33],[-3,24],[-19,20],[20,37],[-3,18],[-78,41],[-19,34],[-13,121],[-17,19],[-24,-1],[-50,96],[-44,19],[-44,42],[-46,142],[5,23],[58,27],[56,56],[114,42],[56,43],[29,9],[35,1],[172,-51],[97,8],[144,-33],[7,19],[-9,65],[-37,65],[-51,148],[5,61],[71,108]],[[15698,15138],[103,-89],[29,-4],[33,13],[80,96],[77,20],[-4,64],[11,41],[33,15],[78,-3],[63,-41],[108,-150],[7,-119],[28,-48],[42,-27],[61,-18],[23,47],[44,22],[31,-13],[32,-53],[57,-126],[0,-22],[-40,-110],[-45,-58],[-24,-127],[-61,-43],[-68,-8],[-36,-18],[-3,-13],[-62,-46],[-14,-72],[16,-33],[32,-29],[75,-42],[53,-76],[-7,-61],[-54,-67],[-4,-32],[6,-31],[78,-32],[1,-41],[-36,-48],[-3,-36],[31,-110],[30,-24],[87,-47],[28,-34],[37,-18],[47,23],[33,48],[24,-7],[-1,-43],[23,-13],[12,27],[32,26],[65,5],[97,-36],[33,2],[42,-17],[61,-98],[327,-198],[81,-24],[64,46],[56,9],[36,-34],[20,-56],[38,-55],[49,-41],[207,-86],[204,-34],[50,-56],[49,-93],[89,-88],[40,-17],[26,50],[28,21],[57,-5],[47,9],[23,19],[68,156],[64,8],[47,-18],[276,-199],[59,-69],[67,-37],[73,3],[32,-17],[211,-183],[233,-147],[120,-137],[119,-264],[220,-169],[214,-93],[153,-32],[288,-108],[148,-26],[199,-73],[133,-28],[106,-57],[30,-26],[23,-45],[-6,-139],[61,-166],[1,-51],[-94,-6],[-215,-80],[-46,15],[-10,17],[-24,-2],[-25,-13],[-35,-44],[-47,15],[-31,-5],[-134,-57],[-67,23],[-34,46],[9,156],[-25,57],[-32,24],[-61,-19],[-93,-154],[-30,-77],[-94,-90],[61,-205],[-1,-56],[-18,-41],[-145,-98],[-35,-86],[-26,-30],[-54,-14],[-52,6],[-83,-41],[-49,-69],[-25,-60],[-62,-76],[-52,-42],[-72,-38],[-42,-54],[-7,-116],[-106,-218],[-57,-36],[-64,26],[-23,-9],[-179,-180],[-37,-46],[-10,-39],[-20,-18],[-141,-16],[-106,6],[-41,16],[-9,18],[-30,-1],[-74,-46],[-57,1],[-47,-30],[-131,-145],[-42,-77],[11,-206],[-21,-59],[-53,-76],[-10,-40],[7,-41],[-34,-51],[-8,-33],[-80,-39],[-37,-61],[-68,-71],[-88,-49],[-20,-23],[-43,-58],[-29,-119],[-11,-9],[-30,3],[0,-11],[-121,54],[-101,-24],[-19,4],[-36,18],[-22,34],[-39,-16],[-18,-36],[-49,-17],[-37,-32],[-54,-14],[-49,-218],[-22,-17],[-32,-5],[-13,-34],[-26,-27],[-56,13],[-26,-9],[-23,-45],[-1,-112],[15,-50],[43,-17],[1,-86],[68,-152],[26,-123],[161,-140],[20,-65],[-1,-72],[-65,-112],[3,-128],[-37,-63],[-23,-20],[-40,-115],[-74,-1],[-74,-63],[-43,-17],[-55,-49],[-42,-17],[-12,-23],[-6,-72],[58,-45],[-2,-45],[-24,-62],[-50,-36],[-69,-28],[-102,-109],[-16,-43],[4,-46],[-41,13],[-18,33],[-24,-8],[-30,-72],[-37,-49],[5,-18],[56,-49],[13,-51],[-6,-20],[-18,-14],[-36,14],[-38,-19],[-25,17],[-23,53],[-29,-8],[-33,-43],[-64,-2],[-28,-26],[-53,-5],[-3,-23]],[[9057,15287],[-30,-87],[4,-36],[-35,-56],[19,-107],[-31,-31],[-20,-74],[-57,-23],[-38,-3],[-37,-42],[-246,-61],[-68,-90],[-96,-23],[-29,-40],[-72,-168],[5,-41],[-51,-249],[18,-60],[-6,-123],[-33,-32],[-3,-48],[-95,-82],[-5,-20],[28,-98],[-9,-21],[-52,-16],[-51,-32],[-8,-34],[-48,-47],[-8,-93],[-26,-26],[29,-102],[-1,-67],[37,-93],[-17,-52],[-47,-77],[-45,-38],[-56,-14],[-19,9],[-41,-31],[-59,-15],[7,-24],[104,-91],[44,-75],[-5,-33],[-21,-29],[15,-97],[-5,-41],[-21,-34],[-167,-187],[130,-64],[-5,-67],[20,-51],[-14,-40],[12,-26],[3,-77],[59,-12],[61,-51],[7,-16],[-25,-92],[71,-69],[-7,-19],[-36,-16],[-7,-24],[7,-69],[-10,-22],[9,-31],[63,-62],[33,-52],[11,-49],[35,-30],[5,-30],[29,-5],[31,-32],[16,-50]],[[8207,11277],[-73,44],[-36,-56],[-79,-54],[-25,-5],[-60,22],[-20,-49],[-26,-23],[-94,15],[-29,-27],[-19,-58],[-52,-8],[-29,-49],[-36,1],[-95,63],[-103,-33],[-38,-66],[-55,-17],[-29,9],[-24,33],[-128,100],[-42,49],[-46,-7],[-34,-34],[-110,44],[-37,-16],[-21,-45],[14,-65],[-14,-42],[-28,-27],[-38,-5],[-48,-35],[-93,-2],[-17,-106],[-36,-33],[-99,-54],[-45,-217],[-15,-18],[-35,-4],[-12,-26],[-40,32],[-19,0],[-14,-83],[15,-45],[29,-38],[-4,-11],[-76,-28],[10,-98],[-39,-43],[49,-84],[8,-36],[-43,-84],[13,-17],[86,-12],[15,-39],[-31,-23],[-34,19],[-22,-90],[-23,9],[-43,56],[-75,1],[-52,61],[-162,31],[-46,-20],[-10,-37],[-45,-18],[-21,-55],[-17,-9],[-44,48],[-11,104],[-10,4],[-19,-17],[-40,-93],[-40,-42],[-11,2],[-40,81],[-50,-15],[-79,19],[-99,76],[-20,56],[-9,60],[19,114],[-27,20],[-57,14],[-15,69],[-25,44],[-28,36],[-44,20],[-60,-3],[-27,-13],[-5,-95],[-59,-5],[-63,-23],[-179,107],[-40,-3],[-23,-57],[-107,-23],[-23,-73]],[[4575,10227],[-90,56],[-79,31],[-180,131],[-9,34],[32,132],[-20,15],[-59,9],[-29,23],[-30,63],[5,47],[54,124],[58,41],[42,53],[49,36],[120,55],[57,91],[-129,208],[18,45],[-8,46],[24,77],[-6,13],[-82,63],[-40,-21],[-81,-9],[-46,72],[-59,-21],[-106,35],[-47,2],[-30,-30],[-37,-7],[-12,-15],[-30,5],[-21,-13],[-68,21],[-58,30],[-35,52],[-76,49],[-43,89],[-22,104],[18,110],[45,73],[86,67],[89,21],[95,73],[245,108],[68,60],[-12,48],[-43,29],[-32,41],[-139,72],[-108,37],[-148,-5],[-33,35],[-60,34],[-86,20],[-55,59],[-119,37],[-41,27],[-97,-16],[-47,-23],[-48,39],[-98,-3],[-53,19],[-45,-29],[-45,-63],[-36,-7],[-57,44],[-117,-62],[-73,-6],[-78,74],[-19,69],[-90,31],[-50,45],[-53,76],[1,40],[54,46],[121,-55],[20,6],[52,-22],[29,6],[17,18],[-33,219],[5,60],[33,54],[102,52],[8,57],[38,48],[7,61],[23,21],[-18,70],[7,95]],[[2732,13873],[82,-16],[122,-95],[35,26],[124,42],[-20,86],[43,56],[62,29],[224,54],[92,-47],[106,16],[-1,9],[48,-60],[43,-134],[23,-34],[-36,3],[-5,-11],[3,-84],[17,-15],[119,-27],[118,-53],[177,72],[35,51],[10,73],[36,36],[60,-16],[63,39],[49,-4],[30,-16],[129,-168],[-56,-52],[-23,-47],[66,-62],[-82,-25],[-4,-29],[19,-49],[53,28],[56,6],[35,24],[3,22],[-34,71],[7,5],[58,-6],[57,-85],[34,30],[36,-10],[13,-13],[0,-46],[24,-29],[15,-61],[33,-51],[37,-4],[1,-68],[46,-29],[72,-18],[39,-31],[54,-73],[15,-56],[55,-33],[18,-157],[37,-15],[10,6],[-11,96],[102,125],[-1,103],[104,90],[4,31],[60,88],[-21,149],[-72,41],[-8,68],[27,185],[31,40],[14,47],[110,-16],[111,109],[7,-37],[74,-62],[83,-144],[-34,-60],[-56,-59],[13,-52],[-18,-111],[-1,-160],[8,-13],[47,-18],[63,-12],[83,27],[55,-24],[32,7],[19,27],[-17,134],[35,66],[-15,44],[5,32],[48,48],[26,63],[95,97],[-8,51],[38,38],[32,73],[63,45],[7,17],[-9,46],[23,209],[-9,64],[-29,33],[-40,17],[30,49],[65,26],[20,-6],[20,-30],[69,32],[26,-20],[41,8],[40,-31],[164,50],[2,60],[48,49],[64,47],[37,-5],[97,35],[82,61],[40,52],[17,-5],[100,-106],[76,-39],[45,48],[85,26],[155,5],[30,12],[24,-19],[19,3],[3,24],[23,23],[72,16],[57,60],[63,-14],[18,12],[9,70],[25,50],[-6,92],[-21,89],[4,40],[30,68],[1,33],[-11,22],[41,114],[-57,143],[-5,54],[24,59],[37,41],[48,31],[16,60],[49,44],[77,-18],[20,-18],[90,7],[76,39],[16,-4],[92,-55],[27,-36],[21,-65],[38,-12],[144,3],[99,50],[51,-2],[98,-98],[14,-42],[0,-167],[94,-98]],[[7862,4757],[50,-67],[148,-50],[17,0],[26,33],[31,-39],[34,-19],[33,16],[48,2],[123,-25],[308,-203],[32,-39],[71,32],[41,1],[59,33],[32,-4],[24,-27],[6,-29],[71,-7],[4,-14],[-17,-45],[-56,-57],[2,-39],[44,-48],[0,-33],[48,-78],[45,-17],[33,-33],[67,-10],[72,8],[53,-34],[22,109],[49,35],[25,2],[30,-25],[-26,-72],[24,-14],[100,-11],[26,73],[69,51],[47,12],[44,-8],[93,-56],[19,4],[201,-80],[215,-66],[309,-53],[1,-24],[-79,-107],[-62,-53],[-28,-48],[-3,-41],[-16,-24],[36,-122],[103,-60],[69,-101],[58,-51],[44,-21],[39,-52],[155,-129],[151,-176],[223,-172],[176,-185],[32,-8],[919,8],[87,-18],[308,21],[50,74],[31,17],[20,61],[27,20],[57,-21],[171,-100],[56,-81],[-4,-30],[83,-85],[236,-57],[19,14],[-17,32],[6,15],[25,13],[56,-1],[11,17],[13,0],[33,-21],[14,-69],[45,14],[57,-28],[30,-4],[40,13],[22,-9],[16,-59],[-43,-1],[-19,-32],[16,-28],[47,-32],[1,-65],[6,-11],[35,7],[3,-46],[57,16],[32,37],[65,43],[8,0],[-5,-27],[15,-1],[57,101],[42,22],[36,-23],[24,-82],[52,-46],[-26,-72],[26,-27],[12,0],[23,28],[3,78],[42,20],[37,-31],[20,24],[-2,70],[36,7],[3,12],[-18,29],[6,40],[37,60],[30,21],[6,35],[37,-18],[29,16],[22,35],[24,7],[34,31],[54,0],[31,16],[90,11],[23,27],[5,26]],[[14881,2505],[10,-9],[175,122],[10,123],[18,24],[18,4],[27,-14],[63,-85],[32,-21],[34,-9],[53,13],[99,90],[33,-16],[40,-75],[16,-1],[50,77],[33,143],[-31,123],[13,16],[99,-47],[43,11],[110,-5],[85,23],[75,50],[22,3],[25,-16],[47,-78]],[[16080,2951],[-88,-107],[-79,-198],[-2,-53],[49,-46],[-1,-21],[-83,-157],[14,-6],[8,-27],[-20,-115],[64,-28],[0,-30],[-18,-14],[-49,1],[-29,-15],[-26,-125],[-116,-29],[-85,-140],[-54,-150],[-64,-110],[-21,-56],[-20,-109],[2,-427],[42,-117],[-152,-185],[-13,-46],[-39,-27],[65,-66],[26,-56],[-37,-102],[2,-43],[-36,-37],[-96,-151],[-67,-77],[-91,-72],[-127,-10],[-93,14],[-145,65],[-44,45],[-5,90],[-22,53],[-39,51],[-10,30],[12,12],[-40,52],[-40,13],[-64,87],[28,44],[30,22],[19,53],[-132,-39],[-79,-3],[-87,32],[-80,57],[36,92],[22,4],[66,-29],[68,-10],[27,14],[-2,86],[-92,29],[-31,36],[-9,38],[-29,8],[-48,-20],[-75,29],[-32,-13],[-72,-107],[17,-40],[1,-91],[-67,-25],[-24,-31],[-57,-11],[-41,23],[-13,-6],[-7,57],[25,57],[20,-9],[15,-33],[18,-4],[14,13],[26,96],[2,27],[-48,43],[3,28],[25,21],[-23,50],[84,25],[4,48],[-37,66],[-69,-11],[-6,52],[-101,104],[-91,-16],[-61,27],[-32,-26],[-27,-48],[-48,0],[-27,14],[-101,-32],[-34,-40],[-10,-36],[-106,-15],[-10,-9],[-13,-70],[-72,2],[-36,-26],[-5,-42],[-76,3],[-66,33],[-14,23],[-64,18],[-73,63],[-34,9],[-62,-30],[-71,14],[-98,-119],[-66,-6],[-76,-32],[-17,6],[-20,62],[22,64],[17,112],[-21,41],[-45,48],[-43,13],[-40,-41],[-79,-119],[-63,-53],[-98,-5],[-92,33],[-55,-16],[-50,-42],[-163,18],[-60,-46],[-78,4],[-32,47],[-12,92],[-53,77],[34,104],[-13,125],[15,32],[0,80],[-36,33],[-38,11],[-78,-9],[-22,35],[-17,93],[-68,116],[-42,-68],[11,-57],[-18,-7],[-278,44],[-15,-33],[-36,-6],[-125,85],[-32,59],[-58,68],[-155,129],[-10,50],[-210,163],[-40,-51],[-91,15],[13,-45],[-46,12],[-56,-27],[-18,10],[-10,24],[-36,17],[-23,33],[-2,40],[27,9],[10,66],[33,58],[-75,26],[-60,39],[-42,67],[-14,92],[14,66],[39,58],[5,56],[-11,96],[-52,32],[-19,38],[-81,33],[-25,-23],[-80,7],[-174,148],[-83,31],[-83,-11],[-77,119],[-42,9],[-25,-11],[-8,-25],[36,-48],[7,-61],[-14,-19],[-31,7],[-50,50],[-15,-3],[-3,-31],[15,-28],[-26,-94],[118,-24],[20,-20],[-7,-35],[-23,-28],[-56,-27],[-65,20],[-38,-30],[-13,47],[-24,18],[5,28],[-17,32],[-57,27],[-5,70],[-22,57],[-77,79],[-27,9],[-11,-7],[1,-31],[-58,-14],[-16,-50],[-28,-23],[-129,54],[-18,-31],[-39,-28],[-88,12],[-12,31],[-21,14],[67,62],[-15,17],[7,22],[-13,28],[21,22],[0,21],[-27,17],[-14,58],[-29,38],[29,49],[-35,16],[-35,40],[27,19],[0,14],[-48,34],[-10,43],[-79,23],[21,49],[-16,40],[-42,64],[-61,43],[-11,43],[-12,7],[-51,-58],[-52,14],[-17,33],[-109,-61],[-87,40],[-77,55],[-9,55],[-27,-12],[-142,112],[50,-5],[-8,29],[-28,25],[-184,129],[-24,13],[-42,-4],[-43,37],[2,14],[35,-6],[8,7],[39,-14],[8,10],[-18,81],[16,31],[20,1],[20,-19],[42,6],[1,24],[34,55],[64,46],[50,-29],[-10,-18],[13,-16],[82,8],[21,31],[13,-26],[-20,-79],[46,-20],[16,41],[41,25],[-32,37],[-16,63],[44,26],[60,128],[13,70],[17,14],[21,5],[-25,-37],[5,-58],[14,-17],[91,-14]],[[11384,17238],[-112,-52],[-74,-133],[-103,-105],[-78,-34],[-110,-12],[-60,-32],[-48,-45],[-12,-60],[106,-60],[14,-30],[-42,-87],[33,-105],[-40,-55],[-49,-2],[-116,58],[-68,-23],[-93,-57],[-38,-40],[7,-29],[74,-43],[46,-68],[-18,-69],[11,-62],[-71,-40],[-10,-45],[41,-197],[-23,-26],[-73,-38],[-22,-90],[-19,-18],[-19,-48],[-66,-52],[13,-98],[-112,-59],[3,-43],[27,-42],[59,-27],[6,-56],[76,-88],[11,-27],[40,-10],[21,-67],[30,-37],[132,-98],[-60,-110],[-9,-50],[8,-23],[-12,-4]],[[10585,14700],[-123,-17],[-63,67],[-198,48],[-107,-32],[-20,58],[-48,43],[-136,57],[-38,-3],[-132,-49],[-32,15],[-23,32],[-7,74],[-17,34],[-51,20],[-171,19],[-73,68],[-78,105],[-134,40],[-77,8]],[[2732,13873],[6,15],[-16,39],[23,67],[-27,96],[1,30],[41,31],[23,1],[95,-60],[26,20],[21,57],[34,46],[80,31],[22,22],[18,39],[-2,87],[26,51],[6,81],[11,25],[36,28],[33,65],[-55,91],[24,42],[-68,31],[-8,62],[-30,58],[-45,28],[-49,85],[-62,28],[-20,32],[-51,37],[-11,25],[7,48],[-12,51],[-49,75],[-131,100],[-66,157],[6,111],[-29,43],[-2,58],[-42,72],[18,68],[72,21],[49,38],[49,-5],[90,54],[-23,105],[-74,132],[-42,69],[-53,23],[-16,50],[-74,42],[-37,40],[-59,-13],[-41,8],[-65,-27],[-38,9],[-60,-19],[-72,-53],[-51,-60],[-44,-14],[-35,15],[-39,-48],[-66,-2],[-26,-25],[-37,8],[-6,63],[-22,12],[-76,-49],[-52,-58],[-18,-49],[-44,-4],[-98,19],[-42,-40],[-40,-65]],[[1424,16123],[-103,-5],[-45,-36],[-134,14],[11,46],[-5,39],[-45,20],[-16,21],[-21,72],[8,74],[11,29],[109,97],[62,1],[90,-35],[149,-125],[64,-17],[28,5],[14,24],[-3,24],[-35,17],[-54,-10],[-50,64],[14,46],[46,54],[9,75],[38,37],[-21,24],[-1,22],[91,0],[4,21],[-41,56],[18,103],[-40,29],[-63,148],[-1,34],[-26,24],[38,2],[18,-7],[-1,-12],[32,8],[30,30],[33,69],[39,19],[40,3],[33,28],[47,101],[8,115],[39,39],[130,61],[11,93],[57,84],[-13,42],[33,19],[58,11],[45,-24],[33,8],[123,78],[30,0],[42,64],[54,20],[91,-100],[99,21],[45,-7],[95,-73],[40,-16],[15,26],[-2,95],[66,63],[19,38],[149,55],[135,0],[28,-16],[48,1],[137,108],[25,4],[33,57],[98,15],[14,46],[41,12],[26,55],[47,-10],[31,12],[69,-1],[100,-70],[79,26],[41,84],[72,10],[88,-27],[31,35],[0,30],[32,-4],[34,24],[10,29],[120,151],[57,-34],[64,-18],[31,13],[31,162],[115,-23],[61,23],[59,-6],[125,25],[81,-21],[26,-64],[49,16],[12,-52],[60,-88],[-10,-68],[38,-37],[105,22],[31,66],[48,-29],[28,-46],[78,-40],[81,-119],[58,-50],[4,-67],[18,-59],[42,10],[232,-9],[143,20],[82,86],[37,65],[35,16],[29,31],[108,3],[71,16],[33,-4],[102,-77],[70,-25],[38,0],[22,-98],[46,-43],[14,-58],[76,63],[101,-1],[121,-50],[74,-10],[80,15],[231,-17],[83,19],[112,52],[39,4],[50,-42],[-32,-75],[-3,-47],[18,-31],[70,-64],[-10,-41],[53,-122],[37,-26],[27,-53],[54,-41],[89,-33],[63,-101],[57,-37],[54,-25],[66,16],[38,-3],[43,71],[56,6],[48,-63],[135,-18],[64,24],[82,51],[157,12],[36,-13],[-46,161],[-13,24],[-56,37],[-14,37],[12,29],[-1,112],[-18,58],[-17,31],[-36,27],[-32,3],[-92,52],[-28,53],[-36,36],[-16,65],[12,56],[-97,6],[-24,15],[-36,64],[-25,118],[7,66],[38,11],[23,43],[-5,150],[56,143],[-11,136],[14,46],[31,45],[42,34],[150,69],[121,36],[57,35],[22,42],[9,86],[76,155],[170,200],[-1,121],[19,93],[51,79],[51,28],[21,2],[58,-62],[63,-40],[80,-22],[68,-54],[184,-71],[118,-197],[92,-89],[66,-157],[87,-127],[41,-47],[108,-66],[59,-53],[-1,-131],[171,-181],[3,-36],[-12,-31],[-66,-70],[-20,-48],[0,-110],[59,-52],[121,-12],[62,-106],[97,-257],[-5,-52],[-35,-55],[18,-79],[69,-94],[22,-58],[56,-67],[64,-7],[26,-28],[12,-40],[104,-8],[75,-50],[41,-12],[103,4],[30,-17],[48,-143],[16,-139]],[[14146,5283],[32,-10],[-1,-23],[-29,-59],[-100,-121],[-12,-33],[13,-22],[36,-13],[52,-89],[43,-28],[4,-71],[13,-9],[84,12],[83,-24],[30,8],[55,-78],[6,-30],[-11,-38],[-80,9],[-59,-14],[-39,-21],[-19,-91],[-22,-31],[-4,-73],[-36,-31],[-164,79],[5,90],[-33,4],[-40,30],[-137,-48],[40,-58],[15,-89],[65,-51],[-24,-131],[17,-30],[-18,-35],[11,-40],[55,-58],[19,-5],[121,51],[49,7],[29,-11],[13,-29],[28,-17],[14,-49],[40,0],[43,-43],[46,-23],[52,13],[28,-26],[79,-155],[55,-57],[8,-83],[-125,-108],[-18,-113],[-57,-42],[-67,-6],[-14,-18],[-4,-84],[20,-38],[84,-33],[37,-110],[89,-58],[45,39],[294,-72],[46,-28],[13,-29],[-61,-43],[-34,-49],[-23,-75],[-10,-183],[13,-32],[52,-52]],[[7862,4757],[47,24],[-28,37],[5,35],[48,-10],[103,41],[18,15],[3,46],[15,5],[47,-16],[16,45],[90,76],[58,106],[25,168],[42,38],[98,32],[-20,29],[-148,-29]],[[8281,5399],[25,51],[166,106],[81,205],[-13,54],[27,123],[58,91],[17,18],[127,43],[54,30],[28,-2],[27,50],[-18,70],[40,48],[6,84],[26,11],[50,-6],[43,17],[54,-7]],[[9079,6385],[78,-40],[194,-16],[123,-119],[33,-23],[33,1],[7,-79],[43,-10],[151,32],[27,-94],[46,-21],[163,-29],[138,-67],[123,-3],[124,109],[71,119],[91,85],[25,49],[76,47],[25,56],[68,45],[52,57],[118,37],[49,35],[34,-1],[80,-56],[0,-54],[26,12],[30,-8],[38,-39],[62,-11],[75,-97],[23,-10],[55,-83],[32,-15],[196,-183],[52,-105],[36,-28],[54,4],[35,-58],[59,-10],[16,-41],[-11,-54],[105,39],[33,-2],[84,68],[52,82],[42,188],[46,-10],[49,40],[24,-2],[-1,-76],[57,-6],[121,17],[84,56],[149,44],[45,-11],[82,-81],[65,33],[41,-25],[68,-18],[23,-26],[3,-33],[66,-37],[28,-38],[10,-41],[-28,-143],[69,-170],[25,-32],[82,-55],[64,-28],[84,28],[-21,-102],[3,-54],[31,-40],[63,-27],[121,24],[18,18],[19,81],[44,16],[64,-3],[66,-81],[74,-5],[118,-79],[54,-5],[51,17],[40,43]],[[15026,11697],[-52,-42],[-60,-107],[-131,-38],[-44,44],[-80,10],[-49,-28],[-45,-47],[-86,-40],[-34,-38],[-167,-51],[-97,99],[-104,44],[-256,-36],[-1,-33],[49,-113],[43,-139],[23,-28],[-14,-38],[24,-38],[5,-49],[-36,-49],[-77,-45],[-30,-115],[-96,-115],[-2,-50],[26,-88],[-15,-38],[-119,-133],[3,-21],[47,-42],[21,-58],[31,-39],[-8,-135],[53,-134],[121,-16],[66,-42],[70,-100],[-36,-49],[-32,-20],[-20,-35],[-14,-84],[9,-56],[-45,-34],[-98,-24],[-46,-55],[-47,-26],[-57,32],[-86,-15],[-346,-20],[-67,31],[-137,-17],[-96,71],[-82,24],[-153,11],[-70,-28],[-34,-48],[-58,-17],[-177,-21],[-20,-40],[-62,-18],[-56,26],[0,17],[-73,98],[-110,8],[-70,50],[-42,9],[-77,-165],[-30,-134]],[[11773,9280],[-32,-75],[-97,-62],[8,-50],[-80,-42],[-47,-105],[-29,-16],[-14,4],[-38,48],[-22,7],[-152,-96],[-89,-18],[-27,29],[-19,53],[-48,27],[-73,148],[-50,62],[-34,10],[-26,-16],[-12,-52],[41,-157],[-41,-29],[-12,-60],[-46,-21],[-43,26],[-163,-22],[9,180],[-97,67],[-53,15],[-53,-5],[-102,101],[-62,13]],[[10270,9244],[-38,45],[23,80],[-8,51],[-38,54],[-14,130],[-72,58],[-77,9],[-22,32],[18,113],[72,70],[3,15],[-47,105],[-54,73],[-34,25],[-103,3],[-47,16],[-19,26],[-19,80],[-72,37],[-23,28],[-2,196],[49,67],[2,39],[-15,18],[-89,44],[-26,74],[-20,25],[-143,114],[-3,26],[20,68],[-43,27],[-82,21]],[[9347,11013],[6,50],[47,57],[65,125],[44,39],[17,78],[-21,61],[34,30],[3,32],[25,33],[32,17],[122,-30],[52,47],[40,7],[52,-10],[35,7],[3,14],[-49,18],[-71,1],[-20,22],[-1,67],[27,98],[18,0],[19,-23],[22,24],[0,27],[-11,21],[-35,8],[-16,32],[-59,25],[-8,38],[-25,31],[-61,-15],[-12,19],[4,30],[-41,20],[-27,29],[-3,25],[-30,26],[-11,75],[61,43],[41,0],[107,-37],[13,10],[48,-15],[50,35],[33,4],[16,33],[2,146],[54,53],[10,40],[-3,48],[-44,64],[-6,68],[43,31],[37,70],[45,34],[2,37],[56,73],[108,57],[29,0],[27,26],[21,58],[-14,74],[30,109],[98,105],[25,144],[53,47],[62,21],[47,-24],[135,-16],[31,51],[15,80],[15,24],[4,69],[56,26],[114,-12],[31,24],[17,55],[30,17],[11,25],[-4,91],[9,18],[43,7],[-8,124],[-26,51],[-66,38],[-48,13],[-65,82],[-53,11],[-38,24],[-12,26],[6,39],[-28,58],[-16,183],[-24,28],[-108,42]],[[11384,17238],[46,4],[41,-24],[14,-41],[2,-109],[26,-138],[54,-12],[274,40],[87,-24],[47,22],[86,-14],[9,-84],[17,-30],[67,-53],[26,-42],[14,-44],[-20,-67],[113,-29],[-40,-98],[11,-34],[128,-105],[138,-33],[48,-64],[37,-20],[163,139],[53,25],[114,17],[43,22],[13,100],[69,19],[53,-19],[137,-20],[130,30],[67,38],[46,78],[36,32],[47,1],[91,-95],[199,-65],[79,-47],[36,-2],[79,40],[43,8],[66,-23],[68,-5],[73,-104],[61,-182],[7,-77],[18,-30],[124,-33],[108,-216],[38,-10],[83,16],[158,-54],[216,-133],[144,-142],[44,-30],[119,1],[39,-81],[86,-60],[33,-38],[28,-143],[78,-58]],[[4575,10227],[-13,-38],[-31,-26],[-73,-29],[-7,-139],[-68,-123],[-70,-68],[-114,-82],[-16,-44],[-10,-97],[-113,-50],[3,-71],[30,-105],[-15,-41],[-99,-84],[-139,-228]],[[3840,9002],[-85,-14],[12,76],[54,108],[-18,101],[-11,9],[-12,-20],[-98,-226],[-49,31],[-48,52],[-115,291],[-80,34],[-46,50],[-69,5],[-48,32],[-1,24],[24,38],[-10,34],[-109,65],[-52,53],[3,207],[-220,256],[-51,135],[-13,67],[-67,115],[-51,136],[-145,233],[-62,58],[-14,54],[-92,85],[17,76],[-64,29],[-29,-27]],[[2291,11169],[-38,12],[-53,55],[-128,72],[-139,59],[-15,2],[-37,-28],[-28,6],[-84,54],[-219,87],[-379,248],[-118,39],[-134,65],[-121,141],[-111,201],[-10,-13],[-48,0],[-17,68],[-85,35],[-12,29],[-71,65],[-23,0],[-53,-45],[-47,8],[-33,33],[-40,-14],[-64,8],[-38,-11],[-55,32],[-29,-15],[-36,-40],[-25,-2],[-1,91],[113,97],[142,52],[51,7],[29,-16],[86,-1],[60,118],[40,1],[41,-21],[52,-6],[109,21],[20,44],[180,143],[64,3],[209,150],[52,14],[26,30],[128,13],[69,38],[71,159],[10,35],[-34,83],[-5,83],[-16,22],[-32,3],[-18,-22],[-29,-7],[-26,9],[-51,-29],[-45,36],[-57,5],[-52,52],[-61,143],[-88,63],[17,64],[16,7],[48,-7],[45,-43],[29,-4],[18,30],[-4,113],[97,-19],[61,11],[-34,50],[-33,17],[27,66],[-4,26],[-41,76],[67,89],[-12,14],[-47,-10],[-23,7],[-72,79],[-110,50],[-19,22],[1,85],[21,54],[21,16],[4,26],[-42,44],[-22,57],[-53,45],[-11,55],[-46,9],[-36,44],[-59,-4],[-38,25],[-7,22],[16,47],[-29,79],[63,35],[38,41],[68,111],[25,102],[29,20],[62,95],[65,42],[-2,47],[-79,106],[64,98],[-5,74],[23,50],[62,9],[36,-34],[15,-70],[15,-22],[52,-31],[99,-18],[-3,47],[-34,52],[12,155],[97,141],[-37,57],[4,24],[-29,17]],[[15513,5913],[5,-32],[-47,-35],[-144,-41],[-62,-2],[-29,-62],[-123,-75],[-22,4],[-25,-12],[-57,16],[-71,-30],[-21,-27],[-94,-36],[-100,17],[-143,-23],[-40,77],[-45,31],[-132,-52],[-61,-65],[-62,-124],[3,-11],[-36,-42],[-47,37],[-18,-14],[-15,-62],[4,-41],[15,-26]],[[9079,6385],[54,13],[102,-1],[13,41],[-3,83],[43,61],[3,42],[65,-17],[41,22],[27,36],[-77,104],[42,137],[76,105],[14,0],[23,-86],[24,13],[20,30],[-4,45],[40,72],[-8,61],[-44,23],[-9,25],[48,63],[38,22],[9,72],[-33,14],[6,31],[-40,40],[-6,38],[22,112],[-1,122],[30,-1],[25,21],[37,78],[-48,164],[9,39],[-62,155],[-57,49],[-5,66],[-104,80],[-102,35],[80,173],[37,25],[115,12],[79,37],[47,70],[136,34],[91,49],[53,-62],[45,9],[75,91],[8,145],[18,26],[68,-49],[138,69],[27,80],[4,52],[-38,89]],[[11773,9280],[112,-71],[18,-25],[-25,-74],[5,-21],[35,-53],[78,-61],[37,-59],[-51,2],[-6,-35],[16,-147],[-14,-54],[-50,-88],[65,-51],[20,-46],[-2,-26],[134,-68],[93,7],[34,-46],[52,-6],[74,-102],[321,-2],[74,-102],[-9,-16],[91,-69],[24,31],[56,36],[93,15],[45,-65],[52,54],[100,-50],[88,-90],[-173,-201],[-26,-65],[133,-160],[42,21],[6,-61],[-39,-54],[18,-20],[49,29],[53,-57],[61,-101],[-10,-92],[56,-91],[39,4],[17,-28],[54,20],[118,3],[61,19],[81,-35],[132,129],[55,-40],[89,-28],[117,-82],[33,47],[124,76]],[[16599,5344],[15,-252],[73,-53],[48,-25],[31,-3],[26,-21],[21,-148],[-33,-33],[-2,-32],[51,-46],[11,-108],[58,-25],[15,-49],[-2,-50],[54,-20],[42,9],[27,-20],[17,-167],[-50,-60],[-20,-61],[-30,-219],[6,-86],[-41,-45],[3,-100],[21,-45],[10,-59],[-5,-63],[-24,-26],[-41,7],[-15,9],[-19,61],[-18,15],[-68,4],[-48,19],[-20,58],[-24,10],[-22,-5],[-23,-122],[70,-79],[19,-46],[6,-70],[-14,-80],[67,-114],[-4,-34],[-65,-31],[-65,-47],[-77,-109],[-59,10],[-70,-6],[-58,29],[-24,36],[-101,36],[-30,-10],[-41,-49],[-77,-50],[-20,-28]],[[8281,5399],[-128,28],[-60,-3],[-222,65],[-116,10],[-89,44],[-72,1],[-122,56],[-166,155],[-47,6],[-31,21],[-207,1],[-334,284],[-112,38],[-40,36],[-61,29],[-179,137],[-285,316],[-20,3],[-12,39],[-48,69],[-38,84],[-26,192],[1,101],[-44,178],[-63,70],[-16,120],[-87,52],[-133,27],[-125,44],[-48,25],[-73,79],[-26,7],[-62,-9],[-77,12],[-216,91],[-121,72]],[[4776,7879],[-57,48],[-13,36],[-41,135],[-33,233],[-18,31],[-206,170],[-35,70],[-45,7],[-9,23],[6,64],[27,88],[-10,20],[-140,12],[-139,84],[-223,102]],[[8207,11277],[46,-64],[18,-8],[58,106],[21,15],[26,7],[33,-53],[14,3],[16,12],[16,84],[112,18],[133,66],[37,49],[114,94],[33,-15],[81,17],[52,16],[74,46],[33,5],[86,-71],[105,-18],[107,1],[-74,-96],[-195,-188],[-44,-71],[-32,-125],[17,-70],[49,-45],[49,-4],[100,33],[55,-8]],[[4776,7879],[-180,-281],[-131,-111],[-107,-113],[-208,-166],[-63,99],[-172,-55],[-71,-135],[-101,-88],[-167,-25],[-32,-128],[-119,-97],[-49,-87],[-63,-19],[-39,-43],[-12,-84],[-41,-83],[-23,-17],[-119,15],[-53,-25],[-43,-37],[-46,-89],[5,-22],[33,-43],[-34,-49],[-2,-92],[-27,-6],[-180,32],[-59,-8],[-38,-67],[-57,61],[-11,29],[-2,41],[13,32],[12,4],[21,81],[-2,60],[-9,7],[-33,-42],[-27,-1],[-33,19],[-25,-14],[-10,17],[-53,-10],[-37,42],[37,87],[-22,78],[14,21],[24,6],[41,-50],[49,26],[28,-18],[13,22],[-22,131],[23,73],[-10,16],[-22,2],[-26,33],[-13,47],[46,124],[-4,23],[-62,-40],[-65,113],[-39,11],[-11,17],[8,14],[-12,1],[1,15],[19,14],[-32,33],[7,14],[61,25],[-70,67],[-64,-11],[-20,11],[-15,-14],[-29,9],[-59,-61],[-17,-2],[10,-10],[-8,-7],[-12,8],[-10,-11],[34,-26],[-64,-8],[-81,21],[-60,-2],[-21,11],[-24,-23],[-1,-35],[-23,-4],[-48,-39],[-28,6],[-33,-34],[-10,-26],[-26,4],[-54,-68],[-33,-19],[-48,-2],[-178,94],[-21,29],[51,87],[-15,20],[-77,57],[-80,12],[-67,25],[-7,18],[71,137],[-46,67],[-6,65],[31,80],[-14,49],[12,39],[-29,22],[-1,18],[26,30],[-73,88],[-23,51],[-44,37],[-6,14],[17,36],[-10,60],[-21,41],[-61,54],[11,31],[-5,82],[-104,25],[-45,53],[-25,58],[6,132],[50,-13],[40,48],[16,60],[81,78],[-26,109],[-61,32],[-9,15],[71,78],[3,45],[67,52],[30,63],[-6,31],[-81,91],[-6,23],[67,49],[15,86],[37,59],[144,89],[10,42],[-101,118],[48,108],[62,97],[70,172],[34,14],[13,-6],[87,-79],[32,-4],[42,29],[34,81],[82,55],[105,155],[57,119],[6,38],[190,227],[45,196],[93,85],[70,110],[14,52]]],"transform":{"scale":[0.00016088479006855263,0.0001371842602726098],"translate":[77.57605365881275,28.709556]},"objects":{"uttarakhand_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4]],"type":"Polygon","properties":{"cartodb_id":444,"censuscode":62,"dt_cen_cd":7,"st_cen_cd":5,"st_nm":"Uttarakhand","district":"Pithoragarh"}},{"arcs":[[5,6,7,8]],"type":"Polygon","properties":{"cartodb_id":561,"censuscode":59,"dt_cen_cd":4,"st_cen_cd":5,"st_nm":"Uttarakhand","district":"Tehri Garhwal"}},{"arcs":[[9,10,11]],"type":"Polygon","properties":{"cartodb_id":586,"censuscode":67,"dt_cen_cd":12,"st_cen_cd":5,"st_nm":"Uttarakhand","district":"Udham Singh Nagar"}},{"arcs":[[12,13,-9,14,15]],"type":"Polygon","properties":{"cartodb_id":597,"censuscode":56,"dt_cen_cd":1,"st_cen_cd":5,"st_nm":"Uttarakhand","district":"Uttarkashi"}},{"arcs":[[16,-10,17,18,19]],"type":"Polygon","properties":{"cartodb_id":394,"censuscode":66,"dt_cen_cd":11,"st_cen_cd":5,"st_nm":"Uttarakhand","district":"Nainital"}},{"arcs":[[-4,20,21,22,23,-13,24]],"type":"Polygon","properties":{"cartodb_id":101,"censuscode":57,"dt_cen_cd":2,"st_cen_cd":5,"st_nm":"Uttarakhand","district":"Chamoli"}},{"arcs":[[-8,25,26,27,-15]],"type":"Polygon","properties":{"cartodb_id":140,"censuscode":60,"dt_cen_cd":5,"st_cen_cd":5,"st_nm":"Uttarakhand","district":"Dehradun"}},{"arcs":[[-2,28,-20,29,-22,30]],"type":"Polygon","properties":{"cartodb_id":12,"censuscode":64,"dt_cen_cd":9,"st_cen_cd":5,"st_nm":"Uttarakhand","district":"Almora"}},{"arcs":[[-31,-21,-3]],"type":"Polygon","properties":{"cartodb_id":34,"censuscode":63,"dt_cen_cd":8,"st_cen_cd":5,"st_nm":"Uttarakhand","district":"Bageshwar"}},{"arcs":[[31,-11,-17,-29,-1]],"type":"Polygon","properties":{"cartodb_id":102,"censuscode":65,"dt_cen_cd":10,"st_cen_cd":5,"st_nm":"Uttarakhand","district":"Champawat"}},{"arcs":[[-23,-30,-19,32,33,-26,-7,34]],"type":"Polygon","properties":{"cartodb_id":195,"censuscode":61,"dt_cen_cd":6,"st_cen_cd":5,"st_nm":"Uttarakhand","district":"Garhwal"}},{"arcs":[[-34,35,-27]],"type":"Polygon","properties":{"cartodb_id":222,"censuscode":68,"dt_cen_cd":13,"st_cen_cd":5,"st_nm":"Uttarakhand","district":"Hardwar"}},{"arcs":[[-24,-35,-6,-14]],"type":"Polygon","properties":{"cartodb_id":486,"censuscode":58,"dt_cen_cd":3,"st_cen_cd":5,"st_nm":"Uttarakhand","district":"Rudraprayag"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [16599, 5344], + [-59, 18], + [-121, 62], + [-93, -4], + [-49, 50], + [-92, -12], + [-8, 54], + [-33, 8], + [-56, -8], + [-8, 24], + [-28, 9], + [4, 41], + [-81, -24], + [-8, 45], + [-32, 25], + [-21, 46], + [-44, 0], + [-40, 53], + [32, 79], + [-32, 38], + [-65, 37], + [-36, 54], + [-36, 16], + [-45, -37], + [-93, 13], + [-42, -18] + ], + [ + [15513, 5913], + [-9, 19], + [-29, 8], + [-24, 74], + [-58, 39], + [-141, 44], + [-90, 3], + [-36, 15], + [-43, 85], + [-74, 307], + [-30, 66], + [-14, 65], + [-102, 201], + [-48, 65], + [17, 29], + [-1, 31], + [-23, 22], + [5, 32], + [-18, 49], + [-69, 43], + [-18, -16], + [-49, 58], + [-73, 45], + [-28, -13], + [-34, 3], + [-72, 17], + [-29, 27] + ], + [ + [14423, 7231], + [-18, 33], + [4, 71], + [-97, 121], + [-52, 47], + [-230, 81], + [-70, 164], + [19, 71], + [51, -5], + [51, -23], + [92, -76], + [93, 3], + [26, 29], + [76, 18], + [41, 123], + [36, 6], + [26, 37], + [18, 3], + [24, -57], + [17, 11], + [106, -18], + [19, -162], + [67, -24], + [115, -3], + [107, -31], + [55, 22], + [105, 103], + [53, -4], + [21, 8], + [24, 44], + [81, 12], + [29, 54], + [-46, 107], + [-47, 22], + [-16, 26], + [-8, 118], + [-18, 13], + [-111, 23], + [-44, 58], + [-64, -7], + [-36, 62], + [144, 5], + [78, 14], + [-19, 83], + [2, 84], + [24, 70], + [22, 29], + [124, 60], + [91, 5], + [35, 28], + [65, 1], + [57, -25], + [37, -58], + [51, -25], + [51, 76], + [89, 45], + [112, -40], + [82, 5], + [35, -28], + [43, 30], + [18, 44], + [1, 26], + [-103, 231], + [-287, 189], + [-30, 37], + [-109, 246], + [-21, 100], + [0, 39], + [87, 265], + [-16, 159], + [14, 80], + [-2, 144], + [39, 76], + [44, 40], + [45, 115], + [5, 124], + [26, 119], + [7, 147], + [38, 115], + [6, 74], + [-12, 20], + [-18, 4], + [-64, -10], + [-98, 17], + [-27, 27], + [-48, 107], + [-3, 101], + [-10, 24], + [-29, 0], + [-24, 18], + [25, 90], + [-114, 70], + [-42, 39], + [-93, 136], + [-92, 20], + [-132, -6] + ], + [ + [15026, 11697], + [-16, 27], + [11, 54], + [41, 177], + [25, 20], + [0, 20], + [-40, 30], + [1, 17], + [15, 18], + [89, 40], + [27, 55], + [75, 86], + [49, 107], + [-29, 95], + [22, 40], + [0, 133], + [-52, 28], + [-29, 88], + [-60, 65], + [2, 37], + [41, 39], + [-2, 19], + [-23, 74], + [-26, 14], + [8, 46], + [-18, 36], + [-8, 73], + [-21, 65], + [-56, 63], + [-6, 65], + [73, 82], + [44, 141], + [68, 118], + [29, 35], + [57, 14], + [13, 72], + [-76, 93], + [21, 19], + [11, 33], + [-3, 24], + [-19, 20], + [20, 37], + [-3, 18], + [-78, 41], + [-19, 34], + [-13, 121], + [-17, 19], + [-24, -1], + [-50, 96], + [-44, 19], + [-44, 42], + [-46, 142], + [5, 23], + [58, 27], + [56, 56], + [114, 42], + [56, 43], + [29, 9], + [35, 1], + [172, -51], + [97, 8], + [144, -33], + [7, 19], + [-9, 65], + [-37, 65], + [-51, 148], + [5, 61], + [71, 108] + ], + [ + [15698, 15138], + [103, -89], + [29, -4], + [33, 13], + [80, 96], + [77, 20], + [-4, 64], + [11, 41], + [33, 15], + [78, -3], + [63, -41], + [108, -150], + [7, -119], + [28, -48], + [42, -27], + [61, -18], + [23, 47], + [44, 22], + [31, -13], + [32, -53], + [57, -126], + [0, -22], + [-40, -110], + [-45, -58], + [-24, -127], + [-61, -43], + [-68, -8], + [-36, -18], + [-3, -13], + [-62, -46], + [-14, -72], + [16, -33], + [32, -29], + [75, -42], + [53, -76], + [-7, -61], + [-54, -67], + [-4, -32], + [6, -31], + [78, -32], + [1, -41], + [-36, -48], + [-3, -36], + [31, -110], + [30, -24], + [87, -47], + [28, -34], + [37, -18], + [47, 23], + [33, 48], + [24, -7], + [-1, -43], + [23, -13], + [12, 27], + [32, 26], + [65, 5], + [97, -36], + [33, 2], + [42, -17], + [61, -98], + [327, -198], + [81, -24], + [64, 46], + [56, 9], + [36, -34], + [20, -56], + [38, -55], + [49, -41], + [207, -86], + [204, -34], + [50, -56], + [49, -93], + [89, -88], + [40, -17], + [26, 50], + [28, 21], + [57, -5], + [47, 9], + [23, 19], + [68, 156], + [64, 8], + [47, -18], + [276, -199], + [59, -69], + [67, -37], + [73, 3], + [32, -17], + [211, -183], + [233, -147], + [120, -137], + [119, -264], + [220, -169], + [214, -93], + [153, -32], + [288, -108], + [148, -26], + [199, -73], + [133, -28], + [106, -57], + [30, -26], + [23, -45], + [-6, -139], + [61, -166], + [1, -51], + [-94, -6], + [-215, -80], + [-46, 15], + [-10, 17], + [-24, -2], + [-25, -13], + [-35, -44], + [-47, 15], + [-31, -5], + [-134, -57], + [-67, 23], + [-34, 46], + [9, 156], + [-25, 57], + [-32, 24], + [-61, -19], + [-93, -154], + [-30, -77], + [-94, -90], + [61, -205], + [-1, -56], + [-18, -41], + [-145, -98], + [-35, -86], + [-26, -30], + [-54, -14], + [-52, 6], + [-83, -41], + [-49, -69], + [-25, -60], + [-62, -76], + [-52, -42], + [-72, -38], + [-42, -54], + [-7, -116], + [-106, -218], + [-57, -36], + [-64, 26], + [-23, -9], + [-179, -180], + [-37, -46], + [-10, -39], + [-20, -18], + [-141, -16], + [-106, 6], + [-41, 16], + [-9, 18], + [-30, -1], + [-74, -46], + [-57, 1], + [-47, -30], + [-131, -145], + [-42, -77], + [11, -206], + [-21, -59], + [-53, -76], + [-10, -40], + [7, -41], + [-34, -51], + [-8, -33], + [-80, -39], + [-37, -61], + [-68, -71], + [-88, -49], + [-20, -23], + [-43, -58], + [-29, -119], + [-11, -9], + [-30, 3], + [0, -11], + [-121, 54], + [-101, -24], + [-19, 4], + [-36, 18], + [-22, 34], + [-39, -16], + [-18, -36], + [-49, -17], + [-37, -32], + [-54, -14], + [-49, -218], + [-22, -17], + [-32, -5], + [-13, -34], + [-26, -27], + [-56, 13], + [-26, -9], + [-23, -45], + [-1, -112], + [15, -50], + [43, -17], + [1, -86], + [68, -152], + [26, -123], + [161, -140], + [20, -65], + [-1, -72], + [-65, -112], + [3, -128], + [-37, -63], + [-23, -20], + [-40, -115], + [-74, -1], + [-74, -63], + [-43, -17], + [-55, -49], + [-42, -17], + [-12, -23], + [-6, -72], + [58, -45], + [-2, -45], + [-24, -62], + [-50, -36], + [-69, -28], + [-102, -109], + [-16, -43], + [4, -46], + [-41, 13], + [-18, 33], + [-24, -8], + [-30, -72], + [-37, -49], + [5, -18], + [56, -49], + [13, -51], + [-6, -20], + [-18, -14], + [-36, 14], + [-38, -19], + [-25, 17], + [-23, 53], + [-29, -8], + [-33, -43], + [-64, -2], + [-28, -26], + [-53, -5], + [-3, -23] + ], + [ + [9057, 15287], + [-30, -87], + [4, -36], + [-35, -56], + [19, -107], + [-31, -31], + [-20, -74], + [-57, -23], + [-38, -3], + [-37, -42], + [-246, -61], + [-68, -90], + [-96, -23], + [-29, -40], + [-72, -168], + [5, -41], + [-51, -249], + [18, -60], + [-6, -123], + [-33, -32], + [-3, -48], + [-95, -82], + [-5, -20], + [28, -98], + [-9, -21], + [-52, -16], + [-51, -32], + [-8, -34], + [-48, -47], + [-8, -93], + [-26, -26], + [29, -102], + [-1, -67], + [37, -93], + [-17, -52], + [-47, -77], + [-45, -38], + [-56, -14], + [-19, 9], + [-41, -31], + [-59, -15], + [7, -24], + [104, -91], + [44, -75], + [-5, -33], + [-21, -29], + [15, -97], + [-5, -41], + [-21, -34], + [-167, -187], + [130, -64], + [-5, -67], + [20, -51], + [-14, -40], + [12, -26], + [3, -77], + [59, -12], + [61, -51], + [7, -16], + [-25, -92], + [71, -69], + [-7, -19], + [-36, -16], + [-7, -24], + [7, -69], + [-10, -22], + [9, -31], + [63, -62], + [33, -52], + [11, -49], + [35, -30], + [5, -30], + [29, -5], + [31, -32], + [16, -50] + ], + [ + [8207, 11277], + [-73, 44], + [-36, -56], + [-79, -54], + [-25, -5], + [-60, 22], + [-20, -49], + [-26, -23], + [-94, 15], + [-29, -27], + [-19, -58], + [-52, -8], + [-29, -49], + [-36, 1], + [-95, 63], + [-103, -33], + [-38, -66], + [-55, -17], + [-29, 9], + [-24, 33], + [-128, 100], + [-42, 49], + [-46, -7], + [-34, -34], + [-110, 44], + [-37, -16], + [-21, -45], + [14, -65], + [-14, -42], + [-28, -27], + [-38, -5], + [-48, -35], + [-93, -2], + [-17, -106], + [-36, -33], + [-99, -54], + [-45, -217], + [-15, -18], + [-35, -4], + [-12, -26], + [-40, 32], + [-19, 0], + [-14, -83], + [15, -45], + [29, -38], + [-4, -11], + [-76, -28], + [10, -98], + [-39, -43], + [49, -84], + [8, -36], + [-43, -84], + [13, -17], + [86, -12], + [15, -39], + [-31, -23], + [-34, 19], + [-22, -90], + [-23, 9], + [-43, 56], + [-75, 1], + [-52, 61], + [-162, 31], + [-46, -20], + [-10, -37], + [-45, -18], + [-21, -55], + [-17, -9], + [-44, 48], + [-11, 104], + [-10, 4], + [-19, -17], + [-40, -93], + [-40, -42], + [-11, 2], + [-40, 81], + [-50, -15], + [-79, 19], + [-99, 76], + [-20, 56], + [-9, 60], + [19, 114], + [-27, 20], + [-57, 14], + [-15, 69], + [-25, 44], + [-28, 36], + [-44, 20], + [-60, -3], + [-27, -13], + [-5, -95], + [-59, -5], + [-63, -23], + [-179, 107], + [-40, -3], + [-23, -57], + [-107, -23], + [-23, -73] + ], + [ + [4575, 10227], + [-90, 56], + [-79, 31], + [-180, 131], + [-9, 34], + [32, 132], + [-20, 15], + [-59, 9], + [-29, 23], + [-30, 63], + [5, 47], + [54, 124], + [58, 41], + [42, 53], + [49, 36], + [120, 55], + [57, 91], + [-129, 208], + [18, 45], + [-8, 46], + [24, 77], + [-6, 13], + [-82, 63], + [-40, -21], + [-81, -9], + [-46, 72], + [-59, -21], + [-106, 35], + [-47, 2], + [-30, -30], + [-37, -7], + [-12, -15], + [-30, 5], + [-21, -13], + [-68, 21], + [-58, 30], + [-35, 52], + [-76, 49], + [-43, 89], + [-22, 104], + [18, 110], + [45, 73], + [86, 67], + [89, 21], + [95, 73], + [245, 108], + [68, 60], + [-12, 48], + [-43, 29], + [-32, 41], + [-139, 72], + [-108, 37], + [-148, -5], + [-33, 35], + [-60, 34], + [-86, 20], + [-55, 59], + [-119, 37], + [-41, 27], + [-97, -16], + [-47, -23], + [-48, 39], + [-98, -3], + [-53, 19], + [-45, -29], + [-45, -63], + [-36, -7], + [-57, 44], + [-117, -62], + [-73, -6], + [-78, 74], + [-19, 69], + [-90, 31], + [-50, 45], + [-53, 76], + [1, 40], + [54, 46], + [121, -55], + [20, 6], + [52, -22], + [29, 6], + [17, 18], + [-33, 219], + [5, 60], + [33, 54], + [102, 52], + [8, 57], + [38, 48], + [7, 61], + [23, 21], + [-18, 70], + [7, 95] + ], + [ + [2732, 13873], + [82, -16], + [122, -95], + [35, 26], + [124, 42], + [-20, 86], + [43, 56], + [62, 29], + [224, 54], + [92, -47], + [106, 16], + [-1, 9], + [48, -60], + [43, -134], + [23, -34], + [-36, 3], + [-5, -11], + [3, -84], + [17, -15], + [119, -27], + [118, -53], + [177, 72], + [35, 51], + [10, 73], + [36, 36], + [60, -16], + [63, 39], + [49, -4], + [30, -16], + [129, -168], + [-56, -52], + [-23, -47], + [66, -62], + [-82, -25], + [-4, -29], + [19, -49], + [53, 28], + [56, 6], + [35, 24], + [3, 22], + [-34, 71], + [7, 5], + [58, -6], + [57, -85], + [34, 30], + [36, -10], + [13, -13], + [0, -46], + [24, -29], + [15, -61], + [33, -51], + [37, -4], + [1, -68], + [46, -29], + [72, -18], + [39, -31], + [54, -73], + [15, -56], + [55, -33], + [18, -157], + [37, -15], + [10, 6], + [-11, 96], + [102, 125], + [-1, 103], + [104, 90], + [4, 31], + [60, 88], + [-21, 149], + [-72, 41], + [-8, 68], + [27, 185], + [31, 40], + [14, 47], + [110, -16], + [111, 109], + [7, -37], + [74, -62], + [83, -144], + [-34, -60], + [-56, -59], + [13, -52], + [-18, -111], + [-1, -160], + [8, -13], + [47, -18], + [63, -12], + [83, 27], + [55, -24], + [32, 7], + [19, 27], + [-17, 134], + [35, 66], + [-15, 44], + [5, 32], + [48, 48], + [26, 63], + [95, 97], + [-8, 51], + [38, 38], + [32, 73], + [63, 45], + [7, 17], + [-9, 46], + [23, 209], + [-9, 64], + [-29, 33], + [-40, 17], + [30, 49], + [65, 26], + [20, -6], + [20, -30], + [69, 32], + [26, -20], + [41, 8], + [40, -31], + [164, 50], + [2, 60], + [48, 49], + [64, 47], + [37, -5], + [97, 35], + [82, 61], + [40, 52], + [17, -5], + [100, -106], + [76, -39], + [45, 48], + [85, 26], + [155, 5], + [30, 12], + [24, -19], + [19, 3], + [3, 24], + [23, 23], + [72, 16], + [57, 60], + [63, -14], + [18, 12], + [9, 70], + [25, 50], + [-6, 92], + [-21, 89], + [4, 40], + [30, 68], + [1, 33], + [-11, 22], + [41, 114], + [-57, 143], + [-5, 54], + [24, 59], + [37, 41], + [48, 31], + [16, 60], + [49, 44], + [77, -18], + [20, -18], + [90, 7], + [76, 39], + [16, -4], + [92, -55], + [27, -36], + [21, -65], + [38, -12], + [144, 3], + [99, 50], + [51, -2], + [98, -98], + [14, -42], + [0, -167], + [94, -98] + ], + [ + [7862, 4757], + [50, -67], + [148, -50], + [17, 0], + [26, 33], + [31, -39], + [34, -19], + [33, 16], + [48, 2], + [123, -25], + [308, -203], + [32, -39], + [71, 32], + [41, 1], + [59, 33], + [32, -4], + [24, -27], + [6, -29], + [71, -7], + [4, -14], + [-17, -45], + [-56, -57], + [2, -39], + [44, -48], + [0, -33], + [48, -78], + [45, -17], + [33, -33], + [67, -10], + [72, 8], + [53, -34], + [22, 109], + [49, 35], + [25, 2], + [30, -25], + [-26, -72], + [24, -14], + [100, -11], + [26, 73], + [69, 51], + [47, 12], + [44, -8], + [93, -56], + [19, 4], + [201, -80], + [215, -66], + [309, -53], + [1, -24], + [-79, -107], + [-62, -53], + [-28, -48], + [-3, -41], + [-16, -24], + [36, -122], + [103, -60], + [69, -101], + [58, -51], + [44, -21], + [39, -52], + [155, -129], + [151, -176], + [223, -172], + [176, -185], + [32, -8], + [919, 8], + [87, -18], + [308, 21], + [50, 74], + [31, 17], + [20, 61], + [27, 20], + [57, -21], + [171, -100], + [56, -81], + [-4, -30], + [83, -85], + [236, -57], + [19, 14], + [-17, 32], + [6, 15], + [25, 13], + [56, -1], + [11, 17], + [13, 0], + [33, -21], + [14, -69], + [45, 14], + [57, -28], + [30, -4], + [40, 13], + [22, -9], + [16, -59], + [-43, -1], + [-19, -32], + [16, -28], + [47, -32], + [1, -65], + [6, -11], + [35, 7], + [3, -46], + [57, 16], + [32, 37], + [65, 43], + [8, 0], + [-5, -27], + [15, -1], + [57, 101], + [42, 22], + [36, -23], + [24, -82], + [52, -46], + [-26, -72], + [26, -27], + [12, 0], + [23, 28], + [3, 78], + [42, 20], + [37, -31], + [20, 24], + [-2, 70], + [36, 7], + [3, 12], + [-18, 29], + [6, 40], + [37, 60], + [30, 21], + [6, 35], + [37, -18], + [29, 16], + [22, 35], + [24, 7], + [34, 31], + [54, 0], + [31, 16], + [90, 11], + [23, 27], + [5, 26] + ], + [ + [14881, 2505], + [10, -9], + [175, 122], + [10, 123], + [18, 24], + [18, 4], + [27, -14], + [63, -85], + [32, -21], + [34, -9], + [53, 13], + [99, 90], + [33, -16], + [40, -75], + [16, -1], + [50, 77], + [33, 143], + [-31, 123], + [13, 16], + [99, -47], + [43, 11], + [110, -5], + [85, 23], + [75, 50], + [22, 3], + [25, -16], + [47, -78] + ], + [ + [16080, 2951], + [-88, -107], + [-79, -198], + [-2, -53], + [49, -46], + [-1, -21], + [-83, -157], + [14, -6], + [8, -27], + [-20, -115], + [64, -28], + [0, -30], + [-18, -14], + [-49, 1], + [-29, -15], + [-26, -125], + [-116, -29], + [-85, -140], + [-54, -150], + [-64, -110], + [-21, -56], + [-20, -109], + [2, -427], + [42, -117], + [-152, -185], + [-13, -46], + [-39, -27], + [65, -66], + [26, -56], + [-37, -102], + [2, -43], + [-36, -37], + [-96, -151], + [-67, -77], + [-91, -72], + [-127, -10], + [-93, 14], + [-145, 65], + [-44, 45], + [-5, 90], + [-22, 53], + [-39, 51], + [-10, 30], + [12, 12], + [-40, 52], + [-40, 13], + [-64, 87], + [28, 44], + [30, 22], + [19, 53], + [-132, -39], + [-79, -3], + [-87, 32], + [-80, 57], + [36, 92], + [22, 4], + [66, -29], + [68, -10], + [27, 14], + [-2, 86], + [-92, 29], + [-31, 36], + [-9, 38], + [-29, 8], + [-48, -20], + [-75, 29], + [-32, -13], + [-72, -107], + [17, -40], + [1, -91], + [-67, -25], + [-24, -31], + [-57, -11], + [-41, 23], + [-13, -6], + [-7, 57], + [25, 57], + [20, -9], + [15, -33], + [18, -4], + [14, 13], + [26, 96], + [2, 27], + [-48, 43], + [3, 28], + [25, 21], + [-23, 50], + [84, 25], + [4, 48], + [-37, 66], + [-69, -11], + [-6, 52], + [-101, 104], + [-91, -16], + [-61, 27], + [-32, -26], + [-27, -48], + [-48, 0], + [-27, 14], + [-101, -32], + [-34, -40], + [-10, -36], + [-106, -15], + [-10, -9], + [-13, -70], + [-72, 2], + [-36, -26], + [-5, -42], + [-76, 3], + [-66, 33], + [-14, 23], + [-64, 18], + [-73, 63], + [-34, 9], + [-62, -30], + [-71, 14], + [-98, -119], + [-66, -6], + [-76, -32], + [-17, 6], + [-20, 62], + [22, 64], + [17, 112], + [-21, 41], + [-45, 48], + [-43, 13], + [-40, -41], + [-79, -119], + [-63, -53], + [-98, -5], + [-92, 33], + [-55, -16], + [-50, -42], + [-163, 18], + [-60, -46], + [-78, 4], + [-32, 47], + [-12, 92], + [-53, 77], + [34, 104], + [-13, 125], + [15, 32], + [0, 80], + [-36, 33], + [-38, 11], + [-78, -9], + [-22, 35], + [-17, 93], + [-68, 116], + [-42, -68], + [11, -57], + [-18, -7], + [-278, 44], + [-15, -33], + [-36, -6], + [-125, 85], + [-32, 59], + [-58, 68], + [-155, 129], + [-10, 50], + [-210, 163], + [-40, -51], + [-91, 15], + [13, -45], + [-46, 12], + [-56, -27], + [-18, 10], + [-10, 24], + [-36, 17], + [-23, 33], + [-2, 40], + [27, 9], + [10, 66], + [33, 58], + [-75, 26], + [-60, 39], + [-42, 67], + [-14, 92], + [14, 66], + [39, 58], + [5, 56], + [-11, 96], + [-52, 32], + [-19, 38], + [-81, 33], + [-25, -23], + [-80, 7], + [-174, 148], + [-83, 31], + [-83, -11], + [-77, 119], + [-42, 9], + [-25, -11], + [-8, -25], + [36, -48], + [7, -61], + [-14, -19], + [-31, 7], + [-50, 50], + [-15, -3], + [-3, -31], + [15, -28], + [-26, -94], + [118, -24], + [20, -20], + [-7, -35], + [-23, -28], + [-56, -27], + [-65, 20], + [-38, -30], + [-13, 47], + [-24, 18], + [5, 28], + [-17, 32], + [-57, 27], + [-5, 70], + [-22, 57], + [-77, 79], + [-27, 9], + [-11, -7], + [1, -31], + [-58, -14], + [-16, -50], + [-28, -23], + [-129, 54], + [-18, -31], + [-39, -28], + [-88, 12], + [-12, 31], + [-21, 14], + [67, 62], + [-15, 17], + [7, 22], + [-13, 28], + [21, 22], + [0, 21], + [-27, 17], + [-14, 58], + [-29, 38], + [29, 49], + [-35, 16], + [-35, 40], + [27, 19], + [0, 14], + [-48, 34], + [-10, 43], + [-79, 23], + [21, 49], + [-16, 40], + [-42, 64], + [-61, 43], + [-11, 43], + [-12, 7], + [-51, -58], + [-52, 14], + [-17, 33], + [-109, -61], + [-87, 40], + [-77, 55], + [-9, 55], + [-27, -12], + [-142, 112], + [50, -5], + [-8, 29], + [-28, 25], + [-184, 129], + [-24, 13], + [-42, -4], + [-43, 37], + [2, 14], + [35, -6], + [8, 7], + [39, -14], + [8, 10], + [-18, 81], + [16, 31], + [20, 1], + [20, -19], + [42, 6], + [1, 24], + [34, 55], + [64, 46], + [50, -29], + [-10, -18], + [13, -16], + [82, 8], + [21, 31], + [13, -26], + [-20, -79], + [46, -20], + [16, 41], + [41, 25], + [-32, 37], + [-16, 63], + [44, 26], + [60, 128], + [13, 70], + [17, 14], + [21, 5], + [-25, -37], + [5, -58], + [14, -17], + [91, -14] + ], + [ + [11384, 17238], + [-112, -52], + [-74, -133], + [-103, -105], + [-78, -34], + [-110, -12], + [-60, -32], + [-48, -45], + [-12, -60], + [106, -60], + [14, -30], + [-42, -87], + [33, -105], + [-40, -55], + [-49, -2], + [-116, 58], + [-68, -23], + [-93, -57], + [-38, -40], + [7, -29], + [74, -43], + [46, -68], + [-18, -69], + [11, -62], + [-71, -40], + [-10, -45], + [41, -197], + [-23, -26], + [-73, -38], + [-22, -90], + [-19, -18], + [-19, -48], + [-66, -52], + [13, -98], + [-112, -59], + [3, -43], + [27, -42], + [59, -27], + [6, -56], + [76, -88], + [11, -27], + [40, -10], + [21, -67], + [30, -37], + [132, -98], + [-60, -110], + [-9, -50], + [8, -23], + [-12, -4] + ], + [ + [10585, 14700], + [-123, -17], + [-63, 67], + [-198, 48], + [-107, -32], + [-20, 58], + [-48, 43], + [-136, 57], + [-38, -3], + [-132, -49], + [-32, 15], + [-23, 32], + [-7, 74], + [-17, 34], + [-51, 20], + [-171, 19], + [-73, 68], + [-78, 105], + [-134, 40], + [-77, 8] + ], + [ + [2732, 13873], + [6, 15], + [-16, 39], + [23, 67], + [-27, 96], + [1, 30], + [41, 31], + [23, 1], + [95, -60], + [26, 20], + [21, 57], + [34, 46], + [80, 31], + [22, 22], + [18, 39], + [-2, 87], + [26, 51], + [6, 81], + [11, 25], + [36, 28], + [33, 65], + [-55, 91], + [24, 42], + [-68, 31], + [-8, 62], + [-30, 58], + [-45, 28], + [-49, 85], + [-62, 28], + [-20, 32], + [-51, 37], + [-11, 25], + [7, 48], + [-12, 51], + [-49, 75], + [-131, 100], + [-66, 157], + [6, 111], + [-29, 43], + [-2, 58], + [-42, 72], + [18, 68], + [72, 21], + [49, 38], + [49, -5], + [90, 54], + [-23, 105], + [-74, 132], + [-42, 69], + [-53, 23], + [-16, 50], + [-74, 42], + [-37, 40], + [-59, -13], + [-41, 8], + [-65, -27], + [-38, 9], + [-60, -19], + [-72, -53], + [-51, -60], + [-44, -14], + [-35, 15], + [-39, -48], + [-66, -2], + [-26, -25], + [-37, 8], + [-6, 63], + [-22, 12], + [-76, -49], + [-52, -58], + [-18, -49], + [-44, -4], + [-98, 19], + [-42, -40], + [-40, -65] + ], + [ + [1424, 16123], + [-103, -5], + [-45, -36], + [-134, 14], + [11, 46], + [-5, 39], + [-45, 20], + [-16, 21], + [-21, 72], + [8, 74], + [11, 29], + [109, 97], + [62, 1], + [90, -35], + [149, -125], + [64, -17], + [28, 5], + [14, 24], + [-3, 24], + [-35, 17], + [-54, -10], + [-50, 64], + [14, 46], + [46, 54], + [9, 75], + [38, 37], + [-21, 24], + [-1, 22], + [91, 0], + [4, 21], + [-41, 56], + [18, 103], + [-40, 29], + [-63, 148], + [-1, 34], + [-26, 24], + [38, 2], + [18, -7], + [-1, -12], + [32, 8], + [30, 30], + [33, 69], + [39, 19], + [40, 3], + [33, 28], + [47, 101], + [8, 115], + [39, 39], + [130, 61], + [11, 93], + [57, 84], + [-13, 42], + [33, 19], + [58, 11], + [45, -24], + [33, 8], + [123, 78], + [30, 0], + [42, 64], + [54, 20], + [91, -100], + [99, 21], + [45, -7], + [95, -73], + [40, -16], + [15, 26], + [-2, 95], + [66, 63], + [19, 38], + [149, 55], + [135, 0], + [28, -16], + [48, 1], + [137, 108], + [25, 4], + [33, 57], + [98, 15], + [14, 46], + [41, 12], + [26, 55], + [47, -10], + [31, 12], + [69, -1], + [100, -70], + [79, 26], + [41, 84], + [72, 10], + [88, -27], + [31, 35], + [0, 30], + [32, -4], + [34, 24], + [10, 29], + [120, 151], + [57, -34], + [64, -18], + [31, 13], + [31, 162], + [115, -23], + [61, 23], + [59, -6], + [125, 25], + [81, -21], + [26, -64], + [49, 16], + [12, -52], + [60, -88], + [-10, -68], + [38, -37], + [105, 22], + [31, 66], + [48, -29], + [28, -46], + [78, -40], + [81, -119], + [58, -50], + [4, -67], + [18, -59], + [42, 10], + [232, -9], + [143, 20], + [82, 86], + [37, 65], + [35, 16], + [29, 31], + [108, 3], + [71, 16], + [33, -4], + [102, -77], + [70, -25], + [38, 0], + [22, -98], + [46, -43], + [14, -58], + [76, 63], + [101, -1], + [121, -50], + [74, -10], + [80, 15], + [231, -17], + [83, 19], + [112, 52], + [39, 4], + [50, -42], + [-32, -75], + [-3, -47], + [18, -31], + [70, -64], + [-10, -41], + [53, -122], + [37, -26], + [27, -53], + [54, -41], + [89, -33], + [63, -101], + [57, -37], + [54, -25], + [66, 16], + [38, -3], + [43, 71], + [56, 6], + [48, -63], + [135, -18], + [64, 24], + [82, 51], + [157, 12], + [36, -13], + [-46, 161], + [-13, 24], + [-56, 37], + [-14, 37], + [12, 29], + [-1, 112], + [-18, 58], + [-17, 31], + [-36, 27], + [-32, 3], + [-92, 52], + [-28, 53], + [-36, 36], + [-16, 65], + [12, 56], + [-97, 6], + [-24, 15], + [-36, 64], + [-25, 118], + [7, 66], + [38, 11], + [23, 43], + [-5, 150], + [56, 143], + [-11, 136], + [14, 46], + [31, 45], + [42, 34], + [150, 69], + [121, 36], + [57, 35], + [22, 42], + [9, 86], + [76, 155], + [170, 200], + [-1, 121], + [19, 93], + [51, 79], + [51, 28], + [21, 2], + [58, -62], + [63, -40], + [80, -22], + [68, -54], + [184, -71], + [118, -197], + [92, -89], + [66, -157], + [87, -127], + [41, -47], + [108, -66], + [59, -53], + [-1, -131], + [171, -181], + [3, -36], + [-12, -31], + [-66, -70], + [-20, -48], + [0, -110], + [59, -52], + [121, -12], + [62, -106], + [97, -257], + [-5, -52], + [-35, -55], + [18, -79], + [69, -94], + [22, -58], + [56, -67], + [64, -7], + [26, -28], + [12, -40], + [104, -8], + [75, -50], + [41, -12], + [103, 4], + [30, -17], + [48, -143], + [16, -139] + ], + [ + [14146, 5283], + [32, -10], + [-1, -23], + [-29, -59], + [-100, -121], + [-12, -33], + [13, -22], + [36, -13], + [52, -89], + [43, -28], + [4, -71], + [13, -9], + [84, 12], + [83, -24], + [30, 8], + [55, -78], + [6, -30], + [-11, -38], + [-80, 9], + [-59, -14], + [-39, -21], + [-19, -91], + [-22, -31], + [-4, -73], + [-36, -31], + [-164, 79], + [5, 90], + [-33, 4], + [-40, 30], + [-137, -48], + [40, -58], + [15, -89], + [65, -51], + [-24, -131], + [17, -30], + [-18, -35], + [11, -40], + [55, -58], + [19, -5], + [121, 51], + [49, 7], + [29, -11], + [13, -29], + [28, -17], + [14, -49], + [40, 0], + [43, -43], + [46, -23], + [52, 13], + [28, -26], + [79, -155], + [55, -57], + [8, -83], + [-125, -108], + [-18, -113], + [-57, -42], + [-67, -6], + [-14, -18], + [-4, -84], + [20, -38], + [84, -33], + [37, -110], + [89, -58], + [45, 39], + [294, -72], + [46, -28], + [13, -29], + [-61, -43], + [-34, -49], + [-23, -75], + [-10, -183], + [13, -32], + [52, -52] + ], + [ + [7862, 4757], + [47, 24], + [-28, 37], + [5, 35], + [48, -10], + [103, 41], + [18, 15], + [3, 46], + [15, 5], + [47, -16], + [16, 45], + [90, 76], + [58, 106], + [25, 168], + [42, 38], + [98, 32], + [-20, 29], + [-148, -29] + ], + [ + [8281, 5399], + [25, 51], + [166, 106], + [81, 205], + [-13, 54], + [27, 123], + [58, 91], + [17, 18], + [127, 43], + [54, 30], + [28, -2], + [27, 50], + [-18, 70], + [40, 48], + [6, 84], + [26, 11], + [50, -6], + [43, 17], + [54, -7] + ], + [ + [9079, 6385], + [78, -40], + [194, -16], + [123, -119], + [33, -23], + [33, 1], + [7, -79], + [43, -10], + [151, 32], + [27, -94], + [46, -21], + [163, -29], + [138, -67], + [123, -3], + [124, 109], + [71, 119], + [91, 85], + [25, 49], + [76, 47], + [25, 56], + [68, 45], + [52, 57], + [118, 37], + [49, 35], + [34, -1], + [80, -56], + [0, -54], + [26, 12], + [30, -8], + [38, -39], + [62, -11], + [75, -97], + [23, -10], + [55, -83], + [32, -15], + [196, -183], + [52, -105], + [36, -28], + [54, 4], + [35, -58], + [59, -10], + [16, -41], + [-11, -54], + [105, 39], + [33, -2], + [84, 68], + [52, 82], + [42, 188], + [46, -10], + [49, 40], + [24, -2], + [-1, -76], + [57, -6], + [121, 17], + [84, 56], + [149, 44], + [45, -11], + [82, -81], + [65, 33], + [41, -25], + [68, -18], + [23, -26], + [3, -33], + [66, -37], + [28, -38], + [10, -41], + [-28, -143], + [69, -170], + [25, -32], + [82, -55], + [64, -28], + [84, 28], + [-21, -102], + [3, -54], + [31, -40], + [63, -27], + [121, 24], + [18, 18], + [19, 81], + [44, 16], + [64, -3], + [66, -81], + [74, -5], + [118, -79], + [54, -5], + [51, 17], + [40, 43] + ], + [ + [15026, 11697], + [-52, -42], + [-60, -107], + [-131, -38], + [-44, 44], + [-80, 10], + [-49, -28], + [-45, -47], + [-86, -40], + [-34, -38], + [-167, -51], + [-97, 99], + [-104, 44], + [-256, -36], + [-1, -33], + [49, -113], + [43, -139], + [23, -28], + [-14, -38], + [24, -38], + [5, -49], + [-36, -49], + [-77, -45], + [-30, -115], + [-96, -115], + [-2, -50], + [26, -88], + [-15, -38], + [-119, -133], + [3, -21], + [47, -42], + [21, -58], + [31, -39], + [-8, -135], + [53, -134], + [121, -16], + [66, -42], + [70, -100], + [-36, -49], + [-32, -20], + [-20, -35], + [-14, -84], + [9, -56], + [-45, -34], + [-98, -24], + [-46, -55], + [-47, -26], + [-57, 32], + [-86, -15], + [-346, -20], + [-67, 31], + [-137, -17], + [-96, 71], + [-82, 24], + [-153, 11], + [-70, -28], + [-34, -48], + [-58, -17], + [-177, -21], + [-20, -40], + [-62, -18], + [-56, 26], + [0, 17], + [-73, 98], + [-110, 8], + [-70, 50], + [-42, 9], + [-77, -165], + [-30, -134] + ], + [ + [11773, 9280], + [-32, -75], + [-97, -62], + [8, -50], + [-80, -42], + [-47, -105], + [-29, -16], + [-14, 4], + [-38, 48], + [-22, 7], + [-152, -96], + [-89, -18], + [-27, 29], + [-19, 53], + [-48, 27], + [-73, 148], + [-50, 62], + [-34, 10], + [-26, -16], + [-12, -52], + [41, -157], + [-41, -29], + [-12, -60], + [-46, -21], + [-43, 26], + [-163, -22], + [9, 180], + [-97, 67], + [-53, 15], + [-53, -5], + [-102, 101], + [-62, 13] + ], + [ + [10270, 9244], + [-38, 45], + [23, 80], + [-8, 51], + [-38, 54], + [-14, 130], + [-72, 58], + [-77, 9], + [-22, 32], + [18, 113], + [72, 70], + [3, 15], + [-47, 105], + [-54, 73], + [-34, 25], + [-103, 3], + [-47, 16], + [-19, 26], + [-19, 80], + [-72, 37], + [-23, 28], + [-2, 196], + [49, 67], + [2, 39], + [-15, 18], + [-89, 44], + [-26, 74], + [-20, 25], + [-143, 114], + [-3, 26], + [20, 68], + [-43, 27], + [-82, 21] + ], + [ + [9347, 11013], + [6, 50], + [47, 57], + [65, 125], + [44, 39], + [17, 78], + [-21, 61], + [34, 30], + [3, 32], + [25, 33], + [32, 17], + [122, -30], + [52, 47], + [40, 7], + [52, -10], + [35, 7], + [3, 14], + [-49, 18], + [-71, 1], + [-20, 22], + [-1, 67], + [27, 98], + [18, 0], + [19, -23], + [22, 24], + [0, 27], + [-11, 21], + [-35, 8], + [-16, 32], + [-59, 25], + [-8, 38], + [-25, 31], + [-61, -15], + [-12, 19], + [4, 30], + [-41, 20], + [-27, 29], + [-3, 25], + [-30, 26], + [-11, 75], + [61, 43], + [41, 0], + [107, -37], + [13, 10], + [48, -15], + [50, 35], + [33, 4], + [16, 33], + [2, 146], + [54, 53], + [10, 40], + [-3, 48], + [-44, 64], + [-6, 68], + [43, 31], + [37, 70], + [45, 34], + [2, 37], + [56, 73], + [108, 57], + [29, 0], + [27, 26], + [21, 58], + [-14, 74], + [30, 109], + [98, 105], + [25, 144], + [53, 47], + [62, 21], + [47, -24], + [135, -16], + [31, 51], + [15, 80], + [15, 24], + [4, 69], + [56, 26], + [114, -12], + [31, 24], + [17, 55], + [30, 17], + [11, 25], + [-4, 91], + [9, 18], + [43, 7], + [-8, 124], + [-26, 51], + [-66, 38], + [-48, 13], + [-65, 82], + [-53, 11], + [-38, 24], + [-12, 26], + [6, 39], + [-28, 58], + [-16, 183], + [-24, 28], + [-108, 42] + ], + [ + [11384, 17238], + [46, 4], + [41, -24], + [14, -41], + [2, -109], + [26, -138], + [54, -12], + [274, 40], + [87, -24], + [47, 22], + [86, -14], + [9, -84], + [17, -30], + [67, -53], + [26, -42], + [14, -44], + [-20, -67], + [113, -29], + [-40, -98], + [11, -34], + [128, -105], + [138, -33], + [48, -64], + [37, -20], + [163, 139], + [53, 25], + [114, 17], + [43, 22], + [13, 100], + [69, 19], + [53, -19], + [137, -20], + [130, 30], + [67, 38], + [46, 78], + [36, 32], + [47, 1], + [91, -95], + [199, -65], + [79, -47], + [36, -2], + [79, 40], + [43, 8], + [66, -23], + [68, -5], + [73, -104], + [61, -182], + [7, -77], + [18, -30], + [124, -33], + [108, -216], + [38, -10], + [83, 16], + [158, -54], + [216, -133], + [144, -142], + [44, -30], + [119, 1], + [39, -81], + [86, -60], + [33, -38], + [28, -143], + [78, -58] + ], + [ + [4575, 10227], + [-13, -38], + [-31, -26], + [-73, -29], + [-7, -139], + [-68, -123], + [-70, -68], + [-114, -82], + [-16, -44], + [-10, -97], + [-113, -50], + [3, -71], + [30, -105], + [-15, -41], + [-99, -84], + [-139, -228] + ], + [ + [3840, 9002], + [-85, -14], + [12, 76], + [54, 108], + [-18, 101], + [-11, 9], + [-12, -20], + [-98, -226], + [-49, 31], + [-48, 52], + [-115, 291], + [-80, 34], + [-46, 50], + [-69, 5], + [-48, 32], + [-1, 24], + [24, 38], + [-10, 34], + [-109, 65], + [-52, 53], + [3, 207], + [-220, 256], + [-51, 135], + [-13, 67], + [-67, 115], + [-51, 136], + [-145, 233], + [-62, 58], + [-14, 54], + [-92, 85], + [17, 76], + [-64, 29], + [-29, -27] + ], + [ + [2291, 11169], + [-38, 12], + [-53, 55], + [-128, 72], + [-139, 59], + [-15, 2], + [-37, -28], + [-28, 6], + [-84, 54], + [-219, 87], + [-379, 248], + [-118, 39], + [-134, 65], + [-121, 141], + [-111, 201], + [-10, -13], + [-48, 0], + [-17, 68], + [-85, 35], + [-12, 29], + [-71, 65], + [-23, 0], + [-53, -45], + [-47, 8], + [-33, 33], + [-40, -14], + [-64, 8], + [-38, -11], + [-55, 32], + [-29, -15], + [-36, -40], + [-25, -2], + [-1, 91], + [113, 97], + [142, 52], + [51, 7], + [29, -16], + [86, -1], + [60, 118], + [40, 1], + [41, -21], + [52, -6], + [109, 21], + [20, 44], + [180, 143], + [64, 3], + [209, 150], + [52, 14], + [26, 30], + [128, 13], + [69, 38], + [71, 159], + [10, 35], + [-34, 83], + [-5, 83], + [-16, 22], + [-32, 3], + [-18, -22], + [-29, -7], + [-26, 9], + [-51, -29], + [-45, 36], + [-57, 5], + [-52, 52], + [-61, 143], + [-88, 63], + [17, 64], + [16, 7], + [48, -7], + [45, -43], + [29, -4], + [18, 30], + [-4, 113], + [97, -19], + [61, 11], + [-34, 50], + [-33, 17], + [27, 66], + [-4, 26], + [-41, 76], + [67, 89], + [-12, 14], + [-47, -10], + [-23, 7], + [-72, 79], + [-110, 50], + [-19, 22], + [1, 85], + [21, 54], + [21, 16], + [4, 26], + [-42, 44], + [-22, 57], + [-53, 45], + [-11, 55], + [-46, 9], + [-36, 44], + [-59, -4], + [-38, 25], + [-7, 22], + [16, 47], + [-29, 79], + [63, 35], + [38, 41], + [68, 111], + [25, 102], + [29, 20], + [62, 95], + [65, 42], + [-2, 47], + [-79, 106], + [64, 98], + [-5, 74], + [23, 50], + [62, 9], + [36, -34], + [15, -70], + [15, -22], + [52, -31], + [99, -18], + [-3, 47], + [-34, 52], + [12, 155], + [97, 141], + [-37, 57], + [4, 24], + [-29, 17] + ], + [ + [15513, 5913], + [5, -32], + [-47, -35], + [-144, -41], + [-62, -2], + [-29, -62], + [-123, -75], + [-22, 4], + [-25, -12], + [-57, 16], + [-71, -30], + [-21, -27], + [-94, -36], + [-100, 17], + [-143, -23], + [-40, 77], + [-45, 31], + [-132, -52], + [-61, -65], + [-62, -124], + [3, -11], + [-36, -42], + [-47, 37], + [-18, -14], + [-15, -62], + [4, -41], + [15, -26] + ], + [ + [9079, 6385], + [54, 13], + [102, -1], + [13, 41], + [-3, 83], + [43, 61], + [3, 42], + [65, -17], + [41, 22], + [27, 36], + [-77, 104], + [42, 137], + [76, 105], + [14, 0], + [23, -86], + [24, 13], + [20, 30], + [-4, 45], + [40, 72], + [-8, 61], + [-44, 23], + [-9, 25], + [48, 63], + [38, 22], + [9, 72], + [-33, 14], + [6, 31], + [-40, 40], + [-6, 38], + [22, 112], + [-1, 122], + [30, -1], + [25, 21], + [37, 78], + [-48, 164], + [9, 39], + [-62, 155], + [-57, 49], + [-5, 66], + [-104, 80], + [-102, 35], + [80, 173], + [37, 25], + [115, 12], + [79, 37], + [47, 70], + [136, 34], + [91, 49], + [53, -62], + [45, 9], + [75, 91], + [8, 145], + [18, 26], + [68, -49], + [138, 69], + [27, 80], + [4, 52], + [-38, 89] + ], + [ + [11773, 9280], + [112, -71], + [18, -25], + [-25, -74], + [5, -21], + [35, -53], + [78, -61], + [37, -59], + [-51, 2], + [-6, -35], + [16, -147], + [-14, -54], + [-50, -88], + [65, -51], + [20, -46], + [-2, -26], + [134, -68], + [93, 7], + [34, -46], + [52, -6], + [74, -102], + [321, -2], + [74, -102], + [-9, -16], + [91, -69], + [24, 31], + [56, 36], + [93, 15], + [45, -65], + [52, 54], + [100, -50], + [88, -90], + [-173, -201], + [-26, -65], + [133, -160], + [42, 21], + [6, -61], + [-39, -54], + [18, -20], + [49, 29], + [53, -57], + [61, -101], + [-10, -92], + [56, -91], + [39, 4], + [17, -28], + [54, 20], + [118, 3], + [61, 19], + [81, -35], + [132, 129], + [55, -40], + [89, -28], + [117, -82], + [33, 47], + [124, 76] + ], + [ + [16599, 5344], + [15, -252], + [73, -53], + [48, -25], + [31, -3], + [26, -21], + [21, -148], + [-33, -33], + [-2, -32], + [51, -46], + [11, -108], + [58, -25], + [15, -49], + [-2, -50], + [54, -20], + [42, 9], + [27, -20], + [17, -167], + [-50, -60], + [-20, -61], + [-30, -219], + [6, -86], + [-41, -45], + [3, -100], + [21, -45], + [10, -59], + [-5, -63], + [-24, -26], + [-41, 7], + [-15, 9], + [-19, 61], + [-18, 15], + [-68, 4], + [-48, 19], + [-20, 58], + [-24, 10], + [-22, -5], + [-23, -122], + [70, -79], + [19, -46], + [6, -70], + [-14, -80], + [67, -114], + [-4, -34], + [-65, -31], + [-65, -47], + [-77, -109], + [-59, 10], + [-70, -6], + [-58, 29], + [-24, 36], + [-101, 36], + [-30, -10], + [-41, -49], + [-77, -50], + [-20, -28] + ], + [ + [8281, 5399], + [-128, 28], + [-60, -3], + [-222, 65], + [-116, 10], + [-89, 44], + [-72, 1], + [-122, 56], + [-166, 155], + [-47, 6], + [-31, 21], + [-207, 1], + [-334, 284], + [-112, 38], + [-40, 36], + [-61, 29], + [-179, 137], + [-285, 316], + [-20, 3], + [-12, 39], + [-48, 69], + [-38, 84], + [-26, 192], + [1, 101], + [-44, 178], + [-63, 70], + [-16, 120], + [-87, 52], + [-133, 27], + [-125, 44], + [-48, 25], + [-73, 79], + [-26, 7], + [-62, -9], + [-77, 12], + [-216, 91], + [-121, 72] + ], + [ + [4776, 7879], + [-57, 48], + [-13, 36], + [-41, 135], + [-33, 233], + [-18, 31], + [-206, 170], + [-35, 70], + [-45, 7], + [-9, 23], + [6, 64], + [27, 88], + [-10, 20], + [-140, 12], + [-139, 84], + [-223, 102] + ], + [ + [8207, 11277], + [46, -64], + [18, -8], + [58, 106], + [21, 15], + [26, 7], + [33, -53], + [14, 3], + [16, 12], + [16, 84], + [112, 18], + [133, 66], + [37, 49], + [114, 94], + [33, -15], + [81, 17], + [52, 16], + [74, 46], + [33, 5], + [86, -71], + [105, -18], + [107, 1], + [-74, -96], + [-195, -188], + [-44, -71], + [-32, -125], + [17, -70], + [49, -45], + [49, -4], + [100, 33], + [55, -8] + ], + [ + [4776, 7879], + [-180, -281], + [-131, -111], + [-107, -113], + [-208, -166], + [-63, 99], + [-172, -55], + [-71, -135], + [-101, -88], + [-167, -25], + [-32, -128], + [-119, -97], + [-49, -87], + [-63, -19], + [-39, -43], + [-12, -84], + [-41, -83], + [-23, -17], + [-119, 15], + [-53, -25], + [-43, -37], + [-46, -89], + [5, -22], + [33, -43], + [-34, -49], + [-2, -92], + [-27, -6], + [-180, 32], + [-59, -8], + [-38, -67], + [-57, 61], + [-11, 29], + [-2, 41], + [13, 32], + [12, 4], + [21, 81], + [-2, 60], + [-9, 7], + [-33, -42], + [-27, -1], + [-33, 19], + [-25, -14], + [-10, 17], + [-53, -10], + [-37, 42], + [37, 87], + [-22, 78], + [14, 21], + [24, 6], + [41, -50], + [49, 26], + [28, -18], + [13, 22], + [-22, 131], + [23, 73], + [-10, 16], + [-22, 2], + [-26, 33], + [-13, 47], + [46, 124], + [-4, 23], + [-62, -40], + [-65, 113], + [-39, 11], + [-11, 17], + [8, 14], + [-12, 1], + [1, 15], + [19, 14], + [-32, 33], + [7, 14], + [61, 25], + [-70, 67], + [-64, -11], + [-20, 11], + [-15, -14], + [-29, 9], + [-59, -61], + [-17, -2], + [10, -10], + [-8, -7], + [-12, 8], + [-10, -11], + [34, -26], + [-64, -8], + [-81, 21], + [-60, -2], + [-21, 11], + [-24, -23], + [-1, -35], + [-23, -4], + [-48, -39], + [-28, 6], + [-33, -34], + [-10, -26], + [-26, 4], + [-54, -68], + [-33, -19], + [-48, -2], + [-178, 94], + [-21, 29], + [51, 87], + [-15, 20], + [-77, 57], + [-80, 12], + [-67, 25], + [-7, 18], + [71, 137], + [-46, 67], + [-6, 65], + [31, 80], + [-14, 49], + [12, 39], + [-29, 22], + [-1, 18], + [26, 30], + [-73, 88], + [-23, 51], + [-44, 37], + [-6, 14], + [17, 36], + [-10, 60], + [-21, 41], + [-61, 54], + [11, 31], + [-5, 82], + [-104, 25], + [-45, 53], + [-25, 58], + [6, 132], + [50, -13], + [40, 48], + [16, 60], + [81, 78], + [-26, 109], + [-61, 32], + [-9, 15], + [71, 78], + [3, 45], + [67, 52], + [30, 63], + [-6, 31], + [-81, 91], + [-6, 23], + [67, 49], + [15, 86], + [37, 59], + [144, 89], + [10, 42], + [-101, 118], + [48, 108], + [62, 97], + [70, 172], + [34, 14], + [13, -6], + [87, -79], + [32, -4], + [42, 29], + [34, 81], + [82, 55], + [105, 155], + [57, 119], + [6, 38], + [190, 227], + [45, 196], + [93, 85], + [70, 110], + [14, 52] + ] + ], + "transform": { + "scale": [0.00016088479006855263, 0.0001371842602726098], + "translate": [77.57605365881275, 28.709556] + }, + "objects": { + "uttarakhand_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4]], + "type": "Polygon", + "properties": { + "cartodb_id": 444, + "censuscode": 62, + "dt_cen_cd": 7, + "st_cen_cd": 5, + "st_nm": "Uttarakhand", + "district": "Pithoragarh" + } + }, + { + "arcs": [[5, 6, 7, 8]], + "type": "Polygon", + "properties": { + "cartodb_id": 561, + "censuscode": 59, + "dt_cen_cd": 4, + "st_cen_cd": 5, + "st_nm": "Uttarakhand", + "district": "Tehri Garhwal" + } + }, + { + "arcs": [[9, 10, 11]], + "type": "Polygon", + "properties": { + "cartodb_id": 586, + "censuscode": 67, + "dt_cen_cd": 12, + "st_cen_cd": 5, + "st_nm": "Uttarakhand", + "district": "Udham Singh Nagar" + } + }, + { + "arcs": [[12, 13, -9, 14, 15]], + "type": "Polygon", + "properties": { + "cartodb_id": 597, + "censuscode": 56, + "dt_cen_cd": 1, + "st_cen_cd": 5, + "st_nm": "Uttarakhand", + "district": "Uttarkashi" + } + }, + { + "arcs": [[16, -10, 17, 18, 19]], + "type": "Polygon", + "properties": { + "cartodb_id": 394, + "censuscode": 66, + "dt_cen_cd": 11, + "st_cen_cd": 5, + "st_nm": "Uttarakhand", + "district": "Nainital" + } + }, + { + "arcs": [[-4, 20, 21, 22, 23, -13, 24]], + "type": "Polygon", + "properties": { + "cartodb_id": 101, + "censuscode": 57, + "dt_cen_cd": 2, + "st_cen_cd": 5, + "st_nm": "Uttarakhand", + "district": "Chamoli" + } + }, + { + "arcs": [[-8, 25, 26, 27, -15]], + "type": "Polygon", + "properties": { + "cartodb_id": 140, + "censuscode": 60, + "dt_cen_cd": 5, + "st_cen_cd": 5, + "st_nm": "Uttarakhand", + "district": "Dehradun" + } + }, + { + "arcs": [[-2, 28, -20, 29, -22, 30]], + "type": "Polygon", + "properties": { + "cartodb_id": 12, + "censuscode": 64, + "dt_cen_cd": 9, + "st_cen_cd": 5, + "st_nm": "Uttarakhand", + "district": "Almora" + } + }, + { + "arcs": [[-31, -21, -3]], + "type": "Polygon", + "properties": { + "cartodb_id": 34, + "censuscode": 63, + "dt_cen_cd": 8, + "st_cen_cd": 5, + "st_nm": "Uttarakhand", + "district": "Bageshwar" + } + }, + { + "arcs": [[31, -11, -17, -29, -1]], + "type": "Polygon", + "properties": { + "cartodb_id": 102, + "censuscode": 65, + "dt_cen_cd": 10, + "st_cen_cd": 5, + "st_nm": "Uttarakhand", + "district": "Champawat" + } + }, + { + "arcs": [[-23, -30, -19, 32, 33, -26, -7, 34]], + "type": "Polygon", + "properties": { + "cartodb_id": 195, + "censuscode": 61, + "dt_cen_cd": 6, + "st_cen_cd": 5, + "st_nm": "Uttarakhand", + "district": "Garhwal" + } + }, + { + "arcs": [[-34, 35, -27]], + "type": "Polygon", + "properties": { + "cartodb_id": 222, + "censuscode": 68, + "dt_cen_cd": 13, + "st_cen_cd": 5, + "st_nm": "Uttarakhand", + "district": "Hardwar" + } + }, + { + "arcs": [[-24, -35, -6, -14]], + "type": "Polygon", + "properties": { + "cartodb_id": 486, + "censuscode": 58, + "dt_cen_cd": 3, + "st_cen_cd": 5, + "st_nm": "Uttarakhand", + "district": "Rudraprayag" + } + } + ] + } + } +} diff --git a/public/maps/uttarpradesh.json b/public/maps/uttarpradesh.json index 33ee8f6cf2..bca826d23c 100644 --- a/public/maps/uttarpradesh.json +++ b/public/maps/uttarpradesh.json @@ -1 +1,12912 @@ -{"type":"Topology","arcs":[[[2720,18833],[186,-4],[78,72],[54,-47],[16,40],[130,-67],[80,36],[41,-9],[32,-42],[53,-24],[47,53],[-22,35],[16,44],[46,7],[20,27],[59,-26],[17,10],[-19,29],[14,48],[130,90],[45,-27],[-13,-151],[60,-52],[55,5],[25,17],[15,66],[-98,62],[3,63],[48,42],[77,-4],[109,-42],[14,-40],[-40,-175],[41,-64],[37,-21],[49,8],[31,55],[-48,118],[83,59],[52,111],[20,4],[10,-48],[-6,-116],[42,8],[22,50],[61,37],[9,96],[-53,90],[13,35]],[[4361,19291],[83,24],[67,-53],[12,41],[22,-25],[53,27],[3,31],[58,16],[-16,32],[27,40],[142,-78],[36,95],[24,-2],[-3,37],[-86,63],[-20,-15],[-59,17],[36,68],[59,-2],[25,43],[35,9],[132,-129],[63,27],[70,-45],[72,98],[94,18],[29,26],[35,97],[41,-29],[31,7]],[[5426,19729],[90,-14],[50,29],[123,-75],[34,16],[69,-38],[33,34],[86,-65],[-47,-48],[-8,-145],[-47,-58],[16,-85]],[[5825,19280],[-39,-20],[-29,-95],[-68,1],[-24,33],[7,27],[-40,43],[0,-45],[-66,-47],[-34,24],[-58,-36],[-7,44],[-53,-31],[20,-53],[92,-51],[-18,-81],[-29,-22],[17,-38],[-37,-50],[53,-26],[-39,-56],[3,-42],[-18,-3],[36,-49],[-84,-175],[6,-28],[72,-30],[48,-68],[10,-48],[-100,-150],[-1,-68],[19,-51],[120,-83],[-26,-95],[118,-12],[55,59],[-23,55],[-73,45],[-1,40],[28,14],[91,-53],[52,-124],[47,-6],[49,27],[-8,155],[68,74],[44,-11],[31,-80],[35,7],[47,92],[128,-13],[40,-20],[-21,-51],[-32,-17],[-87,25],[-34,-75],[-124,-18],[0,-247],[28,-5],[52,115],[36,14],[79,-15],[19,36],[41,15],[146,-140],[157,-25],[42,-50],[13,-78],[86,-120],[-30,-116],[31,-33],[124,62],[30,-34],[-15,-110],[19,-24],[100,0],[44,-30],[8,-156],[37,-69],[80,18],[18,65],[-95,56],[8,86],[-71,65],[42,40],[112,-84],[139,12],[28,-17],[-28,-91],[71,-50],[68,-95],[48,38],[-16,60],[-52,71],[39,14],[82,-28],[21,-27],[-35,-115],[10,-31],[71,-51],[4,-115],[47,-29],[88,25],[30,-38],[36,11],[-22,176],[26,49],[84,-58],[53,51],[21,-8],[11,-86],[59,-14],[35,25],[4,91],[18,14],[53,-49]],[[8122,16995],[-19,-110],[22,-33],[42,35],[-3,72],[57,0],[38,-105],[68,-58],[-40,-59],[14,-22],[88,8],[39,49],[36,-49],[13,-101],[105,-63],[71,-140],[-33,-66],[-55,-43],[-104,60],[-106,0],[-59,-153],[-4,-85]],[[8292,16132],[-38,0],[-27,26],[-18,74],[-46,58],[-42,-11],[-41,-58],[-39,5],[-15,23],[18,69],[-39,24],[-187,-46],[-49,-132],[-57,-5],[-152,54],[-55,-41],[-29,-76],[-170,-22],[-72,75],[-95,11],[-115,93],[-289,41],[-137,209],[-175,-39],[-84,126],[-48,127],[-71,34],[-124,-37],[-142,-2],[-106,-46],[-47,-64],[-3,-150],[-80,-1],[-190,102],[11,35],[-42,34],[-77,190],[29,5],[29,-70],[117,30],[23,84],[111,42],[65,138],[-84,78],[-3,-46],[-68,-5],[-10,59],[-43,13],[-14,36],[-28,-4],[-47,-71],[-88,60],[-59,-15],[-44,41],[-68,-21],[-71,36],[-99,-6],[-45,-28],[-5,-41],[40,-8],[-9,-75],[-74,26],[-20,-56],[24,-9],[27,-94],[-31,2],[-10,32],[-41,-3],[15,-39],[-15,-17],[-138,94],[-13,-24],[-80,18],[21,-88],[-5,-128],[-31,-2],[-83,-113],[-32,41],[68,57],[-5,31],[-43,25],[25,45],[-41,78],[-63,25],[-51,-18],[-54,-65],[-53,14],[-43,65],[-101,-59],[-49,81],[-98,-1],[-21,9],[0,36],[-30,12],[8,-153],[-24,-39],[-46,6],[-8,30],[-45,8],[-26,54],[-51,4],[-8,29],[-24,-9],[-123,65],[-76,4],[-54,38],[-60,-47],[-28,7],[-66,54],[4,19],[-100,14],[-34,-87],[-38,26],[-65,-6],[-36,-57],[-36,-70],[27,-12],[24,-54],[-26,-62],[-81,12],[-25,-48],[-72,40],[-48,-37],[-10,-62],[-223,-89],[-40,7],[-12,-60],[-51,-24],[3,64],[-78,-63],[-72,-4],[-17,-36],[-91,-17],[-69,26],[-80,-20],[-42,40],[17,86],[-95,15],[-2,-155],[-64,-156],[6,-56],[66,-50],[-87,-124],[-147,-32],[61,118],[-2,59],[-65,24],[-59,-52],[-50,13],[70,250],[-117,140],[46,65],[-20,64],[50,-6],[56,69],[50,-13],[7,67],[109,66],[347,132],[147,24],[45,89],[48,-39],[288,212],[55,-62],[20,74],[109,9],[116,72],[31,-26],[71,1],[12,65],[55,-9],[12,18],[-34,6],[-5,21],[37,-1],[7,90],[-48,19],[-4,54],[-57,-7],[-21,-26],[-19,-171],[-91,19],[-26,30],[3,63],[-79,71],[15,77],[-65,32],[-25,-97],[-43,-64],[-122,40],[-36,-71],[-58,56],[-100,2],[-24,21],[1,35],[-85,28],[-79,-48],[60,154],[-11,48],[20,16],[-114,41],[-46,-22],[-14,-51],[-88,9],[-27,15],[37,61],[-11,65],[-86,18],[73,67],[82,-34],[8,43],[21,-12],[33,38],[50,-7],[97,54],[83,-10],[30,29],[-27,92],[76,66],[-18,65],[48,62],[88,-55],[31,5],[136,89],[45,78],[-73,78],[-95,10],[-6,35],[34,53],[3,49],[-47,-1],[15,44]],[[9225,25418],[59,78],[79,-32],[61,66],[42,-22],[40,52],[17,-10],[19,32],[-20,46],[35,42],[40,-4],[37,53],[-55,56],[29,16],[16,-18],[91,-5],[32,57],[-17,28],[91,54],[77,-26],[94,52],[12,-17],[92,91],[9,42],[76,62],[-17,53],[73,18],[71,76],[77,0],[35,45],[0,83],[27,6],[-17,30],[21,44],[22,37],[48,-5],[43,68],[-58,77],[122,126],[155,221],[46,153],[50,61],[73,-18],[22,35],[45,-27],[32,27],[-4,28],[83,8],[38,55],[-98,84],[31,49],[87,-72],[63,-7],[27,44],[2,29],[-72,27],[29,50],[-17,51],[22,28],[-51,27],[6,41],[-32,57],[19,32],[61,-20],[-9,-22],[27,-13],[93,17],[-16,41],[37,1],[10,67],[-49,30],[-34,-38],[-63,38],[50,32],[57,-11],[19,22],[46,4],[-32,43],[-76,27],[-39,39],[0,55],[66,1],[96,-40],[20,67]],[[11448,28092],[7,-39],[32,-21],[-26,-93],[13,-39],[57,-24],[74,44],[114,-31],[9,36],[87,10],[124,-46],[55,29],[112,164],[76,-37],[63,-75],[-60,-143],[61,-41],[94,61],[45,-24],[37,62],[32,10],[10,-22],[34,28],[45,-20],[55,38],[49,-24],[-13,-19],[101,-37],[-3,-32]],[[12732,27807],[-30,-4],[-33,-55],[31,-104],[-17,-142],[23,-26],[-43,-122],[45,-63],[57,-24],[-19,-18],[19,-55],[-80,-114],[-89,3],[-144,-221],[39,-50],[-64,-153],[75,-61],[-62,-71],[8,-44],[34,-27],[0,-46],[42,-26],[146,66],[55,-55],[-20,-57],[61,-28],[73,17],[4,-71],[-53,-4],[-40,-73],[15,-53],[68,-12],[16,33],[80,8],[-55,-177],[79,-23],[47,66],[47,0],[35,-20],[-10,-71],[50,-40],[85,-12],[20,-93],[-13,-59],[-26,-16],[-2,-72],[75,-83],[3,-32],[-95,-42],[-21,8],[27,27],[-19,48],[-30,33],[-45,-15],[-14,-27],[22,-213],[-38,-31],[-52,17],[11,27],[-68,9],[7,-23],[-68,-81],[-45,-4],[-40,-48],[72,-18],[30,-71],[35,16],[45,-21],[-28,-83],[-30,-24],[19,-44],[-140,-173],[32,-13],[-7,-37],[68,-38],[4,-33],[109,-58],[-4,-84],[18,-38],[-13,-22],[-96,2],[-5,59],[-20,6],[-29,-76]],[[12856,24458],[-29,-11],[42,-40],[-30,-30],[-35,1],[-40,-58],[43,-43],[-35,-67],[-28,-10],[-77,33],[-50,-55],[21,-28],[-25,-26],[41,-27],[4,-27],[-59,-18],[-7,-34],[-22,-5],[7,-51],[-32,-41],[19,-31],[-64,-25],[39,-32],[-5,-76],[26,3],[-12,-46],[58,-15],[-9,-28],[-46,-16],[43,-36],[-25,-126],[-27,-37],[-91,30],[-17,-23],[-103,81],[-67,-117],[-26,13],[-46,-49],[-59,44],[-43,-52],[-7,-57],[-46,46],[-47,9],[-72,-106],[-39,13],[50,-47],[-70,-86]],[[11859,23155],[-90,95],[-8,66],[12,38],[40,2],[50,58],[18,72],[-31,86],[9,66],[-50,107],[-133,41],[-48,35],[-61,109],[-86,24],[-18,71],[-54,14],[-52,-41],[-75,61],[-72,7],[-9,-39],[-32,14],[-28,-44],[-41,-3],[-22,34],[-48,-16],[-24,-50],[-65,23],[28,41],[-8,44],[-55,33],[-38,-32],[-43,23],[-68,-2],[-65,-31],[-8,-26],[-83,66],[-81,27],[-22,48],[-25,-11],[-88,32],[-96,3],[-48,-96],[-87,47],[-46,1],[-29,-28],[-21,55],[-41,20],[-89,-13],[-12,56],[-48,49],[64,43],[-26,36],[25,22],[-168,151],[-3,49],[20,24],[-22,33],[54,88],[-8,38],[-49,42],[34,61],[-26,29],[-35,11],[-22,-22],[-34,24],[-19,90],[31,46],[17,93],[-27,2],[-1,39],[-88,55],[-77,22],[-21,-17],[-33,23],[-31,-15],[-58,42],[9,19],[-30,42],[-102,20],[-17,37]],[[10444,20701],[48,-60],[12,-63],[-46,-104],[154,-103],[29,17],[62,-15],[-3,-146],[-54,-13],[-49,-42],[-12,-54],[54,-56],[-33,-46],[57,-54],[-20,-32],[7,-57],[-47,-66],[-28,-12],[-62,19],[-38,-37],[24,-34],[129,-68],[-16,-37],[7,-89],[35,-49],[70,-24],[-2,-64],[-60,-43],[-38,22],[-18,-48],[23,-19]],[[10629,19324],[-6,-20],[-91,19],[-11,-20],[-102,32],[-36,71],[-25,-1],[-28,36],[17,30],[-38,50],[-25,-16],[-25,12],[-46,65],[-125,5],[-45,127],[-107,41],[16,53],[-44,11],[11,41],[-24,47],[-215,-94],[-6,21],[-84,12],[-43,38],[-125,-13],[-45,24],[-11,-42],[-67,22],[-39,-9],[-23,-56],[-17,30],[-41,-27],[-21,26],[14,32],[-35,-13],[-65,29],[11,22],[-24,16],[-4,82],[-47,-36],[-18,39],[-62,18],[-46,67],[-46,10],[-93,-139],[-1,-45],[-16,5],[-80,-113],[-69,-42],[38,-71],[43,-30],[-46,-101],[-86,-106],[-53,-15],[-37,23],[-25,-25],[-110,-29],[-12,-59],[-31,-5],[-37,5],[-55,49],[-97,-72],[-80,71]],[[7989,19406],[-11,55],[18,51],[-36,86],[-27,-15],[-106,38],[-58,63],[-2,101],[-23,28],[-21,-14],[-23,23],[-80,6],[-11,89],[41,134],[52,75],[18,-10],[-13,105],[-165,0],[-18,51],[-83,59],[-45,-8],[7,-55],[-26,-40],[-19,12],[-14,-19],[-3,-79],[-113,-24],[-58,-66],[7,-20],[-42,-74],[-17,-11],[-49,51],[-37,-9],[-34,80],[-35,-3],[-24,-40],[9,-90],[-86,-86],[-70,25],[-53,-20],[57,-127],[42,-52],[33,0],[5,-26],[-39,-50],[24,-95],[-26,-31],[33,-23],[-61,-58],[-117,171],[-43,-8],[-47,-61],[-177,61],[-54,-41],[-13,-95],[-59,-77],[-27,-1],[-41,61],[-48,18],[-80,-90],[-71,41],[-35,-120],[-77,-52],[-38,7],[-55,73]],[[5426,19729],[-24,73],[47,71],[-11,33],[-91,-54],[-36,27],[60,128],[65,35],[-19,30],[64,146],[-26,40],[17,61],[27,-14],[43,48],[-36,54],[48,25],[24,-18],[75,18],[32,-51],[36,-4],[38,45],[36,-11],[51,44],[5,23],[-56,71],[48,32],[42,-62],[76,39],[43,-46],[19,26],[-33,42],[38,59],[-2,49],[60,12],[8,33],[71,-41],[67,-2],[19,-33],[-30,-37],[33,-7],[27,37],[75,-2],[37,27],[-25,42],[56,58],[17,-36],[57,-24],[38,48],[112,38],[26,28],[-12,21],[108,76],[84,-30],[59,30],[28,36],[-33,114],[29,21],[6,75],[41,41],[-40,48],[-5,48],[51,65],[-41,42],[98,108],[-75,90]],[[6972,21614],[77,68],[27,-3],[26,50],[-50,51],[72,72],[54,8],[66,-91],[24,14],[26,-14],[14,20],[65,-21],[22,25],[31,-28],[-7,-69],[61,-62],[138,-10],[50,42],[93,-80],[51,28],[74,-136],[-24,-53],[21,-30],[2,-84],[22,-2],[30,-79],[38,-14],[22,19],[22,-24],[9,-47],[78,-86],[12,-56],[90,-22],[42,14],[105,-61],[67,-84],[73,-19],[8,19],[44,-6],[132,-62],[-17,-65],[24,-25],[56,14],[-8,33],[18,26],[72,-34],[29,-99],[-20,-98],[71,0],[61,63],[54,-6],[121,74],[27,-57],[50,31],[21,79],[-11,33],[53,48],[-31,82],[-39,9],[35,108],[35,-3],[63,75],[24,-7],[-1,-91],[60,-16],[111,-162],[26,-79],[201,-128],[116,-33],[72,-44],[15,54],[223,62],[18,24],[55,-48],[33,18],[44,-31],[104,93]],[[15834,25632],[124,-170],[57,-64],[21,1],[6,-64],[52,-70],[-10,-76],[64,-210],[-70,-53],[-43,-80],[-93,-78],[-20,-48],[-106,-107],[-11,-66],[19,-4],[15,-73],[-37,-115],[-27,-12],[6,-22],[-37,-43],[17,-120],[58,-20],[-9,-46],[-55,-61],[14,-49],[-20,-21],[-90,27],[-28,-43],[-68,12],[-34,41],[-71,-130],[31,-110],[-17,-115],[78,-69],[-95,-179],[-79,25],[-218,-217],[-61,44],[-22,-16],[12,-28],[-50,-26],[-25,-52],[-119,-64],[-38,-89],[14,-26],[-17,-40],[-60,-14],[16,-29],[-58,-28],[-18,-61],[24,-64],[-18,-15],[-63,-34],[-36,25],[-2,49],[-23,-27],[-61,12],[-13,-55],[-35,-36],[-50,-7],[16,-25],[-33,-71],[102,-147],[31,-152],[-114,-88],[93,-95],[-30,-37],[60,-227]],[[14580,21780],[4,-81],[49,-14],[9,-35],[-92,-38],[-46,19],[-21,-37],[-37,5],[-17,39],[-54,-79],[-34,10],[-21,-39],[-79,42],[-39,-20],[-54,18],[-55,-13],[-61,-95],[-48,21],[-25,-26],[-99,41],[-32,-9],[65,-85],[-61,-52],[-46,12],[-39,45],[-56,-21],[-18,-70],[39,-84],[-11,-20],[-65,-5],[-25,-110],[-274,54],[-8,69],[-110,80],[-87,160],[-59,48],[-22,-25],[-47,29],[-32,-50],[18,-76],[-23,-138],[-55,-53],[-70,10],[-70,-84],[14,-56],[-29,-3],[-20,-91],[43,-45],[19,26],[16,-70],[-17,-44],[47,-52],[-7,-35],[51,15],[9,-40],[-25,-11],[27,-98],[-61,-68],[43,-37],[65,-8],[27,-36],[-16,-123],[38,-96],[-16,-38],[-93,-78],[12,-32],[59,-7],[46,-69],[44,-11],[-4,-26],[-50,-26]],[[12994,19964],[-101,33],[7,40],[-44,53],[24,42],[-19,25],[-48,-54],[-21,6],[22,146],[-84,-22],[-101,24],[3,29],[-50,19],[2,39],[44,62],[-37,59],[22,20],[-11,21],[62,42],[-68,50],[22,23],[-35,24],[6,47],[-54,-2],[5,120],[71,62],[-39,27],[-2,60],[22,26],[-34,13],[-1,43],[-108,-2],[-61,-103],[-71,2],[-16,-25],[10,-35],[69,-43],[4,-46],[-110,32],[-18,-36],[-93,15],[-46,-27],[-44,53],[-44,-2],[-34,-39],[-75,48],[-64,-66],[-149,58],[40,73],[-34,71],[-55,51],[-44,16],[-14,-14],[-63,47],[-74,-86],[-168,111],[-70,-5],[-15,-25],[-105,31],[-26,17],[25,41]],[[11104,21153],[24,58],[-39,13],[6,21],[-55,53],[20,52],[-7,33],[-20,1],[11,58],[-83,87],[33,52],[39,17],[92,-4],[-3,81],[-47,16],[46,162],[-23,30],[51,78],[55,16],[-8,17],[23,15],[-24,16],[4,36],[42,7],[32,-33],[87,114],[2,49],[42,-21],[19,-59],[76,71],[42,-38],[46,3],[26,18],[-16,26],[19,31],[46,2],[36,-45],[46,1],[16,31],[-60,40],[11,32],[-36,22],[11,32],[-46,17],[20,51],[-58,22],[3,37],[41,16],[17,156],[91,27],[-9,63],[32,-5],[2,37],[-64,37],[-25,68],[-57,-43],[-12,15],[84,93],[-21,48],[209,6],[19,74],[-46,25],[-7,67]],[[12856,24458],[63,-87],[95,6],[53,-54],[-9,-37],[-60,14],[-22,-15],[-53,-76],[32,-50],[59,15],[28,-19],[-27,-61],[-48,-21],[55,-15],[16,24],[74,8],[21,-59],[119,-78],[57,-4],[-1,37],[49,1],[8,-18],[56,22],[9,61],[73,86],[-2,66],[-55,78],[8,94],[70,-32],[67,13],[43,-91],[-43,-78],[78,-55],[58,15],[14,-45],[-21,-43],[53,-2],[18,-29],[41,-27],[12,19],[23,-25],[-1,-26],[-58,-34],[2,-25],[43,-6],[13,-30],[-46,-12],[51,-49],[-35,0],[-45,37],[-20,-79],[36,-25],[-26,-44],[62,-45],[103,103],[49,-10],[45,-53],[61,-25],[22,-49],[88,23],[0,91],[51,64],[-15,86],[21,44],[-4,61],[-45,43],[-9,47],[50,76],[-22,15],[4,77],[-20,22],[8,173],[-32,47],[19,110],[-61,157],[27,99],[89,160],[-7,45],[64,116],[195,-52],[78,-113],[102,171],[26,-7],[41,53],[-23,25],[9,35],[253,14],[82,-102],[33,-116],[30,10],[40,-45],[24,5],[41,34],[-4,31],[28,33],[-14,33],[26,93],[24,18],[89,-15],[21,-21],[98,139],[6,72],[-36,61],[24,43],[-38,47],[14,54],[177,3],[159,-51]],[[12732,27807],[112,-50],[13,50],[50,-9],[36,71],[50,-25],[44,18],[22,66],[51,-5],[34,33],[103,-27],[61,83],[70,-24],[18,29],[70,-29],[-15,-48],[46,-1],[11,23],[20,-24],[3,-115],[-34,-13],[-43,21],[22,-61],[-43,-62],[32,1],[12,-37],[-51,-98],[-19,-3],[-27,41],[-32,-67],[91,-44],[53,15],[15,34],[24,4],[12,-29],[20,30],[-30,30],[33,18],[-30,21],[0,39],[97,85],[33,-5],[2,-36],[68,27],[32,-34],[-8,-55],[99,-19],[-8,-46],[17,-29],[-42,-7],[-132,69],[-42,-57],[11,-41],[53,-16],[3,-27],[81,-43],[49,14],[23,-13],[55,40],[67,-12],[-83,-80],[52,-62],[46,-12],[-21,-39],[40,-63],[-16,-40],[48,-67],[386,154],[117,178],[29,9],[-10,35],[42,73],[-83,97],[56,41],[12,52],[50,-73],[212,22],[256,-252],[225,-156],[168,16],[30,-20],[46,-57],[-45,-87],[46,-25],[32,-65],[39,-19],[80,5],[89,-50],[23,-27],[30,-167]],[[15890,26779],[-42,-126],[0,-79],[131,9],[70,-77],[25,-2],[43,-76],[86,34],[40,-21],[-37,-82],[54,-49],[-12,-42],[36,-19],[122,-226],[73,-10],[22,-77],[-85,-90],[2,-47],[-151,-22],[-63,-95],[-88,42],[-12,-32],[-99,105],[-70,12],[-101,-177]],[[21860,7352],[-8,26],[-107,30],[1,79],[31,142],[142,-11],[48,28],[-49,96],[-12,192]],[[21906,7934],[240,244],[148,94],[343,37],[-10,102],[-77,15],[-27,-34],[-85,51],[17,56],[-23,56],[34,61],[-12,26],[-53,7],[4,108],[-27,17],[36,69],[-4,46],[-38,-5],[1,24],[60,8],[11,33],[-26,54],[55,18],[11,90],[60,100],[-185,34],[14,124],[-20,206],[-49,59],[-100,19]],[[22204,9653],[1,54],[-33,16],[80,97],[-6,83],[-89,23],[12,57],[-20,14],[36,17],[0,30],[163,-23],[9,-38],[-28,6],[-15,-30],[9,-119],[118,-127],[46,103],[30,-1],[49,42],[71,-4],[130,-68],[26,92],[-48,21],[-19,95],[-109,17],[9,41],[50,15],[41,-14],[24,31],[144,-35],[28,85],[-34,66],[-38,18],[33,55],[33,11],[-13,111],[61,51],[121,55],[155,-45],[23,-19],[-24,-64],[14,-9],[85,5],[18,28],[92,-80],[26,43],[57,-21],[-2,-27],[36,-24],[26,38],[67,-26],[30,14],[41,47],[46,153],[91,-69],[77,18],[24,-28],[58,-5],[12,55],[20,5],[41,-30],[135,5],[111,-132],[6,-67],[-131,-22],[-32,-26],[1,-25],[86,-2],[60,-39],[88,-18],[37,-51],[-18,-111],[115,-8],[50,35],[66,-50],[80,73],[-20,41],[21,58],[140,-19]],[[24884,10101],[-10,-60],[-47,2],[-39,-127],[-67,-2],[67,-76],[5,-50],[85,-119],[82,-15],[2,-45],[34,-52],[39,-21],[33,33],[38,2],[21,-58],[33,26],[7,44],[53,21],[134,-64],[-28,-59],[25,-36],[49,27],[79,-63],[43,-3],[21,-67],[26,-5],[20,36],[96,-10],[69,-56]],[[25754,9304],[-37,-24],[62,-106],[-8,-58],[-35,-24],[-59,127],[-79,0],[-25,-27],[17,-26],[55,-12],[26,-29],[-4,-29],[-67,-25],[-75,26],[-17,-76],[22,-29],[96,21],[21,-40],[-18,-82],[143,-80],[80,-143],[-59,-127],[-60,11],[-20,-50],[-32,21],[-17,-61],[19,-14],[-1,-40],[-48,-42],[52,-145],[-35,-85],[-40,7],[-17,-18],[14,-73],[-65,-79],[-31,12],[-74,-47],[-19,16],[-74,-114],[-98,3],[-36,21],[-60,-179],[-64,-99],[-3,-117],[21,-69],[79,-72],[69,-19],[184,25]],[[25437,7334],[17,-148],[24,-8],[11,21],[63,-24],[-13,-29],[39,-12],[12,36],[15,-9],[-29,-97],[7,-35],[37,-9],[-18,-108],[45,-25],[68,-90],[3,-84],[-43,-68],[-92,-47],[-2,-33],[39,-36],[-19,-154],[-32,-33],[-20,6],[-31,-86],[-14,8],[-83,-154],[-40,-7],[-13,-46],[-30,-18],[-43,48],[-43,-64],[-23,-106],[-84,39],[-46,-96],[12,-11],[-33,-37],[-40,18],[-37,-47],[5,-28],[-64,-74],[-37,1],[-43,44],[-151,-173],[-7,35],[-37,28],[-10,-85],[-30,9],[-25,-57],[92,2],[-2,-21],[-35,-43],[-72,-17],[0,-28],[-70,-9],[108,-93],[19,-57]],[[24642,5223],[-43,65],[-114,32],[-15,-16],[-99,64],[-29,-11],[-69,65],[-71,32],[-223,-40],[-31,-66],[-31,59],[-72,20],[-57,98],[8,62],[-130,64],[-21,47],[15,81],[64,132],[-46,53],[-13,184],[-18,11],[19,44],[-32,40],[32,97],[-48,33],[-16,-16],[30,-57],[-27,-44],[-25,-2],[3,36],[-180,41],[-27,48],[-69,30],[-14,-28],[-31,27],[-57,-35],[-18,11],[-33,-61],[-56,15],[-56,81],[-109,45],[-19,44],[-45,-7],[-26,62],[-44,23],[-38,7],[-9,-58],[-42,-20],[-121,20],[20,46],[-66,80],[-60,-5],[-6,77],[-55,-20],[-62,-80],[-45,11],[-27,-37],[-78,21],[-5,68],[-49,29],[74,37],[64,82],[59,23],[-32,21],[-6,79],[-42,17],[-10,-53],[-25,-9],[-30,-78],[-13,5],[8,71],[-19,45],[-45,13],[23,40],[-16,35],[78,67],[30,-23],[25,25],[3,89],[-58,45],[-14,-27],[-35,-5],[-79,15],[31,92],[-79,48],[-43,6],[-69,-46],[-76,13]],[[24342,12226],[47,-36],[46,5],[34,45],[87,46],[58,-8],[-10,51],[80,-36],[-9,-23],[46,-18],[1,-31],[51,-19],[33,28],[69,-14],[28,-19],[-9,-16],[128,-62],[-2,-39],[68,-37],[-8,-44],[29,-10],[11,45],[75,11],[117,167],[131,-91],[32,40],[212,-49],[-18,-36],[64,-15],[1,-33],[88,-34],[-32,-31],[0,-35],[27,-12],[12,28],[53,-20],[44,111],[46,36],[66,-33],[38,-82],[62,19],[115,-43]],[[26253,11932],[-38,1],[-14,-86],[50,-32],[-22,-23],[-24,20],[-31,-40],[-105,-22],[-139,47],[-48,-116],[-42,8],[-25,-19],[-6,-17],[38,-11],[22,-69],[35,-20],[30,25],[55,-53],[48,-2],[-22,-85],[30,-16],[5,-32],[-66,-2],[-34,30],[-90,-52],[-22,48],[-87,-82],[-94,13],[-86,-51],[-28,-162],[-74,-109],[-13,20],[-29,-5],[-33,-59],[-58,-18],[-146,43],[-6,-49],[-44,-17],[10,-26],[-19,-17],[-115,49],[-27,-36],[25,-45],[-17,-33],[21,-13],[-7,-29],[-50,-10],[-9,-55],[71,-63],[-13,-19],[29,-31],[13,15],[39,-32],[-46,-20],[-5,-39],[46,-78],[-23,-33],[-34,-183],[-72,6],[-36,-134],[-37,-11]],[[22204,9653],[-178,-139],[-47,-4],[-35,24],[-10,39],[-70,35],[-72,159],[-40,27],[-126,-4],[-41,-31],[-86,18],[-75,71],[-18,49],[-53,47],[-19,73],[-54,55],[-118,66],[-59,5],[-86,88],[0,63],[133,117],[30,128],[-19,60],[-35,29],[-137,13],[-30,27],[-93,172]],[[20866,10840],[53,77],[15,63],[-51,12],[-66,63],[8,17],[-25,27],[38,71],[179,-19],[20,74],[-50,32],[40,61],[17,-49],[38,-18],[102,34],[41,33],[10,50],[26,-8],[24,24],[13,55],[108,12],[-23,17],[-7,72]],[[21376,11540],[51,-6],[-23,-34],[11,-9],[116,58],[36,-37],[23,11],[23,81],[65,-6],[11,31],[-18,42],[-52,9],[1,29],[49,47],[51,-30],[14,-53],[47,-24],[68,63],[75,1],[76,44],[50,-41],[63,10],[8,36],[-35,15],[-6,26],[-69,17],[-62,74],[20,66],[36,21],[-11,54],[-27,22],[-89,-35],[-27,20],[43,30],[-43,63],[-26,-49],[-74,-11],[-8,37],[20,19],[31,-6],[33,38],[-2,69],[30,-3],[12,-26],[43,34],[40,-3],[41,73],[-53,42],[12,24],[-31,71],[-85,30],[21,22],[-2,84],[49,54],[64,20],[36,60],[149,-17],[-2,24],[65,41],[3,88],[26,55],[65,-55],[7,-60],[99,-91],[-26,-39],[3,-42],[56,-66],[32,-9],[39,24],[39,-25],[-21,-96],[36,-20],[-13,-54],[19,-47],[67,-48],[34,12],[42,-25],[12,57],[-20,40],[53,60],[81,-46],[72,-79],[56,-22],[-16,-85],[33,-39],[-12,-22],[71,-73],[50,-5],[41,112],[94,-51],[42,-1],[145,56],[48,71],[-12,65],[85,51],[48,-36],[12,-38],[57,-9],[16,-58],[107,-19],[1,84],[27,42],[108,-52],[-14,41],[35,29],[79,-24],[2,-61],[27,-16],[105,35],[116,-14],[72,-31]],[[9065,11633],[55,-15],[91,-73],[51,53],[140,-76],[64,38],[90,-18],[48,-45],[168,-52],[-7,-77],[-119,12],[-16,-84],[-102,66],[-14,-23],[20,-78],[51,-36],[-23,-59],[113,-65],[68,17],[-17,75],[33,89],[41,-17],[92,8],[-2,-67],[-46,-73],[47,-43],[33,10],[21,39],[47,-2],[-28,-90],[20,-20],[-14,-66],[-32,-45],[98,-85],[140,17],[12,-22],[115,-28],[85,-73],[41,-8],[85,44],[50,52],[93,-92],[52,38],[35,91],[64,43],[52,-109],[-55,-19],[1,-68],[161,-105],[37,13],[104,121],[102,-37],[111,66]],[[11321,10755],[30,-44],[-63,-85],[-88,17],[-63,-23],[2,-28],[85,-31],[-7,-76],[17,-19],[64,-1],[36,-25],[-3,-42],[-137,-95],[-7,-76],[15,-41],[76,-57],[-50,-90],[12,-29],[80,-8],[38,-49],[-27,-36],[-69,3],[-93,37],[-49,-48],[41,-98],[48,-15],[8,-48],[-32,-58],[83,-155],[47,-18],[83,42],[40,-38],[-93,-33],[-18,-29],[68,-136],[-16,-43],[-79,-38]],[[11300,9242],[-22,-17],[-10,-85],[-83,-69],[-32,-58],[33,-100],[-23,-45],[-51,-22],[-98,-105],[32,-183],[-85,-5],[-63,-95],[-54,-36],[-19,-103],[-63,-108],[-17,-88]],[[10745,8123],[-49,-106],[-31,-177],[68,-86],[44,-153],[-18,-146],[14,-73],[37,-40],[45,97],[35,-18],[1,-132],[71,-139],[-39,-15],[-8,-60],[-33,-39],[-55,15],[-38,-21],[-27,-60],[-111,43],[44,74],[-26,12],[7,62],[-66,42],[-47,-4],[-77,-57],[48,-44],[62,-1],[-37,-102],[25,-34],[-18,-19],[-85,47],[-60,-59],[-14,66],[-32,19],[3,80],[-89,23],[-44,-35],[-13,-52],[62,-11],[-6,-64],[-40,3],[-12,-36],[-86,-4],[-1,18],[-70,20],[-17,-35],[-79,12],[2,45],[33,51],[-74,65],[49,120],[-153,82],[-23,82],[-96,-123],[-13,-103],[-83,-88],[-78,13],[-32,27],[27,129],[28,36],[-26,16],[-18,59],[104,129],[7,-39],[-25,-40],[17,-33],[38,16],[19,175],[-131,64],[15,53],[-87,-9],[-21,45],[36,54],[-22,30],[10,20],[-44,32],[-96,-3],[4,-29],[-37,-18],[-62,-127],[-1,-26],[48,13],[-2,-23],[65,-8],[25,-35],[-4,-44],[28,-42],[-7,-97],[-62,9],[-63,49],[1,33],[-52,28],[-25,4],[-10,-34],[-45,44],[-12,-34],[-84,-5],[-125,-144],[12,-21],[-41,-67],[-111,-71],[-2,75],[-27,5],[-14,89],[56,57],[37,91],[-99,67],[-4,26],[58,128],[90,-61],[85,170],[65,-26],[36,-51],[37,-2],[46,11],[-3,45],[-25,27],[33,47],[108,-33],[11,20],[-20,43],[-90,79],[21,230],[-19,14],[-22,-30],[-25,10],[-9,-47],[-75,-52],[5,64],[-55,42],[-45,-61],[-136,64],[-16,-17],[2,-90],[-67,3],[-25,-62],[7,-23],[38,-9],[0,-53],[41,-74],[-32,-32],[-35,-1],[-7,-85],[-42,-44],[-22,-149],[-45,-14],[-43,126],[-122,120],[43,62],[28,131],[-32,2],[-96,-97],[-45,60],[48,78],[104,-40],[15,55],[46,25],[53,86],[22,1],[-29,46],[31,31],[-8,28],[102,89],[21,46],[41,8],[5,26],[165,-9],[29,71],[143,20],[38,-19],[8,-14],[-79,-65],[-19,-46],[-110,37],[-16,-24],[-66,1],[-14,-25],[25,-62],[110,-21],[73,-61],[101,137],[70,-26],[79,40],[-10,40],[-86,50],[31,166],[-31,18],[-15,65],[-43,31],[-56,-24],[-42,-77],[-29,10],[4,32],[-56,15],[-63,56],[72,64],[2,31],[60,12],[38,119],[-74,39],[52,-1],[9,29],[-40,25],[9,32],[-71,48],[33,62],[45,-28],[52,54],[29,45],[-26,19],[21,44],[-61,47],[-31,-11],[-48,-108],[-34,54],[4,37],[-30,16],[-26,-21],[-44,21],[-63,-4],[-48,-75],[60,-47],[-11,-95],[-210,-17],[-45,-70],[41,-12],[-3,-25],[71,-20],[27,-99],[30,-36],[-27,-115],[-58,-43],[-4,-42],[-99,-9],[-22,17],[-10,53],[119,15],[20,33],[-71,31],[27,38],[-40,-3],[-58,38],[-57,-81],[-14,6],[59,96],[-61,18],[-47,45],[-116,-37],[-24,-39],[-48,35],[-4,28],[-49,23],[0,55],[-22,24],[-32,-28],[-22,-200],[27,-45],[63,-8],[60,-121],[41,-23],[71,73],[87,8],[91,-82],[-110,2],[3,-19],[-29,-15],[-29,17],[-26,-24],[-37,24],[-131,-57],[-6,-101],[87,58],[15,-15],[-46,-93],[74,-37],[-38,-38],[43,-90],[-98,-9],[-9,-31],[-106,16],[-35,-27],[-75,45],[-5,62],[29,38],[-53,22],[-22,44],[-19,-44],[-175,64],[36,42],[-36,90],[37,36],[41,-89],[178,162],[-104,97],[-41,-71],[-107,48],[-91,-46],[17,-116],[-31,-54],[-36,-21],[-27,11],[-10,68],[-69,15],[-41,-39],[-9,-92],[-45,-37],[-44,-2],[-73,44],[-19,-88],[74,19],[40,-39],[15,-46],[-25,-104],[-110,-34],[-63,86],[-61,19],[-28,-30],[53,-51],[-19,-36],[11,-62],[66,-47],[-97,-60],[-14,-51],[-101,-23],[-46,102],[13,40],[-29,-9],[-64,-103],[-31,-14],[-20,-66],[-94,82],[-71,-32],[-24,-58],[14,-59],[57,-68],[76,25],[190,127],[32,-72],[94,39],[20,-18],[-14,-17],[13,-49],[145,-28],[75,-55],[-50,-73],[-4,-63],[-57,-97]],[[7190,7498],[-130,-195],[-130,-76],[-95,-117],[-179,-116]],[[6656,6994],[4,35],[-104,105],[3,40],[103,-6],[49,65],[-24,21],[-49,-16],[-98,21],[-35,40],[1,40],[-105,24],[-19,74],[96,64],[-141,55],[-24,28],[6,62],[-53,-10],[-39,30],[63,99],[-112,108],[25,65],[-80,6],[-132,63],[158,140],[-31,11],[-47,123],[-133,54],[22,84],[12,23],[44,-14],[27,49],[91,70],[-10,39],[20,76],[-17,32],[73,142],[26,1],[47,-75],[37,0],[90,32],[16,87],[28,41],[49,14],[7,32],[62,-24],[17,14],[-13,80],[-58,76],[8,36],[51,20],[-44,29],[-2,93],[43,95],[79,72],[47,-78],[53,-21],[9,74],[134,110],[151,-65],[37,26],[62,-56],[78,-14],[42,31],[87,-43],[55,77],[67,-5],[-2,49],[23,28],[73,-26],[-32,-64],[169,-42],[99,142],[80,13],[25,41],[74,22],[5,31],[41,-13],[39,20],[41,-49],[41,10],[34,44],[88,30],[80,-1],[99,42],[5,64],[38,76],[-12,178],[-43,40],[-15,47],[-46,27],[12,51],[-71,15],[-99,63],[-36,53],[-13,106],[26,34],[62,-23],[22,53],[33,-9],[17,61],[109,177],[101,-29],[22,78],[-24,26],[-39,8],[-30,-49],[-40,34],[60,89],[134,-42],[1,-113],[58,-53],[47,8],[28,85],[-14,3],[21,74],[-8,72],[-41,5],[-11,38],[-52,-24],[-4,76],[69,110],[57,22],[54,-40],[22,65],[-25,15],[29,60],[-42,108],[71,27],[48,93],[90,68],[62,-19],[-29,29],[19,24]],[[11860,13930],[34,-94],[58,-25],[138,106],[47,1],[27,-23],[-14,-96],[-179,-110],[-16,-46],[21,-102],[115,-138],[73,-29],[22,-30],[117,-37],[157,-26],[62,12],[57,-75],[-39,-103],[31,-47],[84,-17],[227,-116],[220,-7],[29,-24],[-11,-81],[-88,-117],[9,-59],[125,-62],[67,-79],[178,-13],[-1,-24],[76,-7],[144,85],[119,-109],[140,-35]],[[13889,12403],[67,-70],[29,-82],[30,-15],[-24,-99],[13,-54],[-37,-27],[-79,22],[-56,-108],[61,-16],[108,107],[64,-34],[-51,-124],[-39,0],[-19,-27],[-20,-58],[30,-25],[-51,-100],[-72,38],[-55,-75],[-2,37],[-50,4],[-55,-88],[-68,23],[48,106],[-89,16],[-21,-18],[-28,-95],[31,-51],[78,-49],[-13,-217],[34,-83],[-31,-18],[-97,18],[-41,29],[-51,120],[-40,31],[-36,-23],[-6,-54],[29,-111],[-9,-33],[-63,-62],[-55,-6],[-139,84],[-57,167],[-67,30],[-120,-57],[-114,147],[-26,-14],[-50,-101],[-78,-23],[-121,143],[-74,12],[-62,-34],[1,-50],[40,-67],[-7,-44],[-61,-1],[-140,-76],[-181,59],[-37,-4],[-21,-29],[-14,-38],[24,-88],[78,-28],[98,20],[59,-65],[-72,-148],[-35,-29],[-55,-1],[-43,48],[-20,71],[-138,87],[-128,-110],[-62,-83],[-8,-39],[28,-32],[2,-92],[-34,-36],[-79,5],[-39,71],[-69,38],[-86,-3],[-25,-67]],[[9065,11633],[-25,32],[27,34],[1,51],[-22,31],[57,5],[52,82],[-53,67],[43,45],[-28,63],[106,109],[56,15],[27,29],[16,76],[67,9],[44,80],[3,37],[-56,4],[-126,82],[6,60],[-122,74],[-2,28],[56,13],[13,72],[71,9],[70,-27],[49,20],[19,35],[-12,53],[-111,105],[32,50],[33,28],[38,-26],[107,-9],[-26,28],[34,32],[-11,100],[-141,41],[-35,38],[70,53],[23,-14],[48,32],[62,-46],[21,-70],[133,-7],[16,23],[-12,45],[39,21],[-32,44],[-58,12],[5,62],[42,61],[76,32],[30,3],[16,-47],[21,6],[24,24],[-31,61],[60,106],[76,-11],[36,38],[-46,50],[96,24],[-13,69],[-58,62],[-77,7],[-34,33],[-33,-7],[-34,45],[15,35],[44,21],[3,49],[-38,85],[11,46],[41,40],[12,-28],[106,27],[3,62],[53,98]],[[10038,14354],[97,0],[88,-32],[33,-36],[36,15],[29,-28],[38,7],[46,61],[19,-11]],[[10424,14330],[46,-44],[100,-10],[233,90],[58,-35],[79,-195],[51,-13],[175,45],[177,94],[324,56],[91,-71],[25,-62],[10,-135],[67,-120]],[[27454,12744],[-29,-41],[-34,-8],[-4,-35],[28,-32],[-16,-40],[63,-39],[-14,-60],[33,-45],[85,-5],[20,-26],[-43,-134],[53,-31],[24,-57],[-4,-22],[-41,8],[-24,-55],[98,11],[4,-45],[-73,-42],[33,-15],[66,20],[25,-42],[-36,-61],[28,-121],[31,-28],[15,-65],[37,-28],[24,-66],[-9,-40],[26,-19],[-8,-39],[37,-19],[-17,-34],[38,-23],[-5,-62],[29,-29],[7,-49],[-24,-73],[40,-11],[-48,-70],[10,-103],[-52,-83],[153,-56],[5,-46],[30,-6],[38,-66],[40,0],[-13,-92],[80,-39],[-7,-30],[23,-41],[95,-15],[124,38],[98,-25],[46,32],[4,-20],[61,-21],[85,-75],[-31,-54],[2,-67],[49,-9],[-5,-39],[41,-41],[3,-46],[83,-4],[87,-121],[110,-7],[12,53],[-19,21],[27,10],[-15,25],[45,61],[47,-53],[58,0],[10,-42],[50,23],[-10,-60],[59,-12],[9,-25],[84,8],[37,-21],[-13,-63],[-67,-57],[17,-48]],[[29359,9956],[-7,-142],[60,-63],[-9,-84],[-41,-30],[64,-39],[32,3],[19,-85],[-42,-10],[-24,-91],[-30,-25]],[[29381,9390],[-47,36],[-50,-81],[-51,-7],[-54,167],[-26,27],[-39,-2],[-32,-50],[-5,-69],[18,-23],[-50,-12],[-15,29],[-109,14],[-6,-61],[-43,-28],[-15,-61],[-39,-22],[-70,38],[-7,121],[-21,10],[-22,68],[-176,22],[-106,-27],[-36,74],[-34,-13],[-24,-83],[-89,22],[3,-68],[-52,-31],[-160,15],[-1,-40],[-42,-7],[-37,-80],[-36,7],[-57,67],[-105,29],[-64,-31],[-43,-74],[34,-19],[11,-127],[-45,-10],[-32,-95],[142,-96],[-19,-33],[-68,10],[-8,-18],[-61,-4],[-17,-62],[71,-32],[12,-39],[-141,-30],[-38,-42],[2,-84],[43,-72]],[[27525,8513],[-115,37],[-119,-18],[-23,-20],[-103,-1],[-5,45],[34,13],[54,-22],[9,43],[-96,44],[-86,-15],[-14,25],[13,39],[63,63],[-21,75],[-116,24],[-22,-24],[17,-61],[-11,-95],[-17,-21],[-47,2],[-6,128],[-39,92],[-71,28],[-5,-49],[46,-19],[7,-25],[-36,-50],[-166,37],[10,37],[-39,63],[3,35],[-48,64],[-146,-49],[-23,44],[72,37],[-13,29],[-79,-1],[-59,33],[-20,121],[-103,-10],[0,-37],[-37,-17],[7,-27],[-29,-30],[-72,133],[-46,-41],[-40,32],[-39,-18],[21,-16],[-24,-22],[-73,7],[-48,112],[-32,36],[-39,1]],[[26253,11932],[204,-37],[68,-145],[80,38],[20,26],[-37,25],[87,79],[-6,41],[-81,31],[53,72],[-46,69],[-125,15],[-9,-29],[-28,-3],[-64,31],[17,13],[9,90],[38,-15],[27,52],[-6,31],[-56,-7],[-73,56],[-24,72],[-44,11],[51,125],[-18,15],[11,44],[73,17],[89,-31],[43,86],[78,-62],[35,40],[30,-21],[4,24],[83,29],[29,-15],[5,-28],[89,-18],[16,-29],[33,17],[15,46],[-32,-5],[-11,44],[53,1],[-15,86],[55,23],[-9,99],[37,-36],[55,20],[-6,109],[50,-21],[45,-81],[33,-15],[-6,-44],[56,-13],[16,19],[26,-10],[10,24],[27,-19],[-59,-66],[64,-10],[14,35],[37,-3],[91,-80]],[[25437,7334],[67,26],[19,61],[-65,34],[-103,9],[-87,55],[-17,56],[21,37],[62,21],[64,151],[96,48],[101,-11],[44,-40],[116,-299],[80,-15],[61,30],[62,224],[74,41],[80,-21],[161,-107],[67,-98],[71,7],[42,129],[148,-9],[-5,-36],[69,-14],[11,38],[192,-10],[24,41],[40,-11],[53,37],[155,-36],[12,-101],[99,-20],[28,191],[70,15],[49,-20]],[[27398,7737],[20,-46],[51,63],[36,-6],[19,27],[98,-2],[6,-61],[104,16],[64,-83],[37,15],[31,145],[56,-6],[9,25],[25,-9],[-10,-42],[-37,7],[8,-53],[45,-20],[-29,-87],[24,-28],[57,-5],[-35,44],[-3,71],[72,10],[8,26],[53,15],[40,-11],[-18,-58],[-28,1],[-7,-61],[29,-5],[10,-30],[-53,-34],[39,-78],[-21,-23],[-127,18],[18,-69],[76,-37],[-45,-60],[47,-44],[21,97],[22,-2],[115,-78],[-8,-20],[60,-28],[73,26],[29,93],[34,25],[-28,13],[16,47],[61,3],[24,49],[44,-6],[14,34],[161,-48],[362,-8],[102,136],[14,78]],[[29183,7673],[198,-82],[11,-91],[97,-3],[-7,-34],[62,-28],[90,11],[14,-88],[168,13],[69,-18],[38,-43],[-10,-45],[-40,-38],[6,-145],[-66,4],[-6,-29],[-84,9],[-1,-26],[-34,3],[-6,-36],[35,-41],[-4,-55],[-57,-5],[-6,-53],[37,-10],[-15,-81],[32,-51],[-19,-60],[-80,-12],[-88,63],[-5,-16],[-80,-11],[-66,26],[-15,-39],[18,-44],[-20,-72],[34,-26],[-18,-67],[30,-20],[7,-76],[-33,-23],[31,-152],[-90,-14],[-2,-25],[27,7],[18,-213],[73,-171],[-22,-110],[44,-47],[-8,-70],[43,-105],[62,-21],[10,-47],[41,-14],[44,50],[25,-8],[-27,-77],[-109,-9]],[[29529,5308],[-73,8],[-128,-94],[-16,85],[-31,-20],[-42,26],[-34,-50],[-99,17],[4,71],[22,35],[39,-2],[12,45],[-69,40],[-22,36],[11,100],[-29,158],[-96,-25],[-44,-147],[-79,-82],[-42,-7],[-10,-96],[-122,19],[13,59],[-40,21],[-47,-60],[31,-21],[-10,-38],[-33,-11],[-71,31],[-87,-16],[-67,37],[-150,13],[-29,57],[-83,-29],[-24,16],[-23,-47],[-249,-136],[-26,18],[-109,-31],[-108,54],[-10,-115],[-37,-5],[-15,-43],[-93,-34],[-55,-49],[-170,30],[49,107],[-17,65],[-41,0],[-19,-48],[-51,10],[-32,41],[-106,63],[-44,-95],[-129,-49],[0,-112],[32,-76],[5,-126],[-10,-66],[-71,-15],[1,-105],[47,-31],[16,-76],[-52,-53],[-48,-9],[-28,-42]],[[26691,4509],[-90,-28],[-77,4],[-47,38],[-145,-24],[17,72],[-73,74],[-49,8],[-105,-110],[33,-74],[-9,-55],[30,-41],[-47,-148],[21,-27],[-13,-32],[56,-84],[-30,-46],[-23,18],[-46,-18],[-198,40],[-56,91],[-53,28],[-44,-11],[-54,-69],[-80,9],[-15,-16],[-16,23],[39,91],[-15,47],[18,116],[-32,29],[32,17],[-4,23],[-70,-11],[-11,53],[-86,30],[-17,-25],[42,-7],[-59,-77],[-29,49],[-117,-2],[8,29],[-32,31],[68,74],[18,-13],[16,35],[-22,28],[7,38],[19,4],[-24,122],[26,15],[17,105],[-41,11],[-4,-55],[-15,-1],[-34,88],[-48,-75],[-53,42],[-43,-62],[52,-30],[23,-85],[-27,12],[-9,48],[-137,26],[54,46],[32,79],[-41,23],[23,23],[-17,53],[63,-37],[42,28],[-40,5],[26,72],[-14,19],[-29,14],[-50,-24],[-61,38],[60,73],[-87,-5],[-28,-77],[30,-23],[-54,-11],[-3,-31],[-139,78],[-34,-44],[10,-19],[-67,0],[-22,-20],[-15,81],[-31,31]],[[29529,5308],[-41,-78],[8,-57],[-37,-73],[57,-18],[-5,-32],[28,-18],[172,-71],[-3,-21],[37,-11],[25,-82],[48,-59],[63,0],[23,-22],[26,20],[16,-9],[-7,-26],[55,-15],[40,46],[41,24],[42,-5],[33,34],[102,-38],[36,11],[9,31],[26,-37],[89,35],[46,-81],[67,-7],[14,42],[-15,56],[29,5],[14,47],[23,-1],[10,67],[33,8],[34,66],[-14,26],[-41,-17],[-8,79],[30,9],[32,-54],[56,-30],[42,21],[119,-23],[83,50]],[[30966,5100],[169,-79],[3,-31],[65,-36],[34,-101],[58,-39],[141,29],[-21,-193],[66,10],[19,-58],[26,-3],[65,-86],[-80,-62],[-10,-100],[39,-1],[53,-41],[45,5],[-16,-68],[84,-7],[21,-28],[-32,-60],[-56,-4],[-30,-47],[4,-86],[27,-34],[-10,-114],[-29,-78],[-119,-56],[26,-68],[-503,-125],[-25,-48],[11,-52],[-62,-192],[42,-90],[52,8],[0,-173],[56,7],[88,-34],[-1,-43],[41,-37],[33,-90],[40,-30],[-64,-41],[-52,-103],[-108,6],[-96,-83],[-21,-48],[-36,-14],[32,-86],[72,-16],[26,-36],[8,-142],[-50,-72],[-4,-38],[-61,-26],[-31,-50],[28,-54],[-27,-57],[16,-84],[-81,-173],[-87,-273],[-92,-79],[-39,25],[-34,-86],[-44,-60],[-29,-5],[-86,-162],[7,-102],[-22,-74],[-96,-47],[-51,27],[-51,-51],[20,-43],[-53,-19],[-7,-34],[-30,-9],[14,-50],[-42,-44],[22,-66],[-35,-67],[2,-42],[-61,-56],[18,-44],[-51,-40],[-20,17],[-60,-11],[-53,-41],[-35,6],[-41,-24],[-6,-42],[-62,-70],[-259,-77],[-64,-5],[-111,52],[-91,2],[-325,-54],[-121,2],[-116,110],[-211,126],[-240,271],[-152,-35],[-3,154],[-50,119],[-290,85],[119,167],[49,108],[-140,72],[-81,-15],[-28,16],[5,48],[-46,55],[-32,6],[-93,112],[-31,-1],[-31,54],[48,64],[-18,34],[61,43],[82,-87],[139,-24],[7,72],[73,98],[-38,321],[99,30],[38,41],[-44,113],[88,288],[-37,35],[25,174],[-32,53],[24,91],[-26,-1],[6,24],[-28,10],[-101,-51],[-68,3],[-64,69],[53,212],[71,45],[-30,60],[-7,96],[24,33],[-13,104],[28,16],[18,59],[0,37],[-102,85],[1,86],[44,11],[6,21],[-48,57],[-2,54],[109,-45],[1,25],[45,-10],[-1,-68],[276,63],[-8,104],[-24,52],[11,110],[-187,-5],[61,84],[-27,61],[10,112],[-132,-8],[-78,23],[-24,-49],[-52,14],[4,25],[-52,-35],[-43,55],[13,167],[-147,120],[-70,-14],[-96,-68],[-140,-37],[-142,-95],[-198,-63],[-41,17],[-39,144]],[[29683,14048],[135,64],[57,-15],[56,19],[77,-25],[149,9],[364,-251],[77,-6],[35,-28],[35,7],[11,32],[27,-12],[47,-68],[83,-48],[120,-122],[47,-56],[2,-64],[98,-70],[91,-9],[127,54],[119,7],[71,-22]],[[31511,13444],[-52,-116],[-109,-3],[-42,-22],[-70,-160],[-87,-108],[-11,-81],[-44,-16],[-6,-52],[-44,-60],[30,-18],[-12,-23],[44,-141],[-15,-60],[-37,0],[37,-70],[-52,0],[-12,-87],[-47,17],[-28,-61],[-32,11],[-30,-59],[-79,-37],[-57,23],[5,-35],[40,-19],[-1,-39],[84,-3],[1,-34],[-38,-37],[-78,30],[-70,-19],[-22,27],[-58,9],[-36,-67],[-1,-52],[39,-2],[-1,-44],[34,-28],[74,83],[31,-20],[-9,-45],[-61,-37],[-9,-56],[-37,-3],[-29,24],[-70,-16],[-3,-36],[41,-2],[11,-58],[-70,-33],[6,-111],[-35,-21],[-18,-96],[73,-10],[21,51],[53,-5],[74,28],[18,-24],[45,-1],[-10,-65],[72,0],[20,-41],[26,-3],[-42,-78],[-30,16],[13,23],[-20,29],[-12,-56],[-86,22],[7,-36],[49,-10],[-17,-57],[-147,-10],[-3,-42],[-25,-23],[48,-37],[-9,-34],[48,-25],[-31,-31],[-16,-67],[17,-70],[-23,-26],[43,16],[39,-14],[45,-55],[62,-16],[-45,-68]],[[30733,10862],[-39,-21],[-74,15],[-45,-144],[-41,-9],[-5,-98],[-27,-10],[22,-63],[-75,10],[-60,103],[-25,7],[-106,-33],[-24,-33],[-56,19],[-53,-53],[-24,5],[2,51],[-39,23],[-20,-16],[-59,45],[-11,-68],[82,-44],[14,24],[27,-4],[17,-71],[-21,-94],[65,-42],[63,-91],[-64,-40],[-150,14],[-34,-24],[-45,-155],[-43,-23],[-7,-29],[-85,4],[-36,-49],[24,-25],[-20,-81],[-27,3],[-107,104],[-154,19],[-8,-40],[-106,8]],[[27454,12744],[68,41],[-48,30],[6,209],[26,37],[-20,72],[-53,14],[-15,35],[54,81],[-25,31],[8,33]],[[27455,13327],[45,14],[33,41],[51,-10],[93,-61],[-4,-43],[42,-6],[83,110],[21,-16],[-39,-62],[20,-25],[-1,-133],[42,-59],[47,-3],[49,-101],[37,17],[12,-47],[72,-5],[15,19],[79,-17],[17,-41],[50,2],[29,-71],[39,-24],[20,19],[69,-54],[23,74],[12,10],[30,-34],[45,68],[-21,50],[-63,4],[-45,87],[-30,13],[60,20],[-25,19],[1,45],[21,-6],[36,74],[36,5],[-11,52],[27,15],[1,27],[-51,41],[4,65],[-25,23],[43,66],[-5,30],[-17,2],[-13,70],[-29,55],[-22,-9],[-8,40],[16,31],[45,-26],[46,31],[71,123],[-75,46],[27,66],[-27,30],[0,52],[180,66],[-36,60],[24,43],[98,-16],[11,-22],[-42,-87],[32,-45],[32,26],[12,-29],[40,45],[42,-31],[59,-7],[16,-41],[-55,-93],[37,-71],[73,32],[61,-28],[-12,-26],[65,-41],[52,18],[80,-119],[-25,-60],[7,-32],[64,-68],[71,-19],[10,-28],[49,15],[16,34],[20,-33],[45,-9],[88,17],[5,143],[20,25],[-19,19],[10,198],[100,182]],[[31719,16858],[-37,-146],[-60,-29],[1,-29],[107,-37],[-9,-37],[21,-12],[56,-3],[-7,-69],[40,-45],[52,-14],[68,-115],[-2,-130],[-25,4],[-10,-50],[178,-37],[-38,-29],[-21,-55],[63,-91],[-16,-100],[32,-138],[-11,-77],[20,-25]],[[32121,15594],[27,-212],[-70,-57],[11,-63],[50,-77],[-14,-69],[-81,-73],[11,-61],[-39,-33],[12,-29],[-30,-50],[-12,-98],[-72,-14],[-61,17],[-26,-45],[-72,27],[-26,-23],[36,-57],[-18,-36],[-34,-13],[-8,63],[-21,7],[-25,-30],[-73,16],[-20,-20],[-74,4],[-63,-84],[31,-77],[-10,-38],[-47,11],[-26,-22],[99,-143],[3,-58],[42,-31],[-85,-56],[-17,-24],[11,-54],[37,-13],[36,54],[104,7],[14,-16],[-18,-43],[-58,-33],[27,-14],[82,15],[12,-114],[19,-40],[38,-6],[38,111],[56,-15],[13,23],[-36,45],[-61,5],[-3,32],[155,31],[27,-11],[-27,-79],[8,-95],[41,-31],[95,58],[11,-37],[-58,-82],[81,-29],[-26,-50],[44,-28],[6,-33],[19,-9],[46,37],[-7,-36],[-48,-10],[-10,-121],[20,-8],[105,94],[56,24],[42,-32],[22,-143],[-123,-43],[-37,-36],[-5,-132],[-33,-131]],[[32134,13158],[-6,-32],[-20,3],[-87,80],[39,74],[-47,-10],[-29,33],[-57,-18],[-179,38],[-57,50],[-180,68]],[[29683,14048],[-71,44],[-159,-5],[-86,88]],[[29367,14175],[141,139],[-19,3],[22,101],[-66,80],[61,113],[139,29],[218,85],[6,-35],[90,-70],[41,79],[-18,80],[57,42],[-73,44],[-36,-32],[-38,-2],[-65,63],[5,53],[-19,17],[-27,-16],[-58,81],[18,54],[-39,50],[12,39],[-20,47],[-26,13],[-61,-27],[-7,35],[-33,13],[9,35],[-19,24],[24,48],[43,1],[69,91],[-33,9],[31,47],[-10,62],[-157,6],[19,71],[56,72],[-83,-8],[-50,30],[5,64],[-27,-3],[9,75],[33,48],[73,-59],[-1,75],[37,-22],[33,31],[27,-5],[36,23],[-12,40],[59,40],[-25,45],[20,14],[-6,85],[-40,25],[-41,-46],[-78,-9],[-14,27],[38,71],[-26,76],[-27,5],[-31,60],[74,24],[30,35],[19,64],[-22,20],[11,70],[103,159],[-45,-7],[-10,27],[42,73],[70,-100],[70,43],[30,-20],[198,35],[22,73],[-72,82],[56,-26],[32,42],[-58,57],[14,30],[-27,35],[8,21],[51,-44],[37,26],[-71,77],[-41,-55],[-52,28],[54,11],[20,33],[-67,68],[83,12],[72,83],[-25,61],[-47,44],[10,79],[-55,10],[-27,-34],[-120,-42],[-6,37],[-88,16],[25,-30],[-22,-18],[-15,42],[-47,-39],[-3,84],[24,7],[-11,15],[-25,-16],[1,32],[40,60],[-78,67],[15,28],[30,1],[-5,-36],[53,32],[-68,59],[26,29],[-27,62],[-51,40]],[[29648,17967],[15,55],[-38,67],[12,20],[26,-24],[31,13]],[[29694,18098],[-9,-25],[37,-20],[34,32],[52,-42],[42,33],[25,-10],[4,-55],[142,-8],[71,-48],[29,27],[38,-22],[-8,-90],[63,-40],[57,31],[8,38],[70,21],[29,-119],[-27,-157],[119,34],[27,28],[5,91],[-24,18],[50,29],[19,95],[48,31],[44,10],[11,-30],[37,-12],[44,71],[81,-24],[13,62],[75,-30],[77,-68],[33,2],[-1,-25],[-77,-78],[21,-39],[-133,-104],[27,-26],[-5,-66],[-58,6],[-57,-157],[-69,-9],[-51,-82],[34,-81],[51,-25],[-16,-40],[105,-24],[8,72],[75,-30],[312,9],[-8,-76],[102,30],[108,-65],[1,-37],[-30,-32],[33,-9],[0,-38],[31,-9],[7,-35],[57,-6],[4,-71],[238,-46]],[[34222,14969],[-108,78],[-12,48],[-110,42],[-21,70],[-25,18],[-28,-14],[-27,44],[-8,60],[-59,60],[-41,9],[-24,44],[28,63],[-29,148],[-55,37],[-98,1],[-103,80],[-23,-25],[-109,-23],[-8,-57],[-59,15],[-20,37],[-54,27],[33,96],[-21,106],[38,60],[2,43],[-101,18],[-10,24],[27,21],[-27,32],[-24,-21],[-1,-42],[-42,-12],[-93,24],[-5,-137],[-29,-8],[-14,-45],[-40,-5],[-4,-28],[-64,6],[-6,-36],[-47,-18],[-28,26],[-34,-58],[-36,-17],[-114,35],[-8,-62],[-52,7],[-47,-30],[-38,-1],[23,92],[-24,18],[-67,-3],[-40,-104],[-37,-2],[-53,-118],[-47,-14],[-78,16]],[[31719,16858],[42,4],[23,191],[23,-7],[37,48],[51,-11],[21,24],[26,-15],[18,-40],[-21,-44],[76,-23],[10,79],[41,33],[48,-8],[9,62],[-32,32],[12,49],[47,6],[113,-34],[12,14],[95,-35],[23,34],[-6,67],[126,-15],[61,-66],[38,20],[25,184],[33,52],[89,-12],[27,43],[-77,30],[-16,39],[3,72],[51,36],[-17,20],[-37,-18],[-39,17],[-32,97],[67,18],[66,-50],[55,26],[-2,114],[-107,4],[-1,16],[132,65],[19,96],[94,4],[42,40],[34,266],[64,63],[-14,17],[-169,-68],[-25,20],[126,76],[25,37],[-61,48],[-13,95],[18,18],[99,-93],[45,30],[11,38],[-57,113],[-65,-22],[-50,30],[-16,53],[61,35],[49,-47],[3,35],[100,6],[56,26],[-56,85],[-6,56],[49,58],[75,34],[25,-11],[31,24],[40,-77],[63,11],[62,-54]],[[33491,19018],[-9,-101],[33,-65],[187,-47],[101,-76],[13,-29],[-27,-32],[96,-87],[31,-86],[0,-49],[-71,-47],[-99,-159],[20,-46],[-75,-91],[-3,-120],[44,-35],[43,1],[68,37],[43,-4],[53,50],[26,15],[27,-14],[38,34],[68,-43],[-26,-41],[19,-17],[-62,-88],[-78,-9],[41,-67],[111,-68],[71,1],[19,-21],[-31,-152],[-26,-23],[90,-115],[-47,-54],[37,-43],[3,-71],[-7,-25],[-102,-72],[6,-24],[54,11],[-4,-50],[45,-10],[31,-68],[-36,-62],[42,-60],[-3,-42],[33,2],[63,-59],[36,21],[64,-27],[36,113],[24,5],[20,-47],[66,19],[7,-47],[75,5],[-14,-28],[16,-48],[-33,-28],[2,-79],[42,-56],[83,-49],[79,1],[23,43],[-18,29],[35,65],[78,18],[62,54],[143,-61],[66,-101],[-5,-75],[-50,-56],[32,-5],[-13,-32],[29,-31],[-24,-127],[-112,-187],[46,-81],[54,-48],[28,6],[40,63],[97,58],[98,-3],[98,-198],[21,-169],[98,-33],[129,-2],[168,-41],[-3,-130],[48,-107],[-165,-35],[-33,-39],[-131,30],[-167,-47],[-56,26],[-35,-69],[-71,11],[-6,-35],[-39,2],[-375,143],[-157,-12],[-60,18],[11,57],[-248,-19],[-104,35],[-10,-85],[19,-116],[-66,-110],[-46,-36],[4,-24],[-58,-80],[3,-47]],[[28290,15109],[-102,57],[-69,-15],[-57,-63],[-119,-54],[-81,-31],[-46,12],[-73,98],[-30,5],[-35,-30],[-150,54],[-70,-1],[-118,79],[-165,5],[-286,201],[-96,-34],[-121,27],[-54,43],[12,138],[-55,46],[-96,-9]],[[26479,15637],[-138,-164],[-143,14],[-40,52],[-1,37],[-72,25],[-124,103],[-21,80],[15,103],[-92,111],[-66,53],[-159,58],[-91,69],[-13,40],[-46,8],[-138,117],[-39,60],[-68,28]],[[25243,16431],[45,35],[42,-41],[36,4],[15,76],[-48,12],[-51,142],[19,10],[-49,74],[96,162],[-63,97],[7,23],[-23,6],[35,68],[48,12],[47,48],[65,-37],[8,41],[76,31],[40,80],[77,47],[2,35],[59,-63],[-5,-49],[33,-49],[104,-97],[38,-6],[41,38],[39,-10],[10,24],[28,-2],[13,55],[232,-126],[40,24],[26,-11],[147,-143],[47,-1],[118,248],[40,21],[91,-7],[45,62],[68,19],[1,110],[103,43],[7,49],[132,-9],[-8,31],[-64,32],[-39,-5],[-14,29],[-72,-2],[-19,31],[20,46],[-12,49],[-19,41],[-47,21],[54,136],[-16,19]],[[26888,17904],[76,65],[0,62],[95,27],[16,-41],[52,-34],[37,50],[87,-14],[9,56],[48,47],[57,2],[8,-29],[76,-30],[25,36],[66,-51],[107,3],[115,-91],[68,37],[-36,19],[20,51],[68,6],[16,-72],[117,-126],[20,-155],[99,-50],[42,-97],[38,-32],[129,120],[45,-36],[3,-52],[51,-60],[73,-19],[69,-63]],[[28584,17433],[-28,-19],[0,-42],[48,-65],[3,-57],[-37,-58],[8,-65],[113,-51],[-5,-36],[-70,-21],[-28,38],[-96,43],[-38,-4],[14,56],[-81,-23],[-24,-72],[-63,2],[-12,-46],[116,-9],[-4,-60],[-27,-35],[-52,3],[77,-92],[-13,-27],[-59,6],[-22,-26],[-28,2],[-38,-43],[3,-58],[-32,7],[-43,-37],[27,-14],[-10,-50],[23,-4],[43,40],[107,-92],[55,35],[48,-31],[-8,-31],[32,-41],[-33,-96],[3,-95],[21,9],[7,-31],[56,34],[58,-12],[1,19],[104,25],[-63,-151],[20,-13],[20,30],[35,-25],[14,13],[17,-71],[49,8],[59,-63],[-22,-41],[88,-120],[-5,-93],[-24,-37],[-23,8],[-11,-37],[-4,-21],[27,-14],[-8,-57],[-91,25],[21,18],[-29,10],[-51,-31],[-61,-94],[-38,0],[3,-59],[40,-44],[26,-99],[-90,79],[-51,-17],[17,-15],[7,19],[7,-41],[-20,0],[-42,-77],[-23,21],[-23,-39],[-31,34],[-54,5],[-24,-27],[33,-44],[-63,-77],[6,-33],[-48,-30]],[[15813,21274],[118,108],[142,43],[24,-13],[8,26],[45,-16],[60,54],[16,59],[102,96],[37,12],[34,-34],[104,52],[6,71],[-46,22],[15,33],[52,-23],[0,-41],[39,-16],[22,91],[31,33],[52,-33],[22,10],[-5,26],[21,4],[41,89],[55,11],[24,66],[110,-79],[-17,-68],[26,-68],[35,10],[29,-19],[-6,-46],[59,-58],[38,-11],[20,30],[94,-36],[43,11],[-10,64],[130,233],[29,157],[27,36],[34,-16],[24,-99],[36,-1],[41,72],[16,-47],[108,9],[248,-157],[-9,61],[28,34],[64,-38],[22,56],[47,-36],[35,7],[33,42],[115,-81],[60,-71],[97,75],[11,116],[89,-6],[50,86],[108,69],[43,-37],[-21,-44],[25,-17],[67,83],[44,-23],[55,71],[-14,86],[61,-5],[50,137],[-10,15],[59,37],[63,-33],[-49,-31],[35,-33],[83,-4],[66,-58],[-57,-31],[-10,-96],[-52,-73],[21,-98],[47,7],[104,-57],[25,41],[60,-49],[45,24],[65,-41],[55,75],[64,-22],[-3,-31],[47,-13],[1,-59],[53,-23],[9,-40],[41,-9],[9,22],[24,-3],[27,62],[18,-18],[51,29],[26,-111],[63,-49],[56,4],[38,38],[94,-70],[135,-48],[22,-34],[-65,-46],[-61,42],[-43,-17],[-16,-76],[-34,-27],[9,-35],[71,-17],[10,-36],[15,9],[54,-34],[65,80],[26,-17],[39,16],[21,-68],[86,-17],[22,-42],[-101,-135],[111,-33],[33,51]],[[20573,21304],[3,-52],[73,-53],[-12,-53],[48,-142],[-60,36],[-79,-32],[-9,-82],[-47,-74],[50,-5],[-30,-66],[45,-32],[47,-116],[108,-28],[-21,-120],[64,-6],[10,-36],[27,-8],[-18,-160],[65,-58],[-5,-149],[105,-126],[-8,-79],[114,-101],[48,-125],[140,-113],[19,-87],[-18,-91]],[[21232,19346],[-84,36],[18,-86],[-31,-4],[-22,-48],[15,-37],[-46,11],[0,-95],[-43,-13],[-7,-54],[45,-29],[-27,-21],[6,-32],[-70,-20],[-18,-37],[-91,-18],[-22,91],[-50,14],[-22,-15],[-30,43],[33,102],[-61,2],[-18,29],[49,105],[-98,98],[13,61],[-22,45],[-45,-18],[-2,-40],[-62,-100],[-67,33],[-47,-118],[-36,48],[-47,-19],[-17,27],[-15,-69],[73,-28],[-43,-47],[49,-63],[-23,-67],[26,-24],[-41,-45],[-38,57],[-91,-113],[31,-26],[-23,-53],[-66,-5],[-63,47],[6,54],[-47,61],[-77,-2],[-47,-46],[-86,77],[-39,8],[-62,-7],[-51,-36],[-18,17],[-28,-26],[-3,-72],[-28,-15],[-27,-68],[28,-40],[-14,-14],[-25,18],[-55,-57],[-21,15],[-41,-24],[6,56],[-62,9],[-19,-14],[-28,17],[-16,-24],[-141,11],[-154,71],[-28,-130],[-33,14],[-56,-110],[-19,3],[-23,-33],[-29,31],[-22,-6],[-13,-66],[48,-82],[-16,-77]],[[18862,18364],[-39,-2],[-38,-54],[-35,17],[-63,-132],[-77,3],[-50,-28],[-21,14],[-136,-105],[5,-14],[-55,-26]],[[18353,18037],[-20,85],[-35,-6],[-25,-33],[-21,9],[20,65],[-31,49],[86,58],[-21,31],[17,77],[-38,12],[-75,209],[-37,5],[-9,44],[-26,-31],[-80,-5],[-13,36],[-57,29],[-21,71],[-41,-17],[-77,72],[-102,-41],[-58,-73],[-31,26],[-137,32],[-31,85],[-47,31],[50,33],[-2,24],[-35,20],[-83,-43],[-44,102],[-90,-44],[-11,36],[-33,-4],[-104,64],[24,15],[-5,51],[-41,-2],[-54,-124],[-31,16],[-83,-60],[-78,-3],[-13,-34],[-87,17],[103,70],[-49,167],[-59,71],[3,31],[28,22],[-67,39],[-19,83],[-62,5],[-25,-32],[-20,11],[5,37],[-40,66],[58,-21],[9,63],[-47,-7],[-20,25],[-27,73],[14,59],[-31,49],[-49,-3],[-55,58],[-11,28],[34,1],[5,28],[-64,65],[-32,0],[-13,87],[-25,23],[5,40],[-62,26],[0,41],[-104,42],[-3,-16],[-62,11],[1,38],[-33,10],[14,21],[-45,100],[-91,66],[12,23],[-32,42],[-19,176],[-53,60],[-5,52],[69,32],[23,50],[-87,27],[-31,153],[52,33],[-3,228]],[[14506,17060],[185,149],[30,55],[95,0],[-27,101],[57,92],[52,-5],[17,-67],[27,2],[12,37],[21,-22],[20,17],[26,-61],[35,12],[12,33],[81,63],[52,8],[-7,-114],[-43,-41],[-6,-38],[22,-39],[23,36],[15,-20],[101,66],[67,-31],[26,36],[23,0],[47,191],[80,69],[-20,48],[32,16],[49,-24],[76,14],[39,-39],[76,15],[12,-47],[-60,-116],[153,-45],[29,-84],[34,-26],[-13,-99],[97,-139],[144,42],[36,-39],[16,-111],[45,-21],[44,-66],[74,141],[-33,19],[14,134],[90,31],[20,41],[-33,37],[50,65],[116,23],[12,41],[57,22],[66,-23],[74,84],[37,-2],[34,39],[54,-38],[30,74],[44,-19]],[[17044,17537],[195,-150],[-33,-86],[26,-24],[-23,-53],[-72,37],[-43,-41],[-46,-92],[94,-68],[60,112],[62,4],[20,-17],[23,-99],[41,-62],[-7,-24],[97,-34],[-71,-80],[4,-59],[41,10],[66,-29],[224,-139],[-23,-42],[15,-36],[107,-90],[51,-130],[75,-37],[-18,-70],[89,-15],[-25,-52],[-92,-55],[-94,12],[-64,39],[-21,-13],[-12,-31],[55,-46],[-11,-35],[20,-13],[-22,-70],[28,-33],[-14,-20],[52,-38],[9,-35],[-23,-55],[-79,-50],[91,-27],[4,-82],[70,-61],[45,49],[37,8],[-10,56],[51,67],[22,-35],[59,-26],[-18,-60],[24,-18],[29,32],[31,-11],[52,-83],[-6,-38],[52,48],[59,9],[47,51],[77,6],[28,-62],[121,-65],[44,-68],[-50,-54],[23,-26],[32,43],[52,-10],[-14,-103],[14,-36],[58,-19],[10,26],[33,-46],[89,-11],[3,-19],[-22,-7],[56,-86],[76,-7],[-9,-25],[66,-13],[2,-21],[33,7],[76,-73],[-10,-32],[74,-29],[23,-38]],[[19229,14839],[-4,-56],[-31,-28],[50,-19],[-10,-31],[-46,29],[-25,-32],[58,-55],[-21,-89],[-38,-28],[1,49],[-48,-40],[46,-38],[15,-92],[91,-81],[-5,-65],[36,-25],[15,20],[44,-49],[1,-27],[-29,-19],[25,-57],[16,2],[-11,-73],[99,-41],[-66,-46],[-7,-28],[-65,5],[-114,-71],[-19,-83],[32,-25],[-36,-114],[-46,17],[-86,-40],[-80,8],[-50,63],[35,72],[-11,101],[-55,45],[-5,-42],[-42,-20],[-77,38],[-57,-6],[-27,-42],[-2,64],[-22,15],[-110,-14],[-12,74],[-18,-20],[-47,30],[-48,-12],[-11,-61],[-48,-34],[-8,-63],[53,-16],[44,-51],[53,1],[50,-39],[5,-82],[57,-21],[-16,-27],[44,-34],[-22,-70],[-119,-112],[-22,-64],[-49,-49],[15,-16],[-25,-21],[-55,6],[-31,-40],[-24,-72],[34,-25],[-36,-53],[-32,12],[-14,36],[-124,-25],[-66,44],[-37,-60],[29,0],[3,-28],[33,-21],[-40,-65],[-55,34],[-97,-84],[-26,24],[-129,-97],[-60,6],[2,-45],[-44,-48],[67,-117],[-7,-44],[-43,1],[-72,43],[-17,-111]],[[17583,12475],[-77,128],[-85,70],[-50,-31],[-37,16],[-44,61],[5,89],[-41,59],[-56,22],[82,168],[-24,75],[-60,55]],[[17196,13187],[-100,106],[-8,92],[-90,139],[-27,142],[-33,4],[-5,44],[-26,12],[-91,188],[-41,0],[-196,242],[-84,19],[-136,80],[-156,156],[-98,129],[52,88],[-23,99],[-138,110],[-62,-14],[-192,139],[34,138],[-92,49],[-31,65],[-13,141],[30,115],[22,23],[47,1],[29,42],[-10,49],[21,28],[-17,59],[-123,120],[-156,-67],[-91,18],[-89,56],[-44,3],[-21,48],[-149,43],[-5,34],[-69,29],[-68,75],[-82,197],[37,163],[-6,112],[98,68],[-3,114],[-83,44],[-58,72],[-165,78],[-179,181]],[[25192,14181],[39,-45],[125,-54],[26,64],[75,-15],[27,-53],[33,3],[4,35],[87,30],[44,-47],[16,9],[15,-31],[-12,-46],[50,19],[70,-25],[108,12],[101,-38],[13,-71],[17,9],[50,-37],[7,-180],[96,-41],[56,-101],[5,32],[28,-1],[57,-41],[8,-87],[27,-13],[47,11],[43,-33],[22,36],[33,-22],[72,58],[59,15],[65,-61],[35,18],[31,-31],[49,47],[95,-120],[45,6],[-15,-43],[19,-19],[56,-9],[86,36],[9,-46],[39,6],[84,-53],[27,46],[52,-39],[42,79],[33,-45],[63,22]],[[24342,12226],[26,93],[61,41],[48,105],[-120,76],[-14,32],[-3,81],[39,89],[-23,65],[-38,30],[-90,21],[-9,76],[-23,25],[-37,-12],[-106,68],[-59,70],[-30,132],[-106,-45],[-16,40],[-74,-14],[-66,62],[-27,-5],[-26,45],[7,47],[-28,32],[-129,82],[-7,59],[-33,24],[-71,-24],[-70,173],[-139,81],[-14,21],[16,16],[62,11],[36,-30],[37,3],[101,65],[58,77],[-7,93],[36,5],[23,35],[-59,123],[-113,-27],[-10,92],[18,43],[-107,-13],[-34,57],[-120,26],[-21,156],[-97,-31],[-31,63],[21,78],[-100,19],[4,68],[-72,10],[-16,28],[36,98],[-61,-18]],[[22765,14843],[-37,28],[5,26],[68,47],[81,-14],[70,17],[41,-25],[60,10],[84,-70],[47,50],[64,-89],[106,-64],[16,63],[54,-7],[20,57],[42,2],[23,28],[112,-52],[-10,-26],[-39,-11],[40,-79],[21,17],[46,-10],[33,54],[112,-67],[55,29],[48,-10],[61,23],[40,-27],[-5,-34],[88,-41],[46,-55],[-15,-30],[24,-12],[48,82],[60,-63],[16,26],[33,-16],[-16,-62],[44,-31],[74,61],[96,-28],[69,28],[62,-41],[15,-60],[51,-1],[18,58],[45,-48],[-14,-31],[-28,0],[-2,-37],[58,-23],[32,33],[47,-25],[-29,-32],[2,-36],[104,-28],[17,-45],[67,-16],[-15,-47],[172,-8]],[[24483,19739],[44,82],[-74,30],[24,53],[-103,75],[35,259],[-47,30],[-5,77],[27,34],[-50,58],[-3,25],[28,19],[-43,23],[75,70],[-37,29],[-31,-73],[-48,25],[23,64],[-73,96],[111,187],[57,15],[17,42],[30,-16],[55,20],[44,61],[-5,68],[63,85],[-25,36],[59,69],[29,-12],[69,77],[6,57],[32,34],[12,121],[-48,23],[68,57],[39,137],[21,-8],[60,125],[90,-10],[-1,28]],[[25008,21911],[31,7],[33,-54],[44,-11],[75,-122],[137,-34],[116,-105],[26,19],[-29,65],[35,17],[26,-59],[60,-46],[78,35],[12,-78],[120,-18],[73,-108],[-8,-29],[-26,-6],[6,-111],[213,-19],[310,-83],[-7,-166],[42,26],[19,-11],[37,-150],[24,55],[0,122],[56,125],[95,44],[74,2],[-63,-118],[12,-33],[-23,-7],[-4,-44],[27,-39],[92,41],[-34,9],[-16,85],[51,27],[45,-16],[7,-65],[204,98],[39,-32],[81,49],[-17,27],[104,89],[-32,-115],[58,-20],[29,44],[36,2],[5,140],[40,100],[70,-135],[18,-133],[58,-82],[-8,-136],[55,-92],[-38,-85],[49,-23],[14,-46],[30,-16],[32,67],[-4,63],[43,-30],[81,-14],[5,-25],[26,0],[38,49],[37,-49],[-82,-212],[57,-144],[-61,-51],[-10,-61]],[[27731,20285],[-31,-78],[15,-19],[-78,-96],[4,-45],[75,-20],[-4,-22],[72,-41],[3,-39],[40,-23],[44,-113],[-38,-43],[-50,6],[-62,53],[-8,-43],[-22,-22],[-9,36],[-38,-57],[-44,57],[-13,-22],[-39,53],[-24,0],[-41,-47],[-26,28],[-69,-55],[-14,14],[34,15],[-7,23],[-43,-17],[6,-39],[-48,2],[-10,25],[-28,3],[-39,-20],[-8,28],[-16,-1],[2,-38],[-38,-1],[-34,51],[-68,24],[-23,-44],[-14,51],[-41,-8],[-40,35],[-40,-39],[8,-57],[-40,-51],[-36,-7],[-26,-65],[-30,-6],[-9,-72],[-50,-35],[-67,-10],[-26,25],[-58,7],[-46,-44],[-26,-101],[14,-36],[-73,-43],[-7,-43],[97,-11],[25,37],[56,-24],[16,-41],[-92,19],[-53,-72],[15,-52],[28,-1],[103,60],[4,-18],[-118,-89],[1,-38],[99,-8],[-36,-91],[15,-26],[73,20],[18,-33],[-6,-20],[-75,-2],[-50,-75],[113,-28],[-38,-108],[195,24],[3,-72],[-40,16],[4,-27],[78,-24],[17,-78],[-48,-13],[-79,21],[-133,-42],[-22,68],[-144,77],[-149,-119],[-16,6],[-34,-54],[42,-102],[42,-18],[58,28]],[[26416,18349],[-41,-181],[-31,8],[-10,52],[-56,34],[-31,-15],[-13,-69],[4,-47],[32,-25],[-11,-35],[-48,-37],[-1,-49],[-56,16],[-26,-16],[-71,-136],[-40,39],[-60,-50],[-18,-56],[-83,26],[-54,64],[-44,4],[-7,-34],[-22,-3],[-36,79],[14,103],[-31,7],[4,31],[-59,16],[-39,-37],[-17,67],[-113,35],[1,56],[-33,10],[16,35],[-141,84],[5,22],[-32,-1],[7,29],[-35,49],[40,221],[47,74],[101,35],[28,38],[50,-59],[41,-13],[-10,-27],[60,-28],[36,83],[-53,39],[-16,31],[13,30],[-29,-2],[-16,48],[-62,-3],[3,30],[-78,41],[-23,28],[18,12],[-69,22],[-84,116],[-34,-4],[-65,40],[-4,34],[-50,4],[-27,52],[-55,29],[-112,4],[-46,40],[-17,24],[17,61],[-24,57],[-97,93],[-25,-14],[-28,32],[53,79],[-23,15],[0,49],[-54,18],[-30,-68],[-72,34],[-14,-29],[-46,26],[-1,23]],[[20899,14934],[66,52],[60,139],[52,63],[39,-17],[21,-61],[67,-20],[44,-48],[12,18],[66,-35],[120,80],[118,-105],[30,-72],[27,1],[15,36],[97,-2],[-3,-53],[-32,-48],[14,-17],[82,24],[73,-39],[27,16],[-58,88],[39,39],[48,117],[-46,21],[5,17],[43,68],[45,-13],[21,24],[-8,51],[43,61],[-89,50],[38,89],[-22,39]],[[21953,15497],[35,26],[3,38],[-34,46],[37,9],[83,-73],[81,-14],[69,-123],[54,13],[-13,27],[15,24],[82,-3],[44,-64],[64,-30],[58,-96],[-8,-26],[-24,-2],[-76,53],[-33,-13],[-5,-121],[17,-15],[60,42],[36,-37],[51,28],[109,-4],[-27,-258],[-34,-16],[-40,29],[-42,-81],[153,-47],[57,-61],[25,57],[-24,4],[5,32],[34,2]],[[21376,11540],[-21,93],[-81,-7],[-47,109],[-94,-11],[-45,115],[-98,-19],[-263,203],[-12,140],[19,15],[132,-20],[-8,84],[42,55],[-8,62],[51,36],[-43,121],[72,61],[24,-4],[22,67],[-15,25],[37,85],[-69,68],[-14,48],[36,19],[1,49],[41,1],[-30,110],[-30,22],[6,71],[67,-3],[-33,24],[-72,-1],[-16,26],[-7,69],[56,55],[7,48],[-30,55],[11,39],[33,47],[44,-24],[37,57],[64,0],[67,111],[-2,37],[-101,49],[-66,-6],[-26,35],[-9,40],[46,2],[64,-31],[30,41],[0,43],[-35,35],[-14,53],[33,64],[-34,88],[74,132],[-55,95],[-100,49],[-5,24],[57,39],[-22,25],[21,92],[-46,99],[-30,14],[22,56],[-32,101],[-74,53],[-6,64]],[[21232,19346],[95,-55],[34,-71],[-6,-174],[-22,-61],[11,-271],[62,-49],[50,-126],[-105,-63],[50,-267],[34,-54],[110,-73],[20,-188],[121,-85]],[[21686,17809],[150,-63],[98,25],[64,-20],[32,-54],[-60,-38],[-5,-34],[60,-73],[92,57],[56,-29],[-4,-46],[51,-29],[-19,-45],[218,2],[-14,-94],[160,-73],[29,-39],[45,7],[11,-19],[81,33],[9,47],[52,-35],[36,-89],[-52,-59],[-19,-75],[13,-37],[46,-18],[-19,-37],[82,-110],[65,-59],[23,20]],[[22967,16825],[71,-73],[130,-43],[19,-47],[-22,-27],[-62,-24],[-42,15],[-66,108],[-29,-29],[-63,15],[-20,-51],[-43,17],[-62,-15],[-40,-84],[-56,33],[-141,-44],[-118,28],[-2,-32],[-63,-73],[-125,59],[-50,90],[-30,-8],[-20,-67],[44,-48],[-2,-34],[-40,9],[-43,67],[-35,-1],[-32,-57],[-6,-49],[24,-26],[-14,-49],[-27,-10],[-18,-65],[-40,-13],[3,-60],[68,-55],[-13,-22],[26,-31],[-16,-53],[39,-19],[34,-76],[-20,-42],[17,-12],[32,39],[50,-64],[-61,-10],[41,-59],[-16,-30],[41,-81],[-15,-39],[-92,49],[-44,-11],[-128,-103],[-7,-123],[70,2]],[[20899,14934],[-107,49],[-42,-65],[-72,27],[-33,97],[-97,63],[-115,26],[-14,38],[-78,22],[-61,49],[-29,-25],[-34,6],[-78,51],[-50,0],[12,-21],[-18,-16],[-24,13],[-39,-27]],[[20020,15221],[-12,59],[60,37],[29,58],[-61,35],[20,35],[-34,47],[110,149],[14,62],[113,116],[14,42],[-24,67],[-47,47],[5,68],[-71,100],[21,49],[98,76],[-77,52],[-30,-13],[-8,-56],[-70,50],[-57,-73],[-31,6],[9,81],[-18,38],[57,46],[-42,5],[-22,34],[-65,-8],[-35,102],[-24,19],[-150,37],[-24,-17],[-16,45],[20,40],[-21,33],[41,69],[-4,72],[-38,24],[42,78],[-19,68],[-38,18],[-43,-44],[-32,7],[-44,67],[2,31],[-112,65],[0,73],[36,46],[45,-7],[30,46],[-48,32],[-28,-31],[-39,5],[-25,-25],[-26,15],[-40,47],[35,47],[-160,94],[24,103],[-39,29],[40,72],[-122,14],[-22,83],[56,82],[21,-15],[30,48],[102,-56],[51,43],[58,-1],[38,32],[18,79],[-66,-6],[5,33],[-93,35],[36,84],[-17,44],[-32,18],[-6,55],[-77,39],[-35,-51],[-128,39],[-54,-24],[-24,8],[0,40],[-88,51]],[[20573,21304],[45,4],[1,76],[21,15],[-9,57],[-92,154],[112,264],[-15,44],[-44,31],[-34,96],[73,35],[20,77],[-3,43],[-60,69],[-17,153],[114,91],[14,38],[-35,8],[17,50],[-101,127],[-151,67],[-48,102],[-57,41],[-19,46],[-138,112],[6,28],[-52,85],[-8,56],[-75,113],[127,206],[12,54],[-75,164],[-137,54],[-79,64],[-12,86],[-65,36],[-70,204],[-33,28],[-83,0],[-109,73],[-21,54],[53,70],[10,80],[-23,30],[-131,22],[-8,28],[144,305],[2,40],[-44,103],[-82,41]],[[19414,25128],[-22,69],[58,92]],[[19450,25289],[33,16],[113,-99],[46,-14],[614,-134],[103,-185],[-9,-199],[250,-326],[179,-183],[-9,-85],[30,-43],[-17,-35],[-87,-3],[-7,-22],[49,-46],[40,25],[38,-67],[-47,-18],[-15,-43],[26,-19],[72,36],[177,12],[28,90],[-39,11],[-12,28],[37,65],[250,-33],[103,-56],[20,-116],[167,-125],[-27,-201],[353,-193],[339,-219],[23,-39],[98,-46],[269,-30],[204,-183],[-8,-60]],[[22834,22750],[-73,55],[-52,-76],[-22,93],[-48,34],[-27,-56],[26,-29],[-5,-63],[-45,-21],[3,-33],[-37,-49],[7,-23],[71,-36],[11,-57],[-111,4],[-5,-68],[30,-29],[-40,-61],[-18,-15],[-200,146],[-61,-106],[-35,2],[-43,-63],[32,-44],[-14,-79],[14,-29],[29,15],[42,-46],[94,-32],[4,-45],[78,-54],[-118,-194],[78,-85],[55,-12],[-39,-88],[49,-24],[110,-6],[10,-132],[32,-42],[-44,-32],[-40,24],[-33,-52],[25,-85],[-31,-140],[-91,-58],[23,-49],[70,37],[28,-30],[39,-5],[22,-64],[-53,-140],[15,-94]],[[22546,20714],[-20,-39]],[[22526,20675],[-18,5],[-12,-26],[156,-95],[113,92],[87,-35],[55,29],[88,-82],[-27,-90],[36,-39],[-5,-49],[-77,-4],[-72,-85],[-178,-55],[-69,-115],[-100,-86],[-5,-114],[206,-190],[64,-152],[-34,-143],[61,-59],[15,-62]],[[22810,19320],[-97,-77],[-108,13],[-46,-20],[3,-77],[90,-24],[42,-33],[-9,-72],[-24,-68],[-91,-56],[-16,-103],[-56,6],[-26,-27],[-22,-65],[25,-19],[-17,-67],[22,-34],[-8,-15],[-48,29],[-40,-86],[-27,2],[-17,-48],[41,-10],[-5,-36],[-30,-32],[10,-25],[-57,-16],[-1,-82],[-117,14],[-75,-89],[-18,-63],[-95,62],[4,-42],[-138,-147],[32,-39],[-30,-36],[10,-27],[-21,35],[-111,12],[-53,-149]],[[21860,7352],[-4,-29],[-70,4],[-35,26],[-28,-49],[43,-57],[75,-37],[-57,-67],[30,-20],[-19,-39],[-136,60],[-18,-97],[-103,33],[-40,-31],[116,-124],[104,-32],[11,-22],[-56,-21],[-4,-100],[-39,-1],[-11,-35],[-93,33],[-35,32],[-2,35],[-138,22],[-134,53],[-5,18],[25,9],[155,-11],[8,25],[-43,72],[0,37],[-61,12],[-19,-22],[-37,-1],[-41,16],[27,-50],[-57,-18],[-35,66],[-61,27],[-48,-6],[25,39],[-30,8],[-62,112],[-70,-3],[-42,37],[-75,-69],[-5,-72],[33,-42],[4,-93],[26,-29],[-49,-10],[-46,137],[6,148],[-106,-11],[-72,24],[-12,-14],[34,-60],[-77,-74],[10,-65],[-20,-7],[4,-53],[-16,-40],[-41,-13],[-6,-32],[74,-99],[-35,-52],[46,-42],[-33,-52],[9,-24],[-196,-305],[-49,7],[-23,-42],[51,-58],[7,-44],[-67,-54],[36,-37],[4,-140],[26,9],[-5,-33],[-49,-33],[-30,12],[-20,35],[20,9],[-13,30],[-59,37],[-18,41],[-28,-12],[-36,41],[-20,-11],[-21,-151],[-26,-33],[8,-49],[-72,-18],[-29,-127],[-84,68],[-22,45],[-30,4],[-77,71],[-45,66],[16,64],[-29,30],[-249,15],[-53,-48],[-31,6],[37,-70],[-6,-27],[-29,19],[-19,-17],[-18,44],[-36,6],[-29,-49],[-46,-15],[-22,8],[18,24],[-79,10],[-62,-63],[4,99],[-53,11],[30,59],[-18,70],[-32,5],[-413,-204],[-14,15],[-94,-18],[2,-38],[-38,-19],[-88,24],[33,46],[-65,71],[16,47],[-81,75],[95,28],[19,-23],[40,9],[13,51],[124,63],[17,88],[-115,157],[41,7],[37,66],[44,16],[105,97],[-1,35],[-42,7],[-10,37],[59,123],[-51,83],[49,51],[3,71],[45,-33],[31,9],[-2,23],[89,115],[-43,2],[-92,127],[-83,-38],[-19,41],[-36,-8],[-71,28],[-22,-30],[50,-101],[-41,-34],[-18,-141],[23,-107],[-14,-43],[-18,11],[-20,-26],[-29,83],[10,27],[-71,15],[16,43],[-56,33],[-83,-46],[-18,43],[-25,8],[-31,-33],[-54,12],[-68,-25],[-26,-37],[-49,88],[-56,-20],[-27,-35],[-41,4],[-28,-39],[-40,36]],[[17694,7038],[10,85],[33,55],[92,44],[-22,77],[18,60],[64,15],[82,-39],[73,39],[30,73],[156,44],[-51,56],[-65,29],[-60,-12],[-22,28],[-39,-2],[-7,77],[20,25],[104,19],[43,47],[104,-98],[44,86],[-67,46],[-50,8],[-51,144],[-52,7],[-87,68],[30,24],[7,47],[-29,15],[18,33],[48,-21],[5,42],[69,-2],[7,28],[26,-14],[48,50],[21,-35],[79,77],[33,-19],[51,41],[31,42],[32,47],[27,-6],[38,38],[11,76],[32,27],[-33,17],[52,26],[-14,50],[145,113],[6,61],[67,-21],[7,22],[25,-7],[23,45],[36,18],[-24,51],[62,52],[22,-25],[52,14],[-5,-24],[74,27],[22,-33],[7,71],[82,10],[5,54],[59,33],[-6,29],[77,41],[-86,156],[4,33],[35,-2],[32,47]],[[19304,9367],[93,-95],[478,-117],[262,-107],[27,-139],[-40,-98]],[[20124,8811],[-179,-118],[-18,-130],[21,-49],[115,-100],[333,-98],[110,-183],[46,2],[92,84],[54,-7],[132,49],[223,-56],[84,-44],[40,-64],[-16,-101],[-71,-99],[9,-48],[200,-37],[135,-55],[60,13],[25,38],[188,14],[199,112]],[[13889,12403],[58,141],[45,250],[62,0],[57,-47]],[[14111,12747],[9,-119],[-56,-255],[16,-61],[164,-50],[145,9],[94,33],[41,-24],[146,-13],[107,-44],[43,-38],[8,-50],[-25,-77],[-101,-110],[-13,-50],[179,-77],[178,-146],[192,-79],[64,-121],[39,-25],[116,21]],[[15457,11471],[147,54],[69,-73],[68,-133],[54,-38],[73,2],[120,56]],[[15988,11339],[28,-164],[-53,-25],[-59,-126],[-147,15],[-57,-35],[51,-90],[-60,-51],[-44,31],[-84,-72],[-43,27],[-95,-76],[125,-40],[66,-56],[-11,-22],[22,-40],[100,-5],[134,-103],[33,-48],[8,-59],[86,-67],[24,-90],[-137,46],[-66,-53],[-20,-117],[65,-109],[4,-56],[-15,-46],[-82,-65],[-102,-30],[5,-34],[67,-56],[-67,-145],[-30,-5],[-92,45],[-109,-181],[-76,5],[-19,-32],[-29,-139],[82,-16],[-26,-72],[31,-23],[-20,-86],[-48,6],[73,-127],[-48,-18],[-42,83],[-22,1],[-46,-104],[19,-81],[-28,-43],[-235,88],[-39,-79],[-18,-102],[-45,-36],[-29,-72]],[[14868,8590],[-83,-11],[-201,133],[-31,-26],[-133,56],[16,34],[-35,23],[81,213],[-12,48],[-32,23],[-46,-41],[-135,10],[16,0],[-11,24],[36,82],[39,-8],[4,66],[-85,69],[-66,10],[39,38],[-10,42],[-123,-4],[-67,28],[4,30],[-65,102],[1,75],[-126,42],[-82,-101],[-85,5],[-50,-64],[-52,51],[-32,102],[-21,0],[16,79],[-207,60],[-72,-156],[-35,23],[-33,-75],[-63,10],[-41,-54],[-232,64],[31,-97],[-112,-68],[36,-43],[-134,-27],[-33,49],[-28,-9],[-12,-43],[40,-46],[-25,-58],[26,-40],[-45,-54],[-68,0],[0,-127],[-74,5],[-57,-32],[-72,89],[-27,7],[-41,-42],[-23,9],[-32,-26],[-27,-59],[-53,7],[0,71],[-53,-11],[-35,16],[-34,-57],[-44,7],[-15,74],[-67,-53],[-77,38],[-51,-19],[-81,78],[-118,26],[-107,-14],[-84,64],[-30,-11],[-28,46]],[[14868,8590],[80,-11],[26,35],[64,-30],[0,-27],[-13,-33],[-69,27],[-13,-14],[1,-72],[44,-6],[-15,-27],[-57,14],[-43,-104],[-71,-69]],[[14802,8273],[-76,27],[-79,-105],[-172,9],[-18,20],[-18,-13],[-55,-87],[-2,-42],[26,-27],[-10,-80],[-50,-11],[-65,-54],[-6,-31],[45,-52],[-28,-31],[-71,10],[-29,-30],[-47,23],[-81,-7],[-31,22],[-43,-52],[-15,-66],[-44,12],[-27,-98],[-26,-7],[-2,77],[-44,34],[-26,-56],[-45,4],[-75,52],[-65,-80],[-65,-5],[15,-66],[65,-37],[-53,-110],[41,-53],[-10,-61],[35,-27],[-19,-125],[51,-14],[-123,-104],[-24,-72],[53,-108],[-68,-11],[-74,28],[-29,52],[-55,3],[-192,89],[-111,77],[-71,-43],[-118,-14],[-134,36],[-58,-81],[-116,50],[-35,-16],[-86,67],[-78,-60],[-41,-1],[26,137],[-46,-51],[-71,44],[-25,91],[-36,24],[-38,-8],[-111,-166],[-16,9],[-33,-61],[-27,1],[-23,-65],[27,-127],[-102,-19],[-17,-57],[-41,-22],[-131,47],[60,220],[-28,4],[-58,-45],[-37,-63],[-62,-38],[-1,141],[-89,46],[-27,-13],[48,-17],[3,-62],[-31,-44],[-69,-27],[-62,59],[14,65],[-41,10],[16,50],[-33,19],[31,158],[104,66],[-16,67],[68,30],[80,-18],[28,41],[24,61],[-76,14],[-3,21],[68,129],[45,17],[30,49],[2,46],[46,-18],[22,21],[82,-16],[7,26],[-62,9],[-12,56],[-90,22],[-12,-14],[21,-47],[-129,-95],[-138,9],[-2,96],[-18,19],[-49,33],[-21,-21],[-13,38],[-93,38],[-7,-63],[32,-49],[-19,-70],[-72,33],[9,90],[-103,34],[50,92],[-33,38],[8,42],[53,61],[-257,44],[-24,-82],[-78,6]],[[15988,11339],[104,53],[188,23],[346,-80],[159,-105],[195,-29],[39,-71],[-84,-128],[-48,-23],[-198,8],[-86,-17],[-25,-43],[8,-55],[35,-55],[217,-175],[43,-16],[179,63],[55,-17],[2,-147],[-101,-118],[61,-80],[40,-17],[374,-52],[322,-143],[296,45],[243,193],[56,15],[51,-41],[42,-220],[103,-10],[262,82],[45,-16],[29,-29],[12,-61],[-35,-205],[31,-115],[31,-35],[59,-10],[54,22],[158,77],[58,51],[53,-21],[18,-130],[-31,-91],[-105,-59],[-51,-56],[112,-134]],[[17694,7038],[19,-147],[67,-58],[-17,-40],[-34,-9],[7,-22],[73,-34],[23,-56],[-45,-35],[-132,-39],[-24,-2],[-8,74],[30,32],[6,49],[-53,27],[-21,-47],[-38,-22],[-29,73],[-75,56],[-6,-21],[-52,8],[-17,-31],[-92,82],[59,12],[29,76],[59,-2],[6,19],[-36,81],[-45,2],[-37,-29],[-12,91],[-31,35],[-25,-2],[-22,-113],[56,-67],[-50,-27],[-17,-50],[93,-206],[-94,77],[-44,13],[-52,-17],[-28,35],[-12,-92],[-81,-41],[-121,80],[-46,106],[-73,22],[-99,-18],[15,-30],[110,-38],[-7,-39],[-39,-25],[57,-60],[-10,-48],[-35,-25],[5,-50],[228,-53],[-23,-78],[33,-72],[-83,-16],[-60,38],[-7,-26],[-65,6],[-58,-68],[-50,-20],[-17,-74],[-57,5],[-47,31],[29,97],[-81,56],[-28,68],[-51,-13],[0,37],[102,82],[91,-53],[98,-10],[44,43],[-38,31],[-77,-14],[-43,74],[-7,65],[-21,23],[-49,-44],[-21,56],[18,23],[-23,11],[-79,-59],[-72,29],[-23,-88],[-54,62],[-49,-38],[-25,-52],[-66,10],[-8,-56],[79,-34],[-38,-69],[42,-9],[32,-85],[-72,-22],[-25,95],[-44,4],[-54,-54],[-49,25],[-59,-100],[-58,2],[-74,70],[-101,32],[-57,47],[54,77],[18,89],[54,-17],[54,-53],[99,44],[17,35],[24,-25],[64,9],[5,39],[-43,32],[23,123],[92,59],[40,63],[-15,32],[-89,50],[18,83],[175,100],[141,14],[40,50],[-108,260],[-13,123],[-40,16],[-63,-46],[-100,76],[-82,153],[-142,19],[-40,38],[39,253],[-45,134],[52,78],[-20,109],[-174,185],[-88,21],[-52,-133],[-92,32],[-75,-38],[-44,16],[-42,53],[-24,-55],[-5,-127],[-142,-34],[0,-63],[-108,-59],[-68,-96],[-20,24],[-60,8],[-45,61]],[[293,30305],[152,-43],[8,-53],[65,-27],[187,39],[67,-18],[51,-63],[85,3],[82,-63],[46,37],[233,-125],[54,8],[59,-25],[43,59],[38,10]],[[1463,30044],[99,-24],[47,-54],[113,-58],[61,19],[-3,-23],[67,-80],[152,-92]],[[1999,29732],[27,-21],[-24,-33],[-95,42],[-61,-23],[-9,-54],[65,-38],[-55,-70],[27,-12],[-22,-34],[17,-34],[-82,-26],[5,-56],[-30,-17],[-57,16],[5,-97],[-51,-54],[19,-43],[-38,-11],[-1,-42],[164,-37],[2,-33],[-56,-22],[28,-83],[-50,-132],[78,-35],[-34,-31],[36,-56],[-15,-88],[65,-25],[-20,-68],[8,-38],[33,-22],[-67,-92],[37,-27],[-33,-32],[17,-46],[-34,-32]],[[1798,28226],[-86,4],[9,-38],[-117,-219],[-78,-15],[24,-60],[-31,-95],[61,-44],[-7,-25],[-109,-49],[75,-80],[-53,-59],[40,-31],[14,-84],[-52,-32],[-159,52],[-26,28],[6,34],[-57,48],[-23,-56],[-94,35],[-22,-38],[-74,-25],[-40,58],[16,43],[-36,23],[3,81],[-53,35],[-117,4],[-46,-66],[-121,8]],[[645,27663],[-36,97],[4,50],[-45,61],[-83,26],[-11,82],[82,42],[64,-48],[46,10],[22,208],[-96,80],[-55,1],[-28,26],[-18,112],[35,72],[10,99],[-57,98],[-5,123],[-27,22],[-71,3],[-14,28],[25,52],[-40,183],[-79,2],[-67,88],[25,66],[52,50],[-13,103],[-52,37],[57,213],[-34,69],[8,61],[-52,65],[6,45],[79,50],[5,98],[-54,102],[65,166]],[[13780,16455],[-20,175],[72,-10],[101,51],[71,-57],[95,78],[-114,99],[44,36],[5,58],[-35,31],[49,121],[-51,18],[20,119],[65,46],[30,-45],[41,0],[36,-45],[-15,-19],[35,-21],[20,36],[-45,68],[71,80],[65,-57],[47,11]],[[14367,17228],[139,-168]],[[17196,13187],[-229,-42],[-25,-27],[-20,-122],[-28,18],[-11,-34],[-44,-11],[-10,-25],[-114,45],[-91,-122],[-27,49],[-78,-19],[-30,15],[-26,-80],[-49,-1],[-13,-30],[16,-23],[-21,-26],[-122,50],[-90,-106],[-124,-31],[-40,-78],[-48,26],[-85,-73],[-40,-81],[12,-37],[-35,-55],[0,-68],[-54,-65],[-56,33],[-35,-62],[-75,7],[-66,-63],[15,-22],[-20,-30],[10,-34],[-26,-25],[25,-25],[-49,-58],[2,-122],[-142,-85],[-17,-48],[49,-13],[32,-43],[-8,-46],[48,-127]],[[14111,12747],[44,29],[40,-19],[101,87],[54,-5],[60,71],[-32,43],[-61,28],[27,83],[-3,39],[-21,7],[40,103],[-55,41],[48,105],[41,32],[58,-17],[69,78],[74,-50],[119,76],[63,5],[119,-124],[103,104],[-56,81],[-3,68],[20,31],[142,-55],[14,18],[-14,86],[33,-9],[39,32],[-27,36],[44,21],[-30,42],[43,-2],[2,23],[-29,24],[-51,-19],[-8,31],[-60,-9],[-12,-23],[-32,10],[36,33],[-48,29],[24,33],[-56,-7],[24,65],[29,14],[-50,77],[30,3],[5,74],[-35,-6],[-21,20],[-2,88],[-23,21],[6,122],[-56,79],[54,13],[0,65],[72,-58],[34,2],[-15,49],[-15,-6],[-32,52],[138,84],[30,68],[-58,34],[71,45],[-33,28],[-61,0],[-22,26],[-37,-10],[9,58],[62,40],[-32,17],[-70,-47],[-37,9],[-21,67],[28,51],[-58,17],[-47,58],[-85,0],[14,59],[-26,33],[-34,-41],[-74,-15],[-85,101],[-153,6],[-31,178],[-61,36],[-23,57],[-79,41],[8,23],[76,17],[23,35],[7,142],[-130,55],[20,30],[-28,55],[-34,4],[-31,37],[1,37],[-48,51],[-5,48],[-45,27],[-10,29],[31,46],[-41,82],[-214,126]],[[29367,14175],[-208,272],[2,66],[-24,26],[-94,49],[-228,51],[-87,91],[-201,27],[-203,196],[8,45],[-42,111]],[[28584,17433],[36,37],[-3,99],[26,8],[-11,85],[59,-44],[22,57],[49,-18],[58,20],[7,26],[24,-21],[10,30],[41,-4],[-6,60],[38,-44],[66,-9],[50,-63],[36,30],[9,57],[31,4],[-4,-40],[24,-7],[34,25],[-13,134],[-76,7],[-8,20],[41,21],[45,-19],[17,60],[101,-2],[-33,35],[17,27],[59,26],[78,-40],[186,48],[54,-71]],[[2934,27218],[-36,-80],[5,-71],[39,-45],[-8,-67],[-81,-146],[-31,102],[-31,31],[-109,66],[-113,20],[-82,-46],[-35,-46],[-19,31],[-84,-10],[-37,-65],[-76,-28],[-7,-107],[75,-32],[14,-37],[-21,-32]],[[2297,26656],[1,21],[-73,29],[14,-67],[-32,-38],[-85,70],[-30,10],[-35,-32],[-58,33],[-118,-120],[-86,59],[-86,-84],[-30,0],[-169,63],[-24,44],[54,222],[-45,20],[-88,-28],[-41,40],[-54,-53],[-116,-1]],[[1196,26844],[-58,107],[17,93],[-100,0],[-52,-49],[-33,12],[-19,44],[20,44],[-72,77],[-70,-10],[-24,21],[-2,101],[-37,-6],[-65,32],[2,57],[-69,37],[60,34],[-93,8],[-60,44],[-16,24],[10,84],[84,-21],[26,86]],[[1798,28226],[9,-79],[-18,-24],[177,-62],[41,32],[151,-75],[56,11],[37,38],[60,-43],[55,-7],[40,31],[46,-99],[248,35],[49,-30],[4,-42],[53,1],[34,40],[43,6],[36,-26],[2,-62],[61,-45],[-8,-102],[-29,-63],[82,-69],[-18,-97],[13,-25],[-88,-83],[-25,10],[-25,-77],[50,-102]],[[20124,8811],[87,12],[60,-56],[11,30],[-15,24],[90,199],[34,-11],[33,52],[34,-19],[35,17],[36,73],[-105,54],[59,186],[-28,15],[5,42],[-51,84],[-44,20],[11,44],[-35,13],[-4,33],[-116,29],[46,222],[-44,33],[48,83],[-10,68],[57,-8],[52,47],[-90,51],[-73,-15],[-2,43],[-48,61],[27,94],[61,11],[71,-37],[42,148],[59,111],[75,-47],[40,30],[54,3],[101,78],[26,-18],[73,136],[42,-9],[18,19],[20,84]],[[1921,32188],[102,-46],[46,27],[66,-44],[31,11],[-7,49],[31,18],[192,-51],[12,-21],[20,11],[29,-21],[52,21],[95,-54],[26,-63],[120,-71],[-11,-90],[47,-66],[76,137],[27,28],[26,-7],[1,55],[52,89],[109,-40],[38,57],[83,-72],[189,163],[35,-24],[71,101],[21,-8],[75,127]],[[3575,32404],[48,-34],[58,25],[45,51],[24,-3],[36,48],[57,-8],[27,72],[50,-10],[26,19],[80,-30],[41,14],[-21,20],[52,64],[54,2],[47,-51],[-61,-90],[26,-20],[-12,-34],[39,-77],[104,19],[12,-31],[-45,-34],[-4,-55],[102,-55],[-24,-39],[-11,-145],[-28,-19],[-90,58],[-66,-50],[8,-43],[18,-28],[60,9],[4,-22],[95,-41],[7,24],[59,-4],[38,51],[23,-7],[159,-279]],[[4612,31671],[-71,-4],[-59,25],[-26,-24],[33,-85],[-46,-107],[10,-43],[115,-38],[13,-92],[73,-120],[-91,-137],[77,-114],[41,0],[3,-55],[-94,-78],[23,-81],[33,-17],[19,-46],[21,-24],[78,-8],[20,-110],[111,-88],[51,-202],[70,-98],[8,-84]],[[5024,30041],[-14,33],[-101,-24],[-22,-29],[-324,70],[-110,-35],[-41,18],[-36,-102],[-72,31],[-65,-57],[-84,24],[-75,-60],[-21,-70],[-81,27],[-43,-51],[-51,49],[-117,54],[-69,-141],[-154,-26],[-40,25],[-50,-101],[-75,20],[-19,-18],[-20,16],[24,66],[-175,120],[-22,-20],[-135,55],[-37,-18],[-85,33],[11,43],[-96,100],[-39,1],[-34,-38],[-40,-128],[-42,0],[-46,10],[-36,120],[-53,38],[-59,0],[-58,53],[-19,-47],[-84,-71],[-2,-61],[-154,-93],[-28,-28],[5,-25],[-66,-8],[-46,-83],[-25,19]],[[1463,30044],[-30,62],[19,53],[-98,24],[-25,36],[8,38],[32,102],[60,24],[19,-14],[55,36],[13,40],[-41,88],[74,41],[58,-59],[-14,-47],[54,-30],[22,43],[39,17],[-69,18],[2,90],[52,47],[-79,166],[49,87],[15,113],[140,149],[-116,76],[10,64],[71,141],[45,8],[15,55],[-84,46],[55,100],[55,-4],[30,52],[-15,77],[73,10],[21,31],[-67,51],[4,26],[19,-4],[39,44],[-9,24],[36,47],[-48,30],[-12,32],[17,26],[-46,32],[10,56]],[[2915,26166],[135,2],[31,-37],[61,57],[74,-4],[27,43],[11,94],[31,-3],[19,36],[61,-15],[42,47],[49,121],[40,39],[168,49],[84,126],[61,-64],[136,-60],[35,3],[2,48],[43,51],[-58,36],[1,41],[76,31],[-18,17],[95,148],[55,25],[34,-17],[63,76],[80,-42],[39,-54],[53,17],[60,-18],[43,-82],[246,-95],[33,51],[44,-21],[32,-50],[-16,-34],[45,-38],[125,-39],[40,-39],[53,58],[33,-19],[17,14],[108,-91],[68,-5]],[[5376,26569],[11,-75],[73,-138],[6,-45],[-31,-40],[54,-254],[51,-49],[47,-3],[54,-69],[81,-37],[-22,-83],[34,-114],[44,-61],[84,-22],[7,-70],[45,-69]],[[5914,25440],[58,-70],[-27,-115],[-75,-14],[-61,-48],[12,-29],[-30,-4],[132,-303],[-26,-57],[54,-125],[48,-79],[44,-27],[148,3],[51,-75],[25,-128],[99,-93],[55,-88],[-9,-86],[19,-35],[67,-49],[42,-2],[50,-51],[116,0],[45,-81],[-29,-37],[13,-49],[124,-145],[3,-39]],[[6862,23614],[-58,-49],[-49,30],[-20,-29],[-16,22],[-27,-3],[-47,-67],[-101,67],[-56,-56],[-36,35],[-25,-13],[-62,98],[-85,-62],[-27,25],[40,75],[-31,57],[7,49],[-102,86],[-16,-22],[-27,25],[-39,-30],[-30,-69],[-37,-4],[-34,-43],[-15,13],[-64,-52],[-21,23],[-73,-37],[-10,29],[-35,12],[-70,-61],[-93,28],[-110,-107],[-36,42],[-142,-146],[-56,0],[-22,28],[-117,-114],[-49,-2],[-57,44],[37,65],[-2,50],[-75,63],[-30,62],[-65,-46],[-43,-1],[33,87],[-32,11],[-30,-39],[-48,5],[-49,68],[-23,-18],[-60,37],[-35,-5],[-50,-51],[22,-46],[-96,-91],[16,-54],[-54,-36],[-37,32],[-48,20],[-54,-8],[-29,26],[-27,-26],[-96,-1],[3,58],[-54,48],[-45,-31],[-58,82],[-22,19],[-33,-15],[-94,75],[-47,72],[-47,6],[-33,-35],[-41,36],[50,77],[-29,40],[20,52],[-37,40],[-48,-48],[-25,7],[-11,-26],[-91,-29],[23,-80],[-114,4],[-62,-66],[-33,27],[-32,100],[-29,6],[-47,-45],[0,-69],[-66,-56]],[[3137,23789],[-60,50],[-7,37],[53,22],[26,54],[-86,55],[65,111],[2,78],[45,68],[-42,25],[-15,66],[-54,24],[-66,-3],[-73,93],[-2,40],[41,152],[65,28],[28,-55],[78,-7],[33,91],[-51,109],[26,25],[-10,36],[-30,39],[-38,-15],[-16,49],[11,86],[-21,32],[-72,24],[-96,95],[-3,207],[20,-9],[15,20],[-20,29],[-85,23],[88,74],[-27,33],[-45,27],[4,-51],[-53,-43],[23,-39],[-25,-13],[-133,25],[3,37],[73,111],[-15,37],[-70,-4],[2,72],[50,62],[67,17],[56,43],[30,-10],[4,37],[82,44],[3,99],[28,23],[-28,117]],[[3137,23789],[16,-17],[-12,-49],[-37,-28],[19,-12],[2,-78],[-36,-42],[-47,-15],[-60,19],[-31,-17],[-102,86],[2,34],[-44,46],[-52,20],[-76,-97],[-123,23],[-55,62],[-51,-62],[-48,-9],[-71,-100],[-159,21],[-70,-26],[-70,15],[-28,-21]],[[2004,23542],[-124,-5],[40,112],[35,-2],[1,-37],[33,-25],[7,106],[61,80],[-78,30],[-20,31],[51,27],[-3,98],[44,29],[66,-26],[37,9],[47,23],[44,64],[-17,63],[-70,-21],[-64,36],[-37,-15],[-30,-50],[-23,3],[-17,137],[47,21],[79,-78],[24,5],[37,63],[-68,98],[137,81],[0,32],[-19,20],[-77,-21],[-185,74],[-3,73],[48,22],[13,35],[-28,51],[19,70],[-83,125],[-64,15],[-1,42],[87,42],[72,79],[0,31],[-149,189],[48,66],[-31,56],[-66,-20],[-12,53],[-98,22],[-43,148],[-99,-14],[-62,19],[35,53],[-77,38],[-22,-22],[-35,13],[-49,81],[7,72],[-96,10],[-80,145],[-183,192],[0,112],[72,91],[134,44],[7,99],[-130,116],[43,198],[41,19],[19,-25]],[[2297,26656],[-56,-81],[8,-22],[58,-34],[51,53],[21,-3],[82,-53],[46,-36],[20,-84],[77,-91],[77,27],[44,54],[64,-15],[160,-191],[-34,-14]],[[5024,30041],[-39,-239],[80,-140],[1,-64],[-48,-74],[-87,-19],[-41,-71],[-1,-156],[27,-34],[-75,-155]],[[4841,29089],[-32,17],[-109,-78],[62,-103],[35,-20],[31,-142],[-6,-103],[-40,-17],[34,-98],[-68,-99],[2,-39],[21,-32],[48,-10],[48,-86],[-55,-118],[88,-48],[9,-29],[96,-16],[48,-59],[-8,-63]],[[5045,27946],[-115,19],[-14,-26],[-104,7],[-87,46],[-72,0],[-34,-30],[-20,10],[-49,-55],[-15,13],[-54,-63],[-4,-54],[-46,0],[-43,39],[-54,-9],[-61,-87],[-49,7],[-22,27],[-72,-71],[-26,26],[-10,79],[-48,36],[-118,49],[-39,-62],[-63,38],[-45,-51],[6,-45],[-21,-4],[-27,-69],[44,-39],[-12,-17],[20,-20],[-21,-151],[-42,44],[-139,11],[-50,-56],[-39,4],[-22,-34],[-66,13],[-52,-66],[22,-45],[-26,-32],[-59,-16],[-48,-63],[-69,18],[-65,-84],[-36,-6],[-78,51],[-18,-19],[-49,9]],[[1921,32188],[9,66],[-23,15],[20,40],[-29,16],[-59,-9],[-79,91],[-62,-39],[-32,-108],[-84,67],[-40,-39],[-29,23],[-56,-56],[-111,44],[-20,-16],[-28,12],[-15,-38],[-43,30],[-42,-48],[-41,47],[-101,42],[-51,70],[-57,15],[-41,-55],[-21,1],[-72,57],[-20,-13],[-167,132],[-102,-88],[-120,20],[-76,40],[-22,-25],[-27,4],[-40,35]],[[240,32521],[39,-4],[23,24],[7,58],[-108,107],[8,39],[-63,61],[44,66],[-20,81],[100,27],[37,50],[41,8],[-8,81],[25,67],[70,65],[-18,63],[13,55],[65,116],[-5,57],[25,47],[-35,78],[9,27],[248,298],[21,104],[71,32],[74,87],[33,171],[-34,48],[7,27],[42,3],[56,63],[154,2],[231,187],[39,19],[22,-22],[84,5],[87,83],[-97,42],[11,21],[40,-6],[57,103],[-27,24],[41,156],[147,-6],[64,100],[42,18],[129,243],[119,135],[41,154],[211,148],[25,41],[-39,98],[67,140],[59,68],[-87,60],[7,30],[-59,76],[39,40],[51,7],[29,-27],[113,20],[18,-35],[93,34],[47,-35],[14,-44],[81,-14],[18,-71],[31,21],[21,-18],[93,-190],[61,-64],[197,-69],[386,-245],[91,-13],[103,-55],[33,31],[42,-12],[198,-89],[36,-51],[83,27],[-127,-166],[-70,-26],[-28,-152],[-152,-187],[-108,-205],[-57,-51],[-46,-5],[-23,-75],[-41,-23],[-121,55],[-24,-84],[-120,-182],[-3,-30],[83,-95],[-29,-54],[-27,12],[-63,-45],[-20,-73],[-78,-73],[83,-106],[-147,-180],[66,-49],[17,-74],[-92,-58],[-3,-43],[-65,-43],[22,-57],[-27,-20],[13,-39],[34,-47],[89,-18],[13,-73],[-19,-23],[76,-55],[-10,-25],[25,-12],[-15,-65],[93,-100],[-12,-48],[27,-30],[-24,-33],[38,-21],[-53,-116],[60,-50],[-63,-100],[68,-49],[42,5],[89,-44],[-55,-89],[106,-69]],[[2047,22654],[-30,252],[41,44],[10,52],[-47,256],[-85,70],[11,83],[57,131]],[[6862,23614],[68,-25],[28,-41],[4,-97],[28,-50],[29,1],[-1,-25],[50,-38],[-2,-33],[128,61],[-2,28],[122,14]],[[7314,23409],[-39,-70],[117,-50],[-6,-42],[60,-85]],[[7446,23162],[-68,-33],[9,-80],[-21,-20],[41,-68],[-95,-105],[29,-24],[-99,-93],[37,-29],[-118,-154],[-58,-10],[-26,18],[-22,-28],[30,-40],[-63,-21],[-106,-197],[-26,1],[-7,-33],[101,-70],[-35,-50],[36,-18],[20,-89],[-39,-59],[-42,-18],[-130,55]],[[6794,21997],[-59,10],[-33,38],[8,23],[-67,67],[7,25],[-80,6],[-37,38],[-61,7],[-59,-84],[0,-75],[-74,-27],[-26,-36],[-48,-172],[-33,-17],[-2,-38],[48,-28],[6,-28],[-55,-83],[-36,4],[-109,-79],[-8,-52],[-19,-10],[-91,35],[-40,-8],[-38,-58],[-122,-54],[-134,-208],[-45,25],[-84,119],[-41,1],[-57,71],[-92,62],[43,31],[-50,75],[44,44],[-4,50],[-41,48],[-37,24],[-66,-31],[-77,81],[-17,-25],[-32,23],[-34,-34],[-72,11],[-41,-19],[-19,15],[-24,-12],[-34,38],[-20,-20],[-46,9],[25,51],[-50,77],[-105,-50],[7,-68],[-56,-28],[-23,11],[-38,-60],[27,-45],[98,-28],[-64,-63],[-88,35],[-42,-64],[38,-18],[19,-51],[-69,-65],[5,-25],[-43,-49],[148,-130],[-41,-47],[37,-48],[-9,-25],[-81,16],[-106,-116],[-7,-40],[97,-88],[-22,-22],[-109,-5],[-15,-28],[-42,94],[-29,7],[-49,-55],[-31,38],[-119,-66],[4,-27],[-72,-40],[-16,-40]],[[3965,20717],[-49,54],[-32,-17],[-47,-81],[-21,1],[-29,101],[-69,92],[64,79],[-52,87],[-11,86],[-99,56],[11,43],[-53,20],[-25,-31],[-130,91],[-3,29],[55,83],[-26,43],[26,71],[-29,19],[36,124],[38,20],[107,-13],[16,32],[-105,155],[-16,85],[27,62],[-62,91],[-11,-15],[-32,11],[-64,75],[-2,30],[30,24],[109,52],[-25,25],[-134,6],[-61,61],[-13,80],[16,73],[-319,202],[-175,2],[-132,120],[-48,-24],[-41,-151],[-120,29],[-44,-37],[-100,-25],[-55,-93],[-141,87],[-78,23]],[[3965,20717],[46,-83],[-24,-62],[-44,-6],[-39,-78],[-36,-1],[-27,-52],[18,-45],[107,-23],[89,-199],[-68,-77],[16,-60],[-35,-59],[65,-50],[72,29],[36,-20],[-30,-42],[19,-67],[-58,-11],[-42,44],[-80,-81],[-13,-46],[66,-84],[-24,-87],[22,-23],[-6,-62],[-53,-58],[-18,-57],[93,-23],[-5,-86],[133,-100],[29,5],[105,157],[82,-19]],[[2720,18833],[-80,95],[-45,-23],[-21,11],[-18,49],[40,55],[-30,13],[4,34],[-27,34],[-58,36],[47,23],[70,92],[5,96],[-34,29],[-28,-45],[-101,-10],[-41,-52],[-28,43],[-148,47],[-9,69],[-59,2],[-154,169],[-79,21],[-54,-35],[-17,32],[-151,47],[-3,94],[-87,74],[27,130],[44,5],[13,58],[-62,60],[-21,-12],[-11,30],[-78,31],[-16,136],[-87,87],[-43,-22],[-166,83],[1,70],[29,-2],[16,25],[-54,39],[-8,91],[106,120],[-70,51],[-46,-33],[-86,87],[176,246],[-44,69],[11,57],[-24,18],[16,26],[-30,97],[14,25],[-34,19],[-124,3],[-21,22],[-11,83],[85,55],[-62,106],[20,99],[-46,109],[-101,46],[122,136],[82,26],[18,85],[48,2],[63,41],[117,-23],[47,37],[48,2],[112,172],[32,4],[160,-89],[86,51],[16,248],[40,37],[87,-42],[42,20]],[[7989,19406],[-43,-24],[23,-20],[4,-117],[-16,-25],[36,-78],[-16,-95],[-65,14],[-60,-68],[147,-44],[38,-50],[-2,-32],[48,-18],[115,-109],[-47,-100],[-73,12],[-48,-29],[-11,-47],[59,-36],[22,-45],[71,-11],[126,-96],[21,17],[55,-29],[118,-87],[6,-27],[-9,-19],[-75,56],[-60,-34],[-13,-34],[28,-33],[-13,-24],[31,-20],[17,26],[24,-25],[-60,-128],[-109,89],[-35,-40],[48,-41],[-4,-81],[-43,-106],[50,-29],[-64,-44],[46,-48],[40,9],[37,-23],[-65,-50],[-15,-63],[66,7],[33,-26],[7,-23],[-58,-33],[-4,-32],[60,-39],[19,-25],[-13,-17],[47,-36],[40,66],[29,-17],[-10,-54],[-69,-70],[33,-57]],[[8433,17244],[-78,-30],[-25,-42],[-53,26],[-155,-203]],[[10629,19324],[45,-56],[-13,-24],[42,-72],[81,-4],[16,-61],[-17,-42],[65,-43],[70,48],[56,-56],[-56,-178],[106,-54],[0,-89],[49,-35],[30,7],[10,50],[57,5],[25,-85],[125,-56]],[[11320,18579],[13,-28],[-42,-46],[28,-73],[-17,-93],[99,-69],[0,-28],[-68,-72],[-49,6],[-10,-60],[38,16],[-17,-88],[26,-35],[43,16],[76,-20],[29,29],[60,-33],[-61,-90],[35,-49],[-62,-56],[-35,11],[-56,-21],[-31,-73],[29,-32],[-13,-37],[-91,-149],[2,-100],[-126,-121],[-2,-40],[-54,22],[-94,-12]],[[10970,17254],[-30,28],[-8,68],[-71,41],[-40,-35],[-97,31],[-27,35],[-12,-32],[-49,-16],[-40,17],[-72,-46],[-121,-34],[-73,46],[1,98],[-70,61],[-67,-16],[-31,-37],[-132,19],[-51,-37],[-33,35],[-20,-37],[-81,35],[-11,-32],[25,-59],[-69,-36],[-39,76],[-64,-14],[-60,-35],[-8,-55],[-74,-27],[-49,-81],[-56,-34],[-62,63],[10,65],[-49,45],[-66,-4],[-59,-67],[-105,47],[-12,-23],[-38,19],[-4,44],[-42,17],[-39,-53],[30,-30],[-14,-31],[-31,-10],[-93,33],[-146,-54],[-68,70],[-66,-43],[-19,-69],[-42,-3],[-93,47]],[[6794,21997],[-19,-50],[53,-63],[-22,-78],[23,-31],[-46,-37],[67,-65],[122,-59]],[[11104,21153],[-211,71],[-31,70],[-56,14],[-10,-21],[50,-67],[-28,1],[-74,67],[-21,-9],[-91,36],[10,39],[-72,16],[-40,63],[-41,-87],[-33,43],[-191,84]],[[10265,21473],[72,194],[-43,78],[-83,37],[19,24],[-43,38],[-6,80],[-111,96],[-44,0],[73,87],[-133,102],[-115,-99],[-119,51],[-17,27],[-57,-54],[-124,16],[-57,29],[-100,-25],[75,103],[-156,102],[-63,-50],[-39,-99],[-63,32],[-81,-44],[-30,25],[-48,1],[11,138],[-160,230],[-95,-37],[-38,17],[-71,86],[-124,66],[-34,66],[-52,20],[-20,-23],[-67,7],[-94,60],[-45,-79],[-58,52],[-22,-12],[-35,40],[-59,5],[-29,69],[-55,47],[-8,50],[-215,58],[-33,24],[30,15],[-117,43],[-36,52],[-56,-66],[-44,10]],[[7314,23409],[48,142],[-29,38],[-57,20],[81,86],[-30,40],[58,56],[-60,46],[-25,-25],[-9,28],[14,25],[34,4],[48,80],[33,-12],[51,36],[-11,39],[-32,-11],[2,23],[-26,3],[-29,62],[44,56],[38,-5],[39,68],[99,78],[-28,25],[20,35],[-13,50],[33,114],[46,39],[-25,80],[87,150],[-46,54],[51,48],[11,51],[58,-6],[69,70],[38,76],[62,49],[46,-17],[64,53],[36,-35],[20,20],[36,-31],[85,108],[-51,48],[18,32],[29,14],[92,-50],[28,19],[5,83],[47,42],[-17,54],[64,81],[50,-32],[125,79],[34,-27],[46,97],[48,-7],[36,46],[56,-54],[20,-3],[40,51],[36,-49],[22,9],[30,-32],[50,33],[32,-21]],[[9085,25632],[2,-68],[50,-101],[-8,-45],[46,-25],[50,25]],[[9246,29369],[47,-29],[-32,-34],[-42,19],[-10,-23],[37,-15],[-22,-79],[-115,-127],[56,-40],[-6,-14],[-59,16],[-6,-86],[-42,29],[-35,-15],[40,-63],[-34,-26],[12,-26],[-21,-21],[37,-46],[3,-45],[-82,-77],[-23,15],[-36,-26],[-14,-34],[27,-41],[41,-10],[46,-46],[-52,-79],[88,-64],[10,-59],[-17,-54],[-44,19],[0,-153],[-31,-38],[7,-29],[37,-32],[59,0],[2,-89],[-19,-18],[16,-24],[83,-31],[87,-73],[-17,-45],[-24,-6],[-3,-41],[50,-51],[37,-6],[30,37],[48,-27],[-14,-18],[19,-33],[-51,-26],[27,-26],[1,-59],[-62,-31],[-32,-49],[19,-16],[20,20],[9,-33],[36,1],[42,-39],[-5,-45],[-79,-41],[-61,-71],[11,-24],[-42,-35],[13,-21],[-24,-108],[-91,-66],[-94,18],[-114,-70],[-101,85],[37,49],[-9,43],[-66,33],[-26,-32],[9,-77],[24,-20],[-78,-126],[43,-35],[-39,-69],[20,-14]],[[8702,26727],[-40,-45],[-97,28],[1,37],[-44,48],[-74,-38],[-11,-27],[22,-39],[-79,-2],[-25,-19],[21,-62],[-40,-26],[-26,38],[-48,15],[10,21],[-61,27],[-31,-36],[-116,42],[-87,-137],[-55,-26],[-46,8],[-11,105],[-29,11],[-26,-21],[-62,23],[-28,55],[-69,47],[14,28],[-44,2],[99,152],[-17,13],[2,119],[23,41],[-23,20],[35,102],[51,-1],[18,82],[-129,133],[2,35],[-44,61],[-64,1],[-47,31]],[[7527,27573],[15,54],[-41,40],[69,97],[36,-24],[21,23],[-48,75],[2,58],[25,21],[-40,17],[-5,50],[-83,104],[60,31],[-54,70],[95,42],[24,66],[-64,4],[-62,-42],[-30,28],[17,36],[-25,27],[-71,1],[-44,53],[-37,-41],[-79,-8],[-31,-89],[-86,14],[35,116],[29,25],[-10,31],[-77,13],[-4,56],[36,28],[46,-23],[49,79],[42,-52],[69,-6],[-5,78],[-90,62],[-2,43],[-78,33],[-13,19],[21,35],[-57,13],[5,29],[-50,37],[-26,110]],[[7011,29006],[69,8],[59,-28],[27,37],[51,5],[9,40],[119,-43],[52,55],[18,-16],[60,53],[-43,68],[32,40],[63,36],[77,7],[73,77],[15,72],[-56,-11],[-53,23],[-24,15],[8,51],[51,42],[56,-52],[33,64],[-47,29],[52,76],[58,8],[21,35],[42,-21],[56,38],[-12,67],[-78,-76],[-48,10],[55,71],[-36,43],[61,47],[42,68],[-33,41],[73,37],[20,40],[44,6],[18,-18],[57,55],[83,1],[23,32],[49,-38],[42,21]],[[8249,30121],[103,-68],[-12,-29],[88,-59],[58,-25],[93,53],[54,-52],[47,53],[23,-64],[63,-31],[-15,-16],[46,-62],[-35,-35],[34,-24],[21,18],[24,-15],[-9,-45],[35,-1],[15,-23],[-29,-13],[74,-48],[-36,-42],[36,-29],[0,-55],[29,-1],[6,-22],[-24,-33],[37,-49],[-57,-61],[28,-23],[69,-15],[38,64],[109,-52],[37,54],[47,-2]],[[9246,29369],[43,73],[39,-16],[4,-51],[57,-31],[3,-39],[24,-2],[9,-27],[28,19],[47,-25],[33,14],[48,65],[-44,2],[-23,31],[-43,-18],[-16,31],[29,59],[-15,42],[32,7],[17,-40],[47,-7],[-38,83],[16,42],[32,-2],[69,-70],[23,14],[133,-64],[136,-103],[48,2],[9,34],[34,-17],[106,-78],[-22,-147],[-25,-18],[-10,-53],[12,-68],[84,-88],[66,-21],[-60,-101],[9,-56],[75,-36],[81,51],[35,-7],[35,41],[86,-67],[107,-39],[-15,-27],[48,-52],[245,-151],[24,58],[45,-28],[211,-21],[-10,74],[27,29],[21,-7],[91,-212],[84,26],[55,-70],[-15,-65],[59,-53],[-28,-97]],[[9085,25632],[-30,44],[73,143],[-6,35],[24,0],[28,45],[-73,99],[8,59],[39,-4],[23,82],[-101,95],[1,71],[-81,22],[-8,46],[22,25],[-110,79],[-35,111],[-157,143]],[[7527,27573],[-104,8],[-46,-43],[19,-89],[-96,-31],[-41,20],[-32,-35],[-12,21],[-41,-12],[-28,-30],[-13,-76],[-96,41],[-34,-42],[-91,83],[-19,-35],[-35,0],[21,72],[-44,36],[-64,-63],[-51,4],[-69,79],[-47,-69],[-69,65],[-54,-35],[-17,-27],[9,-37],[56,-42],[-17,-71],[-38,-31],[19,-19],[-19,-58],[36,-24],[-22,-52],[24,-57],[-22,-45],[14,-18],[-46,-50],[79,-45],[-16,-36],[23,-22],[-18,-44],[-25,6],[-76,-85],[45,-64],[13,-133],[38,13],[66,-46],[-39,-61],[68,-62],[-48,-41],[1,-92],[-33,-42],[59,-71],[-103,-125],[65,-64],[-34,-70],[24,-80],[-66,-105],[-47,59],[-50,13],[-29,-33],[-57,5],[-174,-182],[-100,-24],[-79,40],[-31,-80]],[[5376,26569],[-8,87],[69,164],[-15,59],[-81,81],[-10,75],[-51,15],[-28,51],[45,118],[-52,48],[-32,3],[-124,194],[18,6],[-31,46],[22,22],[-31,100],[10,62],[-56,86],[24,160]],[[4841,29089],[136,-48],[84,-6],[62,-35],[27,-77],[36,11],[15,-29],[46,44],[72,-28],[45,-50],[30,36],[122,-99],[40,34],[74,-20],[36,26],[22,-15],[40,18],[85,-67],[51,73],[31,-24],[-26,-24],[75,-38],[61,4],[29,46],[84,-69],[67,1],[27,28],[53,-5],[27,28],[46,-43],[25,4],[30,45],[38,-7],[59,50],[17,-13],[56,33],[27,48],[19,-11],[75,54],[100,-36],[19,18],[55,-49],[27,27],[29,-11],[72,100],[25,-7]],[[4612,31671],[76,31],[-15,110],[15,24],[-42,53],[0,52],[56,77],[96,28],[50,-18],[31,27],[23,108],[33,44],[63,39],[17,-17],[130,34],[27,35],[-6,106],[51,46],[88,24],[36,-22],[73,17],[31,87],[-17,189],[70,30],[121,-20],[38,17],[37,-51],[198,176],[80,31],[101,-65],[50,51],[67,12],[17,86],[200,-90],[160,-11],[76,-74],[81,-44],[134,-28],[140,-97],[30,-153],[-7,-197],[54,-108],[224,-273],[209,-184],[156,-69],[272,-236],[169,1],[287,-212],[49,10],[307,-115],[254,-63],[74,26],[6,-24],[-76,-53],[-32,-119],[-32,-14],[-54,-94],[-33,-8],[-41,-55],[-29,12],[-19,-22],[16,-16],[-31,-28],[-70,-29],[-37,12],[22,-57],[-75,-29],[-67,55],[-14,67],[-70,-156],[-50,-24],[45,-80],[-44,-10],[-13,-40],[-38,21],[28,56],[-10,26],[-86,-25],[-42,58],[-68,-25],[-17,-74],[-80,22],[3,-108],[-43,18],[-13,-34],[46,-2],[156,-108],[44,-49],[-9,-38]],[[11860,13930],[195,214],[38,8],[75,104],[41,60],[-47,58],[15,36],[27,-16],[74,95],[15,-10],[23,22],[6,21],[-29,35],[20,27],[69,45],[34,-5],[11,27],[-55,59],[58,60],[47,-37],[26,11],[-15,45],[23,71],[-17,58],[-35,18],[64,66],[25,84],[-51,27],[-15,88],[37,84],[77,-22],[27,68],[56,-22],[48,115],[121,66],[50,81],[5,43],[-32,55],[42,71],[-43,92],[-73,70],[-14,59],[-95,59],[2,30],[106,-8],[9,27],[121,23],[37,77],[83,7],[47,90]],[[13093,16266],[65,-15],[9,-41],[30,-5],[100,64],[56,6],[68,-63],[55,-10],[37,14],[109,129],[-27,30],[-38,3],[30,137],[47,-11],[105,-82],[41,33]],[[10970,17254],[-41,-55],[2,-37],[49,-11],[62,-52],[33,6]],[[11075,17105],[16,-31],[-45,-148],[35,-12],[-40,-47],[36,-23],[-22,-35],[-3,-121],[-38,-72],[61,-64],[-78,-95],[48,-57],[-7,-52],[-19,-37],[-34,-4],[-17,-64],[5,-76],[68,-42],[-7,-102],[26,-39],[-55,-59],[-20,-61],[-30,-34],[-26,19],[-8,-46],[-28,-23],[-6,-35],[40,-52],[-47,-50],[64,-68],[-38,-40],[-8,-63],[-57,-18],[-78,-92],[-106,9],[-21,-20],[-3,-50],[-177,-253],[9,-89],[-73,-22],[-2,-30],[30,-16],[67,20],[45,-15],[39,-146],[117,30],[111,70],[67,-25],[1,-36],[-60,-48],[-130,-23],[-69,-45],[-22,-35],[65,-22],[44,-64],[-67,-90],[-156,-72],[-48,-60]],[[10038,14354],[-174,69],[-13,-45],[-48,10],[-87,-24],[-34,63],[-49,3],[93,140],[-18,101],[-57,-10],[-55,80],[17,38],[-34,-10],[-17,22],[9,57],[-60,33],[7,61],[-51,-25],[-16,22],[-28,-10],[-15,30],[36,14],[-36,40],[-33,113],[-44,-7],[-18,88],[142,43],[-40,129],[-72,93],[72,130],[-18,54],[-30,17],[-91,-4],[-111,-100],[-38,-19],[-33,14],[21,88],[49,54],[-7,52],[-211,84],[-92,-52],[-102,0],[-178,197],[-79,146],[-44,25],[-159,-26]],[[12994,19964],[-39,-53],[-54,-6],[-5,-78],[44,-26],[-79,-100],[-64,-20],[-32,-35],[18,-19],[-31,-36],[-5,-48],[22,-53],[62,-31],[-7,-36],[50,-8],[-10,-39],[21,-1],[32,-64],[-2,-57],[37,-53],[-23,-20],[17,-38],[-26,-48],[48,-41],[-13,-40],[-22,11],[-40,-28],[-40,-65],[-42,29],[-30,-76],[47,-43],[-31,-80],[95,-41]],[[12892,18721],[-23,-34],[12,-35],[-27,-14],[-51,45],[-42,-97],[-44,-5],[-12,-112],[-35,-50],[-112,9],[-6,23],[-67,29],[-8,35],[-86,14],[-41,-28],[-23,-51],[-99,-67],[-119,-28],[-84,98],[-33,83],[-36,2],[-33,108],[-51,-24],[-2,27],[-40,-11],[-39,35],[-68,-46],[-41,47],[-43,-29],[-56,41],[-43,-37],[-33,47],[-19,-8],[-29,30],[-14,40],[-55,-16],[-10,-110],[-24,5],[-2,-37],[-34,-21]],[[10444,20701],[-73,31],[-20,-21],[-110,2],[-32,30],[69,86],[-6,60],[-82,21],[-60,57],[-67,13],[-59,45],[44,42],[-25,70],[15,69],[-73,95],[48,36],[30,75],[59,-15],[81,28],[28,-11],[54,59]],[[12892,18721],[70,-12],[369,-277],[45,15],[68,-28],[35,21],[86,-64],[31,5],[-30,-59],[91,-29],[122,12],[67,-74],[71,63],[34,-24],[93,-145],[-6,-54],[-39,-9],[0,-30],[38,4],[14,-22],[-51,-37],[17,-35],[99,-66],[27,-53],[54,16],[53,-15],[17,-42],[-55,-97],[24,-25],[12,-75],[-19,-43],[72,-62],[55,-90],[41,-118],[-30,-44]],[[13093,16266],[-21,44],[15,28],[-32,14],[-49,77],[-67,-48],[-61,29],[15,25],[-77,56],[23,76],[-78,56],[-66,83],[-73,37],[20,101],[-85,45],[-58,-9],[-61,-49],[-41,42],[-75,3],[-5,-33],[-48,-25],[-60,-99],[-83,-24],[-46,59],[-62,30],[-43,-22],[-35,47],[-37,-25],[-41,34],[-51,7],[-145,136],[-37,-23],[-51,151],[-62,0],[7,59],[-37,3],[-73,-42],[-70,15],[-3,-29],[-39,-22],[-167,109],[-30,-63],[-29,-14]],[[7190,7498],[35,53],[37,12],[1,-103],[148,-278],[23,-159],[-15,-179],[67,-44],[56,-1],[125,-206],[-1,-119],[-33,-56],[-10,-191],[-60,-148],[22,8],[79,-63],[-10,-38],[63,-8],[19,-138],[46,-85],[86,-24],[80,-80],[88,-3],[90,-79],[33,17],[88,-64],[22,-147],[70,-116],[-15,-51],[-80,-67],[-3,-176],[31,-29],[-20,-49],[8,-105],[35,-103],[-51,-86],[-33,-4],[-15,-114],[-50,-23],[-12,-86],[27,-173],[-17,-14],[29,-102],[131,-58],[75,33],[49,51],[27,-14],[100,21],[41,102],[71,-31],[42,55],[9,70],[74,8],[59,-87],[21,-92],[65,-51],[37,-141],[24,1],[49,-80],[56,-20],[4,-36],[30,-21],[-47,-70],[38,-87],[-17,-21],[13,-82],[98,-35],[-31,-57],[-140,-24],[-42,14],[35,38],[-66,61],[-42,-146],[14,-87],[64,12],[64,-46],[31,-86],[188,28],[38,-105],[-47,-70],[-69,-223],[7,-127],[-41,-19],[-107,-161],[-156,-108],[10,-45],[33,-23],[-7,-82],[-149,-97],[14,-139],[-14,-36],[-92,-59],[-96,20],[-109,-101],[-10,39],[-32,24],[-19,-147],[-38,-15],[-74,-5],[-32,67],[-14,102],[-63,71],[-13,57],[18,113],[-26,29],[-22,12],[-2,-76],[-46,-56],[-42,0],[-2,76],[-34,28],[-24,-16],[-19,-73],[-83,-12],[-28,-41],[-98,61],[-71,12],[-41,153],[-56,25],[-48,65],[-37,16],[-30,-29],[-27,65],[44,48],[-13,31],[-34,18],[-48,-10],[-31,38],[-35,110],[-33,14],[-25,49],[9,41],[-36,14],[-35,-20],[-164,86],[-42,0],[-15,78],[-40,33],[-81,14],[-42,-50],[-95,-146],[19,-91],[-168,-109],[10,-19],[-36,-21],[8,-87],[-45,-71],[-63,4],[-21,-66],[-37,-12],[-115,3],[-33,76],[-34,1],[-20,37],[-48,11],[-40,38],[-8,73],[-79,68],[8,48],[58,58],[70,123],[56,40],[-15,67],[-83,9],[-50,90],[-73,22],[-262,215],[-32,54],[54,101],[-121,53],[-23,31],[7,117],[-97,52],[17,99],[165,85],[2,83],[15,53],[22,11],[27,181],[-75,178],[6,44],[64,62],[-52,88],[-41,143],[-153,276],[47,60],[4,45],[-180,369],[-128,49],[-20,79],[9,81],[195,109],[57,107],[371,292],[101,141],[73,20],[69,131],[-58,274],[21,109],[207,76],[110,150],[35,10],[114,-52],[62,9]],[[27398,7737],[26,17],[8,121],[62,-13],[18,23],[-11,59],[28,106],[34,12],[16,56],[-16,32],[-60,10],[-31,118],[6,28],[41,1],[10,31],[38,19],[10,-36],[19,22],[12,141],[-83,29]],[[29381,9390],[34,-69],[-64,-37],[6,-33],[59,-60],[28,-96],[98,39],[10,-42],[30,-17],[25,32],[-4,35],[-45,6],[-39,36],[-10,43],[29,31],[27,-3],[111,-108],[65,-9],[103,2],[9,22],[-53,30],[-3,28],[53,19],[59,-13]],[[29909,9226],[-69,-184],[-112,-79],[-79,-137],[40,-69],[77,-42],[41,8],[152,-85],[-28,-167],[-69,-218],[-59,-81],[-88,-70],[-194,59],[-194,-4],[-192,-86],[-51,-64],[-5,-42],[140,-45],[3,-78],[89,-8],[4,-51],[-124,0],[-12,-28],[43,-42],[-39,-40]],[[30733,10862],[83,-20],[9,-50],[44,-21],[25,15],[26,72],[-21,16],[26,28],[29,-12],[14,28],[34,-7],[17,32],[-36,14],[17,47],[139,37],[26,-45],[26,21],[33,-12],[70,50],[86,-58],[21,6],[26,88],[48,12],[5,30],[58,27],[198,-12],[49,36],[109,24],[74,42],[25,-23],[45,15],[17,-41],[80,-28],[11,71],[45,12],[-19,45],[22,1],[-3,36],[83,-45],[41,-69],[78,-27],[5,-23],[64,3],[-5,-24],[23,-18],[115,29],[5,-34],[-42,-27],[60,-2]],[[32618,11101],[-3,-48],[51,-21],[27,70],[25,-31],[-22,-43],[28,-57],[67,-44],[30,-53],[76,-43],[43,22],[29,-15],[-6,-40],[102,-91],[-29,-27],[10,-26],[71,50],[16,40],[88,-43],[35,56],[36,-59],[0,-40],[43,4],[36,-80],[86,-38],[14,32],[62,-15],[-28,-30],[7,-29],[30,1],[37,47],[-5,46],[126,-64],[-15,-29],[32,-5],[4,-20],[-30,-29],[64,-64],[-42,-45],[-54,13],[-24,-82],[78,-35],[-2,-97],[42,22],[9,-27],[-33,-45],[-35,0],[-29,-106],[-26,-3],[-1,-69],[-22,-37],[-57,-18],[34,-93],[43,-12],[34,-136],[-17,-10],[13,-42],[-37,-3],[-3,32],[-19,-1],[-16,-129],[15,-36]],[[33606,9426],[-79,-69],[-47,-104],[-51,-37],[-89,-10],[4,-114],[-68,-80],[-31,-83],[-111,-59],[-53,45],[-41,-31],[-14,-65],[138,-8],[30,-73],[-63,-18],[-9,28],[-30,-2],[-65,-34],[-53,1],[3,-27],[60,-21],[-32,-68],[-83,-64],[-98,-4],[-17,-59],[-62,34],[3,21],[49,6],[1,22],[-44,18],[-49,-24],[-34,56],[-47,-72],[-62,0],[-36,-65],[-42,57],[-35,-58],[-50,-26],[51,-56],[-33,-23],[-56,-15],[-64,46],[17,-55],[-35,6],[-14,-31],[-26,-4],[-13,-20],[15,-40],[-46,-40],[-36,18],[-28,-72],[-107,8],[-61,-23],[-38,-29],[-7,-34],[-52,-8],[-6,-45],[-20,7],[14,26],[-13,12],[-66,-17],[-13,17],[-73,6]],[[31689,8073],[-50,49],[32,122],[50,-3],[0,38],[-36,16],[-8,46],[-31,8],[-34,89],[32,65],[-163,91],[-290,258],[-168,217],[-78,9],[-69,-33],[-178,-141],[-84,39],[-73,100],[-379,230],[-148,29],[-39,-11],[-66,-65]],[[31689,8073],[-5,-33],[44,24],[31,-31],[-83,-27],[-10,-30],[-42,27],[-18,-11],[20,-43],[-51,-45],[-40,14],[-9,-31],[-45,21],[-4,-31],[-25,-2],[-24,22],[-91,-171],[-26,-15],[-65,60],[-82,-80],[-30,48],[-3,-37],[-27,-8],[-13,26],[-47,-29],[-14,-43],[15,-43],[-33,-32],[4,-45],[-42,-17],[1,-43],[-24,1],[-20,36],[-19,-12],[6,-37],[-85,-45],[-44,24],[-19,-62],[-2,-55],[16,-6],[-24,-115],[59,-19],[4,-128],[19,-4],[-23,-105],[-65,14],[-17,-153],[-26,-26],[-26,-114],[32,-7],[3,-50],[-37,1],[1,29],[-30,-4],[14,-50],[-41,-52],[-5,-109],[16,-27],[114,-21],[14,-77],[-45,-86],[-1,-93],[86,-50],[20,-98],[-17,-27],[7,-133],[-39,-24],[55,-67],[-37,-13],[16,-34],[36,-24],[-56,-52],[95,-61],[18,-68],[29,-44],[30,3],[20,-46],[-8,-31],[33,-80],[-39,-47],[27,-45],[-40,-39],[10,-36]],[[32134,13158],[143,27],[13,35],[134,31],[125,86],[74,0],[64,36],[161,-174],[66,-18],[47,-112],[1,-73],[46,-36]],[[33008,12960],[11,-34],[-21,-31],[-137,-91],[59,-84],[56,-29],[16,-48],[-36,-25],[-28,-76],[15,-43],[-122,-50],[-44,13],[22,-37],[-10,-15],[-56,26],[20,-49],[-29,-15],[-19,30],[-29,-3],[-8,-37],[-42,2],[2,29],[-61,3],[-9,30],[-45,-1],[-61,-58],[-19,-56],[-53,-2],[29,-78],[-34,-32],[-14,-59],[11,-119],[-24,-11],[26,-65],[105,-43],[10,58],[83,-34],[74,0],[50,-21],[27,-72],[45,54],[78,-1],[17,-15],[-7,-35],[-57,-19],[17,-57],[52,43],[-4,20],[42,19],[37,6],[13,-25],[-57,-95],[-29,-118],[21,-31],[-32,-71],[93,1],[-7,-69],[-70,-103],[-81,-16],[-40,-26],[-16,-47],[-87,-11],[11,-27],[25,1],[-53,-54],[-16,-56]],[[33008,12960],[186,3],[86,-50],[3,-98],[56,-98],[149,-141],[145,0],[136,56],[60,-85],[195,-14],[185,-138],[15,59]],[[34224,12454],[161,2],[74,-42],[85,-91],[80,-135],[173,-154],[-13,-206],[30,49],[100,-48],[50,61],[152,-72],[38,-30],[-1,-27],[183,-95],[73,-76],[73,-8],[207,84],[164,-119],[120,-37],[84,-186],[-7,-35],[160,-9],[61,-44],[84,37],[104,-93],[114,26],[46,-92],[-48,24],[-51,-22],[38,-38],[-2,-122],[89,-17],[11,68],[157,-92],[206,-181],[-5,-117],[-50,28],[-30,-25],[-5,-57],[116,-105],[23,-81],[-115,18],[-53,41],[-197,-9],[20,-106],[-13,-177],[-26,-24],[-105,51],[21,200],[-24,-15],[-28,-233],[-43,-41],[-61,38],[-41,-40],[-36,10],[8,80],[-112,-20],[-24,25],[-19,98],[-45,1],[3,27],[-112,-16],[-15,-99],[-104,27],[-27,55],[27,43],[-32,74],[-77,19],[45,64],[-43,19],[-48,-68],[-51,40],[-140,10],[-39,-69],[-20,-340],[-36,-21],[0,29],[-88,-3],[-5,30],[-55,-13],[65,-54],[-27,-24],[-87,-3],[-263,11],[-85,39],[-34,182],[-121,103],[-98,38],[-20,-46],[-99,-8],[25,36],[31,-13],[-9,55],[-53,-44],[-118,-14],[-79,-45],[-68,-98],[49,-244],[-19,-87],[-314,-121],[-294,-248],[-134,-71]],[[29694,18098],[73,30],[-90,91],[-15,76],[-33,24],[-3,54],[93,1],[25,44],[55,-14],[-1,-107],[18,-18],[48,36],[-25,19],[51,11],[9,27],[6,104],[-36,72],[32,12],[-23,61],[-30,-2],[-1,113],[14,17],[59,-14],[44,27],[64,-18],[1,35],[93,73],[-39,102],[22,28],[78,7],[30,59],[52,20],[0,81],[88,65],[4,86],[116,51]],[[30473,19351],[116,-11],[12,24],[97,-22],[106,61],[-6,37],[76,45],[-13,53],[68,20],[1,100],[84,59],[18,62],[-8,37],[-43,21],[-55,76],[4,37],[68,38],[14,41],[-33,69],[-33,13],[16,34],[1092,-46],[1063,-556],[163,-127],[-15,-70],[-119,-68],[43,-39],[34,13],[39,-55],[52,-3],[163,108],[62,0],[44,-29],[41,-73],[1,-48],[-65,-87],[-69,-47]],[[34222,14969],[3,-31],[-40,-46],[-113,-23],[-79,-57],[-80,61],[-79,2],[-39,-147],[-82,9],[-58,91],[-108,-45],[-49,11],[-10,-36],[43,-56],[-26,-151],[14,0],[-8,-144],[174,-62],[222,-35],[27,74],[53,-9],[45,20],[32,-35],[-4,-58],[60,-64],[-5,-44],[143,-60],[26,-70],[54,-32],[24,-4],[23,28],[166,-10],[64,-19],[10,-21],[187,-28],[6,-16],[-22,-195],[64,-110],[-53,-129],[11,-148],[-75,-50],[3,-70],[-55,75],[-152,2],[-13,-100],[-51,6],[-5,-25],[-74,-17],[-22,-84],[-130,27],[-161,90],[-42,-6],[-32,-36],[15,-49],[78,-34],[-26,-73],[13,-34],[-58,-12],[-43,-48],[10,-72],[112,-73],[8,-56],[-34,-49],[117,-87],[-12,-91],[35,-60]],[[19229,14839],[60,3],[77,-39],[-8,-27],[40,-52],[34,-15],[43,16],[55,86],[47,19],[15,64],[65,28],[35,116],[27,12],[75,-45],[24,12],[79,163],[98,-6],[25,47]],[[20866,10840],[-232,207],[-67,17],[-37,-24],[-156,52],[-104,66],[-17,36],[12,367],[-176,71],[-85,63],[-216,30],[-275,175],[-53,166],[-178,239],[-63,32],[-187,-116],[-170,-41],[-97,27],[-171,-3],[-97,-79],[-65,-98],[-53,-26],[-101,48],[-48,128],[-1,79],[-50,17],[-57,-56],[-108,94],[-82,-10],[-119,18],[-230,156]],[[14580,21780],[102,24],[40,44],[34,2],[94,-54],[18,22],[91,3],[-13,-153],[34,12],[84,103],[1,-24],[55,-31],[72,26],[42,-30],[42,84],[81,-23],[6,-21],[44,6],[-18,-34],[35,-11],[52,21],[15,-73],[39,33],[-1,-36],[34,-50],[35,-1],[32,-71],[33,8],[19,-31],[-26,-63],[78,-52],[21,-120],[58,-16]],[[18353,18037],[-52,-12],[-57,16],[-61,57],[-23,-6],[-37,-66],[-46,29],[-24,-74],[-22,44],[-105,24],[-135,-120],[-6,-64],[-41,8],[-4,-38],[-116,15],[-43,46],[-116,18],[-15,-21],[65,-40],[-4,-25],[-155,-34],[-42,-95],[-34,-9],[-44,34],[-27,-37],[-57,1],[-31,-39],[50,-12],[-127,-100]],[[27731,20285],[330,-35],[151,32],[164,-21],[311,15],[49,-54],[29,-88],[47,-44],[394,-106],[625,48],[128,-19],[113,-171],[300,-223],[-31,-95],[37,-77],[95,-96]],[[26888,17904],[-49,103],[6,41],[-76,78],[-48,-10],[-69,36],[0,24],[-47,28],[-39,59],[-26,109],[-19,-18],[-28,50],[-42,-19]],[[26451,18385],[-35,-36]],[[22967,16825],[39,30],[16,-29],[54,6],[50,-69],[117,-45],[34,-35],[-19,-25],[30,-14],[-17,-42],[16,-14],[199,-15],[91,-49],[81,-98],[54,-111],[294,-58],[123,27],[43,55],[118,73],[124,-18],[144,35],[80,74],[107,-9],[67,65],[62,-21],[29,15],[45,-31],[49,21],[2,22],[61,4],[59,-35],[14,-58],[82,-69],[28,24]],[[26479,15637],[-59,-217],[15,-59],[29,-11],[-6,-45],[-57,-48],[-56,18],[-12,-62],[73,-61],[-44,-39],[7,-37],[-28,3],[-19,-66],[-50,32],[-57,-96],[-61,63],[-24,-38],[-26,1],[-12,-49],[-68,4],[-45,33],[-42,-1],[-10,48],[46,13],[-9,70],[-73,33],[-120,0],[-34,-114],[-47,-48],[-47,-121],[-7,-62],[31,-44],[-82,-122],[-66,-12],[9,-54],[-34,-40],[-31,-105],[-32,14],[-15,-43],[-23,5],[1,-70],[-33,-61],[-56,6],[-3,-22],[-26,8],[0,-27],[-84,-33]],[[293,30305],[39,77],[-18,45],[14,99],[-45,23],[-92,-1],[-31,58],[19,29],[-20,82],[160,85],[-21,27],[-26,-16],[-71,71],[-1,99],[55,41],[21,50],[-15,49],[-109,61],[-5,82],[54,69],[-22,48],[-63,74],[-65,26],[-51,112],[42,78],[47,-1],[45,33],[-57,188],[-62,18],[-2,70],[39,27],[5,45],[44,42],[-21,37],[41,39],[26,80],[83,41],[12,41],[-66,97],[64,91]],[[23738,19239],[-6,21]],[[23732,19260],[8,30],[-46,33]],[[23694,19323],[-21,10]],[[23673,19333],[46,89],[-60,87],[22,47],[24,-2],[40,49],[33,-16],[41,46],[-37,32],[-4,86],[-19,10],[15,49],[35,10],[23,40]],[[23832,19860],[-10,31],[18,15]],[[23840,19906],[21,-17],[78,4],[29,40],[20,-21]],[[23988,19912],[32,-13]],[[24020,19899],[81,-68],[24,-69],[171,51],[49,-32],[59,22],[26,-49],[17,11],[36,-26]],[[26416,18349],[35,36]],[[22810,19320],[56,-23],[76,-89],[31,7],[53,-31],[-3,-64]],[[23023,19120],[20,-22]],[[23043,19098],[23,28],[37,-11],[30,-70],[-10,-25],[49,-31]],[[23172,18989],[32,-26]],[[23204,18963],[24,35],[27,-11],[23,43],[24,-6],[27,75],[-15,17],[85,187],[33,-18],[72,41],[1,-26],[44,18],[53,-75],[45,26],[63,-46],[28,16]],[[15890,26779],[136,-90],[38,-82],[44,-9],[5,-22],[82,5],[130,46],[87,-9],[54,-47],[57,-10],[36,-39],[33,-95],[11,-110],[44,26],[143,-117],[52,-83],[54,112],[-45,26],[-89,490],[14,34],[165,110],[138,-9],[113,-49],[-53,-108],[87,-23],[-35,-51],[78,27],[24,-75],[108,-5],[44,32],[45,-51],[81,45],[15,-80],[43,-38],[-11,-96],[90,-1],[-25,-90],[118,-107],[47,38],[71,-54],[-1,52],[146,-50],[6,-90],[98,-36],[-26,-79],[22,-28],[132,-20],[71,-49],[73,-91],[54,10],[50,-45],[-22,84],[68,35],[102,-20],[62,-52],[-34,-70],[5,-44],[14,-63],[48,-48],[-6,59],[26,-22],[-10,-23],[64,-14],[9,31],[50,31],[14,-14],[-65,-42],[94,-18],[2,-45],[60,12],[13,41],[67,-11],[-76,-57],[18,-11],[-17,-28],[68,-21],[-5,49],[56,-6],[45,60],[94,-11],[-20,-76],[33,-34],[49,41],[25,-58],[-88,-71],[87,-89],[6,78],[56,-17],[14,-61]],[[19450,25289],[-36,-161]],[[22834,22750],[85,-9],[236,-214],[83,-5],[61,-31],[253,-228],[72,-19],[128,35],[-2,86],[209,300],[504,-31],[103,-165],[110,-86],[37,-70],[139,-43],[20,48],[258,-126],[-11,-135],[-111,-146]],[[24020,19899],[-32,13]],[[23840,19906],[-19,-15],[11,-31]],[[23673,19333],[21,-10]],[[23732,19260],[6,-21]],[[23204,18963],[-32,26]],[[23043,19098],[-20,22]],[[22526,20675],[20,39]]],"transform":{"scale":[0.0002034847037876332,0.0001791418354204916],"translate":[77.093995,23.868536]},"objects":{"uttarpradesh_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"unique_id":"15","district":"Agra","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"15","censuscode":"146"}},{"arcs":[[6,7,8,9,10]],"type":"Polygon","properties":{"unique_id":"20","district":"Bareilly","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"19","censuscode":"150"}},{"arcs":[[11,12,13,-3,14,15]],"type":"Polygon","properties":{"unique_id":"17","district":"Etah","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"70","censuscode":"201"}},{"arcs":[[16,17,18,19,-10,20]],"type":"Polygon","properties":{"unique_id":"22","district":"Shahjahanpur","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"21","censuscode":"152"}},{"arcs":[[21,22,-21,-9]],"type":"Polygon","properties":{"unique_id":"21","district":"Pilibhit","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"20","censuscode":"151"}},{"arcs":[[23,24,25,26,27,28,29]],"type":"Polygon","properties":{"unique_id":"45","district":"Allahabad","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"44","censuscode":"175"}},{"arcs":[[30,31,-26,32,33,34]],"type":"Polygon","properties":{"unique_id":"43","district":"Pratapgarh","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"42","censuscode":"173"}},{"arcs":[[35,36,37,38,39,40]],"type":"Polygon","properties":{"unique_id":"36","district":"Jhansi","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"35","censuscode":"166"}},{"arcs":[[41,42,-36,43,44,45]],"type":"Polygon","properties":{"unique_id":"35","district":"Jalaun","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"34","censuscode":"165"}},{"arcs":[[46,47,48,49,-27,-32,50]],"type":"Polygon","properties":{"unique_id":"64","district":"Jaunpur","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"63","censuscode":"194"}},{"arcs":[[51,52,53,54,55,-29]],"type":"Polygon","properties":{"unique_id":"69","district":"Mirzapur","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"68","censuscode":"199"}},{"arcs":[[-55,56,57]],"type":"Polygon","properties":{"unique_id":"70","district":"Sonbhadra","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"69","censuscode":"200"}},{"arcs":[[58,59,60,-47,61,62]],"type":"Polygon","properties":{"unique_id":"61","district":"Azamgarh","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"60","censuscode":"191"}},{"arcs":[[63,64,65,-59,66,67,68,69]],"type":"Polygon","properties":{"unique_id":"58","district":"Gorakhpur","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"57","censuscode":"188"}},{"arcs":[[70,-64,71,72]],"type":"Polygon","properties":{"unique_id":"59","district":"Kushinagar","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"58","censuscode":"189"}},{"arcs":[[73,74,75,76,77]],"type":"Polygon","properties":{"unique_id":"55","district":"Basti","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"54","censuscode":"185"}},{"arcs":[[78,79,80,81,82]],"type":"Polygon","properties":{"unique_id":"24","district":"Sitapur","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"23","censuscode":"154"}},{"arcs":[[83,84,85,86,87]],"type":"Polygon","properties":{"unique_id":"26","district":"Unnao","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"25","censuscode":"156"}},{"arcs":[[88,-62,-51,-31,89,90]],"type":"Polygon","properties":{"unique_id":"49","district":"Sultanpur","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"48","censuscode":"179"}},{"arcs":[[91,92,93,94]],"type":"Polygon","properties":{"unique_id":"52","district":"Balrampur","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"51","censuscode":"182"}},{"arcs":[[95,96,-90,-35,97]],"type":"Polygon","properties":{"unique_id":"72","district":"Amethi","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"NA","censuscode":"NA"}},{"arcs":[[-81,98,99,100,-96,101,102]],"type":"Polygon","properties":{"unique_id":"46","district":"Barabanki","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"45","censuscode":"176"}},{"arcs":[[103,104,105,106,107,108,109,-99,-80]],"type":"Polygon","properties":{"unique_id":"50","district":"Bahraich","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"49","censuscode":"180"}},{"arcs":[[-24,110,111,112,113]],"type":"Polygon","properties":{"unique_id":"41","district":"Chitrakoot","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"40","censuscode":"171"}},{"arcs":[[114,115,116,117,118,-37,-43]],"type":"Polygon","properties":{"unique_id":"38","district":"Hamirpur","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"37","censuscode":"168"}},{"arcs":[[-38,-119,119,120]],"type":"Polygon","properties":{"unique_id":"39","district":"Mahoba","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"38","censuscode":"169"}},{"arcs":[[121,-112,122,-120,-118]],"type":"Polygon","properties":{"unique_id":"40","district":"Banda","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"39","censuscode":"170"}},{"arcs":[[123,124,125,126,127]],"type":"Polygon","properties":{"unique_id":"8","district":"Baghpat","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"8","censuscode":"139"}},{"arcs":[[128,129,-88,130,-116,131]],"type":"Polygon","properties":{"unique_id":"34","district":"Kanpur Nagar","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"33","censuscode":"164"}},{"arcs":[[-68,132,-78,133]],"type":"Polygon","properties":{"unique_id":"56","district":"Sant Kabir Nagar","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"55","censuscode":"186"}},{"arcs":[[134,135,136,-127,137]],"type":"Polygon","properties":{"unique_id":"9","district":"Ghaziabad","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"9","censuscode":"140"}},{"arcs":[[-33,-25,-114,138]],"type":"Polygon","properties":{"unique_id":"44","district":"Kaushambi","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"43","censuscode":"174"}},{"arcs":[[139,140,141,142,-125,143]],"type":"Polygon","properties":{"unique_id":"2","district":"Muzaffarnagar","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"2","censuscode":"133"}},{"arcs":[[144,145,146,147,148]],"type":"Polygon","properties":{"unique_id":"11","district":"Bulandshahr","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"11","censuscode":"142"}},{"arcs":[[-149,149,150,-136,151]],"type":"Polygon","properties":{"unique_id":"10","district":"Gautam Buddha Nagar","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"10","censuscode":"141"}},{"arcs":[[-143,152,153,154,-138,-126]],"type":"Polygon","properties":{"unique_id":"7","district":"Meerut","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"7","censuscode":"138"}},{"arcs":[[-140,155,156]],"type":"Polygon","properties":{"unique_id":"1","district":"Saharanpur","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"1","censuscode":"132"}},{"arcs":[[157,-150,-148,158,159,160,161,162]],"type":"Polygon","properties":{"unique_id":"12","district":"Aligarh","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"12","censuscode":"143"}},{"arcs":[[-163,163,-1,164]],"type":"Polygon","properties":{"unique_id":"14","district":"Mathura","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"14","censuscode":"145"}},{"arcs":[[-14,165,166,-4]],"type":"Polygon","properties":{"unique_id":"16","district":"Firozabad","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"16","censuscode":"147"}},{"arcs":[[-13,167,168,169,-166]],"type":"Polygon","properties":{"unique_id":"18","district":"Mainpuri","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"17","censuscode":"148"}},{"arcs":[[170,-15,-2,-164,-162]],"type":"Polygon","properties":{"unique_id":"13","district":"Mahamaya Nagar","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"13","censuscode":"144"}},{"arcs":[[-20,171,172,-160,173,174,-11]],"type":"Polygon","properties":{"unique_id":"19","district":"Budaun","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"18","censuscode":"149"}},{"arcs":[[175,176,177,178,179]],"type":"Polygon","properties":{"unique_id":"4","district":"Moradabad","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"4","censuscode":"135"}},{"arcs":[[180,-7,-175,181,-176]],"type":"Polygon","properties":{"unique_id":"5","district":"Rampur","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"5","censuscode":"136"}},{"arcs":[[-178,182,-146,183,-154,184]],"type":"Polygon","properties":{"unique_id":"6","district":"Amroha","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"6","censuscode":"137"}},{"arcs":[[-179,-185,-153,-142,185]],"type":"Polygon","properties":{"unique_id":"3","district":"Bijnor","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"3","censuscode":"134"}},{"arcs":[[-115,-42,186,187,-132]],"type":"Polygon","properties":{"unique_id":"33","district":"Kanpur Dehat","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"32","censuscode":"163"}},{"arcs":[[188,189,-45,190,-5,-167,-170]],"type":"Polygon","properties":{"unique_id":"31","district":"Etawah","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"30","censuscode":"161"}},{"arcs":[[191,192,-168,-12,193,-172,-19]],"type":"Polygon","properties":{"unique_id":"29","district":"Farrukhabad","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"28","censuscode":"159"}},{"arcs":[[-193,194,-129,-188,195,-189,-169]],"type":"Polygon","properties":{"unique_id":"30","district":"Kannauj","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"29","censuscode":"160"}},{"arcs":[[-187,-46,-190,-196]],"type":"Polygon","properties":{"unique_id":"32","district":"Auraiya","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"31","censuscode":"162"}},{"arcs":[[196,-40]],"type":"Polygon","properties":{"unique_id":"37","district":"Lalitpur","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"36","censuscode":"167"}},{"arcs":[[197,-49,198,199,-53]],"type":"Polygon","properties":{"unique_id":"67","district":"Varanasi","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"66","censuscode":"197"}},{"arcs":[[200,201,202,203,-199,-48,-61]],"type":"Polygon","properties":{"unique_id":"65","district":"Ghazipur","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"64","censuscode":"195"}},{"arcs":[[-204,204,-57,-54,-200]],"type":"Polygon","properties":{"unique_id":"66","district":"Chandauli","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"65","censuscode":"196"}},{"arcs":[[-50,-198,-52,-28]],"type":"Polygon","properties":{"unique_id":"68","district":"Sant Ravidas Nagar","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"67","censuscode":"198"}},{"arcs":[[-66,205,206,-201,-60]],"type":"Polygon","properties":{"unique_id":"62","district":"Mau","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"61","censuscode":"192"}},{"arcs":[[-207,207,208,-202]],"type":"Polygon","properties":{"unique_id":"63","district":"Ballia","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"62","censuscode":"193"}},{"arcs":[[209,210,-72,-70]],"type":"Polygon","properties":{"unique_id":"57","district":"Maharajganj","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"56","censuscode":"187"}},{"arcs":[[-71,211,-208,-206,-65]],"type":"Polygon","properties":{"unique_id":"60","district":"Deoria","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"59","censuscode":"190"}},{"arcs":[[212,-102,-98,-34,213,-86]],"type":"Polygon","properties":{"unique_id":"28","district":"Rae Bareli","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"27","censuscode":"158"}},{"arcs":[[214,-83,215,-84,-130,-195,-192,-18]],"type":"Polygon","properties":{"unique_id":"25","district":"Hardoi","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"24","censuscode":"155"}},{"arcs":[[216,-210,-69,-134,-77,217,218,-94]],"type":"Polygon","properties":{"unique_id":"54","district":"Siddharth Nagar","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"53","censuscode":"184"}},{"arcs":[[-216,-82,-103,-213,-85]],"type":"Polygon","properties":{"unique_id":"27","district":"Lucknow","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"26","censuscode":"157"}},{"arcs":[[-101,219,-75,220,-91,-97]],"type":"Polygon","properties":{"unique_id":"47","district":"Faizabad","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"46","censuscode":"177"}},{"arcs":[[-171,-161,-173,-194,-16]],"type":"Polygon","properties":{"unique_id":"71","district":"Kasganj","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"71","censuscode":"202"}},{"arcs":[[-221,-74,-133,-67,-63,-89]],"type":"Polygon","properties":{"unique_id":"48","district":"Ambedkar Nagar","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"47","censuscode":"178"}},{"arcs":[[-155,-184,-145,-152,-135]],"type":"Polygon","properties":{"unique_id":"73","district":"Hapur","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"NA","censuscode":"NA"}},{"arcs":[[-144,-124,221,-156]],"type":"Polygon","properties":{"unique_id":"74","district":"Shamli","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"NA","censuscode":"NA"}},{"arcs":[[-177,-182,-174,-159,-147,-183]],"type":"Polygon","properties":{"unique_id":"75","district":"Sambhal","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"NA","censuscode":"NA"}},{"arcs":[[-117,-131,-87,-214,-139,-113,-122]],"type":"Polygon","properties":{"unique_id":"42","district":"Fatehpur","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"41","censuscode":"172"}},{"arcs":[[222,223,224,225,226,227,228,229,-95,230,-218,-76,-220,-100,-110,231,232,233,234,235]],"type":"Polygon","properties":{"unique_id":"53","district":"Gonda","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"52","censuscode":"183"}},{"arcs":[[236,237,-104,-79,-215,-17,-23]],"type":"Polygon","properties":{"unique_id":"23","district":"Lakhimpur Kheri","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"22","censuscode":"153"}},{"arcs":[[238,-92,-230,239,-228,240,-226,241,-224,242,-236,243,-234,244,-232,-109,245,-107]],"type":"Polygon","properties":{"unique_id":"51","district":"Shravasti","state":"Uttar Pradesh","ST_CEN_CD":"9","DT_CEN_CD":"50","censuscode":"181"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [2720, 18833], + [186, -4], + [78, 72], + [54, -47], + [16, 40], + [130, -67], + [80, 36], + [41, -9], + [32, -42], + [53, -24], + [47, 53], + [-22, 35], + [16, 44], + [46, 7], + [20, 27], + [59, -26], + [17, 10], + [-19, 29], + [14, 48], + [130, 90], + [45, -27], + [-13, -151], + [60, -52], + [55, 5], + [25, 17], + [15, 66], + [-98, 62], + [3, 63], + [48, 42], + [77, -4], + [109, -42], + [14, -40], + [-40, -175], + [41, -64], + [37, -21], + [49, 8], + [31, 55], + [-48, 118], + [83, 59], + [52, 111], + [20, 4], + [10, -48], + [-6, -116], + [42, 8], + [22, 50], + [61, 37], + [9, 96], + [-53, 90], + [13, 35] + ], + [ + [4361, 19291], + [83, 24], + [67, -53], + [12, 41], + [22, -25], + [53, 27], + [3, 31], + [58, 16], + [-16, 32], + [27, 40], + [142, -78], + [36, 95], + [24, -2], + [-3, 37], + [-86, 63], + [-20, -15], + [-59, 17], + [36, 68], + [59, -2], + [25, 43], + [35, 9], + [132, -129], + [63, 27], + [70, -45], + [72, 98], + [94, 18], + [29, 26], + [35, 97], + [41, -29], + [31, 7] + ], + [ + [5426, 19729], + [90, -14], + [50, 29], + [123, -75], + [34, 16], + [69, -38], + [33, 34], + [86, -65], + [-47, -48], + [-8, -145], + [-47, -58], + [16, -85] + ], + [ + [5825, 19280], + [-39, -20], + [-29, -95], + [-68, 1], + [-24, 33], + [7, 27], + [-40, 43], + [0, -45], + [-66, -47], + [-34, 24], + [-58, -36], + [-7, 44], + [-53, -31], + [20, -53], + [92, -51], + [-18, -81], + [-29, -22], + [17, -38], + [-37, -50], + [53, -26], + [-39, -56], + [3, -42], + [-18, -3], + [36, -49], + [-84, -175], + [6, -28], + [72, -30], + [48, -68], + [10, -48], + [-100, -150], + [-1, -68], + [19, -51], + [120, -83], + [-26, -95], + [118, -12], + [55, 59], + [-23, 55], + [-73, 45], + [-1, 40], + [28, 14], + [91, -53], + [52, -124], + [47, -6], + [49, 27], + [-8, 155], + [68, 74], + [44, -11], + [31, -80], + [35, 7], + [47, 92], + [128, -13], + [40, -20], + [-21, -51], + [-32, -17], + [-87, 25], + [-34, -75], + [-124, -18], + [0, -247], + [28, -5], + [52, 115], + [36, 14], + [79, -15], + [19, 36], + [41, 15], + [146, -140], + [157, -25], + [42, -50], + [13, -78], + [86, -120], + [-30, -116], + [31, -33], + [124, 62], + [30, -34], + [-15, -110], + [19, -24], + [100, 0], + [44, -30], + [8, -156], + [37, -69], + [80, 18], + [18, 65], + [-95, 56], + [8, 86], + [-71, 65], + [42, 40], + [112, -84], + [139, 12], + [28, -17], + [-28, -91], + [71, -50], + [68, -95], + [48, 38], + [-16, 60], + [-52, 71], + [39, 14], + [82, -28], + [21, -27], + [-35, -115], + [10, -31], + [71, -51], + [4, -115], + [47, -29], + [88, 25], + [30, -38], + [36, 11], + [-22, 176], + [26, 49], + [84, -58], + [53, 51], + [21, -8], + [11, -86], + [59, -14], + [35, 25], + [4, 91], + [18, 14], + [53, -49] + ], + [ + [8122, 16995], + [-19, -110], + [22, -33], + [42, 35], + [-3, 72], + [57, 0], + [38, -105], + [68, -58], + [-40, -59], + [14, -22], + [88, 8], + [39, 49], + [36, -49], + [13, -101], + [105, -63], + [71, -140], + [-33, -66], + [-55, -43], + [-104, 60], + [-106, 0], + [-59, -153], + [-4, -85] + ], + [ + [8292, 16132], + [-38, 0], + [-27, 26], + [-18, 74], + [-46, 58], + [-42, -11], + [-41, -58], + [-39, 5], + [-15, 23], + [18, 69], + [-39, 24], + [-187, -46], + [-49, -132], + [-57, -5], + [-152, 54], + [-55, -41], + [-29, -76], + [-170, -22], + [-72, 75], + [-95, 11], + [-115, 93], + [-289, 41], + [-137, 209], + [-175, -39], + [-84, 126], + [-48, 127], + [-71, 34], + [-124, -37], + [-142, -2], + [-106, -46], + [-47, -64], + [-3, -150], + [-80, -1], + [-190, 102], + [11, 35], + [-42, 34], + [-77, 190], + [29, 5], + [29, -70], + [117, 30], + [23, 84], + [111, 42], + [65, 138], + [-84, 78], + [-3, -46], + [-68, -5], + [-10, 59], + [-43, 13], + [-14, 36], + [-28, -4], + [-47, -71], + [-88, 60], + [-59, -15], + [-44, 41], + [-68, -21], + [-71, 36], + [-99, -6], + [-45, -28], + [-5, -41], + [40, -8], + [-9, -75], + [-74, 26], + [-20, -56], + [24, -9], + [27, -94], + [-31, 2], + [-10, 32], + [-41, -3], + [15, -39], + [-15, -17], + [-138, 94], + [-13, -24], + [-80, 18], + [21, -88], + [-5, -128], + [-31, -2], + [-83, -113], + [-32, 41], + [68, 57], + [-5, 31], + [-43, 25], + [25, 45], + [-41, 78], + [-63, 25], + [-51, -18], + [-54, -65], + [-53, 14], + [-43, 65], + [-101, -59], + [-49, 81], + [-98, -1], + [-21, 9], + [0, 36], + [-30, 12], + [8, -153], + [-24, -39], + [-46, 6], + [-8, 30], + [-45, 8], + [-26, 54], + [-51, 4], + [-8, 29], + [-24, -9], + [-123, 65], + [-76, 4], + [-54, 38], + [-60, -47], + [-28, 7], + [-66, 54], + [4, 19], + [-100, 14], + [-34, -87], + [-38, 26], + [-65, -6], + [-36, -57], + [-36, -70], + [27, -12], + [24, -54], + [-26, -62], + [-81, 12], + [-25, -48], + [-72, 40], + [-48, -37], + [-10, -62], + [-223, -89], + [-40, 7], + [-12, -60], + [-51, -24], + [3, 64], + [-78, -63], + [-72, -4], + [-17, -36], + [-91, -17], + [-69, 26], + [-80, -20], + [-42, 40], + [17, 86], + [-95, 15], + [-2, -155], + [-64, -156], + [6, -56], + [66, -50], + [-87, -124], + [-147, -32], + [61, 118], + [-2, 59], + [-65, 24], + [-59, -52], + [-50, 13], + [70, 250], + [-117, 140], + [46, 65], + [-20, 64], + [50, -6], + [56, 69], + [50, -13], + [7, 67], + [109, 66], + [347, 132], + [147, 24], + [45, 89], + [48, -39], + [288, 212], + [55, -62], + [20, 74], + [109, 9], + [116, 72], + [31, -26], + [71, 1], + [12, 65], + [55, -9], + [12, 18], + [-34, 6], + [-5, 21], + [37, -1], + [7, 90], + [-48, 19], + [-4, 54], + [-57, -7], + [-21, -26], + [-19, -171], + [-91, 19], + [-26, 30], + [3, 63], + [-79, 71], + [15, 77], + [-65, 32], + [-25, -97], + [-43, -64], + [-122, 40], + [-36, -71], + [-58, 56], + [-100, 2], + [-24, 21], + [1, 35], + [-85, 28], + [-79, -48], + [60, 154], + [-11, 48], + [20, 16], + [-114, 41], + [-46, -22], + [-14, -51], + [-88, 9], + [-27, 15], + [37, 61], + [-11, 65], + [-86, 18], + [73, 67], + [82, -34], + [8, 43], + [21, -12], + [33, 38], + [50, -7], + [97, 54], + [83, -10], + [30, 29], + [-27, 92], + [76, 66], + [-18, 65], + [48, 62], + [88, -55], + [31, 5], + [136, 89], + [45, 78], + [-73, 78], + [-95, 10], + [-6, 35], + [34, 53], + [3, 49], + [-47, -1], + [15, 44] + ], + [ + [9225, 25418], + [59, 78], + [79, -32], + [61, 66], + [42, -22], + [40, 52], + [17, -10], + [19, 32], + [-20, 46], + [35, 42], + [40, -4], + [37, 53], + [-55, 56], + [29, 16], + [16, -18], + [91, -5], + [32, 57], + [-17, 28], + [91, 54], + [77, -26], + [94, 52], + [12, -17], + [92, 91], + [9, 42], + [76, 62], + [-17, 53], + [73, 18], + [71, 76], + [77, 0], + [35, 45], + [0, 83], + [27, 6], + [-17, 30], + [21, 44], + [22, 37], + [48, -5], + [43, 68], + [-58, 77], + [122, 126], + [155, 221], + [46, 153], + [50, 61], + [73, -18], + [22, 35], + [45, -27], + [32, 27], + [-4, 28], + [83, 8], + [38, 55], + [-98, 84], + [31, 49], + [87, -72], + [63, -7], + [27, 44], + [2, 29], + [-72, 27], + [29, 50], + [-17, 51], + [22, 28], + [-51, 27], + [6, 41], + [-32, 57], + [19, 32], + [61, -20], + [-9, -22], + [27, -13], + [93, 17], + [-16, 41], + [37, 1], + [10, 67], + [-49, 30], + [-34, -38], + [-63, 38], + [50, 32], + [57, -11], + [19, 22], + [46, 4], + [-32, 43], + [-76, 27], + [-39, 39], + [0, 55], + [66, 1], + [96, -40], + [20, 67] + ], + [ + [11448, 28092], + [7, -39], + [32, -21], + [-26, -93], + [13, -39], + [57, -24], + [74, 44], + [114, -31], + [9, 36], + [87, 10], + [124, -46], + [55, 29], + [112, 164], + [76, -37], + [63, -75], + [-60, -143], + [61, -41], + [94, 61], + [45, -24], + [37, 62], + [32, 10], + [10, -22], + [34, 28], + [45, -20], + [55, 38], + [49, -24], + [-13, -19], + [101, -37], + [-3, -32] + ], + [ + [12732, 27807], + [-30, -4], + [-33, -55], + [31, -104], + [-17, -142], + [23, -26], + [-43, -122], + [45, -63], + [57, -24], + [-19, -18], + [19, -55], + [-80, -114], + [-89, 3], + [-144, -221], + [39, -50], + [-64, -153], + [75, -61], + [-62, -71], + [8, -44], + [34, -27], + [0, -46], + [42, -26], + [146, 66], + [55, -55], + [-20, -57], + [61, -28], + [73, 17], + [4, -71], + [-53, -4], + [-40, -73], + [15, -53], + [68, -12], + [16, 33], + [80, 8], + [-55, -177], + [79, -23], + [47, 66], + [47, 0], + [35, -20], + [-10, -71], + [50, -40], + [85, -12], + [20, -93], + [-13, -59], + [-26, -16], + [-2, -72], + [75, -83], + [3, -32], + [-95, -42], + [-21, 8], + [27, 27], + [-19, 48], + [-30, 33], + [-45, -15], + [-14, -27], + [22, -213], + [-38, -31], + [-52, 17], + [11, 27], + [-68, 9], + [7, -23], + [-68, -81], + [-45, -4], + [-40, -48], + [72, -18], + [30, -71], + [35, 16], + [45, -21], + [-28, -83], + [-30, -24], + [19, -44], + [-140, -173], + [32, -13], + [-7, -37], + [68, -38], + [4, -33], + [109, -58], + [-4, -84], + [18, -38], + [-13, -22], + [-96, 2], + [-5, 59], + [-20, 6], + [-29, -76] + ], + [ + [12856, 24458], + [-29, -11], + [42, -40], + [-30, -30], + [-35, 1], + [-40, -58], + [43, -43], + [-35, -67], + [-28, -10], + [-77, 33], + [-50, -55], + [21, -28], + [-25, -26], + [41, -27], + [4, -27], + [-59, -18], + [-7, -34], + [-22, -5], + [7, -51], + [-32, -41], + [19, -31], + [-64, -25], + [39, -32], + [-5, -76], + [26, 3], + [-12, -46], + [58, -15], + [-9, -28], + [-46, -16], + [43, -36], + [-25, -126], + [-27, -37], + [-91, 30], + [-17, -23], + [-103, 81], + [-67, -117], + [-26, 13], + [-46, -49], + [-59, 44], + [-43, -52], + [-7, -57], + [-46, 46], + [-47, 9], + [-72, -106], + [-39, 13], + [50, -47], + [-70, -86] + ], + [ + [11859, 23155], + [-90, 95], + [-8, 66], + [12, 38], + [40, 2], + [50, 58], + [18, 72], + [-31, 86], + [9, 66], + [-50, 107], + [-133, 41], + [-48, 35], + [-61, 109], + [-86, 24], + [-18, 71], + [-54, 14], + [-52, -41], + [-75, 61], + [-72, 7], + [-9, -39], + [-32, 14], + [-28, -44], + [-41, -3], + [-22, 34], + [-48, -16], + [-24, -50], + [-65, 23], + [28, 41], + [-8, 44], + [-55, 33], + [-38, -32], + [-43, 23], + [-68, -2], + [-65, -31], + [-8, -26], + [-83, 66], + [-81, 27], + [-22, 48], + [-25, -11], + [-88, 32], + [-96, 3], + [-48, -96], + [-87, 47], + [-46, 1], + [-29, -28], + [-21, 55], + [-41, 20], + [-89, -13], + [-12, 56], + [-48, 49], + [64, 43], + [-26, 36], + [25, 22], + [-168, 151], + [-3, 49], + [20, 24], + [-22, 33], + [54, 88], + [-8, 38], + [-49, 42], + [34, 61], + [-26, 29], + [-35, 11], + [-22, -22], + [-34, 24], + [-19, 90], + [31, 46], + [17, 93], + [-27, 2], + [-1, 39], + [-88, 55], + [-77, 22], + [-21, -17], + [-33, 23], + [-31, -15], + [-58, 42], + [9, 19], + [-30, 42], + [-102, 20], + [-17, 37] + ], + [ + [10444, 20701], + [48, -60], + [12, -63], + [-46, -104], + [154, -103], + [29, 17], + [62, -15], + [-3, -146], + [-54, -13], + [-49, -42], + [-12, -54], + [54, -56], + [-33, -46], + [57, -54], + [-20, -32], + [7, -57], + [-47, -66], + [-28, -12], + [-62, 19], + [-38, -37], + [24, -34], + [129, -68], + [-16, -37], + [7, -89], + [35, -49], + [70, -24], + [-2, -64], + [-60, -43], + [-38, 22], + [-18, -48], + [23, -19] + ], + [ + [10629, 19324], + [-6, -20], + [-91, 19], + [-11, -20], + [-102, 32], + [-36, 71], + [-25, -1], + [-28, 36], + [17, 30], + [-38, 50], + [-25, -16], + [-25, 12], + [-46, 65], + [-125, 5], + [-45, 127], + [-107, 41], + [16, 53], + [-44, 11], + [11, 41], + [-24, 47], + [-215, -94], + [-6, 21], + [-84, 12], + [-43, 38], + [-125, -13], + [-45, 24], + [-11, -42], + [-67, 22], + [-39, -9], + [-23, -56], + [-17, 30], + [-41, -27], + [-21, 26], + [14, 32], + [-35, -13], + [-65, 29], + [11, 22], + [-24, 16], + [-4, 82], + [-47, -36], + [-18, 39], + [-62, 18], + [-46, 67], + [-46, 10], + [-93, -139], + [-1, -45], + [-16, 5], + [-80, -113], + [-69, -42], + [38, -71], + [43, -30], + [-46, -101], + [-86, -106], + [-53, -15], + [-37, 23], + [-25, -25], + [-110, -29], + [-12, -59], + [-31, -5], + [-37, 5], + [-55, 49], + [-97, -72], + [-80, 71] + ], + [ + [7989, 19406], + [-11, 55], + [18, 51], + [-36, 86], + [-27, -15], + [-106, 38], + [-58, 63], + [-2, 101], + [-23, 28], + [-21, -14], + [-23, 23], + [-80, 6], + [-11, 89], + [41, 134], + [52, 75], + [18, -10], + [-13, 105], + [-165, 0], + [-18, 51], + [-83, 59], + [-45, -8], + [7, -55], + [-26, -40], + [-19, 12], + [-14, -19], + [-3, -79], + [-113, -24], + [-58, -66], + [7, -20], + [-42, -74], + [-17, -11], + [-49, 51], + [-37, -9], + [-34, 80], + [-35, -3], + [-24, -40], + [9, -90], + [-86, -86], + [-70, 25], + [-53, -20], + [57, -127], + [42, -52], + [33, 0], + [5, -26], + [-39, -50], + [24, -95], + [-26, -31], + [33, -23], + [-61, -58], + [-117, 171], + [-43, -8], + [-47, -61], + [-177, 61], + [-54, -41], + [-13, -95], + [-59, -77], + [-27, -1], + [-41, 61], + [-48, 18], + [-80, -90], + [-71, 41], + [-35, -120], + [-77, -52], + [-38, 7], + [-55, 73] + ], + [ + [5426, 19729], + [-24, 73], + [47, 71], + [-11, 33], + [-91, -54], + [-36, 27], + [60, 128], + [65, 35], + [-19, 30], + [64, 146], + [-26, 40], + [17, 61], + [27, -14], + [43, 48], + [-36, 54], + [48, 25], + [24, -18], + [75, 18], + [32, -51], + [36, -4], + [38, 45], + [36, -11], + [51, 44], + [5, 23], + [-56, 71], + [48, 32], + [42, -62], + [76, 39], + [43, -46], + [19, 26], + [-33, 42], + [38, 59], + [-2, 49], + [60, 12], + [8, 33], + [71, -41], + [67, -2], + [19, -33], + [-30, -37], + [33, -7], + [27, 37], + [75, -2], + [37, 27], + [-25, 42], + [56, 58], + [17, -36], + [57, -24], + [38, 48], + [112, 38], + [26, 28], + [-12, 21], + [108, 76], + [84, -30], + [59, 30], + [28, 36], + [-33, 114], + [29, 21], + [6, 75], + [41, 41], + [-40, 48], + [-5, 48], + [51, 65], + [-41, 42], + [98, 108], + [-75, 90] + ], + [ + [6972, 21614], + [77, 68], + [27, -3], + [26, 50], + [-50, 51], + [72, 72], + [54, 8], + [66, -91], + [24, 14], + [26, -14], + [14, 20], + [65, -21], + [22, 25], + [31, -28], + [-7, -69], + [61, -62], + [138, -10], + [50, 42], + [93, -80], + [51, 28], + [74, -136], + [-24, -53], + [21, -30], + [2, -84], + [22, -2], + [30, -79], + [38, -14], + [22, 19], + [22, -24], + [9, -47], + [78, -86], + [12, -56], + [90, -22], + [42, 14], + [105, -61], + [67, -84], + [73, -19], + [8, 19], + [44, -6], + [132, -62], + [-17, -65], + [24, -25], + [56, 14], + [-8, 33], + [18, 26], + [72, -34], + [29, -99], + [-20, -98], + [71, 0], + [61, 63], + [54, -6], + [121, 74], + [27, -57], + [50, 31], + [21, 79], + [-11, 33], + [53, 48], + [-31, 82], + [-39, 9], + [35, 108], + [35, -3], + [63, 75], + [24, -7], + [-1, -91], + [60, -16], + [111, -162], + [26, -79], + [201, -128], + [116, -33], + [72, -44], + [15, 54], + [223, 62], + [18, 24], + [55, -48], + [33, 18], + [44, -31], + [104, 93] + ], + [ + [15834, 25632], + [124, -170], + [57, -64], + [21, 1], + [6, -64], + [52, -70], + [-10, -76], + [64, -210], + [-70, -53], + [-43, -80], + [-93, -78], + [-20, -48], + [-106, -107], + [-11, -66], + [19, -4], + [15, -73], + [-37, -115], + [-27, -12], + [6, -22], + [-37, -43], + [17, -120], + [58, -20], + [-9, -46], + [-55, -61], + [14, -49], + [-20, -21], + [-90, 27], + [-28, -43], + [-68, 12], + [-34, 41], + [-71, -130], + [31, -110], + [-17, -115], + [78, -69], + [-95, -179], + [-79, 25], + [-218, -217], + [-61, 44], + [-22, -16], + [12, -28], + [-50, -26], + [-25, -52], + [-119, -64], + [-38, -89], + [14, -26], + [-17, -40], + [-60, -14], + [16, -29], + [-58, -28], + [-18, -61], + [24, -64], + [-18, -15], + [-63, -34], + [-36, 25], + [-2, 49], + [-23, -27], + [-61, 12], + [-13, -55], + [-35, -36], + [-50, -7], + [16, -25], + [-33, -71], + [102, -147], + [31, -152], + [-114, -88], + [93, -95], + [-30, -37], + [60, -227] + ], + [ + [14580, 21780], + [4, -81], + [49, -14], + [9, -35], + [-92, -38], + [-46, 19], + [-21, -37], + [-37, 5], + [-17, 39], + [-54, -79], + [-34, 10], + [-21, -39], + [-79, 42], + [-39, -20], + [-54, 18], + [-55, -13], + [-61, -95], + [-48, 21], + [-25, -26], + [-99, 41], + [-32, -9], + [65, -85], + [-61, -52], + [-46, 12], + [-39, 45], + [-56, -21], + [-18, -70], + [39, -84], + [-11, -20], + [-65, -5], + [-25, -110], + [-274, 54], + [-8, 69], + [-110, 80], + [-87, 160], + [-59, 48], + [-22, -25], + [-47, 29], + [-32, -50], + [18, -76], + [-23, -138], + [-55, -53], + [-70, 10], + [-70, -84], + [14, -56], + [-29, -3], + [-20, -91], + [43, -45], + [19, 26], + [16, -70], + [-17, -44], + [47, -52], + [-7, -35], + [51, 15], + [9, -40], + [-25, -11], + [27, -98], + [-61, -68], + [43, -37], + [65, -8], + [27, -36], + [-16, -123], + [38, -96], + [-16, -38], + [-93, -78], + [12, -32], + [59, -7], + [46, -69], + [44, -11], + [-4, -26], + [-50, -26] + ], + [ + [12994, 19964], + [-101, 33], + [7, 40], + [-44, 53], + [24, 42], + [-19, 25], + [-48, -54], + [-21, 6], + [22, 146], + [-84, -22], + [-101, 24], + [3, 29], + [-50, 19], + [2, 39], + [44, 62], + [-37, 59], + [22, 20], + [-11, 21], + [62, 42], + [-68, 50], + [22, 23], + [-35, 24], + [6, 47], + [-54, -2], + [5, 120], + [71, 62], + [-39, 27], + [-2, 60], + [22, 26], + [-34, 13], + [-1, 43], + [-108, -2], + [-61, -103], + [-71, 2], + [-16, -25], + [10, -35], + [69, -43], + [4, -46], + [-110, 32], + [-18, -36], + [-93, 15], + [-46, -27], + [-44, 53], + [-44, -2], + [-34, -39], + [-75, 48], + [-64, -66], + [-149, 58], + [40, 73], + [-34, 71], + [-55, 51], + [-44, 16], + [-14, -14], + [-63, 47], + [-74, -86], + [-168, 111], + [-70, -5], + [-15, -25], + [-105, 31], + [-26, 17], + [25, 41] + ], + [ + [11104, 21153], + [24, 58], + [-39, 13], + [6, 21], + [-55, 53], + [20, 52], + [-7, 33], + [-20, 1], + [11, 58], + [-83, 87], + [33, 52], + [39, 17], + [92, -4], + [-3, 81], + [-47, 16], + [46, 162], + [-23, 30], + [51, 78], + [55, 16], + [-8, 17], + [23, 15], + [-24, 16], + [4, 36], + [42, 7], + [32, -33], + [87, 114], + [2, 49], + [42, -21], + [19, -59], + [76, 71], + [42, -38], + [46, 3], + [26, 18], + [-16, 26], + [19, 31], + [46, 2], + [36, -45], + [46, 1], + [16, 31], + [-60, 40], + [11, 32], + [-36, 22], + [11, 32], + [-46, 17], + [20, 51], + [-58, 22], + [3, 37], + [41, 16], + [17, 156], + [91, 27], + [-9, 63], + [32, -5], + [2, 37], + [-64, 37], + [-25, 68], + [-57, -43], + [-12, 15], + [84, 93], + [-21, 48], + [209, 6], + [19, 74], + [-46, 25], + [-7, 67] + ], + [ + [12856, 24458], + [63, -87], + [95, 6], + [53, -54], + [-9, -37], + [-60, 14], + [-22, -15], + [-53, -76], + [32, -50], + [59, 15], + [28, -19], + [-27, -61], + [-48, -21], + [55, -15], + [16, 24], + [74, 8], + [21, -59], + [119, -78], + [57, -4], + [-1, 37], + [49, 1], + [8, -18], + [56, 22], + [9, 61], + [73, 86], + [-2, 66], + [-55, 78], + [8, 94], + [70, -32], + [67, 13], + [43, -91], + [-43, -78], + [78, -55], + [58, 15], + [14, -45], + [-21, -43], + [53, -2], + [18, -29], + [41, -27], + [12, 19], + [23, -25], + [-1, -26], + [-58, -34], + [2, -25], + [43, -6], + [13, -30], + [-46, -12], + [51, -49], + [-35, 0], + [-45, 37], + [-20, -79], + [36, -25], + [-26, -44], + [62, -45], + [103, 103], + [49, -10], + [45, -53], + [61, -25], + [22, -49], + [88, 23], + [0, 91], + [51, 64], + [-15, 86], + [21, 44], + [-4, 61], + [-45, 43], + [-9, 47], + [50, 76], + [-22, 15], + [4, 77], + [-20, 22], + [8, 173], + [-32, 47], + [19, 110], + [-61, 157], + [27, 99], + [89, 160], + [-7, 45], + [64, 116], + [195, -52], + [78, -113], + [102, 171], + [26, -7], + [41, 53], + [-23, 25], + [9, 35], + [253, 14], + [82, -102], + [33, -116], + [30, 10], + [40, -45], + [24, 5], + [41, 34], + [-4, 31], + [28, 33], + [-14, 33], + [26, 93], + [24, 18], + [89, -15], + [21, -21], + [98, 139], + [6, 72], + [-36, 61], + [24, 43], + [-38, 47], + [14, 54], + [177, 3], + [159, -51] + ], + [ + [12732, 27807], + [112, -50], + [13, 50], + [50, -9], + [36, 71], + [50, -25], + [44, 18], + [22, 66], + [51, -5], + [34, 33], + [103, -27], + [61, 83], + [70, -24], + [18, 29], + [70, -29], + [-15, -48], + [46, -1], + [11, 23], + [20, -24], + [3, -115], + [-34, -13], + [-43, 21], + [22, -61], + [-43, -62], + [32, 1], + [12, -37], + [-51, -98], + [-19, -3], + [-27, 41], + [-32, -67], + [91, -44], + [53, 15], + [15, 34], + [24, 4], + [12, -29], + [20, 30], + [-30, 30], + [33, 18], + [-30, 21], + [0, 39], + [97, 85], + [33, -5], + [2, -36], + [68, 27], + [32, -34], + [-8, -55], + [99, -19], + [-8, -46], + [17, -29], + [-42, -7], + [-132, 69], + [-42, -57], + [11, -41], + [53, -16], + [3, -27], + [81, -43], + [49, 14], + [23, -13], + [55, 40], + [67, -12], + [-83, -80], + [52, -62], + [46, -12], + [-21, -39], + [40, -63], + [-16, -40], + [48, -67], + [386, 154], + [117, 178], + [29, 9], + [-10, 35], + [42, 73], + [-83, 97], + [56, 41], + [12, 52], + [50, -73], + [212, 22], + [256, -252], + [225, -156], + [168, 16], + [30, -20], + [46, -57], + [-45, -87], + [46, -25], + [32, -65], + [39, -19], + [80, 5], + [89, -50], + [23, -27], + [30, -167] + ], + [ + [15890, 26779], + [-42, -126], + [0, -79], + [131, 9], + [70, -77], + [25, -2], + [43, -76], + [86, 34], + [40, -21], + [-37, -82], + [54, -49], + [-12, -42], + [36, -19], + [122, -226], + [73, -10], + [22, -77], + [-85, -90], + [2, -47], + [-151, -22], + [-63, -95], + [-88, 42], + [-12, -32], + [-99, 105], + [-70, 12], + [-101, -177] + ], + [ + [21860, 7352], + [-8, 26], + [-107, 30], + [1, 79], + [31, 142], + [142, -11], + [48, 28], + [-49, 96], + [-12, 192] + ], + [ + [21906, 7934], + [240, 244], + [148, 94], + [343, 37], + [-10, 102], + [-77, 15], + [-27, -34], + [-85, 51], + [17, 56], + [-23, 56], + [34, 61], + [-12, 26], + [-53, 7], + [4, 108], + [-27, 17], + [36, 69], + [-4, 46], + [-38, -5], + [1, 24], + [60, 8], + [11, 33], + [-26, 54], + [55, 18], + [11, 90], + [60, 100], + [-185, 34], + [14, 124], + [-20, 206], + [-49, 59], + [-100, 19] + ], + [ + [22204, 9653], + [1, 54], + [-33, 16], + [80, 97], + [-6, 83], + [-89, 23], + [12, 57], + [-20, 14], + [36, 17], + [0, 30], + [163, -23], + [9, -38], + [-28, 6], + [-15, -30], + [9, -119], + [118, -127], + [46, 103], + [30, -1], + [49, 42], + [71, -4], + [130, -68], + [26, 92], + [-48, 21], + [-19, 95], + [-109, 17], + [9, 41], + [50, 15], + [41, -14], + [24, 31], + [144, -35], + [28, 85], + [-34, 66], + [-38, 18], + [33, 55], + [33, 11], + [-13, 111], + [61, 51], + [121, 55], + [155, -45], + [23, -19], + [-24, -64], + [14, -9], + [85, 5], + [18, 28], + [92, -80], + [26, 43], + [57, -21], + [-2, -27], + [36, -24], + [26, 38], + [67, -26], + [30, 14], + [41, 47], + [46, 153], + [91, -69], + [77, 18], + [24, -28], + [58, -5], + [12, 55], + [20, 5], + [41, -30], + [135, 5], + [111, -132], + [6, -67], + [-131, -22], + [-32, -26], + [1, -25], + [86, -2], + [60, -39], + [88, -18], + [37, -51], + [-18, -111], + [115, -8], + [50, 35], + [66, -50], + [80, 73], + [-20, 41], + [21, 58], + [140, -19] + ], + [ + [24884, 10101], + [-10, -60], + [-47, 2], + [-39, -127], + [-67, -2], + [67, -76], + [5, -50], + [85, -119], + [82, -15], + [2, -45], + [34, -52], + [39, -21], + [33, 33], + [38, 2], + [21, -58], + [33, 26], + [7, 44], + [53, 21], + [134, -64], + [-28, -59], + [25, -36], + [49, 27], + [79, -63], + [43, -3], + [21, -67], + [26, -5], + [20, 36], + [96, -10], + [69, -56] + ], + [ + [25754, 9304], + [-37, -24], + [62, -106], + [-8, -58], + [-35, -24], + [-59, 127], + [-79, 0], + [-25, -27], + [17, -26], + [55, -12], + [26, -29], + [-4, -29], + [-67, -25], + [-75, 26], + [-17, -76], + [22, -29], + [96, 21], + [21, -40], + [-18, -82], + [143, -80], + [80, -143], + [-59, -127], + [-60, 11], + [-20, -50], + [-32, 21], + [-17, -61], + [19, -14], + [-1, -40], + [-48, -42], + [52, -145], + [-35, -85], + [-40, 7], + [-17, -18], + [14, -73], + [-65, -79], + [-31, 12], + [-74, -47], + [-19, 16], + [-74, -114], + [-98, 3], + [-36, 21], + [-60, -179], + [-64, -99], + [-3, -117], + [21, -69], + [79, -72], + [69, -19], + [184, 25] + ], + [ + [25437, 7334], + [17, -148], + [24, -8], + [11, 21], + [63, -24], + [-13, -29], + [39, -12], + [12, 36], + [15, -9], + [-29, -97], + [7, -35], + [37, -9], + [-18, -108], + [45, -25], + [68, -90], + [3, -84], + [-43, -68], + [-92, -47], + [-2, -33], + [39, -36], + [-19, -154], + [-32, -33], + [-20, 6], + [-31, -86], + [-14, 8], + [-83, -154], + [-40, -7], + [-13, -46], + [-30, -18], + [-43, 48], + [-43, -64], + [-23, -106], + [-84, 39], + [-46, -96], + [12, -11], + [-33, -37], + [-40, 18], + [-37, -47], + [5, -28], + [-64, -74], + [-37, 1], + [-43, 44], + [-151, -173], + [-7, 35], + [-37, 28], + [-10, -85], + [-30, 9], + [-25, -57], + [92, 2], + [-2, -21], + [-35, -43], + [-72, -17], + [0, -28], + [-70, -9], + [108, -93], + [19, -57] + ], + [ + [24642, 5223], + [-43, 65], + [-114, 32], + [-15, -16], + [-99, 64], + [-29, -11], + [-69, 65], + [-71, 32], + [-223, -40], + [-31, -66], + [-31, 59], + [-72, 20], + [-57, 98], + [8, 62], + [-130, 64], + [-21, 47], + [15, 81], + [64, 132], + [-46, 53], + [-13, 184], + [-18, 11], + [19, 44], + [-32, 40], + [32, 97], + [-48, 33], + [-16, -16], + [30, -57], + [-27, -44], + [-25, -2], + [3, 36], + [-180, 41], + [-27, 48], + [-69, 30], + [-14, -28], + [-31, 27], + [-57, -35], + [-18, 11], + [-33, -61], + [-56, 15], + [-56, 81], + [-109, 45], + [-19, 44], + [-45, -7], + [-26, 62], + [-44, 23], + [-38, 7], + [-9, -58], + [-42, -20], + [-121, 20], + [20, 46], + [-66, 80], + [-60, -5], + [-6, 77], + [-55, -20], + [-62, -80], + [-45, 11], + [-27, -37], + [-78, 21], + [-5, 68], + [-49, 29], + [74, 37], + [64, 82], + [59, 23], + [-32, 21], + [-6, 79], + [-42, 17], + [-10, -53], + [-25, -9], + [-30, -78], + [-13, 5], + [8, 71], + [-19, 45], + [-45, 13], + [23, 40], + [-16, 35], + [78, 67], + [30, -23], + [25, 25], + [3, 89], + [-58, 45], + [-14, -27], + [-35, -5], + [-79, 15], + [31, 92], + [-79, 48], + [-43, 6], + [-69, -46], + [-76, 13] + ], + [ + [24342, 12226], + [47, -36], + [46, 5], + [34, 45], + [87, 46], + [58, -8], + [-10, 51], + [80, -36], + [-9, -23], + [46, -18], + [1, -31], + [51, -19], + [33, 28], + [69, -14], + [28, -19], + [-9, -16], + [128, -62], + [-2, -39], + [68, -37], + [-8, -44], + [29, -10], + [11, 45], + [75, 11], + [117, 167], + [131, -91], + [32, 40], + [212, -49], + [-18, -36], + [64, -15], + [1, -33], + [88, -34], + [-32, -31], + [0, -35], + [27, -12], + [12, 28], + [53, -20], + [44, 111], + [46, 36], + [66, -33], + [38, -82], + [62, 19], + [115, -43] + ], + [ + [26253, 11932], + [-38, 1], + [-14, -86], + [50, -32], + [-22, -23], + [-24, 20], + [-31, -40], + [-105, -22], + [-139, 47], + [-48, -116], + [-42, 8], + [-25, -19], + [-6, -17], + [38, -11], + [22, -69], + [35, -20], + [30, 25], + [55, -53], + [48, -2], + [-22, -85], + [30, -16], + [5, -32], + [-66, -2], + [-34, 30], + [-90, -52], + [-22, 48], + [-87, -82], + [-94, 13], + [-86, -51], + [-28, -162], + [-74, -109], + [-13, 20], + [-29, -5], + [-33, -59], + [-58, -18], + [-146, 43], + [-6, -49], + [-44, -17], + [10, -26], + [-19, -17], + [-115, 49], + [-27, -36], + [25, -45], + [-17, -33], + [21, -13], + [-7, -29], + [-50, -10], + [-9, -55], + [71, -63], + [-13, -19], + [29, -31], + [13, 15], + [39, -32], + [-46, -20], + [-5, -39], + [46, -78], + [-23, -33], + [-34, -183], + [-72, 6], + [-36, -134], + [-37, -11] + ], + [ + [22204, 9653], + [-178, -139], + [-47, -4], + [-35, 24], + [-10, 39], + [-70, 35], + [-72, 159], + [-40, 27], + [-126, -4], + [-41, -31], + [-86, 18], + [-75, 71], + [-18, 49], + [-53, 47], + [-19, 73], + [-54, 55], + [-118, 66], + [-59, 5], + [-86, 88], + [0, 63], + [133, 117], + [30, 128], + [-19, 60], + [-35, 29], + [-137, 13], + [-30, 27], + [-93, 172] + ], + [ + [20866, 10840], + [53, 77], + [15, 63], + [-51, 12], + [-66, 63], + [8, 17], + [-25, 27], + [38, 71], + [179, -19], + [20, 74], + [-50, 32], + [40, 61], + [17, -49], + [38, -18], + [102, 34], + [41, 33], + [10, 50], + [26, -8], + [24, 24], + [13, 55], + [108, 12], + [-23, 17], + [-7, 72] + ], + [ + [21376, 11540], + [51, -6], + [-23, -34], + [11, -9], + [116, 58], + [36, -37], + [23, 11], + [23, 81], + [65, -6], + [11, 31], + [-18, 42], + [-52, 9], + [1, 29], + [49, 47], + [51, -30], + [14, -53], + [47, -24], + [68, 63], + [75, 1], + [76, 44], + [50, -41], + [63, 10], + [8, 36], + [-35, 15], + [-6, 26], + [-69, 17], + [-62, 74], + [20, 66], + [36, 21], + [-11, 54], + [-27, 22], + [-89, -35], + [-27, 20], + [43, 30], + [-43, 63], + [-26, -49], + [-74, -11], + [-8, 37], + [20, 19], + [31, -6], + [33, 38], + [-2, 69], + [30, -3], + [12, -26], + [43, 34], + [40, -3], + [41, 73], + [-53, 42], + [12, 24], + [-31, 71], + [-85, 30], + [21, 22], + [-2, 84], + [49, 54], + [64, 20], + [36, 60], + [149, -17], + [-2, 24], + [65, 41], + [3, 88], + [26, 55], + [65, -55], + [7, -60], + [99, -91], + [-26, -39], + [3, -42], + [56, -66], + [32, -9], + [39, 24], + [39, -25], + [-21, -96], + [36, -20], + [-13, -54], + [19, -47], + [67, -48], + [34, 12], + [42, -25], + [12, 57], + [-20, 40], + [53, 60], + [81, -46], + [72, -79], + [56, -22], + [-16, -85], + [33, -39], + [-12, -22], + [71, -73], + [50, -5], + [41, 112], + [94, -51], + [42, -1], + [145, 56], + [48, 71], + [-12, 65], + [85, 51], + [48, -36], + [12, -38], + [57, -9], + [16, -58], + [107, -19], + [1, 84], + [27, 42], + [108, -52], + [-14, 41], + [35, 29], + [79, -24], + [2, -61], + [27, -16], + [105, 35], + [116, -14], + [72, -31] + ], + [ + [9065, 11633], + [55, -15], + [91, -73], + [51, 53], + [140, -76], + [64, 38], + [90, -18], + [48, -45], + [168, -52], + [-7, -77], + [-119, 12], + [-16, -84], + [-102, 66], + [-14, -23], + [20, -78], + [51, -36], + [-23, -59], + [113, -65], + [68, 17], + [-17, 75], + [33, 89], + [41, -17], + [92, 8], + [-2, -67], + [-46, -73], + [47, -43], + [33, 10], + [21, 39], + [47, -2], + [-28, -90], + [20, -20], + [-14, -66], + [-32, -45], + [98, -85], + [140, 17], + [12, -22], + [115, -28], + [85, -73], + [41, -8], + [85, 44], + [50, 52], + [93, -92], + [52, 38], + [35, 91], + [64, 43], + [52, -109], + [-55, -19], + [1, -68], + [161, -105], + [37, 13], + [104, 121], + [102, -37], + [111, 66] + ], + [ + [11321, 10755], + [30, -44], + [-63, -85], + [-88, 17], + [-63, -23], + [2, -28], + [85, -31], + [-7, -76], + [17, -19], + [64, -1], + [36, -25], + [-3, -42], + [-137, -95], + [-7, -76], + [15, -41], + [76, -57], + [-50, -90], + [12, -29], + [80, -8], + [38, -49], + [-27, -36], + [-69, 3], + [-93, 37], + [-49, -48], + [41, -98], + [48, -15], + [8, -48], + [-32, -58], + [83, -155], + [47, -18], + [83, 42], + [40, -38], + [-93, -33], + [-18, -29], + [68, -136], + [-16, -43], + [-79, -38] + ], + [ + [11300, 9242], + [-22, -17], + [-10, -85], + [-83, -69], + [-32, -58], + [33, -100], + [-23, -45], + [-51, -22], + [-98, -105], + [32, -183], + [-85, -5], + [-63, -95], + [-54, -36], + [-19, -103], + [-63, -108], + [-17, -88] + ], + [ + [10745, 8123], + [-49, -106], + [-31, -177], + [68, -86], + [44, -153], + [-18, -146], + [14, -73], + [37, -40], + [45, 97], + [35, -18], + [1, -132], + [71, -139], + [-39, -15], + [-8, -60], + [-33, -39], + [-55, 15], + [-38, -21], + [-27, -60], + [-111, 43], + [44, 74], + [-26, 12], + [7, 62], + [-66, 42], + [-47, -4], + [-77, -57], + [48, -44], + [62, -1], + [-37, -102], + [25, -34], + [-18, -19], + [-85, 47], + [-60, -59], + [-14, 66], + [-32, 19], + [3, 80], + [-89, 23], + [-44, -35], + [-13, -52], + [62, -11], + [-6, -64], + [-40, 3], + [-12, -36], + [-86, -4], + [-1, 18], + [-70, 20], + [-17, -35], + [-79, 12], + [2, 45], + [33, 51], + [-74, 65], + [49, 120], + [-153, 82], + [-23, 82], + [-96, -123], + [-13, -103], + [-83, -88], + [-78, 13], + [-32, 27], + [27, 129], + [28, 36], + [-26, 16], + [-18, 59], + [104, 129], + [7, -39], + [-25, -40], + [17, -33], + [38, 16], + [19, 175], + [-131, 64], + [15, 53], + [-87, -9], + [-21, 45], + [36, 54], + [-22, 30], + [10, 20], + [-44, 32], + [-96, -3], + [4, -29], + [-37, -18], + [-62, -127], + [-1, -26], + [48, 13], + [-2, -23], + [65, -8], + [25, -35], + [-4, -44], + [28, -42], + [-7, -97], + [-62, 9], + [-63, 49], + [1, 33], + [-52, 28], + [-25, 4], + [-10, -34], + [-45, 44], + [-12, -34], + [-84, -5], + [-125, -144], + [12, -21], + [-41, -67], + [-111, -71], + [-2, 75], + [-27, 5], + [-14, 89], + [56, 57], + [37, 91], + [-99, 67], + [-4, 26], + [58, 128], + [90, -61], + [85, 170], + [65, -26], + [36, -51], + [37, -2], + [46, 11], + [-3, 45], + [-25, 27], + [33, 47], + [108, -33], + [11, 20], + [-20, 43], + [-90, 79], + [21, 230], + [-19, 14], + [-22, -30], + [-25, 10], + [-9, -47], + [-75, -52], + [5, 64], + [-55, 42], + [-45, -61], + [-136, 64], + [-16, -17], + [2, -90], + [-67, 3], + [-25, -62], + [7, -23], + [38, -9], + [0, -53], + [41, -74], + [-32, -32], + [-35, -1], + [-7, -85], + [-42, -44], + [-22, -149], + [-45, -14], + [-43, 126], + [-122, 120], + [43, 62], + [28, 131], + [-32, 2], + [-96, -97], + [-45, 60], + [48, 78], + [104, -40], + [15, 55], + [46, 25], + [53, 86], + [22, 1], + [-29, 46], + [31, 31], + [-8, 28], + [102, 89], + [21, 46], + [41, 8], + [5, 26], + [165, -9], + [29, 71], + [143, 20], + [38, -19], + [8, -14], + [-79, -65], + [-19, -46], + [-110, 37], + [-16, -24], + [-66, 1], + [-14, -25], + [25, -62], + [110, -21], + [73, -61], + [101, 137], + [70, -26], + [79, 40], + [-10, 40], + [-86, 50], + [31, 166], + [-31, 18], + [-15, 65], + [-43, 31], + [-56, -24], + [-42, -77], + [-29, 10], + [4, 32], + [-56, 15], + [-63, 56], + [72, 64], + [2, 31], + [60, 12], + [38, 119], + [-74, 39], + [52, -1], + [9, 29], + [-40, 25], + [9, 32], + [-71, 48], + [33, 62], + [45, -28], + [52, 54], + [29, 45], + [-26, 19], + [21, 44], + [-61, 47], + [-31, -11], + [-48, -108], + [-34, 54], + [4, 37], + [-30, 16], + [-26, -21], + [-44, 21], + [-63, -4], + [-48, -75], + [60, -47], + [-11, -95], + [-210, -17], + [-45, -70], + [41, -12], + [-3, -25], + [71, -20], + [27, -99], + [30, -36], + [-27, -115], + [-58, -43], + [-4, -42], + [-99, -9], + [-22, 17], + [-10, 53], + [119, 15], + [20, 33], + [-71, 31], + [27, 38], + [-40, -3], + [-58, 38], + [-57, -81], + [-14, 6], + [59, 96], + [-61, 18], + [-47, 45], + [-116, -37], + [-24, -39], + [-48, 35], + [-4, 28], + [-49, 23], + [0, 55], + [-22, 24], + [-32, -28], + [-22, -200], + [27, -45], + [63, -8], + [60, -121], + [41, -23], + [71, 73], + [87, 8], + [91, -82], + [-110, 2], + [3, -19], + [-29, -15], + [-29, 17], + [-26, -24], + [-37, 24], + [-131, -57], + [-6, -101], + [87, 58], + [15, -15], + [-46, -93], + [74, -37], + [-38, -38], + [43, -90], + [-98, -9], + [-9, -31], + [-106, 16], + [-35, -27], + [-75, 45], + [-5, 62], + [29, 38], + [-53, 22], + [-22, 44], + [-19, -44], + [-175, 64], + [36, 42], + [-36, 90], + [37, 36], + [41, -89], + [178, 162], + [-104, 97], + [-41, -71], + [-107, 48], + [-91, -46], + [17, -116], + [-31, -54], + [-36, -21], + [-27, 11], + [-10, 68], + [-69, 15], + [-41, -39], + [-9, -92], + [-45, -37], + [-44, -2], + [-73, 44], + [-19, -88], + [74, 19], + [40, -39], + [15, -46], + [-25, -104], + [-110, -34], + [-63, 86], + [-61, 19], + [-28, -30], + [53, -51], + [-19, -36], + [11, -62], + [66, -47], + [-97, -60], + [-14, -51], + [-101, -23], + [-46, 102], + [13, 40], + [-29, -9], + [-64, -103], + [-31, -14], + [-20, -66], + [-94, 82], + [-71, -32], + [-24, -58], + [14, -59], + [57, -68], + [76, 25], + [190, 127], + [32, -72], + [94, 39], + [20, -18], + [-14, -17], + [13, -49], + [145, -28], + [75, -55], + [-50, -73], + [-4, -63], + [-57, -97] + ], + [ + [7190, 7498], + [-130, -195], + [-130, -76], + [-95, -117], + [-179, -116] + ], + [ + [6656, 6994], + [4, 35], + [-104, 105], + [3, 40], + [103, -6], + [49, 65], + [-24, 21], + [-49, -16], + [-98, 21], + [-35, 40], + [1, 40], + [-105, 24], + [-19, 74], + [96, 64], + [-141, 55], + [-24, 28], + [6, 62], + [-53, -10], + [-39, 30], + [63, 99], + [-112, 108], + [25, 65], + [-80, 6], + [-132, 63], + [158, 140], + [-31, 11], + [-47, 123], + [-133, 54], + [22, 84], + [12, 23], + [44, -14], + [27, 49], + [91, 70], + [-10, 39], + [20, 76], + [-17, 32], + [73, 142], + [26, 1], + [47, -75], + [37, 0], + [90, 32], + [16, 87], + [28, 41], + [49, 14], + [7, 32], + [62, -24], + [17, 14], + [-13, 80], + [-58, 76], + [8, 36], + [51, 20], + [-44, 29], + [-2, 93], + [43, 95], + [79, 72], + [47, -78], + [53, -21], + [9, 74], + [134, 110], + [151, -65], + [37, 26], + [62, -56], + [78, -14], + [42, 31], + [87, -43], + [55, 77], + [67, -5], + [-2, 49], + [23, 28], + [73, -26], + [-32, -64], + [169, -42], + [99, 142], + [80, 13], + [25, 41], + [74, 22], + [5, 31], + [41, -13], + [39, 20], + [41, -49], + [41, 10], + [34, 44], + [88, 30], + [80, -1], + [99, 42], + [5, 64], + [38, 76], + [-12, 178], + [-43, 40], + [-15, 47], + [-46, 27], + [12, 51], + [-71, 15], + [-99, 63], + [-36, 53], + [-13, 106], + [26, 34], + [62, -23], + [22, 53], + [33, -9], + [17, 61], + [109, 177], + [101, -29], + [22, 78], + [-24, 26], + [-39, 8], + [-30, -49], + [-40, 34], + [60, 89], + [134, -42], + [1, -113], + [58, -53], + [47, 8], + [28, 85], + [-14, 3], + [21, 74], + [-8, 72], + [-41, 5], + [-11, 38], + [-52, -24], + [-4, 76], + [69, 110], + [57, 22], + [54, -40], + [22, 65], + [-25, 15], + [29, 60], + [-42, 108], + [71, 27], + [48, 93], + [90, 68], + [62, -19], + [-29, 29], + [19, 24] + ], + [ + [11860, 13930], + [34, -94], + [58, -25], + [138, 106], + [47, 1], + [27, -23], + [-14, -96], + [-179, -110], + [-16, -46], + [21, -102], + [115, -138], + [73, -29], + [22, -30], + [117, -37], + [157, -26], + [62, 12], + [57, -75], + [-39, -103], + [31, -47], + [84, -17], + [227, -116], + [220, -7], + [29, -24], + [-11, -81], + [-88, -117], + [9, -59], + [125, -62], + [67, -79], + [178, -13], + [-1, -24], + [76, -7], + [144, 85], + [119, -109], + [140, -35] + ], + [ + [13889, 12403], + [67, -70], + [29, -82], + [30, -15], + [-24, -99], + [13, -54], + [-37, -27], + [-79, 22], + [-56, -108], + [61, -16], + [108, 107], + [64, -34], + [-51, -124], + [-39, 0], + [-19, -27], + [-20, -58], + [30, -25], + [-51, -100], + [-72, 38], + [-55, -75], + [-2, 37], + [-50, 4], + [-55, -88], + [-68, 23], + [48, 106], + [-89, 16], + [-21, -18], + [-28, -95], + [31, -51], + [78, -49], + [-13, -217], + [34, -83], + [-31, -18], + [-97, 18], + [-41, 29], + [-51, 120], + [-40, 31], + [-36, -23], + [-6, -54], + [29, -111], + [-9, -33], + [-63, -62], + [-55, -6], + [-139, 84], + [-57, 167], + [-67, 30], + [-120, -57], + [-114, 147], + [-26, -14], + [-50, -101], + [-78, -23], + [-121, 143], + [-74, 12], + [-62, -34], + [1, -50], + [40, -67], + [-7, -44], + [-61, -1], + [-140, -76], + [-181, 59], + [-37, -4], + [-21, -29], + [-14, -38], + [24, -88], + [78, -28], + [98, 20], + [59, -65], + [-72, -148], + [-35, -29], + [-55, -1], + [-43, 48], + [-20, 71], + [-138, 87], + [-128, -110], + [-62, -83], + [-8, -39], + [28, -32], + [2, -92], + [-34, -36], + [-79, 5], + [-39, 71], + [-69, 38], + [-86, -3], + [-25, -67] + ], + [ + [9065, 11633], + [-25, 32], + [27, 34], + [1, 51], + [-22, 31], + [57, 5], + [52, 82], + [-53, 67], + [43, 45], + [-28, 63], + [106, 109], + [56, 15], + [27, 29], + [16, 76], + [67, 9], + [44, 80], + [3, 37], + [-56, 4], + [-126, 82], + [6, 60], + [-122, 74], + [-2, 28], + [56, 13], + [13, 72], + [71, 9], + [70, -27], + [49, 20], + [19, 35], + [-12, 53], + [-111, 105], + [32, 50], + [33, 28], + [38, -26], + [107, -9], + [-26, 28], + [34, 32], + [-11, 100], + [-141, 41], + [-35, 38], + [70, 53], + [23, -14], + [48, 32], + [62, -46], + [21, -70], + [133, -7], + [16, 23], + [-12, 45], + [39, 21], + [-32, 44], + [-58, 12], + [5, 62], + [42, 61], + [76, 32], + [30, 3], + [16, -47], + [21, 6], + [24, 24], + [-31, 61], + [60, 106], + [76, -11], + [36, 38], + [-46, 50], + [96, 24], + [-13, 69], + [-58, 62], + [-77, 7], + [-34, 33], + [-33, -7], + [-34, 45], + [15, 35], + [44, 21], + [3, 49], + [-38, 85], + [11, 46], + [41, 40], + [12, -28], + [106, 27], + [3, 62], + [53, 98] + ], + [ + [10038, 14354], + [97, 0], + [88, -32], + [33, -36], + [36, 15], + [29, -28], + [38, 7], + [46, 61], + [19, -11] + ], + [ + [10424, 14330], + [46, -44], + [100, -10], + [233, 90], + [58, -35], + [79, -195], + [51, -13], + [175, 45], + [177, 94], + [324, 56], + [91, -71], + [25, -62], + [10, -135], + [67, -120] + ], + [ + [27454, 12744], + [-29, -41], + [-34, -8], + [-4, -35], + [28, -32], + [-16, -40], + [63, -39], + [-14, -60], + [33, -45], + [85, -5], + [20, -26], + [-43, -134], + [53, -31], + [24, -57], + [-4, -22], + [-41, 8], + [-24, -55], + [98, 11], + [4, -45], + [-73, -42], + [33, -15], + [66, 20], + [25, -42], + [-36, -61], + [28, -121], + [31, -28], + [15, -65], + [37, -28], + [24, -66], + [-9, -40], + [26, -19], + [-8, -39], + [37, -19], + [-17, -34], + [38, -23], + [-5, -62], + [29, -29], + [7, -49], + [-24, -73], + [40, -11], + [-48, -70], + [10, -103], + [-52, -83], + [153, -56], + [5, -46], + [30, -6], + [38, -66], + [40, 0], + [-13, -92], + [80, -39], + [-7, -30], + [23, -41], + [95, -15], + [124, 38], + [98, -25], + [46, 32], + [4, -20], + [61, -21], + [85, -75], + [-31, -54], + [2, -67], + [49, -9], + [-5, -39], + [41, -41], + [3, -46], + [83, -4], + [87, -121], + [110, -7], + [12, 53], + [-19, 21], + [27, 10], + [-15, 25], + [45, 61], + [47, -53], + [58, 0], + [10, -42], + [50, 23], + [-10, -60], + [59, -12], + [9, -25], + [84, 8], + [37, -21], + [-13, -63], + [-67, -57], + [17, -48] + ], + [ + [29359, 9956], + [-7, -142], + [60, -63], + [-9, -84], + [-41, -30], + [64, -39], + [32, 3], + [19, -85], + [-42, -10], + [-24, -91], + [-30, -25] + ], + [ + [29381, 9390], + [-47, 36], + [-50, -81], + [-51, -7], + [-54, 167], + [-26, 27], + [-39, -2], + [-32, -50], + [-5, -69], + [18, -23], + [-50, -12], + [-15, 29], + [-109, 14], + [-6, -61], + [-43, -28], + [-15, -61], + [-39, -22], + [-70, 38], + [-7, 121], + [-21, 10], + [-22, 68], + [-176, 22], + [-106, -27], + [-36, 74], + [-34, -13], + [-24, -83], + [-89, 22], + [3, -68], + [-52, -31], + [-160, 15], + [-1, -40], + [-42, -7], + [-37, -80], + [-36, 7], + [-57, 67], + [-105, 29], + [-64, -31], + [-43, -74], + [34, -19], + [11, -127], + [-45, -10], + [-32, -95], + [142, -96], + [-19, -33], + [-68, 10], + [-8, -18], + [-61, -4], + [-17, -62], + [71, -32], + [12, -39], + [-141, -30], + [-38, -42], + [2, -84], + [43, -72] + ], + [ + [27525, 8513], + [-115, 37], + [-119, -18], + [-23, -20], + [-103, -1], + [-5, 45], + [34, 13], + [54, -22], + [9, 43], + [-96, 44], + [-86, -15], + [-14, 25], + [13, 39], + [63, 63], + [-21, 75], + [-116, 24], + [-22, -24], + [17, -61], + [-11, -95], + [-17, -21], + [-47, 2], + [-6, 128], + [-39, 92], + [-71, 28], + [-5, -49], + [46, -19], + [7, -25], + [-36, -50], + [-166, 37], + [10, 37], + [-39, 63], + [3, 35], + [-48, 64], + [-146, -49], + [-23, 44], + [72, 37], + [-13, 29], + [-79, -1], + [-59, 33], + [-20, 121], + [-103, -10], + [0, -37], + [-37, -17], + [7, -27], + [-29, -30], + [-72, 133], + [-46, -41], + [-40, 32], + [-39, -18], + [21, -16], + [-24, -22], + [-73, 7], + [-48, 112], + [-32, 36], + [-39, 1] + ], + [ + [26253, 11932], + [204, -37], + [68, -145], + [80, 38], + [20, 26], + [-37, 25], + [87, 79], + [-6, 41], + [-81, 31], + [53, 72], + [-46, 69], + [-125, 15], + [-9, -29], + [-28, -3], + [-64, 31], + [17, 13], + [9, 90], + [38, -15], + [27, 52], + [-6, 31], + [-56, -7], + [-73, 56], + [-24, 72], + [-44, 11], + [51, 125], + [-18, 15], + [11, 44], + [73, 17], + [89, -31], + [43, 86], + [78, -62], + [35, 40], + [30, -21], + [4, 24], + [83, 29], + [29, -15], + [5, -28], + [89, -18], + [16, -29], + [33, 17], + [15, 46], + [-32, -5], + [-11, 44], + [53, 1], + [-15, 86], + [55, 23], + [-9, 99], + [37, -36], + [55, 20], + [-6, 109], + [50, -21], + [45, -81], + [33, -15], + [-6, -44], + [56, -13], + [16, 19], + [26, -10], + [10, 24], + [27, -19], + [-59, -66], + [64, -10], + [14, 35], + [37, -3], + [91, -80] + ], + [ + [25437, 7334], + [67, 26], + [19, 61], + [-65, 34], + [-103, 9], + [-87, 55], + [-17, 56], + [21, 37], + [62, 21], + [64, 151], + [96, 48], + [101, -11], + [44, -40], + [116, -299], + [80, -15], + [61, 30], + [62, 224], + [74, 41], + [80, -21], + [161, -107], + [67, -98], + [71, 7], + [42, 129], + [148, -9], + [-5, -36], + [69, -14], + [11, 38], + [192, -10], + [24, 41], + [40, -11], + [53, 37], + [155, -36], + [12, -101], + [99, -20], + [28, 191], + [70, 15], + [49, -20] + ], + [ + [27398, 7737], + [20, -46], + [51, 63], + [36, -6], + [19, 27], + [98, -2], + [6, -61], + [104, 16], + [64, -83], + [37, 15], + [31, 145], + [56, -6], + [9, 25], + [25, -9], + [-10, -42], + [-37, 7], + [8, -53], + [45, -20], + [-29, -87], + [24, -28], + [57, -5], + [-35, 44], + [-3, 71], + [72, 10], + [8, 26], + [53, 15], + [40, -11], + [-18, -58], + [-28, 1], + [-7, -61], + [29, -5], + [10, -30], + [-53, -34], + [39, -78], + [-21, -23], + [-127, 18], + [18, -69], + [76, -37], + [-45, -60], + [47, -44], + [21, 97], + [22, -2], + [115, -78], + [-8, -20], + [60, -28], + [73, 26], + [29, 93], + [34, 25], + [-28, 13], + [16, 47], + [61, 3], + [24, 49], + [44, -6], + [14, 34], + [161, -48], + [362, -8], + [102, 136], + [14, 78] + ], + [ + [29183, 7673], + [198, -82], + [11, -91], + [97, -3], + [-7, -34], + [62, -28], + [90, 11], + [14, -88], + [168, 13], + [69, -18], + [38, -43], + [-10, -45], + [-40, -38], + [6, -145], + [-66, 4], + [-6, -29], + [-84, 9], + [-1, -26], + [-34, 3], + [-6, -36], + [35, -41], + [-4, -55], + [-57, -5], + [-6, -53], + [37, -10], + [-15, -81], + [32, -51], + [-19, -60], + [-80, -12], + [-88, 63], + [-5, -16], + [-80, -11], + [-66, 26], + [-15, -39], + [18, -44], + [-20, -72], + [34, -26], + [-18, -67], + [30, -20], + [7, -76], + [-33, -23], + [31, -152], + [-90, -14], + [-2, -25], + [27, 7], + [18, -213], + [73, -171], + [-22, -110], + [44, -47], + [-8, -70], + [43, -105], + [62, -21], + [10, -47], + [41, -14], + [44, 50], + [25, -8], + [-27, -77], + [-109, -9] + ], + [ + [29529, 5308], + [-73, 8], + [-128, -94], + [-16, 85], + [-31, -20], + [-42, 26], + [-34, -50], + [-99, 17], + [4, 71], + [22, 35], + [39, -2], + [12, 45], + [-69, 40], + [-22, 36], + [11, 100], + [-29, 158], + [-96, -25], + [-44, -147], + [-79, -82], + [-42, -7], + [-10, -96], + [-122, 19], + [13, 59], + [-40, 21], + [-47, -60], + [31, -21], + [-10, -38], + [-33, -11], + [-71, 31], + [-87, -16], + [-67, 37], + [-150, 13], + [-29, 57], + [-83, -29], + [-24, 16], + [-23, -47], + [-249, -136], + [-26, 18], + [-109, -31], + [-108, 54], + [-10, -115], + [-37, -5], + [-15, -43], + [-93, -34], + [-55, -49], + [-170, 30], + [49, 107], + [-17, 65], + [-41, 0], + [-19, -48], + [-51, 10], + [-32, 41], + [-106, 63], + [-44, -95], + [-129, -49], + [0, -112], + [32, -76], + [5, -126], + [-10, -66], + [-71, -15], + [1, -105], + [47, -31], + [16, -76], + [-52, -53], + [-48, -9], + [-28, -42] + ], + [ + [26691, 4509], + [-90, -28], + [-77, 4], + [-47, 38], + [-145, -24], + [17, 72], + [-73, 74], + [-49, 8], + [-105, -110], + [33, -74], + [-9, -55], + [30, -41], + [-47, -148], + [21, -27], + [-13, -32], + [56, -84], + [-30, -46], + [-23, 18], + [-46, -18], + [-198, 40], + [-56, 91], + [-53, 28], + [-44, -11], + [-54, -69], + [-80, 9], + [-15, -16], + [-16, 23], + [39, 91], + [-15, 47], + [18, 116], + [-32, 29], + [32, 17], + [-4, 23], + [-70, -11], + [-11, 53], + [-86, 30], + [-17, -25], + [42, -7], + [-59, -77], + [-29, 49], + [-117, -2], + [8, 29], + [-32, 31], + [68, 74], + [18, -13], + [16, 35], + [-22, 28], + [7, 38], + [19, 4], + [-24, 122], + [26, 15], + [17, 105], + [-41, 11], + [-4, -55], + [-15, -1], + [-34, 88], + [-48, -75], + [-53, 42], + [-43, -62], + [52, -30], + [23, -85], + [-27, 12], + [-9, 48], + [-137, 26], + [54, 46], + [32, 79], + [-41, 23], + [23, 23], + [-17, 53], + [63, -37], + [42, 28], + [-40, 5], + [26, 72], + [-14, 19], + [-29, 14], + [-50, -24], + [-61, 38], + [60, 73], + [-87, -5], + [-28, -77], + [30, -23], + [-54, -11], + [-3, -31], + [-139, 78], + [-34, -44], + [10, -19], + [-67, 0], + [-22, -20], + [-15, 81], + [-31, 31] + ], + [ + [29529, 5308], + [-41, -78], + [8, -57], + [-37, -73], + [57, -18], + [-5, -32], + [28, -18], + [172, -71], + [-3, -21], + [37, -11], + [25, -82], + [48, -59], + [63, 0], + [23, -22], + [26, 20], + [16, -9], + [-7, -26], + [55, -15], + [40, 46], + [41, 24], + [42, -5], + [33, 34], + [102, -38], + [36, 11], + [9, 31], + [26, -37], + [89, 35], + [46, -81], + [67, -7], + [14, 42], + [-15, 56], + [29, 5], + [14, 47], + [23, -1], + [10, 67], + [33, 8], + [34, 66], + [-14, 26], + [-41, -17], + [-8, 79], + [30, 9], + [32, -54], + [56, -30], + [42, 21], + [119, -23], + [83, 50] + ], + [ + [30966, 5100], + [169, -79], + [3, -31], + [65, -36], + [34, -101], + [58, -39], + [141, 29], + [-21, -193], + [66, 10], + [19, -58], + [26, -3], + [65, -86], + [-80, -62], + [-10, -100], + [39, -1], + [53, -41], + [45, 5], + [-16, -68], + [84, -7], + [21, -28], + [-32, -60], + [-56, -4], + [-30, -47], + [4, -86], + [27, -34], + [-10, -114], + [-29, -78], + [-119, -56], + [26, -68], + [-503, -125], + [-25, -48], + [11, -52], + [-62, -192], + [42, -90], + [52, 8], + [0, -173], + [56, 7], + [88, -34], + [-1, -43], + [41, -37], + [33, -90], + [40, -30], + [-64, -41], + [-52, -103], + [-108, 6], + [-96, -83], + [-21, -48], + [-36, -14], + [32, -86], + [72, -16], + [26, -36], + [8, -142], + [-50, -72], + [-4, -38], + [-61, -26], + [-31, -50], + [28, -54], + [-27, -57], + [16, -84], + [-81, -173], + [-87, -273], + [-92, -79], + [-39, 25], + [-34, -86], + [-44, -60], + [-29, -5], + [-86, -162], + [7, -102], + [-22, -74], + [-96, -47], + [-51, 27], + [-51, -51], + [20, -43], + [-53, -19], + [-7, -34], + [-30, -9], + [14, -50], + [-42, -44], + [22, -66], + [-35, -67], + [2, -42], + [-61, -56], + [18, -44], + [-51, -40], + [-20, 17], + [-60, -11], + [-53, -41], + [-35, 6], + [-41, -24], + [-6, -42], + [-62, -70], + [-259, -77], + [-64, -5], + [-111, 52], + [-91, 2], + [-325, -54], + [-121, 2], + [-116, 110], + [-211, 126], + [-240, 271], + [-152, -35], + [-3, 154], + [-50, 119], + [-290, 85], + [119, 167], + [49, 108], + [-140, 72], + [-81, -15], + [-28, 16], + [5, 48], + [-46, 55], + [-32, 6], + [-93, 112], + [-31, -1], + [-31, 54], + [48, 64], + [-18, 34], + [61, 43], + [82, -87], + [139, -24], + [7, 72], + [73, 98], + [-38, 321], + [99, 30], + [38, 41], + [-44, 113], + [88, 288], + [-37, 35], + [25, 174], + [-32, 53], + [24, 91], + [-26, -1], + [6, 24], + [-28, 10], + [-101, -51], + [-68, 3], + [-64, 69], + [53, 212], + [71, 45], + [-30, 60], + [-7, 96], + [24, 33], + [-13, 104], + [28, 16], + [18, 59], + [0, 37], + [-102, 85], + [1, 86], + [44, 11], + [6, 21], + [-48, 57], + [-2, 54], + [109, -45], + [1, 25], + [45, -10], + [-1, -68], + [276, 63], + [-8, 104], + [-24, 52], + [11, 110], + [-187, -5], + [61, 84], + [-27, 61], + [10, 112], + [-132, -8], + [-78, 23], + [-24, -49], + [-52, 14], + [4, 25], + [-52, -35], + [-43, 55], + [13, 167], + [-147, 120], + [-70, -14], + [-96, -68], + [-140, -37], + [-142, -95], + [-198, -63], + [-41, 17], + [-39, 144] + ], + [ + [29683, 14048], + [135, 64], + [57, -15], + [56, 19], + [77, -25], + [149, 9], + [364, -251], + [77, -6], + [35, -28], + [35, 7], + [11, 32], + [27, -12], + [47, -68], + [83, -48], + [120, -122], + [47, -56], + [2, -64], + [98, -70], + [91, -9], + [127, 54], + [119, 7], + [71, -22] + ], + [ + [31511, 13444], + [-52, -116], + [-109, -3], + [-42, -22], + [-70, -160], + [-87, -108], + [-11, -81], + [-44, -16], + [-6, -52], + [-44, -60], + [30, -18], + [-12, -23], + [44, -141], + [-15, -60], + [-37, 0], + [37, -70], + [-52, 0], + [-12, -87], + [-47, 17], + [-28, -61], + [-32, 11], + [-30, -59], + [-79, -37], + [-57, 23], + [5, -35], + [40, -19], + [-1, -39], + [84, -3], + [1, -34], + [-38, -37], + [-78, 30], + [-70, -19], + [-22, 27], + [-58, 9], + [-36, -67], + [-1, -52], + [39, -2], + [-1, -44], + [34, -28], + [74, 83], + [31, -20], + [-9, -45], + [-61, -37], + [-9, -56], + [-37, -3], + [-29, 24], + [-70, -16], + [-3, -36], + [41, -2], + [11, -58], + [-70, -33], + [6, -111], + [-35, -21], + [-18, -96], + [73, -10], + [21, 51], + [53, -5], + [74, 28], + [18, -24], + [45, -1], + [-10, -65], + [72, 0], + [20, -41], + [26, -3], + [-42, -78], + [-30, 16], + [13, 23], + [-20, 29], + [-12, -56], + [-86, 22], + [7, -36], + [49, -10], + [-17, -57], + [-147, -10], + [-3, -42], + [-25, -23], + [48, -37], + [-9, -34], + [48, -25], + [-31, -31], + [-16, -67], + [17, -70], + [-23, -26], + [43, 16], + [39, -14], + [45, -55], + [62, -16], + [-45, -68] + ], + [ + [30733, 10862], + [-39, -21], + [-74, 15], + [-45, -144], + [-41, -9], + [-5, -98], + [-27, -10], + [22, -63], + [-75, 10], + [-60, 103], + [-25, 7], + [-106, -33], + [-24, -33], + [-56, 19], + [-53, -53], + [-24, 5], + [2, 51], + [-39, 23], + [-20, -16], + [-59, 45], + [-11, -68], + [82, -44], + [14, 24], + [27, -4], + [17, -71], + [-21, -94], + [65, -42], + [63, -91], + [-64, -40], + [-150, 14], + [-34, -24], + [-45, -155], + [-43, -23], + [-7, -29], + [-85, 4], + [-36, -49], + [24, -25], + [-20, -81], + [-27, 3], + [-107, 104], + [-154, 19], + [-8, -40], + [-106, 8] + ], + [ + [27454, 12744], + [68, 41], + [-48, 30], + [6, 209], + [26, 37], + [-20, 72], + [-53, 14], + [-15, 35], + [54, 81], + [-25, 31], + [8, 33] + ], + [ + [27455, 13327], + [45, 14], + [33, 41], + [51, -10], + [93, -61], + [-4, -43], + [42, -6], + [83, 110], + [21, -16], + [-39, -62], + [20, -25], + [-1, -133], + [42, -59], + [47, -3], + [49, -101], + [37, 17], + [12, -47], + [72, -5], + [15, 19], + [79, -17], + [17, -41], + [50, 2], + [29, -71], + [39, -24], + [20, 19], + [69, -54], + [23, 74], + [12, 10], + [30, -34], + [45, 68], + [-21, 50], + [-63, 4], + [-45, 87], + [-30, 13], + [60, 20], + [-25, 19], + [1, 45], + [21, -6], + [36, 74], + [36, 5], + [-11, 52], + [27, 15], + [1, 27], + [-51, 41], + [4, 65], + [-25, 23], + [43, 66], + [-5, 30], + [-17, 2], + [-13, 70], + [-29, 55], + [-22, -9], + [-8, 40], + [16, 31], + [45, -26], + [46, 31], + [71, 123], + [-75, 46], + [27, 66], + [-27, 30], + [0, 52], + [180, 66], + [-36, 60], + [24, 43], + [98, -16], + [11, -22], + [-42, -87], + [32, -45], + [32, 26], + [12, -29], + [40, 45], + [42, -31], + [59, -7], + [16, -41], + [-55, -93], + [37, -71], + [73, 32], + [61, -28], + [-12, -26], + [65, -41], + [52, 18], + [80, -119], + [-25, -60], + [7, -32], + [64, -68], + [71, -19], + [10, -28], + [49, 15], + [16, 34], + [20, -33], + [45, -9], + [88, 17], + [5, 143], + [20, 25], + [-19, 19], + [10, 198], + [100, 182] + ], + [ + [31719, 16858], + [-37, -146], + [-60, -29], + [1, -29], + [107, -37], + [-9, -37], + [21, -12], + [56, -3], + [-7, -69], + [40, -45], + [52, -14], + [68, -115], + [-2, -130], + [-25, 4], + [-10, -50], + [178, -37], + [-38, -29], + [-21, -55], + [63, -91], + [-16, -100], + [32, -138], + [-11, -77], + [20, -25] + ], + [ + [32121, 15594], + [27, -212], + [-70, -57], + [11, -63], + [50, -77], + [-14, -69], + [-81, -73], + [11, -61], + [-39, -33], + [12, -29], + [-30, -50], + [-12, -98], + [-72, -14], + [-61, 17], + [-26, -45], + [-72, 27], + [-26, -23], + [36, -57], + [-18, -36], + [-34, -13], + [-8, 63], + [-21, 7], + [-25, -30], + [-73, 16], + [-20, -20], + [-74, 4], + [-63, -84], + [31, -77], + [-10, -38], + [-47, 11], + [-26, -22], + [99, -143], + [3, -58], + [42, -31], + [-85, -56], + [-17, -24], + [11, -54], + [37, -13], + [36, 54], + [104, 7], + [14, -16], + [-18, -43], + [-58, -33], + [27, -14], + [82, 15], + [12, -114], + [19, -40], + [38, -6], + [38, 111], + [56, -15], + [13, 23], + [-36, 45], + [-61, 5], + [-3, 32], + [155, 31], + [27, -11], + [-27, -79], + [8, -95], + [41, -31], + [95, 58], + [11, -37], + [-58, -82], + [81, -29], + [-26, -50], + [44, -28], + [6, -33], + [19, -9], + [46, 37], + [-7, -36], + [-48, -10], + [-10, -121], + [20, -8], + [105, 94], + [56, 24], + [42, -32], + [22, -143], + [-123, -43], + [-37, -36], + [-5, -132], + [-33, -131] + ], + [ + [32134, 13158], + [-6, -32], + [-20, 3], + [-87, 80], + [39, 74], + [-47, -10], + [-29, 33], + [-57, -18], + [-179, 38], + [-57, 50], + [-180, 68] + ], + [ + [29683, 14048], + [-71, 44], + [-159, -5], + [-86, 88] + ], + [ + [29367, 14175], + [141, 139], + [-19, 3], + [22, 101], + [-66, 80], + [61, 113], + [139, 29], + [218, 85], + [6, -35], + [90, -70], + [41, 79], + [-18, 80], + [57, 42], + [-73, 44], + [-36, -32], + [-38, -2], + [-65, 63], + [5, 53], + [-19, 17], + [-27, -16], + [-58, 81], + [18, 54], + [-39, 50], + [12, 39], + [-20, 47], + [-26, 13], + [-61, -27], + [-7, 35], + [-33, 13], + [9, 35], + [-19, 24], + [24, 48], + [43, 1], + [69, 91], + [-33, 9], + [31, 47], + [-10, 62], + [-157, 6], + [19, 71], + [56, 72], + [-83, -8], + [-50, 30], + [5, 64], + [-27, -3], + [9, 75], + [33, 48], + [73, -59], + [-1, 75], + [37, -22], + [33, 31], + [27, -5], + [36, 23], + [-12, 40], + [59, 40], + [-25, 45], + [20, 14], + [-6, 85], + [-40, 25], + [-41, -46], + [-78, -9], + [-14, 27], + [38, 71], + [-26, 76], + [-27, 5], + [-31, 60], + [74, 24], + [30, 35], + [19, 64], + [-22, 20], + [11, 70], + [103, 159], + [-45, -7], + [-10, 27], + [42, 73], + [70, -100], + [70, 43], + [30, -20], + [198, 35], + [22, 73], + [-72, 82], + [56, -26], + [32, 42], + [-58, 57], + [14, 30], + [-27, 35], + [8, 21], + [51, -44], + [37, 26], + [-71, 77], + [-41, -55], + [-52, 28], + [54, 11], + [20, 33], + [-67, 68], + [83, 12], + [72, 83], + [-25, 61], + [-47, 44], + [10, 79], + [-55, 10], + [-27, -34], + [-120, -42], + [-6, 37], + [-88, 16], + [25, -30], + [-22, -18], + [-15, 42], + [-47, -39], + [-3, 84], + [24, 7], + [-11, 15], + [-25, -16], + [1, 32], + [40, 60], + [-78, 67], + [15, 28], + [30, 1], + [-5, -36], + [53, 32], + [-68, 59], + [26, 29], + [-27, 62], + [-51, 40] + ], + [ + [29648, 17967], + [15, 55], + [-38, 67], + [12, 20], + [26, -24], + [31, 13] + ], + [ + [29694, 18098], + [-9, -25], + [37, -20], + [34, 32], + [52, -42], + [42, 33], + [25, -10], + [4, -55], + [142, -8], + [71, -48], + [29, 27], + [38, -22], + [-8, -90], + [63, -40], + [57, 31], + [8, 38], + [70, 21], + [29, -119], + [-27, -157], + [119, 34], + [27, 28], + [5, 91], + [-24, 18], + [50, 29], + [19, 95], + [48, 31], + [44, 10], + [11, -30], + [37, -12], + [44, 71], + [81, -24], + [13, 62], + [75, -30], + [77, -68], + [33, 2], + [-1, -25], + [-77, -78], + [21, -39], + [-133, -104], + [27, -26], + [-5, -66], + [-58, 6], + [-57, -157], + [-69, -9], + [-51, -82], + [34, -81], + [51, -25], + [-16, -40], + [105, -24], + [8, 72], + [75, -30], + [312, 9], + [-8, -76], + [102, 30], + [108, -65], + [1, -37], + [-30, -32], + [33, -9], + [0, -38], + [31, -9], + [7, -35], + [57, -6], + [4, -71], + [238, -46] + ], + [ + [34222, 14969], + [-108, 78], + [-12, 48], + [-110, 42], + [-21, 70], + [-25, 18], + [-28, -14], + [-27, 44], + [-8, 60], + [-59, 60], + [-41, 9], + [-24, 44], + [28, 63], + [-29, 148], + [-55, 37], + [-98, 1], + [-103, 80], + [-23, -25], + [-109, -23], + [-8, -57], + [-59, 15], + [-20, 37], + [-54, 27], + [33, 96], + [-21, 106], + [38, 60], + [2, 43], + [-101, 18], + [-10, 24], + [27, 21], + [-27, 32], + [-24, -21], + [-1, -42], + [-42, -12], + [-93, 24], + [-5, -137], + [-29, -8], + [-14, -45], + [-40, -5], + [-4, -28], + [-64, 6], + [-6, -36], + [-47, -18], + [-28, 26], + [-34, -58], + [-36, -17], + [-114, 35], + [-8, -62], + [-52, 7], + [-47, -30], + [-38, -1], + [23, 92], + [-24, 18], + [-67, -3], + [-40, -104], + [-37, -2], + [-53, -118], + [-47, -14], + [-78, 16] + ], + [ + [31719, 16858], + [42, 4], + [23, 191], + [23, -7], + [37, 48], + [51, -11], + [21, 24], + [26, -15], + [18, -40], + [-21, -44], + [76, -23], + [10, 79], + [41, 33], + [48, -8], + [9, 62], + [-32, 32], + [12, 49], + [47, 6], + [113, -34], + [12, 14], + [95, -35], + [23, 34], + [-6, 67], + [126, -15], + [61, -66], + [38, 20], + [25, 184], + [33, 52], + [89, -12], + [27, 43], + [-77, 30], + [-16, 39], + [3, 72], + [51, 36], + [-17, 20], + [-37, -18], + [-39, 17], + [-32, 97], + [67, 18], + [66, -50], + [55, 26], + [-2, 114], + [-107, 4], + [-1, 16], + [132, 65], + [19, 96], + [94, 4], + [42, 40], + [34, 266], + [64, 63], + [-14, 17], + [-169, -68], + [-25, 20], + [126, 76], + [25, 37], + [-61, 48], + [-13, 95], + [18, 18], + [99, -93], + [45, 30], + [11, 38], + [-57, 113], + [-65, -22], + [-50, 30], + [-16, 53], + [61, 35], + [49, -47], + [3, 35], + [100, 6], + [56, 26], + [-56, 85], + [-6, 56], + [49, 58], + [75, 34], + [25, -11], + [31, 24], + [40, -77], + [63, 11], + [62, -54] + ], + [ + [33491, 19018], + [-9, -101], + [33, -65], + [187, -47], + [101, -76], + [13, -29], + [-27, -32], + [96, -87], + [31, -86], + [0, -49], + [-71, -47], + [-99, -159], + [20, -46], + [-75, -91], + [-3, -120], + [44, -35], + [43, 1], + [68, 37], + [43, -4], + [53, 50], + [26, 15], + [27, -14], + [38, 34], + [68, -43], + [-26, -41], + [19, -17], + [-62, -88], + [-78, -9], + [41, -67], + [111, -68], + [71, 1], + [19, -21], + [-31, -152], + [-26, -23], + [90, -115], + [-47, -54], + [37, -43], + [3, -71], + [-7, -25], + [-102, -72], + [6, -24], + [54, 11], + [-4, -50], + [45, -10], + [31, -68], + [-36, -62], + [42, -60], + [-3, -42], + [33, 2], + [63, -59], + [36, 21], + [64, -27], + [36, 113], + [24, 5], + [20, -47], + [66, 19], + [7, -47], + [75, 5], + [-14, -28], + [16, -48], + [-33, -28], + [2, -79], + [42, -56], + [83, -49], + [79, 1], + [23, 43], + [-18, 29], + [35, 65], + [78, 18], + [62, 54], + [143, -61], + [66, -101], + [-5, -75], + [-50, -56], + [32, -5], + [-13, -32], + [29, -31], + [-24, -127], + [-112, -187], + [46, -81], + [54, -48], + [28, 6], + [40, 63], + [97, 58], + [98, -3], + [98, -198], + [21, -169], + [98, -33], + [129, -2], + [168, -41], + [-3, -130], + [48, -107], + [-165, -35], + [-33, -39], + [-131, 30], + [-167, -47], + [-56, 26], + [-35, -69], + [-71, 11], + [-6, -35], + [-39, 2], + [-375, 143], + [-157, -12], + [-60, 18], + [11, 57], + [-248, -19], + [-104, 35], + [-10, -85], + [19, -116], + [-66, -110], + [-46, -36], + [4, -24], + [-58, -80], + [3, -47] + ], + [ + [28290, 15109], + [-102, 57], + [-69, -15], + [-57, -63], + [-119, -54], + [-81, -31], + [-46, 12], + [-73, 98], + [-30, 5], + [-35, -30], + [-150, 54], + [-70, -1], + [-118, 79], + [-165, 5], + [-286, 201], + [-96, -34], + [-121, 27], + [-54, 43], + [12, 138], + [-55, 46], + [-96, -9] + ], + [ + [26479, 15637], + [-138, -164], + [-143, 14], + [-40, 52], + [-1, 37], + [-72, 25], + [-124, 103], + [-21, 80], + [15, 103], + [-92, 111], + [-66, 53], + [-159, 58], + [-91, 69], + [-13, 40], + [-46, 8], + [-138, 117], + [-39, 60], + [-68, 28] + ], + [ + [25243, 16431], + [45, 35], + [42, -41], + [36, 4], + [15, 76], + [-48, 12], + [-51, 142], + [19, 10], + [-49, 74], + [96, 162], + [-63, 97], + [7, 23], + [-23, 6], + [35, 68], + [48, 12], + [47, 48], + [65, -37], + [8, 41], + [76, 31], + [40, 80], + [77, 47], + [2, 35], + [59, -63], + [-5, -49], + [33, -49], + [104, -97], + [38, -6], + [41, 38], + [39, -10], + [10, 24], + [28, -2], + [13, 55], + [232, -126], + [40, 24], + [26, -11], + [147, -143], + [47, -1], + [118, 248], + [40, 21], + [91, -7], + [45, 62], + [68, 19], + [1, 110], + [103, 43], + [7, 49], + [132, -9], + [-8, 31], + [-64, 32], + [-39, -5], + [-14, 29], + [-72, -2], + [-19, 31], + [20, 46], + [-12, 49], + [-19, 41], + [-47, 21], + [54, 136], + [-16, 19] + ], + [ + [26888, 17904], + [76, 65], + [0, 62], + [95, 27], + [16, -41], + [52, -34], + [37, 50], + [87, -14], + [9, 56], + [48, 47], + [57, 2], + [8, -29], + [76, -30], + [25, 36], + [66, -51], + [107, 3], + [115, -91], + [68, 37], + [-36, 19], + [20, 51], + [68, 6], + [16, -72], + [117, -126], + [20, -155], + [99, -50], + [42, -97], + [38, -32], + [129, 120], + [45, -36], + [3, -52], + [51, -60], + [73, -19], + [69, -63] + ], + [ + [28584, 17433], + [-28, -19], + [0, -42], + [48, -65], + [3, -57], + [-37, -58], + [8, -65], + [113, -51], + [-5, -36], + [-70, -21], + [-28, 38], + [-96, 43], + [-38, -4], + [14, 56], + [-81, -23], + [-24, -72], + [-63, 2], + [-12, -46], + [116, -9], + [-4, -60], + [-27, -35], + [-52, 3], + [77, -92], + [-13, -27], + [-59, 6], + [-22, -26], + [-28, 2], + [-38, -43], + [3, -58], + [-32, 7], + [-43, -37], + [27, -14], + [-10, -50], + [23, -4], + [43, 40], + [107, -92], + [55, 35], + [48, -31], + [-8, -31], + [32, -41], + [-33, -96], + [3, -95], + [21, 9], + [7, -31], + [56, 34], + [58, -12], + [1, 19], + [104, 25], + [-63, -151], + [20, -13], + [20, 30], + [35, -25], + [14, 13], + [17, -71], + [49, 8], + [59, -63], + [-22, -41], + [88, -120], + [-5, -93], + [-24, -37], + [-23, 8], + [-11, -37], + [-4, -21], + [27, -14], + [-8, -57], + [-91, 25], + [21, 18], + [-29, 10], + [-51, -31], + [-61, -94], + [-38, 0], + [3, -59], + [40, -44], + [26, -99], + [-90, 79], + [-51, -17], + [17, -15], + [7, 19], + [7, -41], + [-20, 0], + [-42, -77], + [-23, 21], + [-23, -39], + [-31, 34], + [-54, 5], + [-24, -27], + [33, -44], + [-63, -77], + [6, -33], + [-48, -30] + ], + [ + [15813, 21274], + [118, 108], + [142, 43], + [24, -13], + [8, 26], + [45, -16], + [60, 54], + [16, 59], + [102, 96], + [37, 12], + [34, -34], + [104, 52], + [6, 71], + [-46, 22], + [15, 33], + [52, -23], + [0, -41], + [39, -16], + [22, 91], + [31, 33], + [52, -33], + [22, 10], + [-5, 26], + [21, 4], + [41, 89], + [55, 11], + [24, 66], + [110, -79], + [-17, -68], + [26, -68], + [35, 10], + [29, -19], + [-6, -46], + [59, -58], + [38, -11], + [20, 30], + [94, -36], + [43, 11], + [-10, 64], + [130, 233], + [29, 157], + [27, 36], + [34, -16], + [24, -99], + [36, -1], + [41, 72], + [16, -47], + [108, 9], + [248, -157], + [-9, 61], + [28, 34], + [64, -38], + [22, 56], + [47, -36], + [35, 7], + [33, 42], + [115, -81], + [60, -71], + [97, 75], + [11, 116], + [89, -6], + [50, 86], + [108, 69], + [43, -37], + [-21, -44], + [25, -17], + [67, 83], + [44, -23], + [55, 71], + [-14, 86], + [61, -5], + [50, 137], + [-10, 15], + [59, 37], + [63, -33], + [-49, -31], + [35, -33], + [83, -4], + [66, -58], + [-57, -31], + [-10, -96], + [-52, -73], + [21, -98], + [47, 7], + [104, -57], + [25, 41], + [60, -49], + [45, 24], + [65, -41], + [55, 75], + [64, -22], + [-3, -31], + [47, -13], + [1, -59], + [53, -23], + [9, -40], + [41, -9], + [9, 22], + [24, -3], + [27, 62], + [18, -18], + [51, 29], + [26, -111], + [63, -49], + [56, 4], + [38, 38], + [94, -70], + [135, -48], + [22, -34], + [-65, -46], + [-61, 42], + [-43, -17], + [-16, -76], + [-34, -27], + [9, -35], + [71, -17], + [10, -36], + [15, 9], + [54, -34], + [65, 80], + [26, -17], + [39, 16], + [21, -68], + [86, -17], + [22, -42], + [-101, -135], + [111, -33], + [33, 51] + ], + [ + [20573, 21304], + [3, -52], + [73, -53], + [-12, -53], + [48, -142], + [-60, 36], + [-79, -32], + [-9, -82], + [-47, -74], + [50, -5], + [-30, -66], + [45, -32], + [47, -116], + [108, -28], + [-21, -120], + [64, -6], + [10, -36], + [27, -8], + [-18, -160], + [65, -58], + [-5, -149], + [105, -126], + [-8, -79], + [114, -101], + [48, -125], + [140, -113], + [19, -87], + [-18, -91] + ], + [ + [21232, 19346], + [-84, 36], + [18, -86], + [-31, -4], + [-22, -48], + [15, -37], + [-46, 11], + [0, -95], + [-43, -13], + [-7, -54], + [45, -29], + [-27, -21], + [6, -32], + [-70, -20], + [-18, -37], + [-91, -18], + [-22, 91], + [-50, 14], + [-22, -15], + [-30, 43], + [33, 102], + [-61, 2], + [-18, 29], + [49, 105], + [-98, 98], + [13, 61], + [-22, 45], + [-45, -18], + [-2, -40], + [-62, -100], + [-67, 33], + [-47, -118], + [-36, 48], + [-47, -19], + [-17, 27], + [-15, -69], + [73, -28], + [-43, -47], + [49, -63], + [-23, -67], + [26, -24], + [-41, -45], + [-38, 57], + [-91, -113], + [31, -26], + [-23, -53], + [-66, -5], + [-63, 47], + [6, 54], + [-47, 61], + [-77, -2], + [-47, -46], + [-86, 77], + [-39, 8], + [-62, -7], + [-51, -36], + [-18, 17], + [-28, -26], + [-3, -72], + [-28, -15], + [-27, -68], + [28, -40], + [-14, -14], + [-25, 18], + [-55, -57], + [-21, 15], + [-41, -24], + [6, 56], + [-62, 9], + [-19, -14], + [-28, 17], + [-16, -24], + [-141, 11], + [-154, 71], + [-28, -130], + [-33, 14], + [-56, -110], + [-19, 3], + [-23, -33], + [-29, 31], + [-22, -6], + [-13, -66], + [48, -82], + [-16, -77] + ], + [ + [18862, 18364], + [-39, -2], + [-38, -54], + [-35, 17], + [-63, -132], + [-77, 3], + [-50, -28], + [-21, 14], + [-136, -105], + [5, -14], + [-55, -26] + ], + [ + [18353, 18037], + [-20, 85], + [-35, -6], + [-25, -33], + [-21, 9], + [20, 65], + [-31, 49], + [86, 58], + [-21, 31], + [17, 77], + [-38, 12], + [-75, 209], + [-37, 5], + [-9, 44], + [-26, -31], + [-80, -5], + [-13, 36], + [-57, 29], + [-21, 71], + [-41, -17], + [-77, 72], + [-102, -41], + [-58, -73], + [-31, 26], + [-137, 32], + [-31, 85], + [-47, 31], + [50, 33], + [-2, 24], + [-35, 20], + [-83, -43], + [-44, 102], + [-90, -44], + [-11, 36], + [-33, -4], + [-104, 64], + [24, 15], + [-5, 51], + [-41, -2], + [-54, -124], + [-31, 16], + [-83, -60], + [-78, -3], + [-13, -34], + [-87, 17], + [103, 70], + [-49, 167], + [-59, 71], + [3, 31], + [28, 22], + [-67, 39], + [-19, 83], + [-62, 5], + [-25, -32], + [-20, 11], + [5, 37], + [-40, 66], + [58, -21], + [9, 63], + [-47, -7], + [-20, 25], + [-27, 73], + [14, 59], + [-31, 49], + [-49, -3], + [-55, 58], + [-11, 28], + [34, 1], + [5, 28], + [-64, 65], + [-32, 0], + [-13, 87], + [-25, 23], + [5, 40], + [-62, 26], + [0, 41], + [-104, 42], + [-3, -16], + [-62, 11], + [1, 38], + [-33, 10], + [14, 21], + [-45, 100], + [-91, 66], + [12, 23], + [-32, 42], + [-19, 176], + [-53, 60], + [-5, 52], + [69, 32], + [23, 50], + [-87, 27], + [-31, 153], + [52, 33], + [-3, 228] + ], + [ + [14506, 17060], + [185, 149], + [30, 55], + [95, 0], + [-27, 101], + [57, 92], + [52, -5], + [17, -67], + [27, 2], + [12, 37], + [21, -22], + [20, 17], + [26, -61], + [35, 12], + [12, 33], + [81, 63], + [52, 8], + [-7, -114], + [-43, -41], + [-6, -38], + [22, -39], + [23, 36], + [15, -20], + [101, 66], + [67, -31], + [26, 36], + [23, 0], + [47, 191], + [80, 69], + [-20, 48], + [32, 16], + [49, -24], + [76, 14], + [39, -39], + [76, 15], + [12, -47], + [-60, -116], + [153, -45], + [29, -84], + [34, -26], + [-13, -99], + [97, -139], + [144, 42], + [36, -39], + [16, -111], + [45, -21], + [44, -66], + [74, 141], + [-33, 19], + [14, 134], + [90, 31], + [20, 41], + [-33, 37], + [50, 65], + [116, 23], + [12, 41], + [57, 22], + [66, -23], + [74, 84], + [37, -2], + [34, 39], + [54, -38], + [30, 74], + [44, -19] + ], + [ + [17044, 17537], + [195, -150], + [-33, -86], + [26, -24], + [-23, -53], + [-72, 37], + [-43, -41], + [-46, -92], + [94, -68], + [60, 112], + [62, 4], + [20, -17], + [23, -99], + [41, -62], + [-7, -24], + [97, -34], + [-71, -80], + [4, -59], + [41, 10], + [66, -29], + [224, -139], + [-23, -42], + [15, -36], + [107, -90], + [51, -130], + [75, -37], + [-18, -70], + [89, -15], + [-25, -52], + [-92, -55], + [-94, 12], + [-64, 39], + [-21, -13], + [-12, -31], + [55, -46], + [-11, -35], + [20, -13], + [-22, -70], + [28, -33], + [-14, -20], + [52, -38], + [9, -35], + [-23, -55], + [-79, -50], + [91, -27], + [4, -82], + [70, -61], + [45, 49], + [37, 8], + [-10, 56], + [51, 67], + [22, -35], + [59, -26], + [-18, -60], + [24, -18], + [29, 32], + [31, -11], + [52, -83], + [-6, -38], + [52, 48], + [59, 9], + [47, 51], + [77, 6], + [28, -62], + [121, -65], + [44, -68], + [-50, -54], + [23, -26], + [32, 43], + [52, -10], + [-14, -103], + [14, -36], + [58, -19], + [10, 26], + [33, -46], + [89, -11], + [3, -19], + [-22, -7], + [56, -86], + [76, -7], + [-9, -25], + [66, -13], + [2, -21], + [33, 7], + [76, -73], + [-10, -32], + [74, -29], + [23, -38] + ], + [ + [19229, 14839], + [-4, -56], + [-31, -28], + [50, -19], + [-10, -31], + [-46, 29], + [-25, -32], + [58, -55], + [-21, -89], + [-38, -28], + [1, 49], + [-48, -40], + [46, -38], + [15, -92], + [91, -81], + [-5, -65], + [36, -25], + [15, 20], + [44, -49], + [1, -27], + [-29, -19], + [25, -57], + [16, 2], + [-11, -73], + [99, -41], + [-66, -46], + [-7, -28], + [-65, 5], + [-114, -71], + [-19, -83], + [32, -25], + [-36, -114], + [-46, 17], + [-86, -40], + [-80, 8], + [-50, 63], + [35, 72], + [-11, 101], + [-55, 45], + [-5, -42], + [-42, -20], + [-77, 38], + [-57, -6], + [-27, -42], + [-2, 64], + [-22, 15], + [-110, -14], + [-12, 74], + [-18, -20], + [-47, 30], + [-48, -12], + [-11, -61], + [-48, -34], + [-8, -63], + [53, -16], + [44, -51], + [53, 1], + [50, -39], + [5, -82], + [57, -21], + [-16, -27], + [44, -34], + [-22, -70], + [-119, -112], + [-22, -64], + [-49, -49], + [15, -16], + [-25, -21], + [-55, 6], + [-31, -40], + [-24, -72], + [34, -25], + [-36, -53], + [-32, 12], + [-14, 36], + [-124, -25], + [-66, 44], + [-37, -60], + [29, 0], + [3, -28], + [33, -21], + [-40, -65], + [-55, 34], + [-97, -84], + [-26, 24], + [-129, -97], + [-60, 6], + [2, -45], + [-44, -48], + [67, -117], + [-7, -44], + [-43, 1], + [-72, 43], + [-17, -111] + ], + [ + [17583, 12475], + [-77, 128], + [-85, 70], + [-50, -31], + [-37, 16], + [-44, 61], + [5, 89], + [-41, 59], + [-56, 22], + [82, 168], + [-24, 75], + [-60, 55] + ], + [ + [17196, 13187], + [-100, 106], + [-8, 92], + [-90, 139], + [-27, 142], + [-33, 4], + [-5, 44], + [-26, 12], + [-91, 188], + [-41, 0], + [-196, 242], + [-84, 19], + [-136, 80], + [-156, 156], + [-98, 129], + [52, 88], + [-23, 99], + [-138, 110], + [-62, -14], + [-192, 139], + [34, 138], + [-92, 49], + [-31, 65], + [-13, 141], + [30, 115], + [22, 23], + [47, 1], + [29, 42], + [-10, 49], + [21, 28], + [-17, 59], + [-123, 120], + [-156, -67], + [-91, 18], + [-89, 56], + [-44, 3], + [-21, 48], + [-149, 43], + [-5, 34], + [-69, 29], + [-68, 75], + [-82, 197], + [37, 163], + [-6, 112], + [98, 68], + [-3, 114], + [-83, 44], + [-58, 72], + [-165, 78], + [-179, 181] + ], + [ + [25192, 14181], + [39, -45], + [125, -54], + [26, 64], + [75, -15], + [27, -53], + [33, 3], + [4, 35], + [87, 30], + [44, -47], + [16, 9], + [15, -31], + [-12, -46], + [50, 19], + [70, -25], + [108, 12], + [101, -38], + [13, -71], + [17, 9], + [50, -37], + [7, -180], + [96, -41], + [56, -101], + [5, 32], + [28, -1], + [57, -41], + [8, -87], + [27, -13], + [47, 11], + [43, -33], + [22, 36], + [33, -22], + [72, 58], + [59, 15], + [65, -61], + [35, 18], + [31, -31], + [49, 47], + [95, -120], + [45, 6], + [-15, -43], + [19, -19], + [56, -9], + [86, 36], + [9, -46], + [39, 6], + [84, -53], + [27, 46], + [52, -39], + [42, 79], + [33, -45], + [63, 22] + ], + [ + [24342, 12226], + [26, 93], + [61, 41], + [48, 105], + [-120, 76], + [-14, 32], + [-3, 81], + [39, 89], + [-23, 65], + [-38, 30], + [-90, 21], + [-9, 76], + [-23, 25], + [-37, -12], + [-106, 68], + [-59, 70], + [-30, 132], + [-106, -45], + [-16, 40], + [-74, -14], + [-66, 62], + [-27, -5], + [-26, 45], + [7, 47], + [-28, 32], + [-129, 82], + [-7, 59], + [-33, 24], + [-71, -24], + [-70, 173], + [-139, 81], + [-14, 21], + [16, 16], + [62, 11], + [36, -30], + [37, 3], + [101, 65], + [58, 77], + [-7, 93], + [36, 5], + [23, 35], + [-59, 123], + [-113, -27], + [-10, 92], + [18, 43], + [-107, -13], + [-34, 57], + [-120, 26], + [-21, 156], + [-97, -31], + [-31, 63], + [21, 78], + [-100, 19], + [4, 68], + [-72, 10], + [-16, 28], + [36, 98], + [-61, -18] + ], + [ + [22765, 14843], + [-37, 28], + [5, 26], + [68, 47], + [81, -14], + [70, 17], + [41, -25], + [60, 10], + [84, -70], + [47, 50], + [64, -89], + [106, -64], + [16, 63], + [54, -7], + [20, 57], + [42, 2], + [23, 28], + [112, -52], + [-10, -26], + [-39, -11], + [40, -79], + [21, 17], + [46, -10], + [33, 54], + [112, -67], + [55, 29], + [48, -10], + [61, 23], + [40, -27], + [-5, -34], + [88, -41], + [46, -55], + [-15, -30], + [24, -12], + [48, 82], + [60, -63], + [16, 26], + [33, -16], + [-16, -62], + [44, -31], + [74, 61], + [96, -28], + [69, 28], + [62, -41], + [15, -60], + [51, -1], + [18, 58], + [45, -48], + [-14, -31], + [-28, 0], + [-2, -37], + [58, -23], + [32, 33], + [47, -25], + [-29, -32], + [2, -36], + [104, -28], + [17, -45], + [67, -16], + [-15, -47], + [172, -8] + ], + [ + [24483, 19739], + [44, 82], + [-74, 30], + [24, 53], + [-103, 75], + [35, 259], + [-47, 30], + [-5, 77], + [27, 34], + [-50, 58], + [-3, 25], + [28, 19], + [-43, 23], + [75, 70], + [-37, 29], + [-31, -73], + [-48, 25], + [23, 64], + [-73, 96], + [111, 187], + [57, 15], + [17, 42], + [30, -16], + [55, 20], + [44, 61], + [-5, 68], + [63, 85], + [-25, 36], + [59, 69], + [29, -12], + [69, 77], + [6, 57], + [32, 34], + [12, 121], + [-48, 23], + [68, 57], + [39, 137], + [21, -8], + [60, 125], + [90, -10], + [-1, 28] + ], + [ + [25008, 21911], + [31, 7], + [33, -54], + [44, -11], + [75, -122], + [137, -34], + [116, -105], + [26, 19], + [-29, 65], + [35, 17], + [26, -59], + [60, -46], + [78, 35], + [12, -78], + [120, -18], + [73, -108], + [-8, -29], + [-26, -6], + [6, -111], + [213, -19], + [310, -83], + [-7, -166], + [42, 26], + [19, -11], + [37, -150], + [24, 55], + [0, 122], + [56, 125], + [95, 44], + [74, 2], + [-63, -118], + [12, -33], + [-23, -7], + [-4, -44], + [27, -39], + [92, 41], + [-34, 9], + [-16, 85], + [51, 27], + [45, -16], + [7, -65], + [204, 98], + [39, -32], + [81, 49], + [-17, 27], + [104, 89], + [-32, -115], + [58, -20], + [29, 44], + [36, 2], + [5, 140], + [40, 100], + [70, -135], + [18, -133], + [58, -82], + [-8, -136], + [55, -92], + [-38, -85], + [49, -23], + [14, -46], + [30, -16], + [32, 67], + [-4, 63], + [43, -30], + [81, -14], + [5, -25], + [26, 0], + [38, 49], + [37, -49], + [-82, -212], + [57, -144], + [-61, -51], + [-10, -61] + ], + [ + [27731, 20285], + [-31, -78], + [15, -19], + [-78, -96], + [4, -45], + [75, -20], + [-4, -22], + [72, -41], + [3, -39], + [40, -23], + [44, -113], + [-38, -43], + [-50, 6], + [-62, 53], + [-8, -43], + [-22, -22], + [-9, 36], + [-38, -57], + [-44, 57], + [-13, -22], + [-39, 53], + [-24, 0], + [-41, -47], + [-26, 28], + [-69, -55], + [-14, 14], + [34, 15], + [-7, 23], + [-43, -17], + [6, -39], + [-48, 2], + [-10, 25], + [-28, 3], + [-39, -20], + [-8, 28], + [-16, -1], + [2, -38], + [-38, -1], + [-34, 51], + [-68, 24], + [-23, -44], + [-14, 51], + [-41, -8], + [-40, 35], + [-40, -39], + [8, -57], + [-40, -51], + [-36, -7], + [-26, -65], + [-30, -6], + [-9, -72], + [-50, -35], + [-67, -10], + [-26, 25], + [-58, 7], + [-46, -44], + [-26, -101], + [14, -36], + [-73, -43], + [-7, -43], + [97, -11], + [25, 37], + [56, -24], + [16, -41], + [-92, 19], + [-53, -72], + [15, -52], + [28, -1], + [103, 60], + [4, -18], + [-118, -89], + [1, -38], + [99, -8], + [-36, -91], + [15, -26], + [73, 20], + [18, -33], + [-6, -20], + [-75, -2], + [-50, -75], + [113, -28], + [-38, -108], + [195, 24], + [3, -72], + [-40, 16], + [4, -27], + [78, -24], + [17, -78], + [-48, -13], + [-79, 21], + [-133, -42], + [-22, 68], + [-144, 77], + [-149, -119], + [-16, 6], + [-34, -54], + [42, -102], + [42, -18], + [58, 28] + ], + [ + [26416, 18349], + [-41, -181], + [-31, 8], + [-10, 52], + [-56, 34], + [-31, -15], + [-13, -69], + [4, -47], + [32, -25], + [-11, -35], + [-48, -37], + [-1, -49], + [-56, 16], + [-26, -16], + [-71, -136], + [-40, 39], + [-60, -50], + [-18, -56], + [-83, 26], + [-54, 64], + [-44, 4], + [-7, -34], + [-22, -3], + [-36, 79], + [14, 103], + [-31, 7], + [4, 31], + [-59, 16], + [-39, -37], + [-17, 67], + [-113, 35], + [1, 56], + [-33, 10], + [16, 35], + [-141, 84], + [5, 22], + [-32, -1], + [7, 29], + [-35, 49], + [40, 221], + [47, 74], + [101, 35], + [28, 38], + [50, -59], + [41, -13], + [-10, -27], + [60, -28], + [36, 83], + [-53, 39], + [-16, 31], + [13, 30], + [-29, -2], + [-16, 48], + [-62, -3], + [3, 30], + [-78, 41], + [-23, 28], + [18, 12], + [-69, 22], + [-84, 116], + [-34, -4], + [-65, 40], + [-4, 34], + [-50, 4], + [-27, 52], + [-55, 29], + [-112, 4], + [-46, 40], + [-17, 24], + [17, 61], + [-24, 57], + [-97, 93], + [-25, -14], + [-28, 32], + [53, 79], + [-23, 15], + [0, 49], + [-54, 18], + [-30, -68], + [-72, 34], + [-14, -29], + [-46, 26], + [-1, 23] + ], + [ + [20899, 14934], + [66, 52], + [60, 139], + [52, 63], + [39, -17], + [21, -61], + [67, -20], + [44, -48], + [12, 18], + [66, -35], + [120, 80], + [118, -105], + [30, -72], + [27, 1], + [15, 36], + [97, -2], + [-3, -53], + [-32, -48], + [14, -17], + [82, 24], + [73, -39], + [27, 16], + [-58, 88], + [39, 39], + [48, 117], + [-46, 21], + [5, 17], + [43, 68], + [45, -13], + [21, 24], + [-8, 51], + [43, 61], + [-89, 50], + [38, 89], + [-22, 39] + ], + [ + [21953, 15497], + [35, 26], + [3, 38], + [-34, 46], + [37, 9], + [83, -73], + [81, -14], + [69, -123], + [54, 13], + [-13, 27], + [15, 24], + [82, -3], + [44, -64], + [64, -30], + [58, -96], + [-8, -26], + [-24, -2], + [-76, 53], + [-33, -13], + [-5, -121], + [17, -15], + [60, 42], + [36, -37], + [51, 28], + [109, -4], + [-27, -258], + [-34, -16], + [-40, 29], + [-42, -81], + [153, -47], + [57, -61], + [25, 57], + [-24, 4], + [5, 32], + [34, 2] + ], + [ + [21376, 11540], + [-21, 93], + [-81, -7], + [-47, 109], + [-94, -11], + [-45, 115], + [-98, -19], + [-263, 203], + [-12, 140], + [19, 15], + [132, -20], + [-8, 84], + [42, 55], + [-8, 62], + [51, 36], + [-43, 121], + [72, 61], + [24, -4], + [22, 67], + [-15, 25], + [37, 85], + [-69, 68], + [-14, 48], + [36, 19], + [1, 49], + [41, 1], + [-30, 110], + [-30, 22], + [6, 71], + [67, -3], + [-33, 24], + [-72, -1], + [-16, 26], + [-7, 69], + [56, 55], + [7, 48], + [-30, 55], + [11, 39], + [33, 47], + [44, -24], + [37, 57], + [64, 0], + [67, 111], + [-2, 37], + [-101, 49], + [-66, -6], + [-26, 35], + [-9, 40], + [46, 2], + [64, -31], + [30, 41], + [0, 43], + [-35, 35], + [-14, 53], + [33, 64], + [-34, 88], + [74, 132], + [-55, 95], + [-100, 49], + [-5, 24], + [57, 39], + [-22, 25], + [21, 92], + [-46, 99], + [-30, 14], + [22, 56], + [-32, 101], + [-74, 53], + [-6, 64] + ], + [ + [21232, 19346], + [95, -55], + [34, -71], + [-6, -174], + [-22, -61], + [11, -271], + [62, -49], + [50, -126], + [-105, -63], + [50, -267], + [34, -54], + [110, -73], + [20, -188], + [121, -85] + ], + [ + [21686, 17809], + [150, -63], + [98, 25], + [64, -20], + [32, -54], + [-60, -38], + [-5, -34], + [60, -73], + [92, 57], + [56, -29], + [-4, -46], + [51, -29], + [-19, -45], + [218, 2], + [-14, -94], + [160, -73], + [29, -39], + [45, 7], + [11, -19], + [81, 33], + [9, 47], + [52, -35], + [36, -89], + [-52, -59], + [-19, -75], + [13, -37], + [46, -18], + [-19, -37], + [82, -110], + [65, -59], + [23, 20] + ], + [ + [22967, 16825], + [71, -73], + [130, -43], + [19, -47], + [-22, -27], + [-62, -24], + [-42, 15], + [-66, 108], + [-29, -29], + [-63, 15], + [-20, -51], + [-43, 17], + [-62, -15], + [-40, -84], + [-56, 33], + [-141, -44], + [-118, 28], + [-2, -32], + [-63, -73], + [-125, 59], + [-50, 90], + [-30, -8], + [-20, -67], + [44, -48], + [-2, -34], + [-40, 9], + [-43, 67], + [-35, -1], + [-32, -57], + [-6, -49], + [24, -26], + [-14, -49], + [-27, -10], + [-18, -65], + [-40, -13], + [3, -60], + [68, -55], + [-13, -22], + [26, -31], + [-16, -53], + [39, -19], + [34, -76], + [-20, -42], + [17, -12], + [32, 39], + [50, -64], + [-61, -10], + [41, -59], + [-16, -30], + [41, -81], + [-15, -39], + [-92, 49], + [-44, -11], + [-128, -103], + [-7, -123], + [70, 2] + ], + [ + [20899, 14934], + [-107, 49], + [-42, -65], + [-72, 27], + [-33, 97], + [-97, 63], + [-115, 26], + [-14, 38], + [-78, 22], + [-61, 49], + [-29, -25], + [-34, 6], + [-78, 51], + [-50, 0], + [12, -21], + [-18, -16], + [-24, 13], + [-39, -27] + ], + [ + [20020, 15221], + [-12, 59], + [60, 37], + [29, 58], + [-61, 35], + [20, 35], + [-34, 47], + [110, 149], + [14, 62], + [113, 116], + [14, 42], + [-24, 67], + [-47, 47], + [5, 68], + [-71, 100], + [21, 49], + [98, 76], + [-77, 52], + [-30, -13], + [-8, -56], + [-70, 50], + [-57, -73], + [-31, 6], + [9, 81], + [-18, 38], + [57, 46], + [-42, 5], + [-22, 34], + [-65, -8], + [-35, 102], + [-24, 19], + [-150, 37], + [-24, -17], + [-16, 45], + [20, 40], + [-21, 33], + [41, 69], + [-4, 72], + [-38, 24], + [42, 78], + [-19, 68], + [-38, 18], + [-43, -44], + [-32, 7], + [-44, 67], + [2, 31], + [-112, 65], + [0, 73], + [36, 46], + [45, -7], + [30, 46], + [-48, 32], + [-28, -31], + [-39, 5], + [-25, -25], + [-26, 15], + [-40, 47], + [35, 47], + [-160, 94], + [24, 103], + [-39, 29], + [40, 72], + [-122, 14], + [-22, 83], + [56, 82], + [21, -15], + [30, 48], + [102, -56], + [51, 43], + [58, -1], + [38, 32], + [18, 79], + [-66, -6], + [5, 33], + [-93, 35], + [36, 84], + [-17, 44], + [-32, 18], + [-6, 55], + [-77, 39], + [-35, -51], + [-128, 39], + [-54, -24], + [-24, 8], + [0, 40], + [-88, 51] + ], + [ + [20573, 21304], + [45, 4], + [1, 76], + [21, 15], + [-9, 57], + [-92, 154], + [112, 264], + [-15, 44], + [-44, 31], + [-34, 96], + [73, 35], + [20, 77], + [-3, 43], + [-60, 69], + [-17, 153], + [114, 91], + [14, 38], + [-35, 8], + [17, 50], + [-101, 127], + [-151, 67], + [-48, 102], + [-57, 41], + [-19, 46], + [-138, 112], + [6, 28], + [-52, 85], + [-8, 56], + [-75, 113], + [127, 206], + [12, 54], + [-75, 164], + [-137, 54], + [-79, 64], + [-12, 86], + [-65, 36], + [-70, 204], + [-33, 28], + [-83, 0], + [-109, 73], + [-21, 54], + [53, 70], + [10, 80], + [-23, 30], + [-131, 22], + [-8, 28], + [144, 305], + [2, 40], + [-44, 103], + [-82, 41] + ], + [ + [19414, 25128], + [-22, 69], + [58, 92] + ], + [ + [19450, 25289], + [33, 16], + [113, -99], + [46, -14], + [614, -134], + [103, -185], + [-9, -199], + [250, -326], + [179, -183], + [-9, -85], + [30, -43], + [-17, -35], + [-87, -3], + [-7, -22], + [49, -46], + [40, 25], + [38, -67], + [-47, -18], + [-15, -43], + [26, -19], + [72, 36], + [177, 12], + [28, 90], + [-39, 11], + [-12, 28], + [37, 65], + [250, -33], + [103, -56], + [20, -116], + [167, -125], + [-27, -201], + [353, -193], + [339, -219], + [23, -39], + [98, -46], + [269, -30], + [204, -183], + [-8, -60] + ], + [ + [22834, 22750], + [-73, 55], + [-52, -76], + [-22, 93], + [-48, 34], + [-27, -56], + [26, -29], + [-5, -63], + [-45, -21], + [3, -33], + [-37, -49], + [7, -23], + [71, -36], + [11, -57], + [-111, 4], + [-5, -68], + [30, -29], + [-40, -61], + [-18, -15], + [-200, 146], + [-61, -106], + [-35, 2], + [-43, -63], + [32, -44], + [-14, -79], + [14, -29], + [29, 15], + [42, -46], + [94, -32], + [4, -45], + [78, -54], + [-118, -194], + [78, -85], + [55, -12], + [-39, -88], + [49, -24], + [110, -6], + [10, -132], + [32, -42], + [-44, -32], + [-40, 24], + [-33, -52], + [25, -85], + [-31, -140], + [-91, -58], + [23, -49], + [70, 37], + [28, -30], + [39, -5], + [22, -64], + [-53, -140], + [15, -94] + ], + [ + [22546, 20714], + [-20, -39] + ], + [ + [22526, 20675], + [-18, 5], + [-12, -26], + [156, -95], + [113, 92], + [87, -35], + [55, 29], + [88, -82], + [-27, -90], + [36, -39], + [-5, -49], + [-77, -4], + [-72, -85], + [-178, -55], + [-69, -115], + [-100, -86], + [-5, -114], + [206, -190], + [64, -152], + [-34, -143], + [61, -59], + [15, -62] + ], + [ + [22810, 19320], + [-97, -77], + [-108, 13], + [-46, -20], + [3, -77], + [90, -24], + [42, -33], + [-9, -72], + [-24, -68], + [-91, -56], + [-16, -103], + [-56, 6], + [-26, -27], + [-22, -65], + [25, -19], + [-17, -67], + [22, -34], + [-8, -15], + [-48, 29], + [-40, -86], + [-27, 2], + [-17, -48], + [41, -10], + [-5, -36], + [-30, -32], + [10, -25], + [-57, -16], + [-1, -82], + [-117, 14], + [-75, -89], + [-18, -63], + [-95, 62], + [4, -42], + [-138, -147], + [32, -39], + [-30, -36], + [10, -27], + [-21, 35], + [-111, 12], + [-53, -149] + ], + [ + [21860, 7352], + [-4, -29], + [-70, 4], + [-35, 26], + [-28, -49], + [43, -57], + [75, -37], + [-57, -67], + [30, -20], + [-19, -39], + [-136, 60], + [-18, -97], + [-103, 33], + [-40, -31], + [116, -124], + [104, -32], + [11, -22], + [-56, -21], + [-4, -100], + [-39, -1], + [-11, -35], + [-93, 33], + [-35, 32], + [-2, 35], + [-138, 22], + [-134, 53], + [-5, 18], + [25, 9], + [155, -11], + [8, 25], + [-43, 72], + [0, 37], + [-61, 12], + [-19, -22], + [-37, -1], + [-41, 16], + [27, -50], + [-57, -18], + [-35, 66], + [-61, 27], + [-48, -6], + [25, 39], + [-30, 8], + [-62, 112], + [-70, -3], + [-42, 37], + [-75, -69], + [-5, -72], + [33, -42], + [4, -93], + [26, -29], + [-49, -10], + [-46, 137], + [6, 148], + [-106, -11], + [-72, 24], + [-12, -14], + [34, -60], + [-77, -74], + [10, -65], + [-20, -7], + [4, -53], + [-16, -40], + [-41, -13], + [-6, -32], + [74, -99], + [-35, -52], + [46, -42], + [-33, -52], + [9, -24], + [-196, -305], + [-49, 7], + [-23, -42], + [51, -58], + [7, -44], + [-67, -54], + [36, -37], + [4, -140], + [26, 9], + [-5, -33], + [-49, -33], + [-30, 12], + [-20, 35], + [20, 9], + [-13, 30], + [-59, 37], + [-18, 41], + [-28, -12], + [-36, 41], + [-20, -11], + [-21, -151], + [-26, -33], + [8, -49], + [-72, -18], + [-29, -127], + [-84, 68], + [-22, 45], + [-30, 4], + [-77, 71], + [-45, 66], + [16, 64], + [-29, 30], + [-249, 15], + [-53, -48], + [-31, 6], + [37, -70], + [-6, -27], + [-29, 19], + [-19, -17], + [-18, 44], + [-36, 6], + [-29, -49], + [-46, -15], + [-22, 8], + [18, 24], + [-79, 10], + [-62, -63], + [4, 99], + [-53, 11], + [30, 59], + [-18, 70], + [-32, 5], + [-413, -204], + [-14, 15], + [-94, -18], + [2, -38], + [-38, -19], + [-88, 24], + [33, 46], + [-65, 71], + [16, 47], + [-81, 75], + [95, 28], + [19, -23], + [40, 9], + [13, 51], + [124, 63], + [17, 88], + [-115, 157], + [41, 7], + [37, 66], + [44, 16], + [105, 97], + [-1, 35], + [-42, 7], + [-10, 37], + [59, 123], + [-51, 83], + [49, 51], + [3, 71], + [45, -33], + [31, 9], + [-2, 23], + [89, 115], + [-43, 2], + [-92, 127], + [-83, -38], + [-19, 41], + [-36, -8], + [-71, 28], + [-22, -30], + [50, -101], + [-41, -34], + [-18, -141], + [23, -107], + [-14, -43], + [-18, 11], + [-20, -26], + [-29, 83], + [10, 27], + [-71, 15], + [16, 43], + [-56, 33], + [-83, -46], + [-18, 43], + [-25, 8], + [-31, -33], + [-54, 12], + [-68, -25], + [-26, -37], + [-49, 88], + [-56, -20], + [-27, -35], + [-41, 4], + [-28, -39], + [-40, 36] + ], + [ + [17694, 7038], + [10, 85], + [33, 55], + [92, 44], + [-22, 77], + [18, 60], + [64, 15], + [82, -39], + [73, 39], + [30, 73], + [156, 44], + [-51, 56], + [-65, 29], + [-60, -12], + [-22, 28], + [-39, -2], + [-7, 77], + [20, 25], + [104, 19], + [43, 47], + [104, -98], + [44, 86], + [-67, 46], + [-50, 8], + [-51, 144], + [-52, 7], + [-87, 68], + [30, 24], + [7, 47], + [-29, 15], + [18, 33], + [48, -21], + [5, 42], + [69, -2], + [7, 28], + [26, -14], + [48, 50], + [21, -35], + [79, 77], + [33, -19], + [51, 41], + [31, 42], + [32, 47], + [27, -6], + [38, 38], + [11, 76], + [32, 27], + [-33, 17], + [52, 26], + [-14, 50], + [145, 113], + [6, 61], + [67, -21], + [7, 22], + [25, -7], + [23, 45], + [36, 18], + [-24, 51], + [62, 52], + [22, -25], + [52, 14], + [-5, -24], + [74, 27], + [22, -33], + [7, 71], + [82, 10], + [5, 54], + [59, 33], + [-6, 29], + [77, 41], + [-86, 156], + [4, 33], + [35, -2], + [32, 47] + ], + [ + [19304, 9367], + [93, -95], + [478, -117], + [262, -107], + [27, -139], + [-40, -98] + ], + [ + [20124, 8811], + [-179, -118], + [-18, -130], + [21, -49], + [115, -100], + [333, -98], + [110, -183], + [46, 2], + [92, 84], + [54, -7], + [132, 49], + [223, -56], + [84, -44], + [40, -64], + [-16, -101], + [-71, -99], + [9, -48], + [200, -37], + [135, -55], + [60, 13], + [25, 38], + [188, 14], + [199, 112] + ], + [ + [13889, 12403], + [58, 141], + [45, 250], + [62, 0], + [57, -47] + ], + [ + [14111, 12747], + [9, -119], + [-56, -255], + [16, -61], + [164, -50], + [145, 9], + [94, 33], + [41, -24], + [146, -13], + [107, -44], + [43, -38], + [8, -50], + [-25, -77], + [-101, -110], + [-13, -50], + [179, -77], + [178, -146], + [192, -79], + [64, -121], + [39, -25], + [116, 21] + ], + [ + [15457, 11471], + [147, 54], + [69, -73], + [68, -133], + [54, -38], + [73, 2], + [120, 56] + ], + [ + [15988, 11339], + [28, -164], + [-53, -25], + [-59, -126], + [-147, 15], + [-57, -35], + [51, -90], + [-60, -51], + [-44, 31], + [-84, -72], + [-43, 27], + [-95, -76], + [125, -40], + [66, -56], + [-11, -22], + [22, -40], + [100, -5], + [134, -103], + [33, -48], + [8, -59], + [86, -67], + [24, -90], + [-137, 46], + [-66, -53], + [-20, -117], + [65, -109], + [4, -56], + [-15, -46], + [-82, -65], + [-102, -30], + [5, -34], + [67, -56], + [-67, -145], + [-30, -5], + [-92, 45], + [-109, -181], + [-76, 5], + [-19, -32], + [-29, -139], + [82, -16], + [-26, -72], + [31, -23], + [-20, -86], + [-48, 6], + [73, -127], + [-48, -18], + [-42, 83], + [-22, 1], + [-46, -104], + [19, -81], + [-28, -43], + [-235, 88], + [-39, -79], + [-18, -102], + [-45, -36], + [-29, -72] + ], + [ + [14868, 8590], + [-83, -11], + [-201, 133], + [-31, -26], + [-133, 56], + [16, 34], + [-35, 23], + [81, 213], + [-12, 48], + [-32, 23], + [-46, -41], + [-135, 10], + [16, 0], + [-11, 24], + [36, 82], + [39, -8], + [4, 66], + [-85, 69], + [-66, 10], + [39, 38], + [-10, 42], + [-123, -4], + [-67, 28], + [4, 30], + [-65, 102], + [1, 75], + [-126, 42], + [-82, -101], + [-85, 5], + [-50, -64], + [-52, 51], + [-32, 102], + [-21, 0], + [16, 79], + [-207, 60], + [-72, -156], + [-35, 23], + [-33, -75], + [-63, 10], + [-41, -54], + [-232, 64], + [31, -97], + [-112, -68], + [36, -43], + [-134, -27], + [-33, 49], + [-28, -9], + [-12, -43], + [40, -46], + [-25, -58], + [26, -40], + [-45, -54], + [-68, 0], + [0, -127], + [-74, 5], + [-57, -32], + [-72, 89], + [-27, 7], + [-41, -42], + [-23, 9], + [-32, -26], + [-27, -59], + [-53, 7], + [0, 71], + [-53, -11], + [-35, 16], + [-34, -57], + [-44, 7], + [-15, 74], + [-67, -53], + [-77, 38], + [-51, -19], + [-81, 78], + [-118, 26], + [-107, -14], + [-84, 64], + [-30, -11], + [-28, 46] + ], + [ + [14868, 8590], + [80, -11], + [26, 35], + [64, -30], + [0, -27], + [-13, -33], + [-69, 27], + [-13, -14], + [1, -72], + [44, -6], + [-15, -27], + [-57, 14], + [-43, -104], + [-71, -69] + ], + [ + [14802, 8273], + [-76, 27], + [-79, -105], + [-172, 9], + [-18, 20], + [-18, -13], + [-55, -87], + [-2, -42], + [26, -27], + [-10, -80], + [-50, -11], + [-65, -54], + [-6, -31], + [45, -52], + [-28, -31], + [-71, 10], + [-29, -30], + [-47, 23], + [-81, -7], + [-31, 22], + [-43, -52], + [-15, -66], + [-44, 12], + [-27, -98], + [-26, -7], + [-2, 77], + [-44, 34], + [-26, -56], + [-45, 4], + [-75, 52], + [-65, -80], + [-65, -5], + [15, -66], + [65, -37], + [-53, -110], + [41, -53], + [-10, -61], + [35, -27], + [-19, -125], + [51, -14], + [-123, -104], + [-24, -72], + [53, -108], + [-68, -11], + [-74, 28], + [-29, 52], + [-55, 3], + [-192, 89], + [-111, 77], + [-71, -43], + [-118, -14], + [-134, 36], + [-58, -81], + [-116, 50], + [-35, -16], + [-86, 67], + [-78, -60], + [-41, -1], + [26, 137], + [-46, -51], + [-71, 44], + [-25, 91], + [-36, 24], + [-38, -8], + [-111, -166], + [-16, 9], + [-33, -61], + [-27, 1], + [-23, -65], + [27, -127], + [-102, -19], + [-17, -57], + [-41, -22], + [-131, 47], + [60, 220], + [-28, 4], + [-58, -45], + [-37, -63], + [-62, -38], + [-1, 141], + [-89, 46], + [-27, -13], + [48, -17], + [3, -62], + [-31, -44], + [-69, -27], + [-62, 59], + [14, 65], + [-41, 10], + [16, 50], + [-33, 19], + [31, 158], + [104, 66], + [-16, 67], + [68, 30], + [80, -18], + [28, 41], + [24, 61], + [-76, 14], + [-3, 21], + [68, 129], + [45, 17], + [30, 49], + [2, 46], + [46, -18], + [22, 21], + [82, -16], + [7, 26], + [-62, 9], + [-12, 56], + [-90, 22], + [-12, -14], + [21, -47], + [-129, -95], + [-138, 9], + [-2, 96], + [-18, 19], + [-49, 33], + [-21, -21], + [-13, 38], + [-93, 38], + [-7, -63], + [32, -49], + [-19, -70], + [-72, 33], + [9, 90], + [-103, 34], + [50, 92], + [-33, 38], + [8, 42], + [53, 61], + [-257, 44], + [-24, -82], + [-78, 6] + ], + [ + [15988, 11339], + [104, 53], + [188, 23], + [346, -80], + [159, -105], + [195, -29], + [39, -71], + [-84, -128], + [-48, -23], + [-198, 8], + [-86, -17], + [-25, -43], + [8, -55], + [35, -55], + [217, -175], + [43, -16], + [179, 63], + [55, -17], + [2, -147], + [-101, -118], + [61, -80], + [40, -17], + [374, -52], + [322, -143], + [296, 45], + [243, 193], + [56, 15], + [51, -41], + [42, -220], + [103, -10], + [262, 82], + [45, -16], + [29, -29], + [12, -61], + [-35, -205], + [31, -115], + [31, -35], + [59, -10], + [54, 22], + [158, 77], + [58, 51], + [53, -21], + [18, -130], + [-31, -91], + [-105, -59], + [-51, -56], + [112, -134] + ], + [ + [17694, 7038], + [19, -147], + [67, -58], + [-17, -40], + [-34, -9], + [7, -22], + [73, -34], + [23, -56], + [-45, -35], + [-132, -39], + [-24, -2], + [-8, 74], + [30, 32], + [6, 49], + [-53, 27], + [-21, -47], + [-38, -22], + [-29, 73], + [-75, 56], + [-6, -21], + [-52, 8], + [-17, -31], + [-92, 82], + [59, 12], + [29, 76], + [59, -2], + [6, 19], + [-36, 81], + [-45, 2], + [-37, -29], + [-12, 91], + [-31, 35], + [-25, -2], + [-22, -113], + [56, -67], + [-50, -27], + [-17, -50], + [93, -206], + [-94, 77], + [-44, 13], + [-52, -17], + [-28, 35], + [-12, -92], + [-81, -41], + [-121, 80], + [-46, 106], + [-73, 22], + [-99, -18], + [15, -30], + [110, -38], + [-7, -39], + [-39, -25], + [57, -60], + [-10, -48], + [-35, -25], + [5, -50], + [228, -53], + [-23, -78], + [33, -72], + [-83, -16], + [-60, 38], + [-7, -26], + [-65, 6], + [-58, -68], + [-50, -20], + [-17, -74], + [-57, 5], + [-47, 31], + [29, 97], + [-81, 56], + [-28, 68], + [-51, -13], + [0, 37], + [102, 82], + [91, -53], + [98, -10], + [44, 43], + [-38, 31], + [-77, -14], + [-43, 74], + [-7, 65], + [-21, 23], + [-49, -44], + [-21, 56], + [18, 23], + [-23, 11], + [-79, -59], + [-72, 29], + [-23, -88], + [-54, 62], + [-49, -38], + [-25, -52], + [-66, 10], + [-8, -56], + [79, -34], + [-38, -69], + [42, -9], + [32, -85], + [-72, -22], + [-25, 95], + [-44, 4], + [-54, -54], + [-49, 25], + [-59, -100], + [-58, 2], + [-74, 70], + [-101, 32], + [-57, 47], + [54, 77], + [18, 89], + [54, -17], + [54, -53], + [99, 44], + [17, 35], + [24, -25], + [64, 9], + [5, 39], + [-43, 32], + [23, 123], + [92, 59], + [40, 63], + [-15, 32], + [-89, 50], + [18, 83], + [175, 100], + [141, 14], + [40, 50], + [-108, 260], + [-13, 123], + [-40, 16], + [-63, -46], + [-100, 76], + [-82, 153], + [-142, 19], + [-40, 38], + [39, 253], + [-45, 134], + [52, 78], + [-20, 109], + [-174, 185], + [-88, 21], + [-52, -133], + [-92, 32], + [-75, -38], + [-44, 16], + [-42, 53], + [-24, -55], + [-5, -127], + [-142, -34], + [0, -63], + [-108, -59], + [-68, -96], + [-20, 24], + [-60, 8], + [-45, 61] + ], + [ + [293, 30305], + [152, -43], + [8, -53], + [65, -27], + [187, 39], + [67, -18], + [51, -63], + [85, 3], + [82, -63], + [46, 37], + [233, -125], + [54, 8], + [59, -25], + [43, 59], + [38, 10] + ], + [ + [1463, 30044], + [99, -24], + [47, -54], + [113, -58], + [61, 19], + [-3, -23], + [67, -80], + [152, -92] + ], + [ + [1999, 29732], + [27, -21], + [-24, -33], + [-95, 42], + [-61, -23], + [-9, -54], + [65, -38], + [-55, -70], + [27, -12], + [-22, -34], + [17, -34], + [-82, -26], + [5, -56], + [-30, -17], + [-57, 16], + [5, -97], + [-51, -54], + [19, -43], + [-38, -11], + [-1, -42], + [164, -37], + [2, -33], + [-56, -22], + [28, -83], + [-50, -132], + [78, -35], + [-34, -31], + [36, -56], + [-15, -88], + [65, -25], + [-20, -68], + [8, -38], + [33, -22], + [-67, -92], + [37, -27], + [-33, -32], + [17, -46], + [-34, -32] + ], + [ + [1798, 28226], + [-86, 4], + [9, -38], + [-117, -219], + [-78, -15], + [24, -60], + [-31, -95], + [61, -44], + [-7, -25], + [-109, -49], + [75, -80], + [-53, -59], + [40, -31], + [14, -84], + [-52, -32], + [-159, 52], + [-26, 28], + [6, 34], + [-57, 48], + [-23, -56], + [-94, 35], + [-22, -38], + [-74, -25], + [-40, 58], + [16, 43], + [-36, 23], + [3, 81], + [-53, 35], + [-117, 4], + [-46, -66], + [-121, 8] + ], + [ + [645, 27663], + [-36, 97], + [4, 50], + [-45, 61], + [-83, 26], + [-11, 82], + [82, 42], + [64, -48], + [46, 10], + [22, 208], + [-96, 80], + [-55, 1], + [-28, 26], + [-18, 112], + [35, 72], + [10, 99], + [-57, 98], + [-5, 123], + [-27, 22], + [-71, 3], + [-14, 28], + [25, 52], + [-40, 183], + [-79, 2], + [-67, 88], + [25, 66], + [52, 50], + [-13, 103], + [-52, 37], + [57, 213], + [-34, 69], + [8, 61], + [-52, 65], + [6, 45], + [79, 50], + [5, 98], + [-54, 102], + [65, 166] + ], + [ + [13780, 16455], + [-20, 175], + [72, -10], + [101, 51], + [71, -57], + [95, 78], + [-114, 99], + [44, 36], + [5, 58], + [-35, 31], + [49, 121], + [-51, 18], + [20, 119], + [65, 46], + [30, -45], + [41, 0], + [36, -45], + [-15, -19], + [35, -21], + [20, 36], + [-45, 68], + [71, 80], + [65, -57], + [47, 11] + ], + [ + [14367, 17228], + [139, -168] + ], + [ + [17196, 13187], + [-229, -42], + [-25, -27], + [-20, -122], + [-28, 18], + [-11, -34], + [-44, -11], + [-10, -25], + [-114, 45], + [-91, -122], + [-27, 49], + [-78, -19], + [-30, 15], + [-26, -80], + [-49, -1], + [-13, -30], + [16, -23], + [-21, -26], + [-122, 50], + [-90, -106], + [-124, -31], + [-40, -78], + [-48, 26], + [-85, -73], + [-40, -81], + [12, -37], + [-35, -55], + [0, -68], + [-54, -65], + [-56, 33], + [-35, -62], + [-75, 7], + [-66, -63], + [15, -22], + [-20, -30], + [10, -34], + [-26, -25], + [25, -25], + [-49, -58], + [2, -122], + [-142, -85], + [-17, -48], + [49, -13], + [32, -43], + [-8, -46], + [48, -127] + ], + [ + [14111, 12747], + [44, 29], + [40, -19], + [101, 87], + [54, -5], + [60, 71], + [-32, 43], + [-61, 28], + [27, 83], + [-3, 39], + [-21, 7], + [40, 103], + [-55, 41], + [48, 105], + [41, 32], + [58, -17], + [69, 78], + [74, -50], + [119, 76], + [63, 5], + [119, -124], + [103, 104], + [-56, 81], + [-3, 68], + [20, 31], + [142, -55], + [14, 18], + [-14, 86], + [33, -9], + [39, 32], + [-27, 36], + [44, 21], + [-30, 42], + [43, -2], + [2, 23], + [-29, 24], + [-51, -19], + [-8, 31], + [-60, -9], + [-12, -23], + [-32, 10], + [36, 33], + [-48, 29], + [24, 33], + [-56, -7], + [24, 65], + [29, 14], + [-50, 77], + [30, 3], + [5, 74], + [-35, -6], + [-21, 20], + [-2, 88], + [-23, 21], + [6, 122], + [-56, 79], + [54, 13], + [0, 65], + [72, -58], + [34, 2], + [-15, 49], + [-15, -6], + [-32, 52], + [138, 84], + [30, 68], + [-58, 34], + [71, 45], + [-33, 28], + [-61, 0], + [-22, 26], + [-37, -10], + [9, 58], + [62, 40], + [-32, 17], + [-70, -47], + [-37, 9], + [-21, 67], + [28, 51], + [-58, 17], + [-47, 58], + [-85, 0], + [14, 59], + [-26, 33], + [-34, -41], + [-74, -15], + [-85, 101], + [-153, 6], + [-31, 178], + [-61, 36], + [-23, 57], + [-79, 41], + [8, 23], + [76, 17], + [23, 35], + [7, 142], + [-130, 55], + [20, 30], + [-28, 55], + [-34, 4], + [-31, 37], + [1, 37], + [-48, 51], + [-5, 48], + [-45, 27], + [-10, 29], + [31, 46], + [-41, 82], + [-214, 126] + ], + [ + [29367, 14175], + [-208, 272], + [2, 66], + [-24, 26], + [-94, 49], + [-228, 51], + [-87, 91], + [-201, 27], + [-203, 196], + [8, 45], + [-42, 111] + ], + [ + [28584, 17433], + [36, 37], + [-3, 99], + [26, 8], + [-11, 85], + [59, -44], + [22, 57], + [49, -18], + [58, 20], + [7, 26], + [24, -21], + [10, 30], + [41, -4], + [-6, 60], + [38, -44], + [66, -9], + [50, -63], + [36, 30], + [9, 57], + [31, 4], + [-4, -40], + [24, -7], + [34, 25], + [-13, 134], + [-76, 7], + [-8, 20], + [41, 21], + [45, -19], + [17, 60], + [101, -2], + [-33, 35], + [17, 27], + [59, 26], + [78, -40], + [186, 48], + [54, -71] + ], + [ + [2934, 27218], + [-36, -80], + [5, -71], + [39, -45], + [-8, -67], + [-81, -146], + [-31, 102], + [-31, 31], + [-109, 66], + [-113, 20], + [-82, -46], + [-35, -46], + [-19, 31], + [-84, -10], + [-37, -65], + [-76, -28], + [-7, -107], + [75, -32], + [14, -37], + [-21, -32] + ], + [ + [2297, 26656], + [1, 21], + [-73, 29], + [14, -67], + [-32, -38], + [-85, 70], + [-30, 10], + [-35, -32], + [-58, 33], + [-118, -120], + [-86, 59], + [-86, -84], + [-30, 0], + [-169, 63], + [-24, 44], + [54, 222], + [-45, 20], + [-88, -28], + [-41, 40], + [-54, -53], + [-116, -1] + ], + [ + [1196, 26844], + [-58, 107], + [17, 93], + [-100, 0], + [-52, -49], + [-33, 12], + [-19, 44], + [20, 44], + [-72, 77], + [-70, -10], + [-24, 21], + [-2, 101], + [-37, -6], + [-65, 32], + [2, 57], + [-69, 37], + [60, 34], + [-93, 8], + [-60, 44], + [-16, 24], + [10, 84], + [84, -21], + [26, 86] + ], + [ + [1798, 28226], + [9, -79], + [-18, -24], + [177, -62], + [41, 32], + [151, -75], + [56, 11], + [37, 38], + [60, -43], + [55, -7], + [40, 31], + [46, -99], + [248, 35], + [49, -30], + [4, -42], + [53, 1], + [34, 40], + [43, 6], + [36, -26], + [2, -62], + [61, -45], + [-8, -102], + [-29, -63], + [82, -69], + [-18, -97], + [13, -25], + [-88, -83], + [-25, 10], + [-25, -77], + [50, -102] + ], + [ + [20124, 8811], + [87, 12], + [60, -56], + [11, 30], + [-15, 24], + [90, 199], + [34, -11], + [33, 52], + [34, -19], + [35, 17], + [36, 73], + [-105, 54], + [59, 186], + [-28, 15], + [5, 42], + [-51, 84], + [-44, 20], + [11, 44], + [-35, 13], + [-4, 33], + [-116, 29], + [46, 222], + [-44, 33], + [48, 83], + [-10, 68], + [57, -8], + [52, 47], + [-90, 51], + [-73, -15], + [-2, 43], + [-48, 61], + [27, 94], + [61, 11], + [71, -37], + [42, 148], + [59, 111], + [75, -47], + [40, 30], + [54, 3], + [101, 78], + [26, -18], + [73, 136], + [42, -9], + [18, 19], + [20, 84] + ], + [ + [1921, 32188], + [102, -46], + [46, 27], + [66, -44], + [31, 11], + [-7, 49], + [31, 18], + [192, -51], + [12, -21], + [20, 11], + [29, -21], + [52, 21], + [95, -54], + [26, -63], + [120, -71], + [-11, -90], + [47, -66], + [76, 137], + [27, 28], + [26, -7], + [1, 55], + [52, 89], + [109, -40], + [38, 57], + [83, -72], + [189, 163], + [35, -24], + [71, 101], + [21, -8], + [75, 127] + ], + [ + [3575, 32404], + [48, -34], + [58, 25], + [45, 51], + [24, -3], + [36, 48], + [57, -8], + [27, 72], + [50, -10], + [26, 19], + [80, -30], + [41, 14], + [-21, 20], + [52, 64], + [54, 2], + [47, -51], + [-61, -90], + [26, -20], + [-12, -34], + [39, -77], + [104, 19], + [12, -31], + [-45, -34], + [-4, -55], + [102, -55], + [-24, -39], + [-11, -145], + [-28, -19], + [-90, 58], + [-66, -50], + [8, -43], + [18, -28], + [60, 9], + [4, -22], + [95, -41], + [7, 24], + [59, -4], + [38, 51], + [23, -7], + [159, -279] + ], + [ + [4612, 31671], + [-71, -4], + [-59, 25], + [-26, -24], + [33, -85], + [-46, -107], + [10, -43], + [115, -38], + [13, -92], + [73, -120], + [-91, -137], + [77, -114], + [41, 0], + [3, -55], + [-94, -78], + [23, -81], + [33, -17], + [19, -46], + [21, -24], + [78, -8], + [20, -110], + [111, -88], + [51, -202], + [70, -98], + [8, -84] + ], + [ + [5024, 30041], + [-14, 33], + [-101, -24], + [-22, -29], + [-324, 70], + [-110, -35], + [-41, 18], + [-36, -102], + [-72, 31], + [-65, -57], + [-84, 24], + [-75, -60], + [-21, -70], + [-81, 27], + [-43, -51], + [-51, 49], + [-117, 54], + [-69, -141], + [-154, -26], + [-40, 25], + [-50, -101], + [-75, 20], + [-19, -18], + [-20, 16], + [24, 66], + [-175, 120], + [-22, -20], + [-135, 55], + [-37, -18], + [-85, 33], + [11, 43], + [-96, 100], + [-39, 1], + [-34, -38], + [-40, -128], + [-42, 0], + [-46, 10], + [-36, 120], + [-53, 38], + [-59, 0], + [-58, 53], + [-19, -47], + [-84, -71], + [-2, -61], + [-154, -93], + [-28, -28], + [5, -25], + [-66, -8], + [-46, -83], + [-25, 19] + ], + [ + [1463, 30044], + [-30, 62], + [19, 53], + [-98, 24], + [-25, 36], + [8, 38], + [32, 102], + [60, 24], + [19, -14], + [55, 36], + [13, 40], + [-41, 88], + [74, 41], + [58, -59], + [-14, -47], + [54, -30], + [22, 43], + [39, 17], + [-69, 18], + [2, 90], + [52, 47], + [-79, 166], + [49, 87], + [15, 113], + [140, 149], + [-116, 76], + [10, 64], + [71, 141], + [45, 8], + [15, 55], + [-84, 46], + [55, 100], + [55, -4], + [30, 52], + [-15, 77], + [73, 10], + [21, 31], + [-67, 51], + [4, 26], + [19, -4], + [39, 44], + [-9, 24], + [36, 47], + [-48, 30], + [-12, 32], + [17, 26], + [-46, 32], + [10, 56] + ], + [ + [2915, 26166], + [135, 2], + [31, -37], + [61, 57], + [74, -4], + [27, 43], + [11, 94], + [31, -3], + [19, 36], + [61, -15], + [42, 47], + [49, 121], + [40, 39], + [168, 49], + [84, 126], + [61, -64], + [136, -60], + [35, 3], + [2, 48], + [43, 51], + [-58, 36], + [1, 41], + [76, 31], + [-18, 17], + [95, 148], + [55, 25], + [34, -17], + [63, 76], + [80, -42], + [39, -54], + [53, 17], + [60, -18], + [43, -82], + [246, -95], + [33, 51], + [44, -21], + [32, -50], + [-16, -34], + [45, -38], + [125, -39], + [40, -39], + [53, 58], + [33, -19], + [17, 14], + [108, -91], + [68, -5] + ], + [ + [5376, 26569], + [11, -75], + [73, -138], + [6, -45], + [-31, -40], + [54, -254], + [51, -49], + [47, -3], + [54, -69], + [81, -37], + [-22, -83], + [34, -114], + [44, -61], + [84, -22], + [7, -70], + [45, -69] + ], + [ + [5914, 25440], + [58, -70], + [-27, -115], + [-75, -14], + [-61, -48], + [12, -29], + [-30, -4], + [132, -303], + [-26, -57], + [54, -125], + [48, -79], + [44, -27], + [148, 3], + [51, -75], + [25, -128], + [99, -93], + [55, -88], + [-9, -86], + [19, -35], + [67, -49], + [42, -2], + [50, -51], + [116, 0], + [45, -81], + [-29, -37], + [13, -49], + [124, -145], + [3, -39] + ], + [ + [6862, 23614], + [-58, -49], + [-49, 30], + [-20, -29], + [-16, 22], + [-27, -3], + [-47, -67], + [-101, 67], + [-56, -56], + [-36, 35], + [-25, -13], + [-62, 98], + [-85, -62], + [-27, 25], + [40, 75], + [-31, 57], + [7, 49], + [-102, 86], + [-16, -22], + [-27, 25], + [-39, -30], + [-30, -69], + [-37, -4], + [-34, -43], + [-15, 13], + [-64, -52], + [-21, 23], + [-73, -37], + [-10, 29], + [-35, 12], + [-70, -61], + [-93, 28], + [-110, -107], + [-36, 42], + [-142, -146], + [-56, 0], + [-22, 28], + [-117, -114], + [-49, -2], + [-57, 44], + [37, 65], + [-2, 50], + [-75, 63], + [-30, 62], + [-65, -46], + [-43, -1], + [33, 87], + [-32, 11], + [-30, -39], + [-48, 5], + [-49, 68], + [-23, -18], + [-60, 37], + [-35, -5], + [-50, -51], + [22, -46], + [-96, -91], + [16, -54], + [-54, -36], + [-37, 32], + [-48, 20], + [-54, -8], + [-29, 26], + [-27, -26], + [-96, -1], + [3, 58], + [-54, 48], + [-45, -31], + [-58, 82], + [-22, 19], + [-33, -15], + [-94, 75], + [-47, 72], + [-47, 6], + [-33, -35], + [-41, 36], + [50, 77], + [-29, 40], + [20, 52], + [-37, 40], + [-48, -48], + [-25, 7], + [-11, -26], + [-91, -29], + [23, -80], + [-114, 4], + [-62, -66], + [-33, 27], + [-32, 100], + [-29, 6], + [-47, -45], + [0, -69], + [-66, -56] + ], + [ + [3137, 23789], + [-60, 50], + [-7, 37], + [53, 22], + [26, 54], + [-86, 55], + [65, 111], + [2, 78], + [45, 68], + [-42, 25], + [-15, 66], + [-54, 24], + [-66, -3], + [-73, 93], + [-2, 40], + [41, 152], + [65, 28], + [28, -55], + [78, -7], + [33, 91], + [-51, 109], + [26, 25], + [-10, 36], + [-30, 39], + [-38, -15], + [-16, 49], + [11, 86], + [-21, 32], + [-72, 24], + [-96, 95], + [-3, 207], + [20, -9], + [15, 20], + [-20, 29], + [-85, 23], + [88, 74], + [-27, 33], + [-45, 27], + [4, -51], + [-53, -43], + [23, -39], + [-25, -13], + [-133, 25], + [3, 37], + [73, 111], + [-15, 37], + [-70, -4], + [2, 72], + [50, 62], + [67, 17], + [56, 43], + [30, -10], + [4, 37], + [82, 44], + [3, 99], + [28, 23], + [-28, 117] + ], + [ + [3137, 23789], + [16, -17], + [-12, -49], + [-37, -28], + [19, -12], + [2, -78], + [-36, -42], + [-47, -15], + [-60, 19], + [-31, -17], + [-102, 86], + [2, 34], + [-44, 46], + [-52, 20], + [-76, -97], + [-123, 23], + [-55, 62], + [-51, -62], + [-48, -9], + [-71, -100], + [-159, 21], + [-70, -26], + [-70, 15], + [-28, -21] + ], + [ + [2004, 23542], + [-124, -5], + [40, 112], + [35, -2], + [1, -37], + [33, -25], + [7, 106], + [61, 80], + [-78, 30], + [-20, 31], + [51, 27], + [-3, 98], + [44, 29], + [66, -26], + [37, 9], + [47, 23], + [44, 64], + [-17, 63], + [-70, -21], + [-64, 36], + [-37, -15], + [-30, -50], + [-23, 3], + [-17, 137], + [47, 21], + [79, -78], + [24, 5], + [37, 63], + [-68, 98], + [137, 81], + [0, 32], + [-19, 20], + [-77, -21], + [-185, 74], + [-3, 73], + [48, 22], + [13, 35], + [-28, 51], + [19, 70], + [-83, 125], + [-64, 15], + [-1, 42], + [87, 42], + [72, 79], + [0, 31], + [-149, 189], + [48, 66], + [-31, 56], + [-66, -20], + [-12, 53], + [-98, 22], + [-43, 148], + [-99, -14], + [-62, 19], + [35, 53], + [-77, 38], + [-22, -22], + [-35, 13], + [-49, 81], + [7, 72], + [-96, 10], + [-80, 145], + [-183, 192], + [0, 112], + [72, 91], + [134, 44], + [7, 99], + [-130, 116], + [43, 198], + [41, 19], + [19, -25] + ], + [ + [2297, 26656], + [-56, -81], + [8, -22], + [58, -34], + [51, 53], + [21, -3], + [82, -53], + [46, -36], + [20, -84], + [77, -91], + [77, 27], + [44, 54], + [64, -15], + [160, -191], + [-34, -14] + ], + [ + [5024, 30041], + [-39, -239], + [80, -140], + [1, -64], + [-48, -74], + [-87, -19], + [-41, -71], + [-1, -156], + [27, -34], + [-75, -155] + ], + [ + [4841, 29089], + [-32, 17], + [-109, -78], + [62, -103], + [35, -20], + [31, -142], + [-6, -103], + [-40, -17], + [34, -98], + [-68, -99], + [2, -39], + [21, -32], + [48, -10], + [48, -86], + [-55, -118], + [88, -48], + [9, -29], + [96, -16], + [48, -59], + [-8, -63] + ], + [ + [5045, 27946], + [-115, 19], + [-14, -26], + [-104, 7], + [-87, 46], + [-72, 0], + [-34, -30], + [-20, 10], + [-49, -55], + [-15, 13], + [-54, -63], + [-4, -54], + [-46, 0], + [-43, 39], + [-54, -9], + [-61, -87], + [-49, 7], + [-22, 27], + [-72, -71], + [-26, 26], + [-10, 79], + [-48, 36], + [-118, 49], + [-39, -62], + [-63, 38], + [-45, -51], + [6, -45], + [-21, -4], + [-27, -69], + [44, -39], + [-12, -17], + [20, -20], + [-21, -151], + [-42, 44], + [-139, 11], + [-50, -56], + [-39, 4], + [-22, -34], + [-66, 13], + [-52, -66], + [22, -45], + [-26, -32], + [-59, -16], + [-48, -63], + [-69, 18], + [-65, -84], + [-36, -6], + [-78, 51], + [-18, -19], + [-49, 9] + ], + [ + [1921, 32188], + [9, 66], + [-23, 15], + [20, 40], + [-29, 16], + [-59, -9], + [-79, 91], + [-62, -39], + [-32, -108], + [-84, 67], + [-40, -39], + [-29, 23], + [-56, -56], + [-111, 44], + [-20, -16], + [-28, 12], + [-15, -38], + [-43, 30], + [-42, -48], + [-41, 47], + [-101, 42], + [-51, 70], + [-57, 15], + [-41, -55], + [-21, 1], + [-72, 57], + [-20, -13], + [-167, 132], + [-102, -88], + [-120, 20], + [-76, 40], + [-22, -25], + [-27, 4], + [-40, 35] + ], + [ + [240, 32521], + [39, -4], + [23, 24], + [7, 58], + [-108, 107], + [8, 39], + [-63, 61], + [44, 66], + [-20, 81], + [100, 27], + [37, 50], + [41, 8], + [-8, 81], + [25, 67], + [70, 65], + [-18, 63], + [13, 55], + [65, 116], + [-5, 57], + [25, 47], + [-35, 78], + [9, 27], + [248, 298], + [21, 104], + [71, 32], + [74, 87], + [33, 171], + [-34, 48], + [7, 27], + [42, 3], + [56, 63], + [154, 2], + [231, 187], + [39, 19], + [22, -22], + [84, 5], + [87, 83], + [-97, 42], + [11, 21], + [40, -6], + [57, 103], + [-27, 24], + [41, 156], + [147, -6], + [64, 100], + [42, 18], + [129, 243], + [119, 135], + [41, 154], + [211, 148], + [25, 41], + [-39, 98], + [67, 140], + [59, 68], + [-87, 60], + [7, 30], + [-59, 76], + [39, 40], + [51, 7], + [29, -27], + [113, 20], + [18, -35], + [93, 34], + [47, -35], + [14, -44], + [81, -14], + [18, -71], + [31, 21], + [21, -18], + [93, -190], + [61, -64], + [197, -69], + [386, -245], + [91, -13], + [103, -55], + [33, 31], + [42, -12], + [198, -89], + [36, -51], + [83, 27], + [-127, -166], + [-70, -26], + [-28, -152], + [-152, -187], + [-108, -205], + [-57, -51], + [-46, -5], + [-23, -75], + [-41, -23], + [-121, 55], + [-24, -84], + [-120, -182], + [-3, -30], + [83, -95], + [-29, -54], + [-27, 12], + [-63, -45], + [-20, -73], + [-78, -73], + [83, -106], + [-147, -180], + [66, -49], + [17, -74], + [-92, -58], + [-3, -43], + [-65, -43], + [22, -57], + [-27, -20], + [13, -39], + [34, -47], + [89, -18], + [13, -73], + [-19, -23], + [76, -55], + [-10, -25], + [25, -12], + [-15, -65], + [93, -100], + [-12, -48], + [27, -30], + [-24, -33], + [38, -21], + [-53, -116], + [60, -50], + [-63, -100], + [68, -49], + [42, 5], + [89, -44], + [-55, -89], + [106, -69] + ], + [ + [2047, 22654], + [-30, 252], + [41, 44], + [10, 52], + [-47, 256], + [-85, 70], + [11, 83], + [57, 131] + ], + [ + [6862, 23614], + [68, -25], + [28, -41], + [4, -97], + [28, -50], + [29, 1], + [-1, -25], + [50, -38], + [-2, -33], + [128, 61], + [-2, 28], + [122, 14] + ], + [ + [7314, 23409], + [-39, -70], + [117, -50], + [-6, -42], + [60, -85] + ], + [ + [7446, 23162], + [-68, -33], + [9, -80], + [-21, -20], + [41, -68], + [-95, -105], + [29, -24], + [-99, -93], + [37, -29], + [-118, -154], + [-58, -10], + [-26, 18], + [-22, -28], + [30, -40], + [-63, -21], + [-106, -197], + [-26, 1], + [-7, -33], + [101, -70], + [-35, -50], + [36, -18], + [20, -89], + [-39, -59], + [-42, -18], + [-130, 55] + ], + [ + [6794, 21997], + [-59, 10], + [-33, 38], + [8, 23], + [-67, 67], + [7, 25], + [-80, 6], + [-37, 38], + [-61, 7], + [-59, -84], + [0, -75], + [-74, -27], + [-26, -36], + [-48, -172], + [-33, -17], + [-2, -38], + [48, -28], + [6, -28], + [-55, -83], + [-36, 4], + [-109, -79], + [-8, -52], + [-19, -10], + [-91, 35], + [-40, -8], + [-38, -58], + [-122, -54], + [-134, -208], + [-45, 25], + [-84, 119], + [-41, 1], + [-57, 71], + [-92, 62], + [43, 31], + [-50, 75], + [44, 44], + [-4, 50], + [-41, 48], + [-37, 24], + [-66, -31], + [-77, 81], + [-17, -25], + [-32, 23], + [-34, -34], + [-72, 11], + [-41, -19], + [-19, 15], + [-24, -12], + [-34, 38], + [-20, -20], + [-46, 9], + [25, 51], + [-50, 77], + [-105, -50], + [7, -68], + [-56, -28], + [-23, 11], + [-38, -60], + [27, -45], + [98, -28], + [-64, -63], + [-88, 35], + [-42, -64], + [38, -18], + [19, -51], + [-69, -65], + [5, -25], + [-43, -49], + [148, -130], + [-41, -47], + [37, -48], + [-9, -25], + [-81, 16], + [-106, -116], + [-7, -40], + [97, -88], + [-22, -22], + [-109, -5], + [-15, -28], + [-42, 94], + [-29, 7], + [-49, -55], + [-31, 38], + [-119, -66], + [4, -27], + [-72, -40], + [-16, -40] + ], + [ + [3965, 20717], + [-49, 54], + [-32, -17], + [-47, -81], + [-21, 1], + [-29, 101], + [-69, 92], + [64, 79], + [-52, 87], + [-11, 86], + [-99, 56], + [11, 43], + [-53, 20], + [-25, -31], + [-130, 91], + [-3, 29], + [55, 83], + [-26, 43], + [26, 71], + [-29, 19], + [36, 124], + [38, 20], + [107, -13], + [16, 32], + [-105, 155], + [-16, 85], + [27, 62], + [-62, 91], + [-11, -15], + [-32, 11], + [-64, 75], + [-2, 30], + [30, 24], + [109, 52], + [-25, 25], + [-134, 6], + [-61, 61], + [-13, 80], + [16, 73], + [-319, 202], + [-175, 2], + [-132, 120], + [-48, -24], + [-41, -151], + [-120, 29], + [-44, -37], + [-100, -25], + [-55, -93], + [-141, 87], + [-78, 23] + ], + [ + [3965, 20717], + [46, -83], + [-24, -62], + [-44, -6], + [-39, -78], + [-36, -1], + [-27, -52], + [18, -45], + [107, -23], + [89, -199], + [-68, -77], + [16, -60], + [-35, -59], + [65, -50], + [72, 29], + [36, -20], + [-30, -42], + [19, -67], + [-58, -11], + [-42, 44], + [-80, -81], + [-13, -46], + [66, -84], + [-24, -87], + [22, -23], + [-6, -62], + [-53, -58], + [-18, -57], + [93, -23], + [-5, -86], + [133, -100], + [29, 5], + [105, 157], + [82, -19] + ], + [ + [2720, 18833], + [-80, 95], + [-45, -23], + [-21, 11], + [-18, 49], + [40, 55], + [-30, 13], + [4, 34], + [-27, 34], + [-58, 36], + [47, 23], + [70, 92], + [5, 96], + [-34, 29], + [-28, -45], + [-101, -10], + [-41, -52], + [-28, 43], + [-148, 47], + [-9, 69], + [-59, 2], + [-154, 169], + [-79, 21], + [-54, -35], + [-17, 32], + [-151, 47], + [-3, 94], + [-87, 74], + [27, 130], + [44, 5], + [13, 58], + [-62, 60], + [-21, -12], + [-11, 30], + [-78, 31], + [-16, 136], + [-87, 87], + [-43, -22], + [-166, 83], + [1, 70], + [29, -2], + [16, 25], + [-54, 39], + [-8, 91], + [106, 120], + [-70, 51], + [-46, -33], + [-86, 87], + [176, 246], + [-44, 69], + [11, 57], + [-24, 18], + [16, 26], + [-30, 97], + [14, 25], + [-34, 19], + [-124, 3], + [-21, 22], + [-11, 83], + [85, 55], + [-62, 106], + [20, 99], + [-46, 109], + [-101, 46], + [122, 136], + [82, 26], + [18, 85], + [48, 2], + [63, 41], + [117, -23], + [47, 37], + [48, 2], + [112, 172], + [32, 4], + [160, -89], + [86, 51], + [16, 248], + [40, 37], + [87, -42], + [42, 20] + ], + [ + [7989, 19406], + [-43, -24], + [23, -20], + [4, -117], + [-16, -25], + [36, -78], + [-16, -95], + [-65, 14], + [-60, -68], + [147, -44], + [38, -50], + [-2, -32], + [48, -18], + [115, -109], + [-47, -100], + [-73, 12], + [-48, -29], + [-11, -47], + [59, -36], + [22, -45], + [71, -11], + [126, -96], + [21, 17], + [55, -29], + [118, -87], + [6, -27], + [-9, -19], + [-75, 56], + [-60, -34], + [-13, -34], + [28, -33], + [-13, -24], + [31, -20], + [17, 26], + [24, -25], + [-60, -128], + [-109, 89], + [-35, -40], + [48, -41], + [-4, -81], + [-43, -106], + [50, -29], + [-64, -44], + [46, -48], + [40, 9], + [37, -23], + [-65, -50], + [-15, -63], + [66, 7], + [33, -26], + [7, -23], + [-58, -33], + [-4, -32], + [60, -39], + [19, -25], + [-13, -17], + [47, -36], + [40, 66], + [29, -17], + [-10, -54], + [-69, -70], + [33, -57] + ], + [ + [8433, 17244], + [-78, -30], + [-25, -42], + [-53, 26], + [-155, -203] + ], + [ + [10629, 19324], + [45, -56], + [-13, -24], + [42, -72], + [81, -4], + [16, -61], + [-17, -42], + [65, -43], + [70, 48], + [56, -56], + [-56, -178], + [106, -54], + [0, -89], + [49, -35], + [30, 7], + [10, 50], + [57, 5], + [25, -85], + [125, -56] + ], + [ + [11320, 18579], + [13, -28], + [-42, -46], + [28, -73], + [-17, -93], + [99, -69], + [0, -28], + [-68, -72], + [-49, 6], + [-10, -60], + [38, 16], + [-17, -88], + [26, -35], + [43, 16], + [76, -20], + [29, 29], + [60, -33], + [-61, -90], + [35, -49], + [-62, -56], + [-35, 11], + [-56, -21], + [-31, -73], + [29, -32], + [-13, -37], + [-91, -149], + [2, -100], + [-126, -121], + [-2, -40], + [-54, 22], + [-94, -12] + ], + [ + [10970, 17254], + [-30, 28], + [-8, 68], + [-71, 41], + [-40, -35], + [-97, 31], + [-27, 35], + [-12, -32], + [-49, -16], + [-40, 17], + [-72, -46], + [-121, -34], + [-73, 46], + [1, 98], + [-70, 61], + [-67, -16], + [-31, -37], + [-132, 19], + [-51, -37], + [-33, 35], + [-20, -37], + [-81, 35], + [-11, -32], + [25, -59], + [-69, -36], + [-39, 76], + [-64, -14], + [-60, -35], + [-8, -55], + [-74, -27], + [-49, -81], + [-56, -34], + [-62, 63], + [10, 65], + [-49, 45], + [-66, -4], + [-59, -67], + [-105, 47], + [-12, -23], + [-38, 19], + [-4, 44], + [-42, 17], + [-39, -53], + [30, -30], + [-14, -31], + [-31, -10], + [-93, 33], + [-146, -54], + [-68, 70], + [-66, -43], + [-19, -69], + [-42, -3], + [-93, 47] + ], + [ + [6794, 21997], + [-19, -50], + [53, -63], + [-22, -78], + [23, -31], + [-46, -37], + [67, -65], + [122, -59] + ], + [ + [11104, 21153], + [-211, 71], + [-31, 70], + [-56, 14], + [-10, -21], + [50, -67], + [-28, 1], + [-74, 67], + [-21, -9], + [-91, 36], + [10, 39], + [-72, 16], + [-40, 63], + [-41, -87], + [-33, 43], + [-191, 84] + ], + [ + [10265, 21473], + [72, 194], + [-43, 78], + [-83, 37], + [19, 24], + [-43, 38], + [-6, 80], + [-111, 96], + [-44, 0], + [73, 87], + [-133, 102], + [-115, -99], + [-119, 51], + [-17, 27], + [-57, -54], + [-124, 16], + [-57, 29], + [-100, -25], + [75, 103], + [-156, 102], + [-63, -50], + [-39, -99], + [-63, 32], + [-81, -44], + [-30, 25], + [-48, 1], + [11, 138], + [-160, 230], + [-95, -37], + [-38, 17], + [-71, 86], + [-124, 66], + [-34, 66], + [-52, 20], + [-20, -23], + [-67, 7], + [-94, 60], + [-45, -79], + [-58, 52], + [-22, -12], + [-35, 40], + [-59, 5], + [-29, 69], + [-55, 47], + [-8, 50], + [-215, 58], + [-33, 24], + [30, 15], + [-117, 43], + [-36, 52], + [-56, -66], + [-44, 10] + ], + [ + [7314, 23409], + [48, 142], + [-29, 38], + [-57, 20], + [81, 86], + [-30, 40], + [58, 56], + [-60, 46], + [-25, -25], + [-9, 28], + [14, 25], + [34, 4], + [48, 80], + [33, -12], + [51, 36], + [-11, 39], + [-32, -11], + [2, 23], + [-26, 3], + [-29, 62], + [44, 56], + [38, -5], + [39, 68], + [99, 78], + [-28, 25], + [20, 35], + [-13, 50], + [33, 114], + [46, 39], + [-25, 80], + [87, 150], + [-46, 54], + [51, 48], + [11, 51], + [58, -6], + [69, 70], + [38, 76], + [62, 49], + [46, -17], + [64, 53], + [36, -35], + [20, 20], + [36, -31], + [85, 108], + [-51, 48], + [18, 32], + [29, 14], + [92, -50], + [28, 19], + [5, 83], + [47, 42], + [-17, 54], + [64, 81], + [50, -32], + [125, 79], + [34, -27], + [46, 97], + [48, -7], + [36, 46], + [56, -54], + [20, -3], + [40, 51], + [36, -49], + [22, 9], + [30, -32], + [50, 33], + [32, -21] + ], + [ + [9085, 25632], + [2, -68], + [50, -101], + [-8, -45], + [46, -25], + [50, 25] + ], + [ + [9246, 29369], + [47, -29], + [-32, -34], + [-42, 19], + [-10, -23], + [37, -15], + [-22, -79], + [-115, -127], + [56, -40], + [-6, -14], + [-59, 16], + [-6, -86], + [-42, 29], + [-35, -15], + [40, -63], + [-34, -26], + [12, -26], + [-21, -21], + [37, -46], + [3, -45], + [-82, -77], + [-23, 15], + [-36, -26], + [-14, -34], + [27, -41], + [41, -10], + [46, -46], + [-52, -79], + [88, -64], + [10, -59], + [-17, -54], + [-44, 19], + [0, -153], + [-31, -38], + [7, -29], + [37, -32], + [59, 0], + [2, -89], + [-19, -18], + [16, -24], + [83, -31], + [87, -73], + [-17, -45], + [-24, -6], + [-3, -41], + [50, -51], + [37, -6], + [30, 37], + [48, -27], + [-14, -18], + [19, -33], + [-51, -26], + [27, -26], + [1, -59], + [-62, -31], + [-32, -49], + [19, -16], + [20, 20], + [9, -33], + [36, 1], + [42, -39], + [-5, -45], + [-79, -41], + [-61, -71], + [11, -24], + [-42, -35], + [13, -21], + [-24, -108], + [-91, -66], + [-94, 18], + [-114, -70], + [-101, 85], + [37, 49], + [-9, 43], + [-66, 33], + [-26, -32], + [9, -77], + [24, -20], + [-78, -126], + [43, -35], + [-39, -69], + [20, -14] + ], + [ + [8702, 26727], + [-40, -45], + [-97, 28], + [1, 37], + [-44, 48], + [-74, -38], + [-11, -27], + [22, -39], + [-79, -2], + [-25, -19], + [21, -62], + [-40, -26], + [-26, 38], + [-48, 15], + [10, 21], + [-61, 27], + [-31, -36], + [-116, 42], + [-87, -137], + [-55, -26], + [-46, 8], + [-11, 105], + [-29, 11], + [-26, -21], + [-62, 23], + [-28, 55], + [-69, 47], + [14, 28], + [-44, 2], + [99, 152], + [-17, 13], + [2, 119], + [23, 41], + [-23, 20], + [35, 102], + [51, -1], + [18, 82], + [-129, 133], + [2, 35], + [-44, 61], + [-64, 1], + [-47, 31] + ], + [ + [7527, 27573], + [15, 54], + [-41, 40], + [69, 97], + [36, -24], + [21, 23], + [-48, 75], + [2, 58], + [25, 21], + [-40, 17], + [-5, 50], + [-83, 104], + [60, 31], + [-54, 70], + [95, 42], + [24, 66], + [-64, 4], + [-62, -42], + [-30, 28], + [17, 36], + [-25, 27], + [-71, 1], + [-44, 53], + [-37, -41], + [-79, -8], + [-31, -89], + [-86, 14], + [35, 116], + [29, 25], + [-10, 31], + [-77, 13], + [-4, 56], + [36, 28], + [46, -23], + [49, 79], + [42, -52], + [69, -6], + [-5, 78], + [-90, 62], + [-2, 43], + [-78, 33], + [-13, 19], + [21, 35], + [-57, 13], + [5, 29], + [-50, 37], + [-26, 110] + ], + [ + [7011, 29006], + [69, 8], + [59, -28], + [27, 37], + [51, 5], + [9, 40], + [119, -43], + [52, 55], + [18, -16], + [60, 53], + [-43, 68], + [32, 40], + [63, 36], + [77, 7], + [73, 77], + [15, 72], + [-56, -11], + [-53, 23], + [-24, 15], + [8, 51], + [51, 42], + [56, -52], + [33, 64], + [-47, 29], + [52, 76], + [58, 8], + [21, 35], + [42, -21], + [56, 38], + [-12, 67], + [-78, -76], + [-48, 10], + [55, 71], + [-36, 43], + [61, 47], + [42, 68], + [-33, 41], + [73, 37], + [20, 40], + [44, 6], + [18, -18], + [57, 55], + [83, 1], + [23, 32], + [49, -38], + [42, 21] + ], + [ + [8249, 30121], + [103, -68], + [-12, -29], + [88, -59], + [58, -25], + [93, 53], + [54, -52], + [47, 53], + [23, -64], + [63, -31], + [-15, -16], + [46, -62], + [-35, -35], + [34, -24], + [21, 18], + [24, -15], + [-9, -45], + [35, -1], + [15, -23], + [-29, -13], + [74, -48], + [-36, -42], + [36, -29], + [0, -55], + [29, -1], + [6, -22], + [-24, -33], + [37, -49], + [-57, -61], + [28, -23], + [69, -15], + [38, 64], + [109, -52], + [37, 54], + [47, -2] + ], + [ + [9246, 29369], + [43, 73], + [39, -16], + [4, -51], + [57, -31], + [3, -39], + [24, -2], + [9, -27], + [28, 19], + [47, -25], + [33, 14], + [48, 65], + [-44, 2], + [-23, 31], + [-43, -18], + [-16, 31], + [29, 59], + [-15, 42], + [32, 7], + [17, -40], + [47, -7], + [-38, 83], + [16, 42], + [32, -2], + [69, -70], + [23, 14], + [133, -64], + [136, -103], + [48, 2], + [9, 34], + [34, -17], + [106, -78], + [-22, -147], + [-25, -18], + [-10, -53], + [12, -68], + [84, -88], + [66, -21], + [-60, -101], + [9, -56], + [75, -36], + [81, 51], + [35, -7], + [35, 41], + [86, -67], + [107, -39], + [-15, -27], + [48, -52], + [245, -151], + [24, 58], + [45, -28], + [211, -21], + [-10, 74], + [27, 29], + [21, -7], + [91, -212], + [84, 26], + [55, -70], + [-15, -65], + [59, -53], + [-28, -97] + ], + [ + [9085, 25632], + [-30, 44], + [73, 143], + [-6, 35], + [24, 0], + [28, 45], + [-73, 99], + [8, 59], + [39, -4], + [23, 82], + [-101, 95], + [1, 71], + [-81, 22], + [-8, 46], + [22, 25], + [-110, 79], + [-35, 111], + [-157, 143] + ], + [ + [7527, 27573], + [-104, 8], + [-46, -43], + [19, -89], + [-96, -31], + [-41, 20], + [-32, -35], + [-12, 21], + [-41, -12], + [-28, -30], + [-13, -76], + [-96, 41], + [-34, -42], + [-91, 83], + [-19, -35], + [-35, 0], + [21, 72], + [-44, 36], + [-64, -63], + [-51, 4], + [-69, 79], + [-47, -69], + [-69, 65], + [-54, -35], + [-17, -27], + [9, -37], + [56, -42], + [-17, -71], + [-38, -31], + [19, -19], + [-19, -58], + [36, -24], + [-22, -52], + [24, -57], + [-22, -45], + [14, -18], + [-46, -50], + [79, -45], + [-16, -36], + [23, -22], + [-18, -44], + [-25, 6], + [-76, -85], + [45, -64], + [13, -133], + [38, 13], + [66, -46], + [-39, -61], + [68, -62], + [-48, -41], + [1, -92], + [-33, -42], + [59, -71], + [-103, -125], + [65, -64], + [-34, -70], + [24, -80], + [-66, -105], + [-47, 59], + [-50, 13], + [-29, -33], + [-57, 5], + [-174, -182], + [-100, -24], + [-79, 40], + [-31, -80] + ], + [ + [5376, 26569], + [-8, 87], + [69, 164], + [-15, 59], + [-81, 81], + [-10, 75], + [-51, 15], + [-28, 51], + [45, 118], + [-52, 48], + [-32, 3], + [-124, 194], + [18, 6], + [-31, 46], + [22, 22], + [-31, 100], + [10, 62], + [-56, 86], + [24, 160] + ], + [ + [4841, 29089], + [136, -48], + [84, -6], + [62, -35], + [27, -77], + [36, 11], + [15, -29], + [46, 44], + [72, -28], + [45, -50], + [30, 36], + [122, -99], + [40, 34], + [74, -20], + [36, 26], + [22, -15], + [40, 18], + [85, -67], + [51, 73], + [31, -24], + [-26, -24], + [75, -38], + [61, 4], + [29, 46], + [84, -69], + [67, 1], + [27, 28], + [53, -5], + [27, 28], + [46, -43], + [25, 4], + [30, 45], + [38, -7], + [59, 50], + [17, -13], + [56, 33], + [27, 48], + [19, -11], + [75, 54], + [100, -36], + [19, 18], + [55, -49], + [27, 27], + [29, -11], + [72, 100], + [25, -7] + ], + [ + [4612, 31671], + [76, 31], + [-15, 110], + [15, 24], + [-42, 53], + [0, 52], + [56, 77], + [96, 28], + [50, -18], + [31, 27], + [23, 108], + [33, 44], + [63, 39], + [17, -17], + [130, 34], + [27, 35], + [-6, 106], + [51, 46], + [88, 24], + [36, -22], + [73, 17], + [31, 87], + [-17, 189], + [70, 30], + [121, -20], + [38, 17], + [37, -51], + [198, 176], + [80, 31], + [101, -65], + [50, 51], + [67, 12], + [17, 86], + [200, -90], + [160, -11], + [76, -74], + [81, -44], + [134, -28], + [140, -97], + [30, -153], + [-7, -197], + [54, -108], + [224, -273], + [209, -184], + [156, -69], + [272, -236], + [169, 1], + [287, -212], + [49, 10], + [307, -115], + [254, -63], + [74, 26], + [6, -24], + [-76, -53], + [-32, -119], + [-32, -14], + [-54, -94], + [-33, -8], + [-41, -55], + [-29, 12], + [-19, -22], + [16, -16], + [-31, -28], + [-70, -29], + [-37, 12], + [22, -57], + [-75, -29], + [-67, 55], + [-14, 67], + [-70, -156], + [-50, -24], + [45, -80], + [-44, -10], + [-13, -40], + [-38, 21], + [28, 56], + [-10, 26], + [-86, -25], + [-42, 58], + [-68, -25], + [-17, -74], + [-80, 22], + [3, -108], + [-43, 18], + [-13, -34], + [46, -2], + [156, -108], + [44, -49], + [-9, -38] + ], + [ + [11860, 13930], + [195, 214], + [38, 8], + [75, 104], + [41, 60], + [-47, 58], + [15, 36], + [27, -16], + [74, 95], + [15, -10], + [23, 22], + [6, 21], + [-29, 35], + [20, 27], + [69, 45], + [34, -5], + [11, 27], + [-55, 59], + [58, 60], + [47, -37], + [26, 11], + [-15, 45], + [23, 71], + [-17, 58], + [-35, 18], + [64, 66], + [25, 84], + [-51, 27], + [-15, 88], + [37, 84], + [77, -22], + [27, 68], + [56, -22], + [48, 115], + [121, 66], + [50, 81], + [5, 43], + [-32, 55], + [42, 71], + [-43, 92], + [-73, 70], + [-14, 59], + [-95, 59], + [2, 30], + [106, -8], + [9, 27], + [121, 23], + [37, 77], + [83, 7], + [47, 90] + ], + [ + [13093, 16266], + [65, -15], + [9, -41], + [30, -5], + [100, 64], + [56, 6], + [68, -63], + [55, -10], + [37, 14], + [109, 129], + [-27, 30], + [-38, 3], + [30, 137], + [47, -11], + [105, -82], + [41, 33] + ], + [ + [10970, 17254], + [-41, -55], + [2, -37], + [49, -11], + [62, -52], + [33, 6] + ], + [ + [11075, 17105], + [16, -31], + [-45, -148], + [35, -12], + [-40, -47], + [36, -23], + [-22, -35], + [-3, -121], + [-38, -72], + [61, -64], + [-78, -95], + [48, -57], + [-7, -52], + [-19, -37], + [-34, -4], + [-17, -64], + [5, -76], + [68, -42], + [-7, -102], + [26, -39], + [-55, -59], + [-20, -61], + [-30, -34], + [-26, 19], + [-8, -46], + [-28, -23], + [-6, -35], + [40, -52], + [-47, -50], + [64, -68], + [-38, -40], + [-8, -63], + [-57, -18], + [-78, -92], + [-106, 9], + [-21, -20], + [-3, -50], + [-177, -253], + [9, -89], + [-73, -22], + [-2, -30], + [30, -16], + [67, 20], + [45, -15], + [39, -146], + [117, 30], + [111, 70], + [67, -25], + [1, -36], + [-60, -48], + [-130, -23], + [-69, -45], + [-22, -35], + [65, -22], + [44, -64], + [-67, -90], + [-156, -72], + [-48, -60] + ], + [ + [10038, 14354], + [-174, 69], + [-13, -45], + [-48, 10], + [-87, -24], + [-34, 63], + [-49, 3], + [93, 140], + [-18, 101], + [-57, -10], + [-55, 80], + [17, 38], + [-34, -10], + [-17, 22], + [9, 57], + [-60, 33], + [7, 61], + [-51, -25], + [-16, 22], + [-28, -10], + [-15, 30], + [36, 14], + [-36, 40], + [-33, 113], + [-44, -7], + [-18, 88], + [142, 43], + [-40, 129], + [-72, 93], + [72, 130], + [-18, 54], + [-30, 17], + [-91, -4], + [-111, -100], + [-38, -19], + [-33, 14], + [21, 88], + [49, 54], + [-7, 52], + [-211, 84], + [-92, -52], + [-102, 0], + [-178, 197], + [-79, 146], + [-44, 25], + [-159, -26] + ], + [ + [12994, 19964], + [-39, -53], + [-54, -6], + [-5, -78], + [44, -26], + [-79, -100], + [-64, -20], + [-32, -35], + [18, -19], + [-31, -36], + [-5, -48], + [22, -53], + [62, -31], + [-7, -36], + [50, -8], + [-10, -39], + [21, -1], + [32, -64], + [-2, -57], + [37, -53], + [-23, -20], + [17, -38], + [-26, -48], + [48, -41], + [-13, -40], + [-22, 11], + [-40, -28], + [-40, -65], + [-42, 29], + [-30, -76], + [47, -43], + [-31, -80], + [95, -41] + ], + [ + [12892, 18721], + [-23, -34], + [12, -35], + [-27, -14], + [-51, 45], + [-42, -97], + [-44, -5], + [-12, -112], + [-35, -50], + [-112, 9], + [-6, 23], + [-67, 29], + [-8, 35], + [-86, 14], + [-41, -28], + [-23, -51], + [-99, -67], + [-119, -28], + [-84, 98], + [-33, 83], + [-36, 2], + [-33, 108], + [-51, -24], + [-2, 27], + [-40, -11], + [-39, 35], + [-68, -46], + [-41, 47], + [-43, -29], + [-56, 41], + [-43, -37], + [-33, 47], + [-19, -8], + [-29, 30], + [-14, 40], + [-55, -16], + [-10, -110], + [-24, 5], + [-2, -37], + [-34, -21] + ], + [ + [10444, 20701], + [-73, 31], + [-20, -21], + [-110, 2], + [-32, 30], + [69, 86], + [-6, 60], + [-82, 21], + [-60, 57], + [-67, 13], + [-59, 45], + [44, 42], + [-25, 70], + [15, 69], + [-73, 95], + [48, 36], + [30, 75], + [59, -15], + [81, 28], + [28, -11], + [54, 59] + ], + [ + [12892, 18721], + [70, -12], + [369, -277], + [45, 15], + [68, -28], + [35, 21], + [86, -64], + [31, 5], + [-30, -59], + [91, -29], + [122, 12], + [67, -74], + [71, 63], + [34, -24], + [93, -145], + [-6, -54], + [-39, -9], + [0, -30], + [38, 4], + [14, -22], + [-51, -37], + [17, -35], + [99, -66], + [27, -53], + [54, 16], + [53, -15], + [17, -42], + [-55, -97], + [24, -25], + [12, -75], + [-19, -43], + [72, -62], + [55, -90], + [41, -118], + [-30, -44] + ], + [ + [13093, 16266], + [-21, 44], + [15, 28], + [-32, 14], + [-49, 77], + [-67, -48], + [-61, 29], + [15, 25], + [-77, 56], + [23, 76], + [-78, 56], + [-66, 83], + [-73, 37], + [20, 101], + [-85, 45], + [-58, -9], + [-61, -49], + [-41, 42], + [-75, 3], + [-5, -33], + [-48, -25], + [-60, -99], + [-83, -24], + [-46, 59], + [-62, 30], + [-43, -22], + [-35, 47], + [-37, -25], + [-41, 34], + [-51, 7], + [-145, 136], + [-37, -23], + [-51, 151], + [-62, 0], + [7, 59], + [-37, 3], + [-73, -42], + [-70, 15], + [-3, -29], + [-39, -22], + [-167, 109], + [-30, -63], + [-29, -14] + ], + [ + [7190, 7498], + [35, 53], + [37, 12], + [1, -103], + [148, -278], + [23, -159], + [-15, -179], + [67, -44], + [56, -1], + [125, -206], + [-1, -119], + [-33, -56], + [-10, -191], + [-60, -148], + [22, 8], + [79, -63], + [-10, -38], + [63, -8], + [19, -138], + [46, -85], + [86, -24], + [80, -80], + [88, -3], + [90, -79], + [33, 17], + [88, -64], + [22, -147], + [70, -116], + [-15, -51], + [-80, -67], + [-3, -176], + [31, -29], + [-20, -49], + [8, -105], + [35, -103], + [-51, -86], + [-33, -4], + [-15, -114], + [-50, -23], + [-12, -86], + [27, -173], + [-17, -14], + [29, -102], + [131, -58], + [75, 33], + [49, 51], + [27, -14], + [100, 21], + [41, 102], + [71, -31], + [42, 55], + [9, 70], + [74, 8], + [59, -87], + [21, -92], + [65, -51], + [37, -141], + [24, 1], + [49, -80], + [56, -20], + [4, -36], + [30, -21], + [-47, -70], + [38, -87], + [-17, -21], + [13, -82], + [98, -35], + [-31, -57], + [-140, -24], + [-42, 14], + [35, 38], + [-66, 61], + [-42, -146], + [14, -87], + [64, 12], + [64, -46], + [31, -86], + [188, 28], + [38, -105], + [-47, -70], + [-69, -223], + [7, -127], + [-41, -19], + [-107, -161], + [-156, -108], + [10, -45], + [33, -23], + [-7, -82], + [-149, -97], + [14, -139], + [-14, -36], + [-92, -59], + [-96, 20], + [-109, -101], + [-10, 39], + [-32, 24], + [-19, -147], + [-38, -15], + [-74, -5], + [-32, 67], + [-14, 102], + [-63, 71], + [-13, 57], + [18, 113], + [-26, 29], + [-22, 12], + [-2, -76], + [-46, -56], + [-42, 0], + [-2, 76], + [-34, 28], + [-24, -16], + [-19, -73], + [-83, -12], + [-28, -41], + [-98, 61], + [-71, 12], + [-41, 153], + [-56, 25], + [-48, 65], + [-37, 16], + [-30, -29], + [-27, 65], + [44, 48], + [-13, 31], + [-34, 18], + [-48, -10], + [-31, 38], + [-35, 110], + [-33, 14], + [-25, 49], + [9, 41], + [-36, 14], + [-35, -20], + [-164, 86], + [-42, 0], + [-15, 78], + [-40, 33], + [-81, 14], + [-42, -50], + [-95, -146], + [19, -91], + [-168, -109], + [10, -19], + [-36, -21], + [8, -87], + [-45, -71], + [-63, 4], + [-21, -66], + [-37, -12], + [-115, 3], + [-33, 76], + [-34, 1], + [-20, 37], + [-48, 11], + [-40, 38], + [-8, 73], + [-79, 68], + [8, 48], + [58, 58], + [70, 123], + [56, 40], + [-15, 67], + [-83, 9], + [-50, 90], + [-73, 22], + [-262, 215], + [-32, 54], + [54, 101], + [-121, 53], + [-23, 31], + [7, 117], + [-97, 52], + [17, 99], + [165, 85], + [2, 83], + [15, 53], + [22, 11], + [27, 181], + [-75, 178], + [6, 44], + [64, 62], + [-52, 88], + [-41, 143], + [-153, 276], + [47, 60], + [4, 45], + [-180, 369], + [-128, 49], + [-20, 79], + [9, 81], + [195, 109], + [57, 107], + [371, 292], + [101, 141], + [73, 20], + [69, 131], + [-58, 274], + [21, 109], + [207, 76], + [110, 150], + [35, 10], + [114, -52], + [62, 9] + ], + [ + [27398, 7737], + [26, 17], + [8, 121], + [62, -13], + [18, 23], + [-11, 59], + [28, 106], + [34, 12], + [16, 56], + [-16, 32], + [-60, 10], + [-31, 118], + [6, 28], + [41, 1], + [10, 31], + [38, 19], + [10, -36], + [19, 22], + [12, 141], + [-83, 29] + ], + [ + [29381, 9390], + [34, -69], + [-64, -37], + [6, -33], + [59, -60], + [28, -96], + [98, 39], + [10, -42], + [30, -17], + [25, 32], + [-4, 35], + [-45, 6], + [-39, 36], + [-10, 43], + [29, 31], + [27, -3], + [111, -108], + [65, -9], + [103, 2], + [9, 22], + [-53, 30], + [-3, 28], + [53, 19], + [59, -13] + ], + [ + [29909, 9226], + [-69, -184], + [-112, -79], + [-79, -137], + [40, -69], + [77, -42], + [41, 8], + [152, -85], + [-28, -167], + [-69, -218], + [-59, -81], + [-88, -70], + [-194, 59], + [-194, -4], + [-192, -86], + [-51, -64], + [-5, -42], + [140, -45], + [3, -78], + [89, -8], + [4, -51], + [-124, 0], + [-12, -28], + [43, -42], + [-39, -40] + ], + [ + [30733, 10862], + [83, -20], + [9, -50], + [44, -21], + [25, 15], + [26, 72], + [-21, 16], + [26, 28], + [29, -12], + [14, 28], + [34, -7], + [17, 32], + [-36, 14], + [17, 47], + [139, 37], + [26, -45], + [26, 21], + [33, -12], + [70, 50], + [86, -58], + [21, 6], + [26, 88], + [48, 12], + [5, 30], + [58, 27], + [198, -12], + [49, 36], + [109, 24], + [74, 42], + [25, -23], + [45, 15], + [17, -41], + [80, -28], + [11, 71], + [45, 12], + [-19, 45], + [22, 1], + [-3, 36], + [83, -45], + [41, -69], + [78, -27], + [5, -23], + [64, 3], + [-5, -24], + [23, -18], + [115, 29], + [5, -34], + [-42, -27], + [60, -2] + ], + [ + [32618, 11101], + [-3, -48], + [51, -21], + [27, 70], + [25, -31], + [-22, -43], + [28, -57], + [67, -44], + [30, -53], + [76, -43], + [43, 22], + [29, -15], + [-6, -40], + [102, -91], + [-29, -27], + [10, -26], + [71, 50], + [16, 40], + [88, -43], + [35, 56], + [36, -59], + [0, -40], + [43, 4], + [36, -80], + [86, -38], + [14, 32], + [62, -15], + [-28, -30], + [7, -29], + [30, 1], + [37, 47], + [-5, 46], + [126, -64], + [-15, -29], + [32, -5], + [4, -20], + [-30, -29], + [64, -64], + [-42, -45], + [-54, 13], + [-24, -82], + [78, -35], + [-2, -97], + [42, 22], + [9, -27], + [-33, -45], + [-35, 0], + [-29, -106], + [-26, -3], + [-1, -69], + [-22, -37], + [-57, -18], + [34, -93], + [43, -12], + [34, -136], + [-17, -10], + [13, -42], + [-37, -3], + [-3, 32], + [-19, -1], + [-16, -129], + [15, -36] + ], + [ + [33606, 9426], + [-79, -69], + [-47, -104], + [-51, -37], + [-89, -10], + [4, -114], + [-68, -80], + [-31, -83], + [-111, -59], + [-53, 45], + [-41, -31], + [-14, -65], + [138, -8], + [30, -73], + [-63, -18], + [-9, 28], + [-30, -2], + [-65, -34], + [-53, 1], + [3, -27], + [60, -21], + [-32, -68], + [-83, -64], + [-98, -4], + [-17, -59], + [-62, 34], + [3, 21], + [49, 6], + [1, 22], + [-44, 18], + [-49, -24], + [-34, 56], + [-47, -72], + [-62, 0], + [-36, -65], + [-42, 57], + [-35, -58], + [-50, -26], + [51, -56], + [-33, -23], + [-56, -15], + [-64, 46], + [17, -55], + [-35, 6], + [-14, -31], + [-26, -4], + [-13, -20], + [15, -40], + [-46, -40], + [-36, 18], + [-28, -72], + [-107, 8], + [-61, -23], + [-38, -29], + [-7, -34], + [-52, -8], + [-6, -45], + [-20, 7], + [14, 26], + [-13, 12], + [-66, -17], + [-13, 17], + [-73, 6] + ], + [ + [31689, 8073], + [-50, 49], + [32, 122], + [50, -3], + [0, 38], + [-36, 16], + [-8, 46], + [-31, 8], + [-34, 89], + [32, 65], + [-163, 91], + [-290, 258], + [-168, 217], + [-78, 9], + [-69, -33], + [-178, -141], + [-84, 39], + [-73, 100], + [-379, 230], + [-148, 29], + [-39, -11], + [-66, -65] + ], + [ + [31689, 8073], + [-5, -33], + [44, 24], + [31, -31], + [-83, -27], + [-10, -30], + [-42, 27], + [-18, -11], + [20, -43], + [-51, -45], + [-40, 14], + [-9, -31], + [-45, 21], + [-4, -31], + [-25, -2], + [-24, 22], + [-91, -171], + [-26, -15], + [-65, 60], + [-82, -80], + [-30, 48], + [-3, -37], + [-27, -8], + [-13, 26], + [-47, -29], + [-14, -43], + [15, -43], + [-33, -32], + [4, -45], + [-42, -17], + [1, -43], + [-24, 1], + [-20, 36], + [-19, -12], + [6, -37], + [-85, -45], + [-44, 24], + [-19, -62], + [-2, -55], + [16, -6], + [-24, -115], + [59, -19], + [4, -128], + [19, -4], + [-23, -105], + [-65, 14], + [-17, -153], + [-26, -26], + [-26, -114], + [32, -7], + [3, -50], + [-37, 1], + [1, 29], + [-30, -4], + [14, -50], + [-41, -52], + [-5, -109], + [16, -27], + [114, -21], + [14, -77], + [-45, -86], + [-1, -93], + [86, -50], + [20, -98], + [-17, -27], + [7, -133], + [-39, -24], + [55, -67], + [-37, -13], + [16, -34], + [36, -24], + [-56, -52], + [95, -61], + [18, -68], + [29, -44], + [30, 3], + [20, -46], + [-8, -31], + [33, -80], + [-39, -47], + [27, -45], + [-40, -39], + [10, -36] + ], + [ + [32134, 13158], + [143, 27], + [13, 35], + [134, 31], + [125, 86], + [74, 0], + [64, 36], + [161, -174], + [66, -18], + [47, -112], + [1, -73], + [46, -36] + ], + [ + [33008, 12960], + [11, -34], + [-21, -31], + [-137, -91], + [59, -84], + [56, -29], + [16, -48], + [-36, -25], + [-28, -76], + [15, -43], + [-122, -50], + [-44, 13], + [22, -37], + [-10, -15], + [-56, 26], + [20, -49], + [-29, -15], + [-19, 30], + [-29, -3], + [-8, -37], + [-42, 2], + [2, 29], + [-61, 3], + [-9, 30], + [-45, -1], + [-61, -58], + [-19, -56], + [-53, -2], + [29, -78], + [-34, -32], + [-14, -59], + [11, -119], + [-24, -11], + [26, -65], + [105, -43], + [10, 58], + [83, -34], + [74, 0], + [50, -21], + [27, -72], + [45, 54], + [78, -1], + [17, -15], + [-7, -35], + [-57, -19], + [17, -57], + [52, 43], + [-4, 20], + [42, 19], + [37, 6], + [13, -25], + [-57, -95], + [-29, -118], + [21, -31], + [-32, -71], + [93, 1], + [-7, -69], + [-70, -103], + [-81, -16], + [-40, -26], + [-16, -47], + [-87, -11], + [11, -27], + [25, 1], + [-53, -54], + [-16, -56] + ], + [ + [33008, 12960], + [186, 3], + [86, -50], + [3, -98], + [56, -98], + [149, -141], + [145, 0], + [136, 56], + [60, -85], + [195, -14], + [185, -138], + [15, 59] + ], + [ + [34224, 12454], + [161, 2], + [74, -42], + [85, -91], + [80, -135], + [173, -154], + [-13, -206], + [30, 49], + [100, -48], + [50, 61], + [152, -72], + [38, -30], + [-1, -27], + [183, -95], + [73, -76], + [73, -8], + [207, 84], + [164, -119], + [120, -37], + [84, -186], + [-7, -35], + [160, -9], + [61, -44], + [84, 37], + [104, -93], + [114, 26], + [46, -92], + [-48, 24], + [-51, -22], + [38, -38], + [-2, -122], + [89, -17], + [11, 68], + [157, -92], + [206, -181], + [-5, -117], + [-50, 28], + [-30, -25], + [-5, -57], + [116, -105], + [23, -81], + [-115, 18], + [-53, 41], + [-197, -9], + [20, -106], + [-13, -177], + [-26, -24], + [-105, 51], + [21, 200], + [-24, -15], + [-28, -233], + [-43, -41], + [-61, 38], + [-41, -40], + [-36, 10], + [8, 80], + [-112, -20], + [-24, 25], + [-19, 98], + [-45, 1], + [3, 27], + [-112, -16], + [-15, -99], + [-104, 27], + [-27, 55], + [27, 43], + [-32, 74], + [-77, 19], + [45, 64], + [-43, 19], + [-48, -68], + [-51, 40], + [-140, 10], + [-39, -69], + [-20, -340], + [-36, -21], + [0, 29], + [-88, -3], + [-5, 30], + [-55, -13], + [65, -54], + [-27, -24], + [-87, -3], + [-263, 11], + [-85, 39], + [-34, 182], + [-121, 103], + [-98, 38], + [-20, -46], + [-99, -8], + [25, 36], + [31, -13], + [-9, 55], + [-53, -44], + [-118, -14], + [-79, -45], + [-68, -98], + [49, -244], + [-19, -87], + [-314, -121], + [-294, -248], + [-134, -71] + ], + [ + [29694, 18098], + [73, 30], + [-90, 91], + [-15, 76], + [-33, 24], + [-3, 54], + [93, 1], + [25, 44], + [55, -14], + [-1, -107], + [18, -18], + [48, 36], + [-25, 19], + [51, 11], + [9, 27], + [6, 104], + [-36, 72], + [32, 12], + [-23, 61], + [-30, -2], + [-1, 113], + [14, 17], + [59, -14], + [44, 27], + [64, -18], + [1, 35], + [93, 73], + [-39, 102], + [22, 28], + [78, 7], + [30, 59], + [52, 20], + [0, 81], + [88, 65], + [4, 86], + [116, 51] + ], + [ + [30473, 19351], + [116, -11], + [12, 24], + [97, -22], + [106, 61], + [-6, 37], + [76, 45], + [-13, 53], + [68, 20], + [1, 100], + [84, 59], + [18, 62], + [-8, 37], + [-43, 21], + [-55, 76], + [4, 37], + [68, 38], + [14, 41], + [-33, 69], + [-33, 13], + [16, 34], + [1092, -46], + [1063, -556], + [163, -127], + [-15, -70], + [-119, -68], + [43, -39], + [34, 13], + [39, -55], + [52, -3], + [163, 108], + [62, 0], + [44, -29], + [41, -73], + [1, -48], + [-65, -87], + [-69, -47] + ], + [ + [34222, 14969], + [3, -31], + [-40, -46], + [-113, -23], + [-79, -57], + [-80, 61], + [-79, 2], + [-39, -147], + [-82, 9], + [-58, 91], + [-108, -45], + [-49, 11], + [-10, -36], + [43, -56], + [-26, -151], + [14, 0], + [-8, -144], + [174, -62], + [222, -35], + [27, 74], + [53, -9], + [45, 20], + [32, -35], + [-4, -58], + [60, -64], + [-5, -44], + [143, -60], + [26, -70], + [54, -32], + [24, -4], + [23, 28], + [166, -10], + [64, -19], + [10, -21], + [187, -28], + [6, -16], + [-22, -195], + [64, -110], + [-53, -129], + [11, -148], + [-75, -50], + [3, -70], + [-55, 75], + [-152, 2], + [-13, -100], + [-51, 6], + [-5, -25], + [-74, -17], + [-22, -84], + [-130, 27], + [-161, 90], + [-42, -6], + [-32, -36], + [15, -49], + [78, -34], + [-26, -73], + [13, -34], + [-58, -12], + [-43, -48], + [10, -72], + [112, -73], + [8, -56], + [-34, -49], + [117, -87], + [-12, -91], + [35, -60] + ], + [ + [19229, 14839], + [60, 3], + [77, -39], + [-8, -27], + [40, -52], + [34, -15], + [43, 16], + [55, 86], + [47, 19], + [15, 64], + [65, 28], + [35, 116], + [27, 12], + [75, -45], + [24, 12], + [79, 163], + [98, -6], + [25, 47] + ], + [ + [20866, 10840], + [-232, 207], + [-67, 17], + [-37, -24], + [-156, 52], + [-104, 66], + [-17, 36], + [12, 367], + [-176, 71], + [-85, 63], + [-216, 30], + [-275, 175], + [-53, 166], + [-178, 239], + [-63, 32], + [-187, -116], + [-170, -41], + [-97, 27], + [-171, -3], + [-97, -79], + [-65, -98], + [-53, -26], + [-101, 48], + [-48, 128], + [-1, 79], + [-50, 17], + [-57, -56], + [-108, 94], + [-82, -10], + [-119, 18], + [-230, 156] + ], + [ + [14580, 21780], + [102, 24], + [40, 44], + [34, 2], + [94, -54], + [18, 22], + [91, 3], + [-13, -153], + [34, 12], + [84, 103], + [1, -24], + [55, -31], + [72, 26], + [42, -30], + [42, 84], + [81, -23], + [6, -21], + [44, 6], + [-18, -34], + [35, -11], + [52, 21], + [15, -73], + [39, 33], + [-1, -36], + [34, -50], + [35, -1], + [32, -71], + [33, 8], + [19, -31], + [-26, -63], + [78, -52], + [21, -120], + [58, -16] + ], + [ + [18353, 18037], + [-52, -12], + [-57, 16], + [-61, 57], + [-23, -6], + [-37, -66], + [-46, 29], + [-24, -74], + [-22, 44], + [-105, 24], + [-135, -120], + [-6, -64], + [-41, 8], + [-4, -38], + [-116, 15], + [-43, 46], + [-116, 18], + [-15, -21], + [65, -40], + [-4, -25], + [-155, -34], + [-42, -95], + [-34, -9], + [-44, 34], + [-27, -37], + [-57, 1], + [-31, -39], + [50, -12], + [-127, -100] + ], + [ + [27731, 20285], + [330, -35], + [151, 32], + [164, -21], + [311, 15], + [49, -54], + [29, -88], + [47, -44], + [394, -106], + [625, 48], + [128, -19], + [113, -171], + [300, -223], + [-31, -95], + [37, -77], + [95, -96] + ], + [ + [26888, 17904], + [-49, 103], + [6, 41], + [-76, 78], + [-48, -10], + [-69, 36], + [0, 24], + [-47, 28], + [-39, 59], + [-26, 109], + [-19, -18], + [-28, 50], + [-42, -19] + ], + [ + [26451, 18385], + [-35, -36] + ], + [ + [22967, 16825], + [39, 30], + [16, -29], + [54, 6], + [50, -69], + [117, -45], + [34, -35], + [-19, -25], + [30, -14], + [-17, -42], + [16, -14], + [199, -15], + [91, -49], + [81, -98], + [54, -111], + [294, -58], + [123, 27], + [43, 55], + [118, 73], + [124, -18], + [144, 35], + [80, 74], + [107, -9], + [67, 65], + [62, -21], + [29, 15], + [45, -31], + [49, 21], + [2, 22], + [61, 4], + [59, -35], + [14, -58], + [82, -69], + [28, 24] + ], + [ + [26479, 15637], + [-59, -217], + [15, -59], + [29, -11], + [-6, -45], + [-57, -48], + [-56, 18], + [-12, -62], + [73, -61], + [-44, -39], + [7, -37], + [-28, 3], + [-19, -66], + [-50, 32], + [-57, -96], + [-61, 63], + [-24, -38], + [-26, 1], + [-12, -49], + [-68, 4], + [-45, 33], + [-42, -1], + [-10, 48], + [46, 13], + [-9, 70], + [-73, 33], + [-120, 0], + [-34, -114], + [-47, -48], + [-47, -121], + [-7, -62], + [31, -44], + [-82, -122], + [-66, -12], + [9, -54], + [-34, -40], + [-31, -105], + [-32, 14], + [-15, -43], + [-23, 5], + [1, -70], + [-33, -61], + [-56, 6], + [-3, -22], + [-26, 8], + [0, -27], + [-84, -33] + ], + [ + [293, 30305], + [39, 77], + [-18, 45], + [14, 99], + [-45, 23], + [-92, -1], + [-31, 58], + [19, 29], + [-20, 82], + [160, 85], + [-21, 27], + [-26, -16], + [-71, 71], + [-1, 99], + [55, 41], + [21, 50], + [-15, 49], + [-109, 61], + [-5, 82], + [54, 69], + [-22, 48], + [-63, 74], + [-65, 26], + [-51, 112], + [42, 78], + [47, -1], + [45, 33], + [-57, 188], + [-62, 18], + [-2, 70], + [39, 27], + [5, 45], + [44, 42], + [-21, 37], + [41, 39], + [26, 80], + [83, 41], + [12, 41], + [-66, 97], + [64, 91] + ], + [ + [23738, 19239], + [-6, 21] + ], + [ + [23732, 19260], + [8, 30], + [-46, 33] + ], + [ + [23694, 19323], + [-21, 10] + ], + [ + [23673, 19333], + [46, 89], + [-60, 87], + [22, 47], + [24, -2], + [40, 49], + [33, -16], + [41, 46], + [-37, 32], + [-4, 86], + [-19, 10], + [15, 49], + [35, 10], + [23, 40] + ], + [ + [23832, 19860], + [-10, 31], + [18, 15] + ], + [ + [23840, 19906], + [21, -17], + [78, 4], + [29, 40], + [20, -21] + ], + [ + [23988, 19912], + [32, -13] + ], + [ + [24020, 19899], + [81, -68], + [24, -69], + [171, 51], + [49, -32], + [59, 22], + [26, -49], + [17, 11], + [36, -26] + ], + [ + [26416, 18349], + [35, 36] + ], + [ + [22810, 19320], + [56, -23], + [76, -89], + [31, 7], + [53, -31], + [-3, -64] + ], + [ + [23023, 19120], + [20, -22] + ], + [ + [23043, 19098], + [23, 28], + [37, -11], + [30, -70], + [-10, -25], + [49, -31] + ], + [ + [23172, 18989], + [32, -26] + ], + [ + [23204, 18963], + [24, 35], + [27, -11], + [23, 43], + [24, -6], + [27, 75], + [-15, 17], + [85, 187], + [33, -18], + [72, 41], + [1, -26], + [44, 18], + [53, -75], + [45, 26], + [63, -46], + [28, 16] + ], + [ + [15890, 26779], + [136, -90], + [38, -82], + [44, -9], + [5, -22], + [82, 5], + [130, 46], + [87, -9], + [54, -47], + [57, -10], + [36, -39], + [33, -95], + [11, -110], + [44, 26], + [143, -117], + [52, -83], + [54, 112], + [-45, 26], + [-89, 490], + [14, 34], + [165, 110], + [138, -9], + [113, -49], + [-53, -108], + [87, -23], + [-35, -51], + [78, 27], + [24, -75], + [108, -5], + [44, 32], + [45, -51], + [81, 45], + [15, -80], + [43, -38], + [-11, -96], + [90, -1], + [-25, -90], + [118, -107], + [47, 38], + [71, -54], + [-1, 52], + [146, -50], + [6, -90], + [98, -36], + [-26, -79], + [22, -28], + [132, -20], + [71, -49], + [73, -91], + [54, 10], + [50, -45], + [-22, 84], + [68, 35], + [102, -20], + [62, -52], + [-34, -70], + [5, -44], + [14, -63], + [48, -48], + [-6, 59], + [26, -22], + [-10, -23], + [64, -14], + [9, 31], + [50, 31], + [14, -14], + [-65, -42], + [94, -18], + [2, -45], + [60, 12], + [13, 41], + [67, -11], + [-76, -57], + [18, -11], + [-17, -28], + [68, -21], + [-5, 49], + [56, -6], + [45, 60], + [94, -11], + [-20, -76], + [33, -34], + [49, 41], + [25, -58], + [-88, -71], + [87, -89], + [6, 78], + [56, -17], + [14, -61] + ], + [ + [19450, 25289], + [-36, -161] + ], + [ + [22834, 22750], + [85, -9], + [236, -214], + [83, -5], + [61, -31], + [253, -228], + [72, -19], + [128, 35], + [-2, 86], + [209, 300], + [504, -31], + [103, -165], + [110, -86], + [37, -70], + [139, -43], + [20, 48], + [258, -126], + [-11, -135], + [-111, -146] + ], + [ + [24020, 19899], + [-32, 13] + ], + [ + [23840, 19906], + [-19, -15], + [11, -31] + ], + [ + [23673, 19333], + [21, -10] + ], + [ + [23732, 19260], + [6, -21] + ], + [ + [23204, 18963], + [-32, 26] + ], + [ + [23043, 19098], + [-20, 22] + ], + [ + [22526, 20675], + [20, 39] + ] + ], + "transform": { + "scale": [0.0002034847037876332, 0.0001791418354204916], + "translate": [77.093995, 23.868536] + }, + "objects": { + "uttarpradesh_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3, 4, 5]], + "type": "Polygon", + "properties": { + "unique_id": "15", + "district": "Agra", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "15", + "censuscode": "146" + } + }, + { + "arcs": [[6, 7, 8, 9, 10]], + "type": "Polygon", + "properties": { + "unique_id": "20", + "district": "Bareilly", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "19", + "censuscode": "150" + } + }, + { + "arcs": [[11, 12, 13, -3, 14, 15]], + "type": "Polygon", + "properties": { + "unique_id": "17", + "district": "Etah", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "70", + "censuscode": "201" + } + }, + { + "arcs": [[16, 17, 18, 19, -10, 20]], + "type": "Polygon", + "properties": { + "unique_id": "22", + "district": "Shahjahanpur", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "21", + "censuscode": "152" + } + }, + { + "arcs": [[21, 22, -21, -9]], + "type": "Polygon", + "properties": { + "unique_id": "21", + "district": "Pilibhit", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "20", + "censuscode": "151" + } + }, + { + "arcs": [[23, 24, 25, 26, 27, 28, 29]], + "type": "Polygon", + "properties": { + "unique_id": "45", + "district": "Allahabad", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "44", + "censuscode": "175" + } + }, + { + "arcs": [[30, 31, -26, 32, 33, 34]], + "type": "Polygon", + "properties": { + "unique_id": "43", + "district": "Pratapgarh", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "42", + "censuscode": "173" + } + }, + { + "arcs": [[35, 36, 37, 38, 39, 40]], + "type": "Polygon", + "properties": { + "unique_id": "36", + "district": "Jhansi", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "35", + "censuscode": "166" + } + }, + { + "arcs": [[41, 42, -36, 43, 44, 45]], + "type": "Polygon", + "properties": { + "unique_id": "35", + "district": "Jalaun", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "34", + "censuscode": "165" + } + }, + { + "arcs": [[46, 47, 48, 49, -27, -32, 50]], + "type": "Polygon", + "properties": { + "unique_id": "64", + "district": "Jaunpur", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "63", + "censuscode": "194" + } + }, + { + "arcs": [[51, 52, 53, 54, 55, -29]], + "type": "Polygon", + "properties": { + "unique_id": "69", + "district": "Mirzapur", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "68", + "censuscode": "199" + } + }, + { + "arcs": [[-55, 56, 57]], + "type": "Polygon", + "properties": { + "unique_id": "70", + "district": "Sonbhadra", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "69", + "censuscode": "200" + } + }, + { + "arcs": [[58, 59, 60, -47, 61, 62]], + "type": "Polygon", + "properties": { + "unique_id": "61", + "district": "Azamgarh", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "60", + "censuscode": "191" + } + }, + { + "arcs": [[63, 64, 65, -59, 66, 67, 68, 69]], + "type": "Polygon", + "properties": { + "unique_id": "58", + "district": "Gorakhpur", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "57", + "censuscode": "188" + } + }, + { + "arcs": [[70, -64, 71, 72]], + "type": "Polygon", + "properties": { + "unique_id": "59", + "district": "Kushinagar", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "58", + "censuscode": "189" + } + }, + { + "arcs": [[73, 74, 75, 76, 77]], + "type": "Polygon", + "properties": { + "unique_id": "55", + "district": "Basti", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "54", + "censuscode": "185" + } + }, + { + "arcs": [[78, 79, 80, 81, 82]], + "type": "Polygon", + "properties": { + "unique_id": "24", + "district": "Sitapur", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "23", + "censuscode": "154" + } + }, + { + "arcs": [[83, 84, 85, 86, 87]], + "type": "Polygon", + "properties": { + "unique_id": "26", + "district": "Unnao", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "25", + "censuscode": "156" + } + }, + { + "arcs": [[88, -62, -51, -31, 89, 90]], + "type": "Polygon", + "properties": { + "unique_id": "49", + "district": "Sultanpur", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "48", + "censuscode": "179" + } + }, + { + "arcs": [[91, 92, 93, 94]], + "type": "Polygon", + "properties": { + "unique_id": "52", + "district": "Balrampur", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "51", + "censuscode": "182" + } + }, + { + "arcs": [[95, 96, -90, -35, 97]], + "type": "Polygon", + "properties": { + "unique_id": "72", + "district": "Amethi", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "NA", + "censuscode": "NA" + } + }, + { + "arcs": [[-81, 98, 99, 100, -96, 101, 102]], + "type": "Polygon", + "properties": { + "unique_id": "46", + "district": "Barabanki", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "45", + "censuscode": "176" + } + }, + { + "arcs": [[103, 104, 105, 106, 107, 108, 109, -99, -80]], + "type": "Polygon", + "properties": { + "unique_id": "50", + "district": "Bahraich", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "49", + "censuscode": "180" + } + }, + { + "arcs": [[-24, 110, 111, 112, 113]], + "type": "Polygon", + "properties": { + "unique_id": "41", + "district": "Chitrakoot", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "40", + "censuscode": "171" + } + }, + { + "arcs": [[114, 115, 116, 117, 118, -37, -43]], + "type": "Polygon", + "properties": { + "unique_id": "38", + "district": "Hamirpur", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "37", + "censuscode": "168" + } + }, + { + "arcs": [[-38, -119, 119, 120]], + "type": "Polygon", + "properties": { + "unique_id": "39", + "district": "Mahoba", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "38", + "censuscode": "169" + } + }, + { + "arcs": [[121, -112, 122, -120, -118]], + "type": "Polygon", + "properties": { + "unique_id": "40", + "district": "Banda", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "39", + "censuscode": "170" + } + }, + { + "arcs": [[123, 124, 125, 126, 127]], + "type": "Polygon", + "properties": { + "unique_id": "8", + "district": "Baghpat", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "8", + "censuscode": "139" + } + }, + { + "arcs": [[128, 129, -88, 130, -116, 131]], + "type": "Polygon", + "properties": { + "unique_id": "34", + "district": "Kanpur Nagar", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "33", + "censuscode": "164" + } + }, + { + "arcs": [[-68, 132, -78, 133]], + "type": "Polygon", + "properties": { + "unique_id": "56", + "district": "Sant Kabir Nagar", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "55", + "censuscode": "186" + } + }, + { + "arcs": [[134, 135, 136, -127, 137]], + "type": "Polygon", + "properties": { + "unique_id": "9", + "district": "Ghaziabad", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "9", + "censuscode": "140" + } + }, + { + "arcs": [[-33, -25, -114, 138]], + "type": "Polygon", + "properties": { + "unique_id": "44", + "district": "Kaushambi", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "43", + "censuscode": "174" + } + }, + { + "arcs": [[139, 140, 141, 142, -125, 143]], + "type": "Polygon", + "properties": { + "unique_id": "2", + "district": "Muzaffarnagar", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "2", + "censuscode": "133" + } + }, + { + "arcs": [[144, 145, 146, 147, 148]], + "type": "Polygon", + "properties": { + "unique_id": "11", + "district": "Bulandshahr", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "11", + "censuscode": "142" + } + }, + { + "arcs": [[-149, 149, 150, -136, 151]], + "type": "Polygon", + "properties": { + "unique_id": "10", + "district": "Gautam Buddha Nagar", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "10", + "censuscode": "141" + } + }, + { + "arcs": [[-143, 152, 153, 154, -138, -126]], + "type": "Polygon", + "properties": { + "unique_id": "7", + "district": "Meerut", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "7", + "censuscode": "138" + } + }, + { + "arcs": [[-140, 155, 156]], + "type": "Polygon", + "properties": { + "unique_id": "1", + "district": "Saharanpur", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "1", + "censuscode": "132" + } + }, + { + "arcs": [[157, -150, -148, 158, 159, 160, 161, 162]], + "type": "Polygon", + "properties": { + "unique_id": "12", + "district": "Aligarh", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "12", + "censuscode": "143" + } + }, + { + "arcs": [[-163, 163, -1, 164]], + "type": "Polygon", + "properties": { + "unique_id": "14", + "district": "Mathura", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "14", + "censuscode": "145" + } + }, + { + "arcs": [[-14, 165, 166, -4]], + "type": "Polygon", + "properties": { + "unique_id": "16", + "district": "Firozabad", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "16", + "censuscode": "147" + } + }, + { + "arcs": [[-13, 167, 168, 169, -166]], + "type": "Polygon", + "properties": { + "unique_id": "18", + "district": "Mainpuri", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "17", + "censuscode": "148" + } + }, + { + "arcs": [[170, -15, -2, -164, -162]], + "type": "Polygon", + "properties": { + "unique_id": "13", + "district": "Mahamaya Nagar", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "13", + "censuscode": "144" + } + }, + { + "arcs": [[-20, 171, 172, -160, 173, 174, -11]], + "type": "Polygon", + "properties": { + "unique_id": "19", + "district": "Budaun", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "18", + "censuscode": "149" + } + }, + { + "arcs": [[175, 176, 177, 178, 179]], + "type": "Polygon", + "properties": { + "unique_id": "4", + "district": "Moradabad", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "4", + "censuscode": "135" + } + }, + { + "arcs": [[180, -7, -175, 181, -176]], + "type": "Polygon", + "properties": { + "unique_id": "5", + "district": "Rampur", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "5", + "censuscode": "136" + } + }, + { + "arcs": [[-178, 182, -146, 183, -154, 184]], + "type": "Polygon", + "properties": { + "unique_id": "6", + "district": "Amroha", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "6", + "censuscode": "137" + } + }, + { + "arcs": [[-179, -185, -153, -142, 185]], + "type": "Polygon", + "properties": { + "unique_id": "3", + "district": "Bijnor", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "3", + "censuscode": "134" + } + }, + { + "arcs": [[-115, -42, 186, 187, -132]], + "type": "Polygon", + "properties": { + "unique_id": "33", + "district": "Kanpur Dehat", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "32", + "censuscode": "163" + } + }, + { + "arcs": [[188, 189, -45, 190, -5, -167, -170]], + "type": "Polygon", + "properties": { + "unique_id": "31", + "district": "Etawah", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "30", + "censuscode": "161" + } + }, + { + "arcs": [[191, 192, -168, -12, 193, -172, -19]], + "type": "Polygon", + "properties": { + "unique_id": "29", + "district": "Farrukhabad", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "28", + "censuscode": "159" + } + }, + { + "arcs": [[-193, 194, -129, -188, 195, -189, -169]], + "type": "Polygon", + "properties": { + "unique_id": "30", + "district": "Kannauj", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "29", + "censuscode": "160" + } + }, + { + "arcs": [[-187, -46, -190, -196]], + "type": "Polygon", + "properties": { + "unique_id": "32", + "district": "Auraiya", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "31", + "censuscode": "162" + } + }, + { + "arcs": [[196, -40]], + "type": "Polygon", + "properties": { + "unique_id": "37", + "district": "Lalitpur", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "36", + "censuscode": "167" + } + }, + { + "arcs": [[197, -49, 198, 199, -53]], + "type": "Polygon", + "properties": { + "unique_id": "67", + "district": "Varanasi", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "66", + "censuscode": "197" + } + }, + { + "arcs": [[200, 201, 202, 203, -199, -48, -61]], + "type": "Polygon", + "properties": { + "unique_id": "65", + "district": "Ghazipur", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "64", + "censuscode": "195" + } + }, + { + "arcs": [[-204, 204, -57, -54, -200]], + "type": "Polygon", + "properties": { + "unique_id": "66", + "district": "Chandauli", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "65", + "censuscode": "196" + } + }, + { + "arcs": [[-50, -198, -52, -28]], + "type": "Polygon", + "properties": { + "unique_id": "68", + "district": "Sant Ravidas Nagar", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "67", + "censuscode": "198" + } + }, + { + "arcs": [[-66, 205, 206, -201, -60]], + "type": "Polygon", + "properties": { + "unique_id": "62", + "district": "Mau", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "61", + "censuscode": "192" + } + }, + { + "arcs": [[-207, 207, 208, -202]], + "type": "Polygon", + "properties": { + "unique_id": "63", + "district": "Ballia", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "62", + "censuscode": "193" + } + }, + { + "arcs": [[209, 210, -72, -70]], + "type": "Polygon", + "properties": { + "unique_id": "57", + "district": "Maharajganj", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "56", + "censuscode": "187" + } + }, + { + "arcs": [[-71, 211, -208, -206, -65]], + "type": "Polygon", + "properties": { + "unique_id": "60", + "district": "Deoria", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "59", + "censuscode": "190" + } + }, + { + "arcs": [[212, -102, -98, -34, 213, -86]], + "type": "Polygon", + "properties": { + "unique_id": "28", + "district": "Rae Bareli", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "27", + "censuscode": "158" + } + }, + { + "arcs": [[214, -83, 215, -84, -130, -195, -192, -18]], + "type": "Polygon", + "properties": { + "unique_id": "25", + "district": "Hardoi", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "24", + "censuscode": "155" + } + }, + { + "arcs": [[216, -210, -69, -134, -77, 217, 218, -94]], + "type": "Polygon", + "properties": { + "unique_id": "54", + "district": "Siddharth Nagar", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "53", + "censuscode": "184" + } + }, + { + "arcs": [[-216, -82, -103, -213, -85]], + "type": "Polygon", + "properties": { + "unique_id": "27", + "district": "Lucknow", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "26", + "censuscode": "157" + } + }, + { + "arcs": [[-101, 219, -75, 220, -91, -97]], + "type": "Polygon", + "properties": { + "unique_id": "47", + "district": "Faizabad", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "46", + "censuscode": "177" + } + }, + { + "arcs": [[-171, -161, -173, -194, -16]], + "type": "Polygon", + "properties": { + "unique_id": "71", + "district": "Kasganj", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "71", + "censuscode": "202" + } + }, + { + "arcs": [[-221, -74, -133, -67, -63, -89]], + "type": "Polygon", + "properties": { + "unique_id": "48", + "district": "Ambedkar Nagar", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "47", + "censuscode": "178" + } + }, + { + "arcs": [[-155, -184, -145, -152, -135]], + "type": "Polygon", + "properties": { + "unique_id": "73", + "district": "Hapur", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "NA", + "censuscode": "NA" + } + }, + { + "arcs": [[-144, -124, 221, -156]], + "type": "Polygon", + "properties": { + "unique_id": "74", + "district": "Shamli", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "NA", + "censuscode": "NA" + } + }, + { + "arcs": [[-177, -182, -174, -159, -147, -183]], + "type": "Polygon", + "properties": { + "unique_id": "75", + "district": "Sambhal", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "NA", + "censuscode": "NA" + } + }, + { + "arcs": [[-117, -131, -87, -214, -139, -113, -122]], + "type": "Polygon", + "properties": { + "unique_id": "42", + "district": "Fatehpur", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "41", + "censuscode": "172" + } + }, + { + "arcs": [ + [ + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + -95, + 230, + -218, + -76, + -220, + -100, + -110, + 231, + 232, + 233, + 234, + 235 + ] + ], + "type": "Polygon", + "properties": { + "unique_id": "53", + "district": "Gonda", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "52", + "censuscode": "183" + } + }, + { + "arcs": [[236, 237, -104, -79, -215, -17, -23]], + "type": "Polygon", + "properties": { + "unique_id": "23", + "district": "Lakhimpur Kheri", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "22", + "censuscode": "153" + } + }, + { + "arcs": [ + [ + 238, + -92, + -230, + 239, + -228, + 240, + -226, + 241, + -224, + 242, + -236, + 243, + -234, + 244, + -232, + -109, + 245, + -107 + ] + ], + "type": "Polygon", + "properties": { + "unique_id": "51", + "district": "Shravasti", + "state": "Uttar Pradesh", + "ST_CEN_CD": "9", + "DT_CEN_CD": "50", + "censuscode": "181" + } + } + ] + } + } +} diff --git a/public/maps/westbengal.json b/public/maps/westbengal.json index 7a405f50d1..d29dd68173 100644 --- a/public/maps/westbengal.json +++ b/public/maps/westbengal.json @@ -1 +1,3387 @@ -{"type":"Topology","arcs":[[[6298,9925],[15,55],[71,71],[82,122],[-12,66],[62,55],[-27,164],[58,15],[25,50],[68,38],[47,65],[43,0],[45,43],[73,-2],[4,39],[56,26],[100,-15],[30,23]],[[7038,10740],[98,-37],[21,-78],[78,-33],[49,-58],[107,-24],[37,21],[108,-84],[58,-22],[84,-4],[26,60],[66,7],[36,-26],[53,21],[90,69],[35,-85],[56,-25],[3,-140],[-35,-68],[43,-12],[18,-85],[59,-38],[55,-66],[34,28],[39,-58],[56,-23],[124,-1],[57,-17],[20,-87],[-66,8],[-86,-65],[22,-93],[-63,-19],[24,-59],[-80,-41],[-121,66],[-70,52],[-105,-96],[-192,42],[-28,29],[-108,24],[-45,-17],[-120,7],[-85,-34],[-66,-49],[-218,103],[-53,-46],[-62,3]],[[6991,9690],[50,142],[-58,73],[28,71],[-56,-5],[-120,-42],[-102,35],[-92,-10],[-96,46],[-17,-45],[-63,-21],[-74,47],[-74,-86]],[[6317,9895],[-19,30]],[[8155,14373],[-46,0],[-116,68],[-54,-1],[-31,-43],[-62,-25],[11,-105],[-264,5],[18,52],[-27,39],[-68,-90],[-5,-61],[-41,-6],[-33,-59],[-89,25],[-42,-26],[-304,-116],[-29,-49],[27,-73],[-20,-80],[-26,-16],[-3,-75],[58,-41],[-24,-41],[-65,13],[-33,-67],[5,-80],[27,-34]],[[6919,13487],[-41,-17],[-66,-122],[-48,-181],[-38,-32]],[[6726,13135],[-76,-2],[-67,-46],[-55,18],[-75,-97]],[[6453,13008],[-41,46],[-74,14],[-38,58],[145,102],[-128,31],[-54,-60],[-89,-24],[-59,47],[-28,67],[70,49],[20,126],[53,38],[18,120],[54,99],[4,131],[-33,162],[-9,104],[-76,56],[0,102],[-56,62],[32,78],[-113,70],[-19,70],[-107,13],[-47,45],[-8,78],[-86,61],[3,50],[56,94],[4,144],[64,11],[67,-19],[67,-129],[7,-63],[136,-65],[58,-6],[55,53],[93,2],[50,-41],[120,30],[73,-7],[43,-31],[116,-49],[63,0],[119,-44],[60,21],[33,65],[77,30],[98,77],[-31,55],[190,51],[73,-17],[53,-54],[56,-14],[66,47],[74,-39],[15,-57],[220,-19],[70,-50],[117,-24],[23,-186],[-22,-73],[5,-123]],[[6006,10441],[19,-73],[52,-32],[-8,-57],[38,-79],[-20,-28],[57,-42],[-34,-95]],[[6110,10035],[-3,-12]],[[6107,10023],[39,-44],[-43,-42],[53,-104],[43,8],[-6,68],[54,48],[45,-23]],[[6292,9934],[25,-39]],[[6991,9690],[47,-139],[-35,-58],[9,-140],[-36,-46],[35,-48],[-23,-63],[-37,4],[-84,-181],[-71,22],[-65,-33],[-33,-91],[32,-53],[-28,-36],[-160,51],[-64,118],[-84,59],[-121,-34],[-74,-71],[57,-55],[-70,-176],[-69,-34],[-23,-94],[-101,-37],[7,-90],[-29,-50],[-133,-126]],[[5838,8289],[-36,-30],[-92,62],[13,201],[-45,84],[-80,84],[-57,93]],[[5541,8783],[38,5],[148,67],[18,40],[-31,104],[-148,132],[-8,34],[-104,109],[-173,84],[-72,73],[-5,141],[45,181],[112,-44],[-18,80],[71,51],[19,64],[-16,53],[-58,15],[-126,93],[19,90],[-61,15],[-7,47],[62,140],[60,-38],[45,29],[22,51],[79,2],[17,100],[82,11],[64,76],[84,6],[130,-117],[177,-36]],[[6298,9925],[-6,9]],[[6107,10023],[3,12]],[[6006,10441],[-4,87],[-112,106],[-14,79],[53,59],[-15,95],[27,9],[-8,78],[21,31],[-190,87],[-95,67],[-18,38],[-98,58],[-8,51],[34,41],[-61,48],[62,50],[-70,34],[-33,-13],[-132,31],[-17,109],[-26,46],[65,85],[-13,57],[39,96],[4,65],[189,123],[126,-18],[25,67],[1,119],[33,13],[46,-50],[102,99],[40,-16],[60,26],[121,123],[51,8],[15,58],[87,24],[127,73],[7,39],[91,89],[75,36],[-40,69],[-98,-5],[-22,38],[104,85],[-84,73]],[[6726,13135],[2,-77],[85,43],[109,-49],[47,18],[137,-34],[22,-92],[75,-112],[-33,-56],[-44,-13],[-113,9],[-28,-59],[-68,-17],[-140,-101],[-36,-79],[23,-76],[-77,-78],[-52,5],[-98,-42],[-58,2],[-188,-119],[-18,-79],[-34,-33],[-1,-68],[63,-44],[-32,-30],[14,-77],[-91,-23],[10,-45],[-65,-76],[3,-67],[-71,-44],[-14,-86],[57,-260],[113,-35],[73,31],[71,-21],[67,43],[92,15],[19,-52],[60,-79],[202,-119],[-3,-38],[88,-53],[35,-44],[94,-1],[1,-137],[14,-46]],[[10723,12910],[-17,-121],[-120,-36],[-3,-59],[-104,-94],[-13,-64],[-54,-32],[-15,-83],[12,-97],[-43,-17],[-74,46],[27,38],[-103,32],[-21,-35],[50,-85],[-109,-9],[-55,-48],[26,-108],[-27,-54],[44,-15],[56,27],[33,-111],[-75,-1],[-13,-36],[-59,-14],[-27,-48],[23,-123],[-41,-32],[-74,9],[5,74],[-23,24],[-102,-7],[-70,-24],[-122,51],[-5,66],[-53,1],[-40,-80],[-101,2],[-85,73],[-116,38],[-61,57],[0,53],[-95,84],[-127,13],[-41,22],[-20,79],[-35,43],[27,57],[-28,93],[-91,125],[67,26],[14,47],[-99,15],[6,48],[-29,156],[-48,-15],[-234,70],[6,62],[-54,40],[-94,-121],[-43,-18],[12,-115],[85,-6],[21,-39],[80,1],[32,-44],[-33,-63],[37,-29],[130,-31],[31,-76],[-33,-30],[-130,9],[-84,-15],[-126,118],[-123,1],[-32,-80],[49,-50],[-89,-11],[-70,50],[-7,118],[-60,34],[-56,-26],[-51,30]],[[7839,12640],[3,64],[-32,56],[76,105],[67,-59],[135,25],[72,50],[30,62],[68,72],[88,66],[-9,57],[48,65],[63,29],[112,-45],[73,46],[55,9],[53,-45],[144,-4],[95,-51],[33,24],[94,-15],[30,-31],[173,-23],[54,28],[83,4],[88,-80],[120,14],[54,53],[132,-49],[65,14],[37,-46],[22,-90],[84,8],[94,-88],[12,56],[59,4],[51,45],[89,-37],[179,114],[178,-15],[86,15],[-17,-54],[-59,9],[-20,-42],[22,-50]],[[7941,12365],[9,-38],[-38,-48],[15,-79],[-61,-35],[-23,45],[4,68],[36,7],[8,66],[-40,72],[43,26],[48,-34],[-1,-50]],[[7649,12472],[57,-63],[-62,-27],[-21,49],[26,41]],[[5838,8289],[102,-101],[138,-223],[117,-104],[83,-44],[46,-69],[55,-27],[146,-32],[97,-99],[99,-72],[87,-20],[138,25],[69,-18],[147,-75],[44,-2],[49,-50],[23,-59],[43,2],[15,50],[88,-35],[61,15],[32,-22],[93,23],[76,-10],[62,-35],[40,-97],[-16,-166]],[[7772,7044],[-32,1],[-55,-84],[29,-125]],[[7714,6836],[-17,-67]],[[7697,6769],[-65,-46],[-76,-16],[-56,-125],[45,-46],[-68,-73],[-67,42],[-42,86],[-93,21],[-11,-93],[-87,-47],[30,-46],[-7,-48],[-72,-26],[-66,-1],[-23,-46],[112,-33],[-100,-57],[30,-77],[-2,-100],[-88,82],[-68,-134],[-21,48],[-75,-20],[-60,33],[-55,-43],[-182,9],[-92,-44],[17,-74],[-58,-24],[-66,22]],[[6331,5893],[-83,-31],[-58,-62],[-47,52],[-89,5],[-30,-80],[-56,-1],[-53,65],[-13,47],[59,43],[-75,40],[-16,81],[-60,43],[-79,-28],[-19,-72]],[[5712,5995],[-84,55],[-22,43],[-84,-11],[-108,133],[-19,69],[58,13],[4,100],[-35,35],[34,40],[14,88],[-26,36],[82,74],[3,58],[33,50],[-34,42],[27,45],[-18,38],[97,84],[17,45],[65,-17],[50,16],[26,129],[74,1],[-23,188],[-141,67],[-15,51],[38,51],[20,99],[-11,145],[-64,71],[1,52],[-71,67],[-85,0],[-1,59]],[[5514,8011],[11,45],[50,38],[-23,49],[27,132],[-68,42],[28,33],[11,82],[-163,44],[-58,73],[86,-12],[41,34],[76,146],[9,66]],[[7818,4501],[-109,-11],[22,-130],[-20,-57],[-42,-28],[25,-48],[-25,-65],[-51,-46],[20,-58],[7,-124],[-24,-72],[-41,-41],[-14,-122],[5,-80],[30,-47],[-34,-40],[-93,19],[-28,63],[-116,24],[-161,77],[-87,-23],[-38,42],[-101,16],[-39,-29]],[[6904,3721],[-12,107],[32,80],[67,31],[41,45],[12,71],[80,20],[38,60],[-14,60],[-117,19],[-16,43],[61,165],[-43,48],[-107,-41]],[[6926,4429],[-88,19],[-78,48],[20,44],[-32,71],[-42,29],[-19,54],[22,73],[-16,70],[72,78],[-43,74],[59,144],[69,50],[-79,122],[-100,18],[-35,-24],[-87,-10],[1,59],[45,1],[77,40],[-22,37],[-74,-8],[-63,80],[-87,-3],[-40,-25],[-51,40],[-113,19],[-50,65],[22,88],[58,67],[48,9],[112,-23],[7,42],[-93,41],[5,75]],[[7697,6769],[59,2],[-10,-76],[38,-27],[3,-110],[56,-15],[34,-55],[-81,-8],[-18,-68],[20,-65],[-23,-53],[-77,-1],[-2,-40],[-98,-39],[-6,-31],[-85,-29],[-28,32],[-125,-36],[69,-114],[-56,-74],[-25,-170],[-19,-26],[26,-118],[-33,-65],[84,-51],[-15,-70],[150,23],[48,-156],[60,-28],[30,-57],[62,-27],[65,-71],[98,45],[55,-45],[-31,-42],[4,-64],[-68,4],[-30,-145],[25,-52],[-76,-51],[6,-58],[-76,-102],[42,-48],[-9,-45],[78,-42]],[[7772,7044],[-5,-70],[38,-90],[-91,-48]],[[4530,3681],[-39,-70],[62,-56],[-10,-46],[88,-1],[79,-57],[72,20],[47,-102],[130,-26],[-4,-60],[105,24],[62,-42],[-3,-91],[50,-44],[8,-78],[78,-99],[56,-102],[104,-51]],[[5415,2800],[-26,-97],[65,-74],[52,-20],[-8,-43]],[[5498,2566],[-100,13],[-118,-61],[-119,-39],[-61,37],[-70,6],[-89,-23],[-12,-55],[-41,-5],[-27,-80],[28,-31],[-1,-67],[-27,-141],[57,-35],[94,11],[51,-27],[-47,-102],[-14,-144],[78,-98],[-49,-54],[-22,-114],[-84,-55],[-133,-14],[-94,-42],[-13,28],[-117,-35],[-112,17],[-46,-30],[5,-78],[-39,-55],[-9,-58],[42,-8],[23,-125],[42,0],[-61,-148],[-81,-32],[23,-114],[-40,-25],[-2,-178]],[[4313,605],[-118,-6],[-58,11],[-57,51],[-93,0],[-99,36],[-96,151],[7,41],[-33,63],[46,67],[-44,34],[-2,54],[-106,-2],[-54,34],[-39,-10],[-1,-76],[-51,-37],[-66,2],[-61,-34],[3,-126],[-172,14],[-28,54],[-58,57],[20,88],[77,128],[-32,61],[-13,77],[-60,12],[-101,100],[-130,7],[-163,32],[-111,42],[-16,84],[-27,21],[-101,-26],[-99,-2],[-7,93],[27,97],[67,-19],[116,25],[78,114],[175,-22],[7,78],[-43,45],[-116,69],[40,189],[-104,54],[-110,17],[-50,126],[22,25],[96,-15],[1,122],[-15,63],[-52,17],[-23,62],[-134,16],[-89,-21],[-56,9],[-47,57],[7,153],[-50,49],[-100,41],[-68,50]],[[1949,3101],[92,136],[46,96]],[[2087,3333],[128,-30],[32,-46],[66,-9],[80,-55],[128,-52],[40,-41],[154,-69],[48,-53],[77,-33],[90,-68],[79,30],[-15,84],[99,0],[45,-52],[43,47],[-13,70],[59,66],[133,50],[-29,120],[-61,107],[23,67],[65,-13],[124,3],[93,95],[129,43],[80,0],[108,36],[92,86],[105,24],[177,-74],[144,-31],[120,46]],[[5037,3894],[-47,-42],[-136,-19],[26,-57],[-23,-116],[-43,-8],[-35,-73],[-133,72],[-116,30]],[[2087,3333],[21,71],[99,32],[61,65],[66,27],[10,76],[-42,76],[50,72],[59,182],[-15,67],[47,116],[-56,26],[-21,45],[51,124],[33,-6],[16,86],[83,26],[-27,60],[10,129],[-15,29],[30,136],[51,5],[9,45],[61,16],[35,42],[19,159],[-78,-16],[0,80],[109,-3],[37,84],[60,-11],[-58,131],[32,222],[32,37]],[[2856,5563],[46,-29],[102,11],[39,-14],[129,16],[42,-33],[80,-21],[165,-101],[99,-27],[86,-4],[55,-22],[109,-105],[164,-106],[50,-15],[144,-96],[59,-17],[97,-59],[144,-152],[161,-102],[25,-50],[87,-86],[92,-51],[51,-2],[-16,-107],[44,-97],[33,-12],[26,-68],[161,-62],[41,-73],[-49,-64],[-5,-66],[-57,-9],[-23,-46]],[[6926,4429],[-65,-41],[-78,-139],[-49,-33],[-78,-9],[-121,5],[-47,55],[-176,29],[-53,-31],[-54,-194],[-35,-5],[-46,-59],[-128,-13],[-55,-25],[-31,-76],[32,-59],[-105,-66],[-111,5],[-17,-34],[-193,-37],[-36,13],[-100,-16],[-35,41],[-94,-30],[-36,42],[-76,8],[-102,134]],[[2856,5563],[-26,35],[-78,17],[-28,50],[-131,44]],[[2593,5709],[24,123],[31,13],[2,83],[-51,57],[125,64],[82,108],[53,46],[78,-37],[51,-61],[53,58],[191,-74],[60,-54],[74,-29]],[[3366,6006],[81,-96],[117,-65],[80,8],[101,-25],[92,25],[75,-71],[180,-17],[37,-47],[46,0],[67,-38],[-9,-71],[86,-113],[160,-39],[32,46],[58,-25],[144,-34],[111,38],[57,-18],[35,39],[56,-30],[78,30],[45,-81],[66,5],[27,-29],[74,-19],[26,-29],[80,17],[69,-51],[77,31],[43,-49],[71,123],[43,30],[14,69],[-108,95],[18,52],[-27,94],[66,38],[78,196]],[[3366,6006],[171,-29],[48,67],[-97,82],[15,46],[138,-29],[19,-40],[75,41],[-8,-80],[70,2],[-4,191],[42,5],[13,-72],[74,40],[-20,116],[18,58],[-86,38],[23,38],[-59,35],[-36,71],[30,47],[104,-41],[133,11],[-46,-70],[59,-25],[52,38],[88,-20],[132,-63],[87,87],[80,30],[17,62],[-44,17],[39,80],[-42,9],[17,80],[114,-74],[83,-1],[-2,51],[33,44],[62,23],[-67,78],[128,4],[35,-22],[130,-13],[19,68],[-68,80],[-89,15],[25,98],[92,-5],[66,56],[11,65],[70,-9],[75,90],[-9,28],[98,129],[-26,132],[80,97],[-52,62],[8,68],[-14,118],[35,37],[41,-44],[63,-23],[105,31]],[[6754,2940],[20,-46]],[[6774,2894],[1,-63],[-83,-142],[-55,-20],[-101,19]],[[6536,2688],[-72,14],[-29,-44],[22,-44],[-87,-34],[-122,-92],[-103,-15],[-23,-28],[61,-147],[-116,-87],[-2,-194]],[[6065,2017],[-50,-41],[-11,-90],[-70,-87],[-100,27]],[[5834,1826],[-50,60],[-58,29]],[[5726,1915],[-31,44],[-12,237],[-28,98]],[[5655,2294],[-48,39]],[[5607,2333],[-6,32],[-105,15]],[[5496,2380],[-4,3]],[[5492,2383],[-2,2]],[[5490,2385],[-14,46],[55,55],[-48,49],[15,31]],[[5415,2800],[17,28],[82,0],[31,55],[70,11],[10,41],[-17,106],[37,31],[30,106],[-5,60],[102,44],[43,-92],[-33,-32],[13,-78],[46,-52],[87,-5],[50,52],[24,-48],[128,40],[15,-38],[137,-5],[45,-39],[124,23],[90,-32],[183,2],[30,-38]],[[5577,2322],[-30,12]],[[5547,2334],[30,-12]],[[6904,3721],[-17,-82],[15,-80],[-96,-80],[9,-67],[-47,-19],[-12,-71],[-58,-51],[78,-74],[11,-170],[-33,-87]],[[6902,2700],[-74,-87],[-41,-75],[-204,50],[-5,49],[-42,51]],[[6774,2894],[78,-9],[15,-114],[35,-71]],[[5490,2385],[28,-45],[29,-6]],[[5577,2322],[37,-36],[35,-104],[4,-104],[-30,-30],[12,-130],[91,-75],[50,-72],[86,-26],[74,14],[42,-40],[108,5],[79,-18],[155,-196],[-52,-80],[-68,-56],[-231,-123],[-95,92],[3,54],[-45,5],[18,-78],[91,-68],[-119,-275],[-124,-226],[-173,-137],[-160,-154],[-139,-77],[-68,-8],[-41,-43],[-100,-62],[-105,-32],[-221,-32],[-136,-34],[-118,-13],[-10,75],[-38,52],[8,163],[-75,58],[-9,94]],[[6138,1203],[-117,-79],[-39,-120]],[[5982,1004],[-57,-12],[28,119],[37,81],[63,54],[133,25],[-48,-68]],[[5834,1826],[-75,43],[-33,46]],[[5655,2294],[-48,39]],[[5496,2380],[-4,3]],[[1949,3101],[-43,34],[-78,-13],[-83,17],[-67,99],[-101,44],[15,86],[33,52],[-3,85],[81,95],[-82,51],[101,81],[44,-29],[68,82],[-40,62],[-91,-12],[-125,25],[-62,-54],[-34,43],[-55,16],[-74,-21],[-142,58],[-48,-40],[-130,-10],[-31,62],[-68,-6],[-41,69],[-69,63],[10,46],[-60,35],[-64,-7],[-127,55],[11,46],[-31,38],[-147,6],[-102,-43],[-77,0],[-39,49],[-62,28],[0,38],[-53,56],[-60,-6],[-23,188],[20,47],[74,60],[27,71],[-14,92],[79,32],[-88,87],[-9,108],[39,67],[86,-11],[85,-44],[220,87],[56,6],[-23,73],[-58,115],[71,59],[271,-36],[39,-49],[-28,-64],[33,-61],[-34,-71],[98,-6],[64,-44],[48,-7],[10,-53],[58,-4],[143,25],[139,53],[13,130],[29,26],[-26,54],[67,77],[62,42],[104,115],[97,10],[127,-16],[166,88],[155,54],[167,38],[55,-9],[17,-43],[55,3],[99,39]],[[8001,2176],[-4,-6]],[[7997,2170],[-38,-75],[23,-33],[-18,-91]],[[7964,1971],[-1,-5]],[[7963,1966],[-46,-62]],[[7917,1904],[-48,-22],[-77,-64],[-31,-84],[-87,39],[-50,-2],[-25,17],[-85,-7],[-8,29],[57,40],[-3,29],[-69,-72],[29,-41],[83,-6],[-16,-45],[-76,-87],[-53,-124],[45,-175],[-56,-61],[-31,-73],[-9,-80],[41,-66],[-34,-80],[-79,-10],[-30,-11],[-44,19],[7,-44],[-17,-40],[-12,-46],[-23,-10],[-79,54],[-8,33],[56,72],[-89,-8],[-26,-39],[-42,6],[11,54],[-55,-18],[-19,-20],[-46,1],[-54,-48],[-9,-89],[-21,-34],[18,-94],[-78,-15],[-19,55],[-4,97],[-41,13],[-39,4],[-23,-7],[-14,-11],[-28,16],[-21,-2],[-38,-9],[0,-5],[48,11],[16,-4],[22,-14],[7,-21],[-43,-49],[-77,-23],[-23,-21],[-3,-29],[62,-90],[-22,-35],[-11,14],[-40,1],[-100,19],[2,34],[-50,119],[-57,71],[-40,89],[37,110],[-62,94],[63,57],[97,140],[28,116],[-36,190],[-60,99],[-66,31],[-126,29],[-117,2],[42,140],[39,67],[-13,37]],[[6902,2700],[15,53],[83,-43],[76,31],[35,-46],[101,8],[42,39],[17,67],[42,64],[88,-31],[-1,-47],[86,-57],[-1,-41],[71,-94],[34,-86],[101,-86],[3,-69],[70,-23],[29,-52],[57,-21],[64,-69],[48,17],[39,-38]],[[6169,885],[55,-120],[33,-33],[-17,-46],[20,-145],[-47,-140],[4,-105],[-54,-62],[-52,-9],[-142,32],[-56,30],[-12,65],[19,116],[46,44],[31,122],[132,226],[40,25]],[[7688,1764],[73,-34],[93,-9],[61,-56],[-61,-62],[-32,-2],[-85,-86],[-84,-54],[-23,-34],[15,-52],[110,-57],[28,-48],[-52,-39],[-153,50],[-8,86],[-30,79],[-40,52],[50,151],[75,64],[11,54],[52,-3]],[[6411,585],[120,-26],[-29,-54],[134,-158],[-49,-94],[-10,-107],[45,-42],[-39,-46],[-57,-14],[-80,42],[13,47],[-75,75],[44,38],[-2,93],[-65,14],[18,54],[12,36],[-21,31],[6,92],[35,19]],[[6704,846],[41,-14],[-1,-92],[25,-64],[49,-20],[-4,-53],[-56,-5],[-37,-17],[-9,-25],[14,-78],[-35,-29],[-60,2],[-26,152],[-37,54],[-59,13],[-10,35],[16,19],[111,42],[20,38],[-10,24],[10,11],[23,7],[35,0]],[[6993,964],[30,-22],[73,-28],[18,-78],[-32,-50],[-76,-51],[-19,-43],[-35,-1],[-12,27],[-18,-1],[-41,-37],[-28,93],[18,100],[48,44],[7,42],[43,-3],[24,8]],[[7260,713],[68,-45],[-20,-87],[27,-66],[-83,6],[-24,-18],[-16,-31],[-60,84],[5,67],[69,76],[34,14]],[[7619,1260],[99,-42],[-101,-153],[-56,30],[-66,-5],[4,109],[51,68],[69,-7]],[[6911,497],[38,-69],[-40,-31],[-6,-85],[55,-80],[-51,-21],[-29,-67],[-39,47],[0,88],[-20,91],[51,48],[41,79]],[[7275,516],[55,-9],[45,-61],[-57,-45],[4,-72],[-72,-68],[-34,45],[-2,93],[-27,52],[32,22],[15,34],[41,9]],[[7240,258],[54,-18],[71,-55],[7,-61],[-29,-36],[-86,-20],[-19,57],[-70,35],[72,98]],[[7466,945],[53,-68],[31,-9],[-27,-211],[-40,-3],[-43,76],[19,45],[-65,60],[72,110]],[[6621,441],[61,-6],[59,-66],[8,-82],[-44,-75],[-59,-35],[-25,56],[27,86],[-27,122]],[[7028,656],[46,7],[-21,-143],[-33,-70],[-36,-3],[-22,-14],[-26,99],[-1,64],[34,29],[22,51],[37,-20]],[[7020,444],[42,-91],[-52,-142],[-81,80],[-4,103],[62,51],[33,-1]],[[6351,473],[31,-50],[-60,-34],[27,-41],[61,-9],[12,-74],[-71,-83],[-33,79],[-30,132],[18,49],[45,31]],[[6937,715],[15,-30],[29,2],[-1,-30],[-46,-48],[-5,-71],[-51,21],[-51,67],[101,90],[9,-1]],[[7307,944],[38,-23],[-36,-153],[-48,-12],[-39,60],[32,17],[-5,40],[26,28],[-5,60],[37,-17]],[[7147,141],[73,-30],[7,-105],[-70,-6],[-66,38],[12,87],[44,16]],[[6777,591],[-12,-78],[68,-90],[-74,-36],[-53,60],[30,42],[-17,75],[26,27],[32,0]],[[7434,660],[37,-45],[-5,-89],[-95,45],[17,76],[46,13]],[[7347,398],[23,-88],[54,-89],[-36,-17],[-101,51],[43,76],[17,67]],[[7387,819],[66,-52],[-25,-42],[-59,-35],[-25,41],[43,88]],[[7515,1009],[74,-24],[-39,-85],[-32,-19],[-46,71],[43,57]],[[6611,484],[-67,39],[57,78],[10,-117]],[[7113,778],[28,-58],[-38,-38],[-69,6],[-27,37],[106,53]],[[6138,1203],[-102,-165],[-54,-34]],[[7361,627],[10,-64],[70,-29],[11,-40],[-65,-22],[-33,18],[10,59],[-39,55],[36,23]],[[6835,590],[-2,-67],[-65,-10],[32,77],[35,0]],[[7387,406],[38,-38],[-47,-60],[-21,71],[30,27]],[[7748,1366],[-61,27]],[[7687,1393],[61,-27]],[[7809,1738],[0,51]],[[7809,1789],[0,-51]],[[7798,1554],[21,24]],[[7819,1578],[-21,-24]],[[7863,1856],[46,43]],[[7909,1899],[-46,-43]],[[7687,1395],[4,38]],[[7691,1433],[-4,-38]],[[7814,1819],[31,37]],[[7845,1856],[-31,-37]],[[7731,1459],[39,36]],[[7770,1495],[-39,-36]],[[7852,1588],[24,13]],[[7876,1601],[-24,-13]],[[7879,1698],[-16,21]],[[7863,1719],[16,-21]],[[7836,1730],[-11,7]],[[7825,1737],[11,-7]],[[7862,1723],[-4,7]],[[7858,1730],[4,-7]],[[7796,1549],[-3,-7]],[[7793,1542],[3,7]],[[7703,1442],[-5,-4]],[[7698,1438],[5,4]],[[7839,12640],[-46,-54],[-117,-30],[-65,-36],[-16,53],[67,31],[-40,61],[123,-20],[61,75],[-113,-10],[-51,192],[-82,18],[-64,51],[1,55],[-42,48],[-44,-54],[-76,11],[-52,66],[-59,14],[-34,61],[-39,1],[-54,79],[-80,-9],[-47,28],[-18,50],[-15,145],[-18,21]],[[8155,14373],[104,79],[94,-45],[24,-61],[-37,-42],[56,-38],[59,-9],[115,46],[50,-49],[9,-45],[97,-14],[5,-59],[44,-40],[-6,-63],[72,-72],[117,34],[45,-35],[123,32],[44,-11],[182,97],[22,-35],[84,62],[66,-4],[14,-53],[156,-19],[30,-75],[99,-9],[86,42],[103,-45],[119,-33],[41,-35],[71,-11],[-31,-66],[-74,-57],[119,-19],[29,55],[91,-6],[61,-39],[77,-4],[58,-57],[81,42],[145,-39],[27,-45],[6,-106],[-44,-30],[53,-50],[1,-77],[-34,-37],[-8,-105],[-23,-35],[-2,-78],[47,-63],[-2,-42],[-66,-101],[-31,6]],[[7818,4501],[53,4],[42,-55],[77,-3],[-13,88],[58,-14],[58,-53],[163,14],[45,-47],[57,-25],[75,51],[7,-83],[-56,-2],[-63,-55],[-17,-81],[-91,-86],[-73,-26],[-10,-72],[32,-105],[-17,-29],[-9,-131],[-20,-36],[96,-16],[-1,-59],[33,-131],[62,-25],[36,25],[58,-92],[-24,-128],[-53,-20],[-48,-57],[0,-83],[102,-113],[-31,-83],[-50,-59],[67,-83],[-56,-50],[5,-54],[-110,-18],[-48,-50],[-26,4],[-9,-41],[4,-19],[-63,-56],[43,-10],[-17,-69],[8,-50],[9,-25],[-14,-11],[-8,-18],[-33,11],[-66,51],[-9,68],[-51,48],[-32,5],[-1,-25],[28,-30],[33,-101],[37,-31],[86,-3],[21,-59],[-19,-116],[-74,-6]],[[7997,2170],[83,8],[109,-53],[54,-82],[69,-48],[-21,-80],[58,-56],[7,-46],[-89,20],[-62,-145],[-68,-18],[-19,71],[-14,19],[-142,10],[-6,37],[64,50],[-3,63],[-53,51]],[[8375,1716],[63,-106],[-4,-79],[-36,-94],[-89,-29],[58,-32],[51,-58],[-32,-56],[21,-80],[56,-45],[2,-75],[71,-54],[-15,-48],[-63,10],[-125,59],[-37,34],[-51,138],[9,43],[-38,141],[70,78],[8,39],[-57,68],[-34,100],[61,-27],[79,75],[32,-2]],[[8303,2689],[56,-11],[26,-43],[36,-140],[45,-39],[-18,-54],[26,-49],[-86,-47],[11,-43],[-43,-71],[-29,-153],[-29,2],[-70,70],[-26,112],[50,32],[28,-12],[0,50],[-23,17],[5,45],[-40,44],[-2,24],[-23,28],[11,29],[-7,18],[49,71],[-49,133],[64,13],[38,-26]],[[7978,1268],[167,-20],[66,3],[21,-116],[-1,-106],[-26,-17],[-110,-10],[-85,55],[-130,9],[-37,25],[-27,9],[10,34],[-1,22],[-16,12],[27,36],[5,51],[38,1],[73,38],[26,-26]],[[8438,2230],[6,-160],[60,-19],[-41,-78],[104,-76],[20,-92],[77,-85],[-50,-115],[-74,52],[12,57],[-23,50],[-87,-3],[-48,24],[-18,73],[-38,35],[18,277],[37,74],[45,-14]],[[8266,1020],[143,-75],[8,-80],[-79,-71],[-23,35],[-1,-13],[-15,-27],[-27,-9],[-22,-21],[-65,-41],[-21,42],[-13,48],[3,16],[-12,8],[-35,2],[-18,74],[-40,60],[97,29],[29,-8],[91,31]],[[8527,1349],[61,-3],[88,-119],[10,-63],[-38,-121],[-88,-22],[-82,60],[49,70],[-116,52],[-17,55],[50,105],[83,-14]],[[7687,1393],[0,2]],[[7691,1433],[7,5]],[[7703,1442],[28,17]],[[7770,1495],[8,14]],[[7778,1509],[15,33]],[[7796,1549],[2,5]],[[7819,1578],[33,10]],[[7876,1601],[85,87],[62,-34],[40,64],[39,40],[13,-21],[8,-71],[-50,8],[7,-43],[-32,-53],[-77,-14],[-41,-45],[-61,-21],[-55,-61],[-33,-70],[-33,-1]],[[8483,1744],[31,-9],[4,-83],[21,-43],[71,-41],[-48,-103],[18,-108],[-139,10],[-14,60],[35,108],[1,75],[-45,52],[-12,67],[77,15]],[[8205,2671],[20,-69],[-32,-96],[8,-39],[-10,-16],[13,-17],[9,-40],[20,-27],[-10,-60],[45,-33],[-98,-61],[-6,68],[-55,29],[-16,28],[-3,39],[12,9],[4,15],[-10,22],[9,35],[18,46],[-32,61],[33,34],[-1,23],[54,59],[28,-10]],[[7724,970],[65,-22],[79,-114],[-21,-72],[33,-13],[-33,-96],[-31,5],[-7,72],[-34,-46],[-30,-13],[-17,33],[-31,11],[-30,72],[4,58],[53,125]],[[8028,596],[81,-12],[-58,-122],[6,-91],[47,-117],[-55,-44],[-81,53],[37,82],[-10,85],[-42,35],[-51,-17],[-7,59],[25,44],[32,-5],[29,10],[47,40]],[[7719,706],[29,-70],[86,-60],[-22,-57],[59,-51],[-43,-31],[11,-53],[-41,-6],[-35,15],[-5,-20],[-52,22],[-43,142],[56,169]],[[8637,479],[36,-85],[53,-64],[7,-57],[-47,-51],[-59,-20],[-78,70],[-6,96],[7,21],[-12,33],[0,40],[99,17]],[[8426,933],[136,-81],[-8,-89],[-21,-30],[-31,-13],[-27,6],[-17,-9],[-50,-94],[-80,23],[26,48],[40,-9],[22,14],[8,43],[-78,42],[79,86],[1,63]],[[7863,1719],[0,2],[0,1],[-1,1]],[[7858,1730],[-22,0]],[[7825,1737],[-16,1]],[[7809,1789],[5,30]],[[7845,1856],[18,0]],[[7909,1899],[8,5]],[[7963,1966],[50,-108],[-68,-38],[23,-118],[-89,-4]],[[8166,541],[82,-51],[12,-36],[64,-60],[-54,-151],[-97,75],[-34,88],[-1,70],[28,65]],[[8114,1660],[60,-7],[37,-44],[61,-128],[-39,-34],[-96,2],[-47,34],[-26,59],[-27,20],[69,43],[8,55]],[[8094,859],[-2,-21],[14,-8],[44,-9],[-6,-14],[15,-44],[-2,-56],[46,-69],[-16,-51],[-128,44],[-11,184],[46,44]],[[8437,436],[14,-10],[10,-81],[-16,-17],[19,-42],[78,10],[3,-58],[34,-43],[-40,-32],[-63,0],[-13,102],[-15,13],[-46,-11],[-22,21],[1,35],[-24,44],[-10,56],[60,-9],[30,22]],[[7739,1036],[23,-33],[60,19],[55,-6],[47,-19],[18,6],[40,-44],[-15,-20],[-3,-31],[-37,-25],[-3,10],[-12,4],[-5,-3],[-19,-22],[-57,27],[-35,51],[-67,24],[10,62]],[[7869,297],[5,-89],[57,-55],[-20,-49],[-98,-9],[-1,41],[19,13],[1,7],[-12,12],[-30,9],[-19,14],[2,27],[-18,44],[114,35]],[[8037,175],[110,-40],[75,-87],[-77,-27],[-87,13],[-39,65],[18,76]],[[7915,894],[8,-14],[39,-17],[59,-9],[-21,-102],[-71,-33],[-24,35],[-53,13],[30,97],[12,9],[6,9],[15,12]],[[7959,1436],[0,-46],[-61,-42],[-93,27],[95,125],[32,5],[27,-69]],[[7796,1163],[12,-55],[11,-16],[20,-5],[40,-26],[78,-10],[-39,-46],[-38,20],[-60,6],[-55,-14],[-29,47],[7,95],[53,4]],[[8277,586],[103,-25],[25,-144],[-59,10],[-75,48],[24,41],[-18,70]],[[7901,524],[-73,-14],[20,65],[-37,29],[39,41],[46,108],[30,-39],[-23,-101],[-6,-35],[16,-24],[-12,-30]],[[7992,1542],[78,-15],[5,-35],[49,-58],[-43,-7],[-35,-17],[-28,38],[-59,-7],[-19,69],[52,32]],[[7961,439],[0,-114],[-32,-22],[-95,21],[-26,26],[-47,26],[76,1],[8,21],[116,41]],[[8341,779],[71,-33],[-13,-53],[-43,14],[-41,-51],[27,-65],[-62,7],[-16,22],[13,33],[-11,13],[23,20],[-2,14],[28,30],[-9,19],[-22,-1],[-6,32],[21,4],[23,27],[19,-32]],[[8478,648],[0,-92],[41,-60],[-40,-29],[-62,30],[-50,88],[86,72],[25,-9]],[[8254,755],[16,-9],[35,0],[6,-14],[-28,-35],[0,-15],[-24,-18],[12,-7],[-11,-39],[-15,-29],[1,-21],[-49,0],[17,57],[-48,72],[88,58]],[[8132,1424],[-40,-88],[-14,-7],[1,-9],[24,-32],[-64,-4],[-7,102],[45,35],[55,3]],[[8472,468],[30,-42],[30,-7],[12,-32],[-17,-69],[-66,-26],[7,56],[-8,71],[12,49]],[[7753,254],[14,-38],[1,-25],[8,-10],[38,-15],[15,-11],[-17,-14],[-10,-15],[-18,-41],[-69,14],[-18,31],[13,90],[43,34]],[[7961,551],[-42,3],[-18,41],[29,36],[6,30],[62,84],[28,-38],[-25,-72],[24,-36],[-64,-48]],[[8289,1814],[67,-11],[18,-74],[-100,-37],[-37,38],[52,84]],[[8395,263],[58,11],[13,-43],[-20,-40],[-45,0],[-80,76],[13,51],[43,5],[0,-38],[18,-22]],[[8513,593],[115,-93],[-93,-33],[-13,41],[-39,46],[30,39]],[[7975,1377],[52,-26],[4,-56],[-51,-12],[-25,22],[-26,-7],[-37,17],[83,62]],[[7674,415],[20,-42],[93,-75],[-44,-41],[-102,120],[33,38]],[[8215,1326],[1,-60],[-66,-11],[-12,29],[-23,8],[-31,29],[4,10],[57,0],[35,5],[35,-10]],[[8109,2273],[63,-74],[-66,0],[3,74]],[[7894,2543],[32,-8],[48,-50],[-28,-47],[-25,57],[-29,31],[2,17]],[[7989,954],[64,-37],[-27,-57],[-76,34],[17,10],[3,29],[19,21]],[[8523,716],[-18,-73],[-52,16],[14,60],[56,-3]],[[7845,1353],[32,-4],[8,-81],[-44,5],[4,80]],[[7822,630],[-70,35],[25,16],[27,38],[18,-89]],[[8218,1436],[-31,-60],[-51,8],[17,55],[65,-3]]],"transform":{"scale":[0.0003735710201069902,0.00037732277964443704],"translate":[85.832496,21.541117520791936]},"objects":{"westbengal_district":{"type":"GeometryCollection","geometries":[{"arcs":[[0,1,2,3]],"type":"Polygon","properties":{"cartodb_id":129,"censuscode":331,"dt_cen_cd":5,"st_cen_cd":19,"st_nm":"West Bengal","district":"Dakshin Dinajpur"}},{"arcs":[[4,5,6,7]],"type":"Polygon","properties":{"cartodb_id":134,"censuscode":327,"dt_cen_cd":1,"st_cen_cd":19,"st_nm":"West Bengal","district":"Darjiling"}},{"arcs":[[8,9,10,11,-3,12,13,14]],"type":"Polygon","properties":{"cartodb_id":360,"censuscode":332,"dt_cen_cd":6,"st_cen_cd":19,"st_nm":"West Bengal","district":"Maldah"}},{"arcs":[[-1,15,-11,16,-9,17,-7,18]],"type":"Polygon","properties":{"cartodb_id":595,"censuscode":330,"dt_cen_cd":4,"st_cen_cd":19,"st_nm":"West Bengal","district":"Uttar Dinajpur"}},{"arcs":[[[19,20]],[[21]],[[22]]],"type":"MultiPolygon","properties":{"cartodb_id":306,"censuscode":329,"dt_cen_cd":3,"st_cen_cd":19,"st_nm":"West Bengal","district":"Cooch Behar"}},{"arcs":[[23,24,25,26,27,28,29,-14]],"type":"Polygon","properties":{"cartodb_id":385,"censuscode":333,"dt_cen_cd":7,"st_cen_cd":19,"st_nm":"West Bengal","district":"Murshidabad"}},{"arcs":[[[30,31,32,-27,33]],[[34,-25]]],"type":"MultiPolygon","properties":{"cartodb_id":390,"censuscode":336,"dt_cen_cd":10,"st_cen_cd":19,"st_nm":"West Bengal","district":"Nadia"}},{"arcs":[[35,36,37,38,39,40]],"type":"Polygon","properties":{"cartodb_id":434,"censuscode":344,"dt_cen_cd":18,"st_cen_cd":19,"st_nm":"West Bengal","district":"Paschim Medinipur"}},{"arcs":[[41,-41,42,43]],"type":"Polygon","properties":{"cartodb_id":49,"censuscode":339,"dt_cen_cd":13,"st_cen_cd":19,"st_nm":"West Bengal","district":"Bankura"}},{"arcs":[[-33,44,-44,45,46,47,-28]],"type":"Polygon","properties":{"cartodb_id":55,"censuscode":335,"dt_cen_cd":9,"st_cen_cd":19,"st_nm":"West Bengal","district":"Barddhaman"}},{"arcs":[[-29,-48,48]],"type":"Polygon","properties":{"cartodb_id":88,"censuscode":334,"dt_cen_cd":8,"st_cen_cd":19,"st_nm":"West Bengal","district":"Birbhum"}},{"arcs":[[49,50,51,52,53,54,55,56,57,58,59,-37,60]],"type":"Polygon","properties":{"cartodb_id":219,"censuscode":341,"dt_cen_cd":15,"st_cen_cd":19,"st_nm":"West Bengal","district":"Haora"}},{"arcs":[[63,-61,-36,-42,-45,-32]],"type":"Polygon","properties":{"cartodb_id":231,"censuscode":338,"dt_cen_cd":12,"st_cen_cd":19,"st_nm":"West Bengal","district":"Hugli"}},{"arcs":[[64,-51,65]],"type":"Polygon","properties":{"cartodb_id":314,"censuscode":342,"dt_cen_cd":16,"st_cen_cd":19,"st_nm":"West Bengal","district":"Kolkata"}},{"arcs":[[[-60,66,-62,67,-38]],[[68,69]],[[70,-54]]],"type":"MultiPolygon","properties":{"cartodb_id":454,"censuscode":345,"dt_cen_cd":19,"st_cen_cd":19,"st_nm":"West Bengal","district":"Purba Medinipur"}},{"arcs":[[-43,-40,73,-46]],"type":"Polygon","properties":{"cartodb_id":458,"censuscode":340,"dt_cen_cd":14,"st_cen_cd":19,"st_nm":"West Bengal","district":"Puruliya"}},{"arcs":[[[74,75,76,77,78,-52,-65,79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[-69,105]],[[106]],[[107]],[[108]]],"type":"MultiPolygon","properties":{"cartodb_id":545,"censuscode":343,"dt_cen_cd":17,"st_cen_cd":19,"st_nm":"West Bengal","district":"South 24 Parganas"}},{"arcs":[[-21,135,-5,136]],"type":"Polygon","properties":{"cartodb_id":248,"censuscode":328,"dt_cen_cd":2,"st_cen_cd":19,"st_nm":"West Bengal","district":"Jalpaiguri"}},{"arcs":[[[-80,-66,-50,-64,-31,137]],[[-76,138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[-111,145,-119,146,-134,147,-123,148,149,-132,150,-115,151,-125,152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[-127,160,-131,161,-129,162,-113,163,-121,164,-117,165,-78,166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]]],"type":"MultiPolygon","properties":{"cartodb_id":414,"censuscode":337,"dt_cen_cd":11,"st_cen_cd":19,"st_nm":"West Bengal","district":"North 24 Parganas"}}]}}} \ No newline at end of file +{ + "type": "Topology", + "arcs": [ + [ + [6298, 9925], + [15, 55], + [71, 71], + [82, 122], + [-12, 66], + [62, 55], + [-27, 164], + [58, 15], + [25, 50], + [68, 38], + [47, 65], + [43, 0], + [45, 43], + [73, -2], + [4, 39], + [56, 26], + [100, -15], + [30, 23] + ], + [ + [7038, 10740], + [98, -37], + [21, -78], + [78, -33], + [49, -58], + [107, -24], + [37, 21], + [108, -84], + [58, -22], + [84, -4], + [26, 60], + [66, 7], + [36, -26], + [53, 21], + [90, 69], + [35, -85], + [56, -25], + [3, -140], + [-35, -68], + [43, -12], + [18, -85], + [59, -38], + [55, -66], + [34, 28], + [39, -58], + [56, -23], + [124, -1], + [57, -17], + [20, -87], + [-66, 8], + [-86, -65], + [22, -93], + [-63, -19], + [24, -59], + [-80, -41], + [-121, 66], + [-70, 52], + [-105, -96], + [-192, 42], + [-28, 29], + [-108, 24], + [-45, -17], + [-120, 7], + [-85, -34], + [-66, -49], + [-218, 103], + [-53, -46], + [-62, 3] + ], + [ + [6991, 9690], + [50, 142], + [-58, 73], + [28, 71], + [-56, -5], + [-120, -42], + [-102, 35], + [-92, -10], + [-96, 46], + [-17, -45], + [-63, -21], + [-74, 47], + [-74, -86] + ], + [ + [6317, 9895], + [-19, 30] + ], + [ + [8155, 14373], + [-46, 0], + [-116, 68], + [-54, -1], + [-31, -43], + [-62, -25], + [11, -105], + [-264, 5], + [18, 52], + [-27, 39], + [-68, -90], + [-5, -61], + [-41, -6], + [-33, -59], + [-89, 25], + [-42, -26], + [-304, -116], + [-29, -49], + [27, -73], + [-20, -80], + [-26, -16], + [-3, -75], + [58, -41], + [-24, -41], + [-65, 13], + [-33, -67], + [5, -80], + [27, -34] + ], + [ + [6919, 13487], + [-41, -17], + [-66, -122], + [-48, -181], + [-38, -32] + ], + [ + [6726, 13135], + [-76, -2], + [-67, -46], + [-55, 18], + [-75, -97] + ], + [ + [6453, 13008], + [-41, 46], + [-74, 14], + [-38, 58], + [145, 102], + [-128, 31], + [-54, -60], + [-89, -24], + [-59, 47], + [-28, 67], + [70, 49], + [20, 126], + [53, 38], + [18, 120], + [54, 99], + [4, 131], + [-33, 162], + [-9, 104], + [-76, 56], + [0, 102], + [-56, 62], + [32, 78], + [-113, 70], + [-19, 70], + [-107, 13], + [-47, 45], + [-8, 78], + [-86, 61], + [3, 50], + [56, 94], + [4, 144], + [64, 11], + [67, -19], + [67, -129], + [7, -63], + [136, -65], + [58, -6], + [55, 53], + [93, 2], + [50, -41], + [120, 30], + [73, -7], + [43, -31], + [116, -49], + [63, 0], + [119, -44], + [60, 21], + [33, 65], + [77, 30], + [98, 77], + [-31, 55], + [190, 51], + [73, -17], + [53, -54], + [56, -14], + [66, 47], + [74, -39], + [15, -57], + [220, -19], + [70, -50], + [117, -24], + [23, -186], + [-22, -73], + [5, -123] + ], + [ + [6006, 10441], + [19, -73], + [52, -32], + [-8, -57], + [38, -79], + [-20, -28], + [57, -42], + [-34, -95] + ], + [ + [6110, 10035], + [-3, -12] + ], + [ + [6107, 10023], + [39, -44], + [-43, -42], + [53, -104], + [43, 8], + [-6, 68], + [54, 48], + [45, -23] + ], + [ + [6292, 9934], + [25, -39] + ], + [ + [6991, 9690], + [47, -139], + [-35, -58], + [9, -140], + [-36, -46], + [35, -48], + [-23, -63], + [-37, 4], + [-84, -181], + [-71, 22], + [-65, -33], + [-33, -91], + [32, -53], + [-28, -36], + [-160, 51], + [-64, 118], + [-84, 59], + [-121, -34], + [-74, -71], + [57, -55], + [-70, -176], + [-69, -34], + [-23, -94], + [-101, -37], + [7, -90], + [-29, -50], + [-133, -126] + ], + [ + [5838, 8289], + [-36, -30], + [-92, 62], + [13, 201], + [-45, 84], + [-80, 84], + [-57, 93] + ], + [ + [5541, 8783], + [38, 5], + [148, 67], + [18, 40], + [-31, 104], + [-148, 132], + [-8, 34], + [-104, 109], + [-173, 84], + [-72, 73], + [-5, 141], + [45, 181], + [112, -44], + [-18, 80], + [71, 51], + [19, 64], + [-16, 53], + [-58, 15], + [-126, 93], + [19, 90], + [-61, 15], + [-7, 47], + [62, 140], + [60, -38], + [45, 29], + [22, 51], + [79, 2], + [17, 100], + [82, 11], + [64, 76], + [84, 6], + [130, -117], + [177, -36] + ], + [ + [6298, 9925], + [-6, 9] + ], + [ + [6107, 10023], + [3, 12] + ], + [ + [6006, 10441], + [-4, 87], + [-112, 106], + [-14, 79], + [53, 59], + [-15, 95], + [27, 9], + [-8, 78], + [21, 31], + [-190, 87], + [-95, 67], + [-18, 38], + [-98, 58], + [-8, 51], + [34, 41], + [-61, 48], + [62, 50], + [-70, 34], + [-33, -13], + [-132, 31], + [-17, 109], + [-26, 46], + [65, 85], + [-13, 57], + [39, 96], + [4, 65], + [189, 123], + [126, -18], + [25, 67], + [1, 119], + [33, 13], + [46, -50], + [102, 99], + [40, -16], + [60, 26], + [121, 123], + [51, 8], + [15, 58], + [87, 24], + [127, 73], + [7, 39], + [91, 89], + [75, 36], + [-40, 69], + [-98, -5], + [-22, 38], + [104, 85], + [-84, 73] + ], + [ + [6726, 13135], + [2, -77], + [85, 43], + [109, -49], + [47, 18], + [137, -34], + [22, -92], + [75, -112], + [-33, -56], + [-44, -13], + [-113, 9], + [-28, -59], + [-68, -17], + [-140, -101], + [-36, -79], + [23, -76], + [-77, -78], + [-52, 5], + [-98, -42], + [-58, 2], + [-188, -119], + [-18, -79], + [-34, -33], + [-1, -68], + [63, -44], + [-32, -30], + [14, -77], + [-91, -23], + [10, -45], + [-65, -76], + [3, -67], + [-71, -44], + [-14, -86], + [57, -260], + [113, -35], + [73, 31], + [71, -21], + [67, 43], + [92, 15], + [19, -52], + [60, -79], + [202, -119], + [-3, -38], + [88, -53], + [35, -44], + [94, -1], + [1, -137], + [14, -46] + ], + [ + [10723, 12910], + [-17, -121], + [-120, -36], + [-3, -59], + [-104, -94], + [-13, -64], + [-54, -32], + [-15, -83], + [12, -97], + [-43, -17], + [-74, 46], + [27, 38], + [-103, 32], + [-21, -35], + [50, -85], + [-109, -9], + [-55, -48], + [26, -108], + [-27, -54], + [44, -15], + [56, 27], + [33, -111], + [-75, -1], + [-13, -36], + [-59, -14], + [-27, -48], + [23, -123], + [-41, -32], + [-74, 9], + [5, 74], + [-23, 24], + [-102, -7], + [-70, -24], + [-122, 51], + [-5, 66], + [-53, 1], + [-40, -80], + [-101, 2], + [-85, 73], + [-116, 38], + [-61, 57], + [0, 53], + [-95, 84], + [-127, 13], + [-41, 22], + [-20, 79], + [-35, 43], + [27, 57], + [-28, 93], + [-91, 125], + [67, 26], + [14, 47], + [-99, 15], + [6, 48], + [-29, 156], + [-48, -15], + [-234, 70], + [6, 62], + [-54, 40], + [-94, -121], + [-43, -18], + [12, -115], + [85, -6], + [21, -39], + [80, 1], + [32, -44], + [-33, -63], + [37, -29], + [130, -31], + [31, -76], + [-33, -30], + [-130, 9], + [-84, -15], + [-126, 118], + [-123, 1], + [-32, -80], + [49, -50], + [-89, -11], + [-70, 50], + [-7, 118], + [-60, 34], + [-56, -26], + [-51, 30] + ], + [ + [7839, 12640], + [3, 64], + [-32, 56], + [76, 105], + [67, -59], + [135, 25], + [72, 50], + [30, 62], + [68, 72], + [88, 66], + [-9, 57], + [48, 65], + [63, 29], + [112, -45], + [73, 46], + [55, 9], + [53, -45], + [144, -4], + [95, -51], + [33, 24], + [94, -15], + [30, -31], + [173, -23], + [54, 28], + [83, 4], + [88, -80], + [120, 14], + [54, 53], + [132, -49], + [65, 14], + [37, -46], + [22, -90], + [84, 8], + [94, -88], + [12, 56], + [59, 4], + [51, 45], + [89, -37], + [179, 114], + [178, -15], + [86, 15], + [-17, -54], + [-59, 9], + [-20, -42], + [22, -50] + ], + [ + [7941, 12365], + [9, -38], + [-38, -48], + [15, -79], + [-61, -35], + [-23, 45], + [4, 68], + [36, 7], + [8, 66], + [-40, 72], + [43, 26], + [48, -34], + [-1, -50] + ], + [ + [7649, 12472], + [57, -63], + [-62, -27], + [-21, 49], + [26, 41] + ], + [ + [5838, 8289], + [102, -101], + [138, -223], + [117, -104], + [83, -44], + [46, -69], + [55, -27], + [146, -32], + [97, -99], + [99, -72], + [87, -20], + [138, 25], + [69, -18], + [147, -75], + [44, -2], + [49, -50], + [23, -59], + [43, 2], + [15, 50], + [88, -35], + [61, 15], + [32, -22], + [93, 23], + [76, -10], + [62, -35], + [40, -97], + [-16, -166] + ], + [ + [7772, 7044], + [-32, 1], + [-55, -84], + [29, -125] + ], + [ + [7714, 6836], + [-17, -67] + ], + [ + [7697, 6769], + [-65, -46], + [-76, -16], + [-56, -125], + [45, -46], + [-68, -73], + [-67, 42], + [-42, 86], + [-93, 21], + [-11, -93], + [-87, -47], + [30, -46], + [-7, -48], + [-72, -26], + [-66, -1], + [-23, -46], + [112, -33], + [-100, -57], + [30, -77], + [-2, -100], + [-88, 82], + [-68, -134], + [-21, 48], + [-75, -20], + [-60, 33], + [-55, -43], + [-182, 9], + [-92, -44], + [17, -74], + [-58, -24], + [-66, 22] + ], + [ + [6331, 5893], + [-83, -31], + [-58, -62], + [-47, 52], + [-89, 5], + [-30, -80], + [-56, -1], + [-53, 65], + [-13, 47], + [59, 43], + [-75, 40], + [-16, 81], + [-60, 43], + [-79, -28], + [-19, -72] + ], + [ + [5712, 5995], + [-84, 55], + [-22, 43], + [-84, -11], + [-108, 133], + [-19, 69], + [58, 13], + [4, 100], + [-35, 35], + [34, 40], + [14, 88], + [-26, 36], + [82, 74], + [3, 58], + [33, 50], + [-34, 42], + [27, 45], + [-18, 38], + [97, 84], + [17, 45], + [65, -17], + [50, 16], + [26, 129], + [74, 1], + [-23, 188], + [-141, 67], + [-15, 51], + [38, 51], + [20, 99], + [-11, 145], + [-64, 71], + [1, 52], + [-71, 67], + [-85, 0], + [-1, 59] + ], + [ + [5514, 8011], + [11, 45], + [50, 38], + [-23, 49], + [27, 132], + [-68, 42], + [28, 33], + [11, 82], + [-163, 44], + [-58, 73], + [86, -12], + [41, 34], + [76, 146], + [9, 66] + ], + [ + [7818, 4501], + [-109, -11], + [22, -130], + [-20, -57], + [-42, -28], + [25, -48], + [-25, -65], + [-51, -46], + [20, -58], + [7, -124], + [-24, -72], + [-41, -41], + [-14, -122], + [5, -80], + [30, -47], + [-34, -40], + [-93, 19], + [-28, 63], + [-116, 24], + [-161, 77], + [-87, -23], + [-38, 42], + [-101, 16], + [-39, -29] + ], + [ + [6904, 3721], + [-12, 107], + [32, 80], + [67, 31], + [41, 45], + [12, 71], + [80, 20], + [38, 60], + [-14, 60], + [-117, 19], + [-16, 43], + [61, 165], + [-43, 48], + [-107, -41] + ], + [ + [6926, 4429], + [-88, 19], + [-78, 48], + [20, 44], + [-32, 71], + [-42, 29], + [-19, 54], + [22, 73], + [-16, 70], + [72, 78], + [-43, 74], + [59, 144], + [69, 50], + [-79, 122], + [-100, 18], + [-35, -24], + [-87, -10], + [1, 59], + [45, 1], + [77, 40], + [-22, 37], + [-74, -8], + [-63, 80], + [-87, -3], + [-40, -25], + [-51, 40], + [-113, 19], + [-50, 65], + [22, 88], + [58, 67], + [48, 9], + [112, -23], + [7, 42], + [-93, 41], + [5, 75] + ], + [ + [7697, 6769], + [59, 2], + [-10, -76], + [38, -27], + [3, -110], + [56, -15], + [34, -55], + [-81, -8], + [-18, -68], + [20, -65], + [-23, -53], + [-77, -1], + [-2, -40], + [-98, -39], + [-6, -31], + [-85, -29], + [-28, 32], + [-125, -36], + [69, -114], + [-56, -74], + [-25, -170], + [-19, -26], + [26, -118], + [-33, -65], + [84, -51], + [-15, -70], + [150, 23], + [48, -156], + [60, -28], + [30, -57], + [62, -27], + [65, -71], + [98, 45], + [55, -45], + [-31, -42], + [4, -64], + [-68, 4], + [-30, -145], + [25, -52], + [-76, -51], + [6, -58], + [-76, -102], + [42, -48], + [-9, -45], + [78, -42] + ], + [ + [7772, 7044], + [-5, -70], + [38, -90], + [-91, -48] + ], + [ + [4530, 3681], + [-39, -70], + [62, -56], + [-10, -46], + [88, -1], + [79, -57], + [72, 20], + [47, -102], + [130, -26], + [-4, -60], + [105, 24], + [62, -42], + [-3, -91], + [50, -44], + [8, -78], + [78, -99], + [56, -102], + [104, -51] + ], + [ + [5415, 2800], + [-26, -97], + [65, -74], + [52, -20], + [-8, -43] + ], + [ + [5498, 2566], + [-100, 13], + [-118, -61], + [-119, -39], + [-61, 37], + [-70, 6], + [-89, -23], + [-12, -55], + [-41, -5], + [-27, -80], + [28, -31], + [-1, -67], + [-27, -141], + [57, -35], + [94, 11], + [51, -27], + [-47, -102], + [-14, -144], + [78, -98], + [-49, -54], + [-22, -114], + [-84, -55], + [-133, -14], + [-94, -42], + [-13, 28], + [-117, -35], + [-112, 17], + [-46, -30], + [5, -78], + [-39, -55], + [-9, -58], + [42, -8], + [23, -125], + [42, 0], + [-61, -148], + [-81, -32], + [23, -114], + [-40, -25], + [-2, -178] + ], + [ + [4313, 605], + [-118, -6], + [-58, 11], + [-57, 51], + [-93, 0], + [-99, 36], + [-96, 151], + [7, 41], + [-33, 63], + [46, 67], + [-44, 34], + [-2, 54], + [-106, -2], + [-54, 34], + [-39, -10], + [-1, -76], + [-51, -37], + [-66, 2], + [-61, -34], + [3, -126], + [-172, 14], + [-28, 54], + [-58, 57], + [20, 88], + [77, 128], + [-32, 61], + [-13, 77], + [-60, 12], + [-101, 100], + [-130, 7], + [-163, 32], + [-111, 42], + [-16, 84], + [-27, 21], + [-101, -26], + [-99, -2], + [-7, 93], + [27, 97], + [67, -19], + [116, 25], + [78, 114], + [175, -22], + [7, 78], + [-43, 45], + [-116, 69], + [40, 189], + [-104, 54], + [-110, 17], + [-50, 126], + [22, 25], + [96, -15], + [1, 122], + [-15, 63], + [-52, 17], + [-23, 62], + [-134, 16], + [-89, -21], + [-56, 9], + [-47, 57], + [7, 153], + [-50, 49], + [-100, 41], + [-68, 50] + ], + [ + [1949, 3101], + [92, 136], + [46, 96] + ], + [ + [2087, 3333], + [128, -30], + [32, -46], + [66, -9], + [80, -55], + [128, -52], + [40, -41], + [154, -69], + [48, -53], + [77, -33], + [90, -68], + [79, 30], + [-15, 84], + [99, 0], + [45, -52], + [43, 47], + [-13, 70], + [59, 66], + [133, 50], + [-29, 120], + [-61, 107], + [23, 67], + [65, -13], + [124, 3], + [93, 95], + [129, 43], + [80, 0], + [108, 36], + [92, 86], + [105, 24], + [177, -74], + [144, -31], + [120, 46] + ], + [ + [5037, 3894], + [-47, -42], + [-136, -19], + [26, -57], + [-23, -116], + [-43, -8], + [-35, -73], + [-133, 72], + [-116, 30] + ], + [ + [2087, 3333], + [21, 71], + [99, 32], + [61, 65], + [66, 27], + [10, 76], + [-42, 76], + [50, 72], + [59, 182], + [-15, 67], + [47, 116], + [-56, 26], + [-21, 45], + [51, 124], + [33, -6], + [16, 86], + [83, 26], + [-27, 60], + [10, 129], + [-15, 29], + [30, 136], + [51, 5], + [9, 45], + [61, 16], + [35, 42], + [19, 159], + [-78, -16], + [0, 80], + [109, -3], + [37, 84], + [60, -11], + [-58, 131], + [32, 222], + [32, 37] + ], + [ + [2856, 5563], + [46, -29], + [102, 11], + [39, -14], + [129, 16], + [42, -33], + [80, -21], + [165, -101], + [99, -27], + [86, -4], + [55, -22], + [109, -105], + [164, -106], + [50, -15], + [144, -96], + [59, -17], + [97, -59], + [144, -152], + [161, -102], + [25, -50], + [87, -86], + [92, -51], + [51, -2], + [-16, -107], + [44, -97], + [33, -12], + [26, -68], + [161, -62], + [41, -73], + [-49, -64], + [-5, -66], + [-57, -9], + [-23, -46] + ], + [ + [6926, 4429], + [-65, -41], + [-78, -139], + [-49, -33], + [-78, -9], + [-121, 5], + [-47, 55], + [-176, 29], + [-53, -31], + [-54, -194], + [-35, -5], + [-46, -59], + [-128, -13], + [-55, -25], + [-31, -76], + [32, -59], + [-105, -66], + [-111, 5], + [-17, -34], + [-193, -37], + [-36, 13], + [-100, -16], + [-35, 41], + [-94, -30], + [-36, 42], + [-76, 8], + [-102, 134] + ], + [ + [2856, 5563], + [-26, 35], + [-78, 17], + [-28, 50], + [-131, 44] + ], + [ + [2593, 5709], + [24, 123], + [31, 13], + [2, 83], + [-51, 57], + [125, 64], + [82, 108], + [53, 46], + [78, -37], + [51, -61], + [53, 58], + [191, -74], + [60, -54], + [74, -29] + ], + [ + [3366, 6006], + [81, -96], + [117, -65], + [80, 8], + [101, -25], + [92, 25], + [75, -71], + [180, -17], + [37, -47], + [46, 0], + [67, -38], + [-9, -71], + [86, -113], + [160, -39], + [32, 46], + [58, -25], + [144, -34], + [111, 38], + [57, -18], + [35, 39], + [56, -30], + [78, 30], + [45, -81], + [66, 5], + [27, -29], + [74, -19], + [26, -29], + [80, 17], + [69, -51], + [77, 31], + [43, -49], + [71, 123], + [43, 30], + [14, 69], + [-108, 95], + [18, 52], + [-27, 94], + [66, 38], + [78, 196] + ], + [ + [3366, 6006], + [171, -29], + [48, 67], + [-97, 82], + [15, 46], + [138, -29], + [19, -40], + [75, 41], + [-8, -80], + [70, 2], + [-4, 191], + [42, 5], + [13, -72], + [74, 40], + [-20, 116], + [18, 58], + [-86, 38], + [23, 38], + [-59, 35], + [-36, 71], + [30, 47], + [104, -41], + [133, 11], + [-46, -70], + [59, -25], + [52, 38], + [88, -20], + [132, -63], + [87, 87], + [80, 30], + [17, 62], + [-44, 17], + [39, 80], + [-42, 9], + [17, 80], + [114, -74], + [83, -1], + [-2, 51], + [33, 44], + [62, 23], + [-67, 78], + [128, 4], + [35, -22], + [130, -13], + [19, 68], + [-68, 80], + [-89, 15], + [25, 98], + [92, -5], + [66, 56], + [11, 65], + [70, -9], + [75, 90], + [-9, 28], + [98, 129], + [-26, 132], + [80, 97], + [-52, 62], + [8, 68], + [-14, 118], + [35, 37], + [41, -44], + [63, -23], + [105, 31] + ], + [ + [6754, 2940], + [20, -46] + ], + [ + [6774, 2894], + [1, -63], + [-83, -142], + [-55, -20], + [-101, 19] + ], + [ + [6536, 2688], + [-72, 14], + [-29, -44], + [22, -44], + [-87, -34], + [-122, -92], + [-103, -15], + [-23, -28], + [61, -147], + [-116, -87], + [-2, -194] + ], + [ + [6065, 2017], + [-50, -41], + [-11, -90], + [-70, -87], + [-100, 27] + ], + [ + [5834, 1826], + [-50, 60], + [-58, 29] + ], + [ + [5726, 1915], + [-31, 44], + [-12, 237], + [-28, 98] + ], + [ + [5655, 2294], + [-48, 39] + ], + [ + [5607, 2333], + [-6, 32], + [-105, 15] + ], + [ + [5496, 2380], + [-4, 3] + ], + [ + [5492, 2383], + [-2, 2] + ], + [ + [5490, 2385], + [-14, 46], + [55, 55], + [-48, 49], + [15, 31] + ], + [ + [5415, 2800], + [17, 28], + [82, 0], + [31, 55], + [70, 11], + [10, 41], + [-17, 106], + [37, 31], + [30, 106], + [-5, 60], + [102, 44], + [43, -92], + [-33, -32], + [13, -78], + [46, -52], + [87, -5], + [50, 52], + [24, -48], + [128, 40], + [15, -38], + [137, -5], + [45, -39], + [124, 23], + [90, -32], + [183, 2], + [30, -38] + ], + [ + [5577, 2322], + [-30, 12] + ], + [ + [5547, 2334], + [30, -12] + ], + [ + [6904, 3721], + [-17, -82], + [15, -80], + [-96, -80], + [9, -67], + [-47, -19], + [-12, -71], + [-58, -51], + [78, -74], + [11, -170], + [-33, -87] + ], + [ + [6902, 2700], + [-74, -87], + [-41, -75], + [-204, 50], + [-5, 49], + [-42, 51] + ], + [ + [6774, 2894], + [78, -9], + [15, -114], + [35, -71] + ], + [ + [5490, 2385], + [28, -45], + [29, -6] + ], + [ + [5577, 2322], + [37, -36], + [35, -104], + [4, -104], + [-30, -30], + [12, -130], + [91, -75], + [50, -72], + [86, -26], + [74, 14], + [42, -40], + [108, 5], + [79, -18], + [155, -196], + [-52, -80], + [-68, -56], + [-231, -123], + [-95, 92], + [3, 54], + [-45, 5], + [18, -78], + [91, -68], + [-119, -275], + [-124, -226], + [-173, -137], + [-160, -154], + [-139, -77], + [-68, -8], + [-41, -43], + [-100, -62], + [-105, -32], + [-221, -32], + [-136, -34], + [-118, -13], + [-10, 75], + [-38, 52], + [8, 163], + [-75, 58], + [-9, 94] + ], + [ + [6138, 1203], + [-117, -79], + [-39, -120] + ], + [ + [5982, 1004], + [-57, -12], + [28, 119], + [37, 81], + [63, 54], + [133, 25], + [-48, -68] + ], + [ + [5834, 1826], + [-75, 43], + [-33, 46] + ], + [ + [5655, 2294], + [-48, 39] + ], + [ + [5496, 2380], + [-4, 3] + ], + [ + [1949, 3101], + [-43, 34], + [-78, -13], + [-83, 17], + [-67, 99], + [-101, 44], + [15, 86], + [33, 52], + [-3, 85], + [81, 95], + [-82, 51], + [101, 81], + [44, -29], + [68, 82], + [-40, 62], + [-91, -12], + [-125, 25], + [-62, -54], + [-34, 43], + [-55, 16], + [-74, -21], + [-142, 58], + [-48, -40], + [-130, -10], + [-31, 62], + [-68, -6], + [-41, 69], + [-69, 63], + [10, 46], + [-60, 35], + [-64, -7], + [-127, 55], + [11, 46], + [-31, 38], + [-147, 6], + [-102, -43], + [-77, 0], + [-39, 49], + [-62, 28], + [0, 38], + [-53, 56], + [-60, -6], + [-23, 188], + [20, 47], + [74, 60], + [27, 71], + [-14, 92], + [79, 32], + [-88, 87], + [-9, 108], + [39, 67], + [86, -11], + [85, -44], + [220, 87], + [56, 6], + [-23, 73], + [-58, 115], + [71, 59], + [271, -36], + [39, -49], + [-28, -64], + [33, -61], + [-34, -71], + [98, -6], + [64, -44], + [48, -7], + [10, -53], + [58, -4], + [143, 25], + [139, 53], + [13, 130], + [29, 26], + [-26, 54], + [67, 77], + [62, 42], + [104, 115], + [97, 10], + [127, -16], + [166, 88], + [155, 54], + [167, 38], + [55, -9], + [17, -43], + [55, 3], + [99, 39] + ], + [ + [8001, 2176], + [-4, -6] + ], + [ + [7997, 2170], + [-38, -75], + [23, -33], + [-18, -91] + ], + [ + [7964, 1971], + [-1, -5] + ], + [ + [7963, 1966], + [-46, -62] + ], + [ + [7917, 1904], + [-48, -22], + [-77, -64], + [-31, -84], + [-87, 39], + [-50, -2], + [-25, 17], + [-85, -7], + [-8, 29], + [57, 40], + [-3, 29], + [-69, -72], + [29, -41], + [83, -6], + [-16, -45], + [-76, -87], + [-53, -124], + [45, -175], + [-56, -61], + [-31, -73], + [-9, -80], + [41, -66], + [-34, -80], + [-79, -10], + [-30, -11], + [-44, 19], + [7, -44], + [-17, -40], + [-12, -46], + [-23, -10], + [-79, 54], + [-8, 33], + [56, 72], + [-89, -8], + [-26, -39], + [-42, 6], + [11, 54], + [-55, -18], + [-19, -20], + [-46, 1], + [-54, -48], + [-9, -89], + [-21, -34], + [18, -94], + [-78, -15], + [-19, 55], + [-4, 97], + [-41, 13], + [-39, 4], + [-23, -7], + [-14, -11], + [-28, 16], + [-21, -2], + [-38, -9], + [0, -5], + [48, 11], + [16, -4], + [22, -14], + [7, -21], + [-43, -49], + [-77, -23], + [-23, -21], + [-3, -29], + [62, -90], + [-22, -35], + [-11, 14], + [-40, 1], + [-100, 19], + [2, 34], + [-50, 119], + [-57, 71], + [-40, 89], + [37, 110], + [-62, 94], + [63, 57], + [97, 140], + [28, 116], + [-36, 190], + [-60, 99], + [-66, 31], + [-126, 29], + [-117, 2], + [42, 140], + [39, 67], + [-13, 37] + ], + [ + [6902, 2700], + [15, 53], + [83, -43], + [76, 31], + [35, -46], + [101, 8], + [42, 39], + [17, 67], + [42, 64], + [88, -31], + [-1, -47], + [86, -57], + [-1, -41], + [71, -94], + [34, -86], + [101, -86], + [3, -69], + [70, -23], + [29, -52], + [57, -21], + [64, -69], + [48, 17], + [39, -38] + ], + [ + [6169, 885], + [55, -120], + [33, -33], + [-17, -46], + [20, -145], + [-47, -140], + [4, -105], + [-54, -62], + [-52, -9], + [-142, 32], + [-56, 30], + [-12, 65], + [19, 116], + [46, 44], + [31, 122], + [132, 226], + [40, 25] + ], + [ + [7688, 1764], + [73, -34], + [93, -9], + [61, -56], + [-61, -62], + [-32, -2], + [-85, -86], + [-84, -54], + [-23, -34], + [15, -52], + [110, -57], + [28, -48], + [-52, -39], + [-153, 50], + [-8, 86], + [-30, 79], + [-40, 52], + [50, 151], + [75, 64], + [11, 54], + [52, -3] + ], + [ + [6411, 585], + [120, -26], + [-29, -54], + [134, -158], + [-49, -94], + [-10, -107], + [45, -42], + [-39, -46], + [-57, -14], + [-80, 42], + [13, 47], + [-75, 75], + [44, 38], + [-2, 93], + [-65, 14], + [18, 54], + [12, 36], + [-21, 31], + [6, 92], + [35, 19] + ], + [ + [6704, 846], + [41, -14], + [-1, -92], + [25, -64], + [49, -20], + [-4, -53], + [-56, -5], + [-37, -17], + [-9, -25], + [14, -78], + [-35, -29], + [-60, 2], + [-26, 152], + [-37, 54], + [-59, 13], + [-10, 35], + [16, 19], + [111, 42], + [20, 38], + [-10, 24], + [10, 11], + [23, 7], + [35, 0] + ], + [ + [6993, 964], + [30, -22], + [73, -28], + [18, -78], + [-32, -50], + [-76, -51], + [-19, -43], + [-35, -1], + [-12, 27], + [-18, -1], + [-41, -37], + [-28, 93], + [18, 100], + [48, 44], + [7, 42], + [43, -3], + [24, 8] + ], + [ + [7260, 713], + [68, -45], + [-20, -87], + [27, -66], + [-83, 6], + [-24, -18], + [-16, -31], + [-60, 84], + [5, 67], + [69, 76], + [34, 14] + ], + [ + [7619, 1260], + [99, -42], + [-101, -153], + [-56, 30], + [-66, -5], + [4, 109], + [51, 68], + [69, -7] + ], + [ + [6911, 497], + [38, -69], + [-40, -31], + [-6, -85], + [55, -80], + [-51, -21], + [-29, -67], + [-39, 47], + [0, 88], + [-20, 91], + [51, 48], + [41, 79] + ], + [ + [7275, 516], + [55, -9], + [45, -61], + [-57, -45], + [4, -72], + [-72, -68], + [-34, 45], + [-2, 93], + [-27, 52], + [32, 22], + [15, 34], + [41, 9] + ], + [ + [7240, 258], + [54, -18], + [71, -55], + [7, -61], + [-29, -36], + [-86, -20], + [-19, 57], + [-70, 35], + [72, 98] + ], + [ + [7466, 945], + [53, -68], + [31, -9], + [-27, -211], + [-40, -3], + [-43, 76], + [19, 45], + [-65, 60], + [72, 110] + ], + [ + [6621, 441], + [61, -6], + [59, -66], + [8, -82], + [-44, -75], + [-59, -35], + [-25, 56], + [27, 86], + [-27, 122] + ], + [ + [7028, 656], + [46, 7], + [-21, -143], + [-33, -70], + [-36, -3], + [-22, -14], + [-26, 99], + [-1, 64], + [34, 29], + [22, 51], + [37, -20] + ], + [ + [7020, 444], + [42, -91], + [-52, -142], + [-81, 80], + [-4, 103], + [62, 51], + [33, -1] + ], + [ + [6351, 473], + [31, -50], + [-60, -34], + [27, -41], + [61, -9], + [12, -74], + [-71, -83], + [-33, 79], + [-30, 132], + [18, 49], + [45, 31] + ], + [ + [6937, 715], + [15, -30], + [29, 2], + [-1, -30], + [-46, -48], + [-5, -71], + [-51, 21], + [-51, 67], + [101, 90], + [9, -1] + ], + [ + [7307, 944], + [38, -23], + [-36, -153], + [-48, -12], + [-39, 60], + [32, 17], + [-5, 40], + [26, 28], + [-5, 60], + [37, -17] + ], + [ + [7147, 141], + [73, -30], + [7, -105], + [-70, -6], + [-66, 38], + [12, 87], + [44, 16] + ], + [ + [6777, 591], + [-12, -78], + [68, -90], + [-74, -36], + [-53, 60], + [30, 42], + [-17, 75], + [26, 27], + [32, 0] + ], + [ + [7434, 660], + [37, -45], + [-5, -89], + [-95, 45], + [17, 76], + [46, 13] + ], + [ + [7347, 398], + [23, -88], + [54, -89], + [-36, -17], + [-101, 51], + [43, 76], + [17, 67] + ], + [ + [7387, 819], + [66, -52], + [-25, -42], + [-59, -35], + [-25, 41], + [43, 88] + ], + [ + [7515, 1009], + [74, -24], + [-39, -85], + [-32, -19], + [-46, 71], + [43, 57] + ], + [ + [6611, 484], + [-67, 39], + [57, 78], + [10, -117] + ], + [ + [7113, 778], + [28, -58], + [-38, -38], + [-69, 6], + [-27, 37], + [106, 53] + ], + [ + [6138, 1203], + [-102, -165], + [-54, -34] + ], + [ + [7361, 627], + [10, -64], + [70, -29], + [11, -40], + [-65, -22], + [-33, 18], + [10, 59], + [-39, 55], + [36, 23] + ], + [ + [6835, 590], + [-2, -67], + [-65, -10], + [32, 77], + [35, 0] + ], + [ + [7387, 406], + [38, -38], + [-47, -60], + [-21, 71], + [30, 27] + ], + [ + [7748, 1366], + [-61, 27] + ], + [ + [7687, 1393], + [61, -27] + ], + [ + [7809, 1738], + [0, 51] + ], + [ + [7809, 1789], + [0, -51] + ], + [ + [7798, 1554], + [21, 24] + ], + [ + [7819, 1578], + [-21, -24] + ], + [ + [7863, 1856], + [46, 43] + ], + [ + [7909, 1899], + [-46, -43] + ], + [ + [7687, 1395], + [4, 38] + ], + [ + [7691, 1433], + [-4, -38] + ], + [ + [7814, 1819], + [31, 37] + ], + [ + [7845, 1856], + [-31, -37] + ], + [ + [7731, 1459], + [39, 36] + ], + [ + [7770, 1495], + [-39, -36] + ], + [ + [7852, 1588], + [24, 13] + ], + [ + [7876, 1601], + [-24, -13] + ], + [ + [7879, 1698], + [-16, 21] + ], + [ + [7863, 1719], + [16, -21] + ], + [ + [7836, 1730], + [-11, 7] + ], + [ + [7825, 1737], + [11, -7] + ], + [ + [7862, 1723], + [-4, 7] + ], + [ + [7858, 1730], + [4, -7] + ], + [ + [7796, 1549], + [-3, -7] + ], + [ + [7793, 1542], + [3, 7] + ], + [ + [7703, 1442], + [-5, -4] + ], + [ + [7698, 1438], + [5, 4] + ], + [ + [7839, 12640], + [-46, -54], + [-117, -30], + [-65, -36], + [-16, 53], + [67, 31], + [-40, 61], + [123, -20], + [61, 75], + [-113, -10], + [-51, 192], + [-82, 18], + [-64, 51], + [1, 55], + [-42, 48], + [-44, -54], + [-76, 11], + [-52, 66], + [-59, 14], + [-34, 61], + [-39, 1], + [-54, 79], + [-80, -9], + [-47, 28], + [-18, 50], + [-15, 145], + [-18, 21] + ], + [ + [8155, 14373], + [104, 79], + [94, -45], + [24, -61], + [-37, -42], + [56, -38], + [59, -9], + [115, 46], + [50, -49], + [9, -45], + [97, -14], + [5, -59], + [44, -40], + [-6, -63], + [72, -72], + [117, 34], + [45, -35], + [123, 32], + [44, -11], + [182, 97], + [22, -35], + [84, 62], + [66, -4], + [14, -53], + [156, -19], + [30, -75], + [99, -9], + [86, 42], + [103, -45], + [119, -33], + [41, -35], + [71, -11], + [-31, -66], + [-74, -57], + [119, -19], + [29, 55], + [91, -6], + [61, -39], + [77, -4], + [58, -57], + [81, 42], + [145, -39], + [27, -45], + [6, -106], + [-44, -30], + [53, -50], + [1, -77], + [-34, -37], + [-8, -105], + [-23, -35], + [-2, -78], + [47, -63], + [-2, -42], + [-66, -101], + [-31, 6] + ], + [ + [7818, 4501], + [53, 4], + [42, -55], + [77, -3], + [-13, 88], + [58, -14], + [58, -53], + [163, 14], + [45, -47], + [57, -25], + [75, 51], + [7, -83], + [-56, -2], + [-63, -55], + [-17, -81], + [-91, -86], + [-73, -26], + [-10, -72], + [32, -105], + [-17, -29], + [-9, -131], + [-20, -36], + [96, -16], + [-1, -59], + [33, -131], + [62, -25], + [36, 25], + [58, -92], + [-24, -128], + [-53, -20], + [-48, -57], + [0, -83], + [102, -113], + [-31, -83], + [-50, -59], + [67, -83], + [-56, -50], + [5, -54], + [-110, -18], + [-48, -50], + [-26, 4], + [-9, -41], + [4, -19], + [-63, -56], + [43, -10], + [-17, -69], + [8, -50], + [9, -25], + [-14, -11], + [-8, -18], + [-33, 11], + [-66, 51], + [-9, 68], + [-51, 48], + [-32, 5], + [-1, -25], + [28, -30], + [33, -101], + [37, -31], + [86, -3], + [21, -59], + [-19, -116], + [-74, -6] + ], + [ + [7997, 2170], + [83, 8], + [109, -53], + [54, -82], + [69, -48], + [-21, -80], + [58, -56], + [7, -46], + [-89, 20], + [-62, -145], + [-68, -18], + [-19, 71], + [-14, 19], + [-142, 10], + [-6, 37], + [64, 50], + [-3, 63], + [-53, 51] + ], + [ + [8375, 1716], + [63, -106], + [-4, -79], + [-36, -94], + [-89, -29], + [58, -32], + [51, -58], + [-32, -56], + [21, -80], + [56, -45], + [2, -75], + [71, -54], + [-15, -48], + [-63, 10], + [-125, 59], + [-37, 34], + [-51, 138], + [9, 43], + [-38, 141], + [70, 78], + [8, 39], + [-57, 68], + [-34, 100], + [61, -27], + [79, 75], + [32, -2] + ], + [ + [8303, 2689], + [56, -11], + [26, -43], + [36, -140], + [45, -39], + [-18, -54], + [26, -49], + [-86, -47], + [11, -43], + [-43, -71], + [-29, -153], + [-29, 2], + [-70, 70], + [-26, 112], + [50, 32], + [28, -12], + [0, 50], + [-23, 17], + [5, 45], + [-40, 44], + [-2, 24], + [-23, 28], + [11, 29], + [-7, 18], + [49, 71], + [-49, 133], + [64, 13], + [38, -26] + ], + [ + [7978, 1268], + [167, -20], + [66, 3], + [21, -116], + [-1, -106], + [-26, -17], + [-110, -10], + [-85, 55], + [-130, 9], + [-37, 25], + [-27, 9], + [10, 34], + [-1, 22], + [-16, 12], + [27, 36], + [5, 51], + [38, 1], + [73, 38], + [26, -26] + ], + [ + [8438, 2230], + [6, -160], + [60, -19], + [-41, -78], + [104, -76], + [20, -92], + [77, -85], + [-50, -115], + [-74, 52], + [12, 57], + [-23, 50], + [-87, -3], + [-48, 24], + [-18, 73], + [-38, 35], + [18, 277], + [37, 74], + [45, -14] + ], + [ + [8266, 1020], + [143, -75], + [8, -80], + [-79, -71], + [-23, 35], + [-1, -13], + [-15, -27], + [-27, -9], + [-22, -21], + [-65, -41], + [-21, 42], + [-13, 48], + [3, 16], + [-12, 8], + [-35, 2], + [-18, 74], + [-40, 60], + [97, 29], + [29, -8], + [91, 31] + ], + [ + [8527, 1349], + [61, -3], + [88, -119], + [10, -63], + [-38, -121], + [-88, -22], + [-82, 60], + [49, 70], + [-116, 52], + [-17, 55], + [50, 105], + [83, -14] + ], + [ + [7687, 1393], + [0, 2] + ], + [ + [7691, 1433], + [7, 5] + ], + [ + [7703, 1442], + [28, 17] + ], + [ + [7770, 1495], + [8, 14] + ], + [ + [7778, 1509], + [15, 33] + ], + [ + [7796, 1549], + [2, 5] + ], + [ + [7819, 1578], + [33, 10] + ], + [ + [7876, 1601], + [85, 87], + [62, -34], + [40, 64], + [39, 40], + [13, -21], + [8, -71], + [-50, 8], + [7, -43], + [-32, -53], + [-77, -14], + [-41, -45], + [-61, -21], + [-55, -61], + [-33, -70], + [-33, -1] + ], + [ + [8483, 1744], + [31, -9], + [4, -83], + [21, -43], + [71, -41], + [-48, -103], + [18, -108], + [-139, 10], + [-14, 60], + [35, 108], + [1, 75], + [-45, 52], + [-12, 67], + [77, 15] + ], + [ + [8205, 2671], + [20, -69], + [-32, -96], + [8, -39], + [-10, -16], + [13, -17], + [9, -40], + [20, -27], + [-10, -60], + [45, -33], + [-98, -61], + [-6, 68], + [-55, 29], + [-16, 28], + [-3, 39], + [12, 9], + [4, 15], + [-10, 22], + [9, 35], + [18, 46], + [-32, 61], + [33, 34], + [-1, 23], + [54, 59], + [28, -10] + ], + [ + [7724, 970], + [65, -22], + [79, -114], + [-21, -72], + [33, -13], + [-33, -96], + [-31, 5], + [-7, 72], + [-34, -46], + [-30, -13], + [-17, 33], + [-31, 11], + [-30, 72], + [4, 58], + [53, 125] + ], + [ + [8028, 596], + [81, -12], + [-58, -122], + [6, -91], + [47, -117], + [-55, -44], + [-81, 53], + [37, 82], + [-10, 85], + [-42, 35], + [-51, -17], + [-7, 59], + [25, 44], + [32, -5], + [29, 10], + [47, 40] + ], + [ + [7719, 706], + [29, -70], + [86, -60], + [-22, -57], + [59, -51], + [-43, -31], + [11, -53], + [-41, -6], + [-35, 15], + [-5, -20], + [-52, 22], + [-43, 142], + [56, 169] + ], + [ + [8637, 479], + [36, -85], + [53, -64], + [7, -57], + [-47, -51], + [-59, -20], + [-78, 70], + [-6, 96], + [7, 21], + [-12, 33], + [0, 40], + [99, 17] + ], + [ + [8426, 933], + [136, -81], + [-8, -89], + [-21, -30], + [-31, -13], + [-27, 6], + [-17, -9], + [-50, -94], + [-80, 23], + [26, 48], + [40, -9], + [22, 14], + [8, 43], + [-78, 42], + [79, 86], + [1, 63] + ], + [ + [7863, 1719], + [0, 2], + [0, 1], + [-1, 1] + ], + [ + [7858, 1730], + [-22, 0] + ], + [ + [7825, 1737], + [-16, 1] + ], + [ + [7809, 1789], + [5, 30] + ], + [ + [7845, 1856], + [18, 0] + ], + [ + [7909, 1899], + [8, 5] + ], + [ + [7963, 1966], + [50, -108], + [-68, -38], + [23, -118], + [-89, -4] + ], + [ + [8166, 541], + [82, -51], + [12, -36], + [64, -60], + [-54, -151], + [-97, 75], + [-34, 88], + [-1, 70], + [28, 65] + ], + [ + [8114, 1660], + [60, -7], + [37, -44], + [61, -128], + [-39, -34], + [-96, 2], + [-47, 34], + [-26, 59], + [-27, 20], + [69, 43], + [8, 55] + ], + [ + [8094, 859], + [-2, -21], + [14, -8], + [44, -9], + [-6, -14], + [15, -44], + [-2, -56], + [46, -69], + [-16, -51], + [-128, 44], + [-11, 184], + [46, 44] + ], + [ + [8437, 436], + [14, -10], + [10, -81], + [-16, -17], + [19, -42], + [78, 10], + [3, -58], + [34, -43], + [-40, -32], + [-63, 0], + [-13, 102], + [-15, 13], + [-46, -11], + [-22, 21], + [1, 35], + [-24, 44], + [-10, 56], + [60, -9], + [30, 22] + ], + [ + [7739, 1036], + [23, -33], + [60, 19], + [55, -6], + [47, -19], + [18, 6], + [40, -44], + [-15, -20], + [-3, -31], + [-37, -25], + [-3, 10], + [-12, 4], + [-5, -3], + [-19, -22], + [-57, 27], + [-35, 51], + [-67, 24], + [10, 62] + ], + [ + [7869, 297], + [5, -89], + [57, -55], + [-20, -49], + [-98, -9], + [-1, 41], + [19, 13], + [1, 7], + [-12, 12], + [-30, 9], + [-19, 14], + [2, 27], + [-18, 44], + [114, 35] + ], + [ + [8037, 175], + [110, -40], + [75, -87], + [-77, -27], + [-87, 13], + [-39, 65], + [18, 76] + ], + [ + [7915, 894], + [8, -14], + [39, -17], + [59, -9], + [-21, -102], + [-71, -33], + [-24, 35], + [-53, 13], + [30, 97], + [12, 9], + [6, 9], + [15, 12] + ], + [ + [7959, 1436], + [0, -46], + [-61, -42], + [-93, 27], + [95, 125], + [32, 5], + [27, -69] + ], + [ + [7796, 1163], + [12, -55], + [11, -16], + [20, -5], + [40, -26], + [78, -10], + [-39, -46], + [-38, 20], + [-60, 6], + [-55, -14], + [-29, 47], + [7, 95], + [53, 4] + ], + [ + [8277, 586], + [103, -25], + [25, -144], + [-59, 10], + [-75, 48], + [24, 41], + [-18, 70] + ], + [ + [7901, 524], + [-73, -14], + [20, 65], + [-37, 29], + [39, 41], + [46, 108], + [30, -39], + [-23, -101], + [-6, -35], + [16, -24], + [-12, -30] + ], + [ + [7992, 1542], + [78, -15], + [5, -35], + [49, -58], + [-43, -7], + [-35, -17], + [-28, 38], + [-59, -7], + [-19, 69], + [52, 32] + ], + [ + [7961, 439], + [0, -114], + [-32, -22], + [-95, 21], + [-26, 26], + [-47, 26], + [76, 1], + [8, 21], + [116, 41] + ], + [ + [8341, 779], + [71, -33], + [-13, -53], + [-43, 14], + [-41, -51], + [27, -65], + [-62, 7], + [-16, 22], + [13, 33], + [-11, 13], + [23, 20], + [-2, 14], + [28, 30], + [-9, 19], + [-22, -1], + [-6, 32], + [21, 4], + [23, 27], + [19, -32] + ], + [ + [8478, 648], + [0, -92], + [41, -60], + [-40, -29], + [-62, 30], + [-50, 88], + [86, 72], + [25, -9] + ], + [ + [8254, 755], + [16, -9], + [35, 0], + [6, -14], + [-28, -35], + [0, -15], + [-24, -18], + [12, -7], + [-11, -39], + [-15, -29], + [1, -21], + [-49, 0], + [17, 57], + [-48, 72], + [88, 58] + ], + [ + [8132, 1424], + [-40, -88], + [-14, -7], + [1, -9], + [24, -32], + [-64, -4], + [-7, 102], + [45, 35], + [55, 3] + ], + [ + [8472, 468], + [30, -42], + [30, -7], + [12, -32], + [-17, -69], + [-66, -26], + [7, 56], + [-8, 71], + [12, 49] + ], + [ + [7753, 254], + [14, -38], + [1, -25], + [8, -10], + [38, -15], + [15, -11], + [-17, -14], + [-10, -15], + [-18, -41], + [-69, 14], + [-18, 31], + [13, 90], + [43, 34] + ], + [ + [7961, 551], + [-42, 3], + [-18, 41], + [29, 36], + [6, 30], + [62, 84], + [28, -38], + [-25, -72], + [24, -36], + [-64, -48] + ], + [ + [8289, 1814], + [67, -11], + [18, -74], + [-100, -37], + [-37, 38], + [52, 84] + ], + [ + [8395, 263], + [58, 11], + [13, -43], + [-20, -40], + [-45, 0], + [-80, 76], + [13, 51], + [43, 5], + [0, -38], + [18, -22] + ], + [ + [8513, 593], + [115, -93], + [-93, -33], + [-13, 41], + [-39, 46], + [30, 39] + ], + [ + [7975, 1377], + [52, -26], + [4, -56], + [-51, -12], + [-25, 22], + [-26, -7], + [-37, 17], + [83, 62] + ], + [ + [7674, 415], + [20, -42], + [93, -75], + [-44, -41], + [-102, 120], + [33, 38] + ], + [ + [8215, 1326], + [1, -60], + [-66, -11], + [-12, 29], + [-23, 8], + [-31, 29], + [4, 10], + [57, 0], + [35, 5], + [35, -10] + ], + [ + [8109, 2273], + [63, -74], + [-66, 0], + [3, 74] + ], + [ + [7894, 2543], + [32, -8], + [48, -50], + [-28, -47], + [-25, 57], + [-29, 31], + [2, 17] + ], + [ + [7989, 954], + [64, -37], + [-27, -57], + [-76, 34], + [17, 10], + [3, 29], + [19, 21] + ], + [ + [8523, 716], + [-18, -73], + [-52, 16], + [14, 60], + [56, -3] + ], + [ + [7845, 1353], + [32, -4], + [8, -81], + [-44, 5], + [4, 80] + ], + [ + [7822, 630], + [-70, 35], + [25, 16], + [27, 38], + [18, -89] + ], + [ + [8218, 1436], + [-31, -60], + [-51, 8], + [17, 55], + [65, -3] + ] + ], + "transform": { + "scale": [0.0003735710201069902, 0.00037732277964443704], + "translate": [85.832496, 21.541117520791936] + }, + "objects": { + "westbengal_district": { + "type": "GeometryCollection", + "geometries": [ + { + "arcs": [[0, 1, 2, 3]], + "type": "Polygon", + "properties": { + "cartodb_id": 129, + "censuscode": 331, + "dt_cen_cd": 5, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Dakshin Dinajpur" + } + }, + { + "arcs": [[4, 5, 6, 7]], + "type": "Polygon", + "properties": { + "cartodb_id": 134, + "censuscode": 327, + "dt_cen_cd": 1, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Darjiling" + } + }, + { + "arcs": [[8, 9, 10, 11, -3, 12, 13, 14]], + "type": "Polygon", + "properties": { + "cartodb_id": 360, + "censuscode": 332, + "dt_cen_cd": 6, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Maldah" + } + }, + { + "arcs": [[-1, 15, -11, 16, -9, 17, -7, 18]], + "type": "Polygon", + "properties": { + "cartodb_id": 595, + "censuscode": 330, + "dt_cen_cd": 4, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Uttar Dinajpur" + } + }, + { + "arcs": [[[19, 20]], [[21]], [[22]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 306, + "censuscode": 329, + "dt_cen_cd": 3, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Cooch Behar" + } + }, + { + "arcs": [[23, 24, 25, 26, 27, 28, 29, -14]], + "type": "Polygon", + "properties": { + "cartodb_id": 385, + "censuscode": 333, + "dt_cen_cd": 7, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Murshidabad" + } + }, + { + "arcs": [[[30, 31, 32, -27, 33]], [[34, -25]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 390, + "censuscode": 336, + "dt_cen_cd": 10, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Nadia" + } + }, + { + "arcs": [[35, 36, 37, 38, 39, 40]], + "type": "Polygon", + "properties": { + "cartodb_id": 434, + "censuscode": 344, + "dt_cen_cd": 18, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Paschim Medinipur" + } + }, + { + "arcs": [[41, -41, 42, 43]], + "type": "Polygon", + "properties": { + "cartodb_id": 49, + "censuscode": 339, + "dt_cen_cd": 13, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Bankura" + } + }, + { + "arcs": [[-33, 44, -44, 45, 46, 47, -28]], + "type": "Polygon", + "properties": { + "cartodb_id": 55, + "censuscode": 335, + "dt_cen_cd": 9, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Barddhaman" + } + }, + { + "arcs": [[-29, -48, 48]], + "type": "Polygon", + "properties": { + "cartodb_id": 88, + "censuscode": 334, + "dt_cen_cd": 8, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Birbhum" + } + }, + { + "arcs": [[49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, -37, 60]], + "type": "Polygon", + "properties": { + "cartodb_id": 219, + "censuscode": 341, + "dt_cen_cd": 15, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Haora" + } + }, + { + "arcs": [[63, -61, -36, -42, -45, -32]], + "type": "Polygon", + "properties": { + "cartodb_id": 231, + "censuscode": 338, + "dt_cen_cd": 12, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Hugli" + } + }, + { + "arcs": [[64, -51, 65]], + "type": "Polygon", + "properties": { + "cartodb_id": 314, + "censuscode": 342, + "dt_cen_cd": 16, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Kolkata" + } + }, + { + "arcs": [[[-60, 66, -62, 67, -38]], [[68, 69]], [[70, -54]]], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 454, + "censuscode": 345, + "dt_cen_cd": 19, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Purba Medinipur" + } + }, + { + "arcs": [[-43, -40, 73, -46]], + "type": "Polygon", + "properties": { + "cartodb_id": 458, + "censuscode": 340, + "dt_cen_cd": 14, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Puruliya" + } + }, + { + "arcs": [ + [[74, 75, 76, 77, 78, -52, -65, 79]], + [[80]], + [[81]], + [[82]], + [[83]], + [[84]], + [[85]], + [[86]], + [[87]], + [[88]], + [[89]], + [[90]], + [[91]], + [[92]], + [[93]], + [[94]], + [[95]], + [[96]], + [[97]], + [[98]], + [[99]], + [[100]], + [[101]], + [[102]], + [[103]], + [[104]], + [[-69, 105]], + [[106]], + [[107]], + [[108]] + ], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 545, + "censuscode": 343, + "dt_cen_cd": 17, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "South 24 Parganas" + } + }, + { + "arcs": [[-21, 135, -5, 136]], + "type": "Polygon", + "properties": { + "cartodb_id": 248, + "censuscode": 328, + "dt_cen_cd": 2, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "Jalpaiguri" + } + }, + { + "arcs": [ + [[-80, -66, -50, -64, -31, 137]], + [[-76, 138]], + [[139]], + [[140]], + [[141]], + [[142]], + [[143]], + [[144]], + [ + [ + -111, + 145, + -119, + 146, + -134, + 147, + -123, + 148, + 149, + -132, + 150, + -115, + 151, + -125, + 152 + ] + ], + [[153]], + [[154]], + [[155]], + [[156]], + [[157]], + [[158]], + [[159]], + [ + [ + -127, + 160, + -131, + 161, + -129, + 162, + -113, + 163, + -121, + 164, + -117, + 165, + -78, + 166 + ] + ], + [[167]], + [[168]], + [[169]], + [[170]], + [[171]], + [[172]], + [[173]], + [[174]], + [[175]], + [[176]], + [[177]], + [[178]], + [[179]], + [[180]], + [[181]], + [[182]], + [[183]], + [[184]], + [[185]], + [[186]], + [[187]], + [[188]], + [[189]], + [[190]], + [[191]], + [[192]], + [[193]], + [[194]], + [[195]], + [[196]], + [[197]], + [[198]], + [[199]], + [[200]] + ], + "type": "MultiPolygon", + "properties": { + "cartodb_id": 414, + "censuscode": 337, + "dt_cen_cd": 11, + "st_cen_cd": 19, + "st_nm": "West Bengal", + "district": "North 24 Parganas" + } + } + ] + } + } +} diff --git a/server/app.js b/server/app.js deleted file mode 100644 index 9720dade8c..0000000000 --- a/server/app.js +++ /dev/null @@ -1,67 +0,0 @@ -const createError = require('http-errors'); -const express = require('express'); -const path = require('path'); -const cookieParser = require('cookie-parser'); -const bodyParser = require('body-parser'); -const logger = require('morgan'); -const cors = require('cors'); -const assert = require('assert'); -const redis = require('redis'); -const responseTime = require('response-time'); -const MongoClient = require('mongodb').MongoClient; -require('dotenv').config(); - -const indexRouter = require('./routes/index'); -const statesRouter = require('./routes/states'); - -/* client = redis.createClient(); -client.on('error', (err) => { - console.log('Error ' + err); -});*/ - -MongoDB = null; -const uri = `mongodb+srv://${process.env.DB_NAME}:${process.env.DB_PASSWORD}@${process.env.DB_NAME}-h6o7s.gcp.mongodb.net/test?retryWrites=true&w=majority&replicaSet=rs`; -MongoClient.connect(uri, { - poolSize: 10, - useUnifiedTopology: true, -}, (err, db) => { - assert.equal(null, err); - MongoDB = db; -}); - -const app = express(); -app.use(cors({credentials: true, origin: 'http://localhost:3001'})); -app.use(responseTime()); - -// view engine setup -app.set('views', path.join(__dirname, 'views')); -app.set('view engine', 'jade'); - -app.use(logger('dev')); -app.use(express.json()); -app.use(express.urlencoded({extended: false})); -app.use(cookieParser()); -app.use(bodyParser.json()); -app.use(bodyParser.urlencoded({extended: true})); -app.use(express.static(path.join(__dirname, 'public'))); - -app.use('/', indexRouter); -app.use('/states', statesRouter); - -// catch 404 and forward to error handler -app.use(function(req, res, next) { - next(createError(404)); -}); - -// error handler -app.use(function(err, req, res, next) { - // set locals, only providing error in development - res.locals.message = err.message; - res.locals.error = req.app.get('env') === 'development' ? err : {}; - - // render the error page - res.status(err.status || 500); - res.render('error'); -}); - -module.exports = app; diff --git a/server/bin/www b/server/bin/www deleted file mode 100755 index b09c4b4af8..0000000000 --- a/server/bin/www +++ /dev/null @@ -1,90 +0,0 @@ -#!/usr/bin/env node - -/** - * Module dependencies. - */ - -var app = require('../app'); -var debug = require('debug')('server:server'); -var http = require('http'); - -/** - * Get port from environment and store in Express. - */ - -var port = normalizePort(process.env.PORT || '3000'); -app.set('port', port); - -/** - * Create HTTP server. - */ - -var server = http.createServer(app); - -/** - * Listen on provided port, on all network interfaces. - */ - -server.listen(port); -server.on('error', onError); -server.on('listening', onListening); - -/** - * Normalize a port into a number, string, or false. - */ - -function normalizePort(val) { - var port = parseInt(val, 10); - - if (isNaN(port)) { - // named pipe - return val; - } - - if (port >= 0) { - // port number - return port; - } - - return false; -} - -/** - * Event listener for HTTP server "error" event. - */ - -function onError(error) { - if (error.syscall !== 'listen') { - throw error; - } - - var bind = typeof port === 'string' - ? 'Pipe ' + port - : 'Port ' + port; - - // handle specific listen errors with friendly messages - switch (error.code) { - case 'EACCES': - console.error(bind + ' requires elevated privileges'); - process.exit(1); - break; - case 'EADDRINUSE': - console.error(bind + ' is already in use'); - process.exit(1); - break; - default: - throw error; - } -} - -/** - * Event listener for HTTP server "listening" event. - */ - -function onListening() { - var addr = server.address(); - var bind = typeof addr === 'string' - ? 'pipe ' + addr - : 'port ' + addr.port; - debug('Listening on ' + bind); -} diff --git a/server/package-lock.json b/server/package-lock.json deleted file mode 100644 index af620a46e4..0000000000 --- a/server/package-lock.json +++ /dev/null @@ -1,2168 +0,0 @@ -{ - "name": "server", - "version": "0.0.0", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "@types/mime-types": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.0.tgz", - "integrity": "sha1-nKUs2jY/aZxpRmwqbM2q2RPqenM=" - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" - }, - "accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", - "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" - } - }, - "acorn": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz", - "integrity": "sha1-q259nYhqrKiwhbwzEreaGYQz8Oc=" - }, - "acorn-globals": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-1.0.9.tgz", - "integrity": "sha1-VbtemGkVB7dFedBRNBMhfDgMVM8=", - "requires": { - "acorn": "^2.1.0" - } - }, - "agent-base": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz", - "integrity": "sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==" - }, - "align-text": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", - "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", - "requires": { - "kind-of": "^3.0.2", - "longest": "^1.0.1", - "repeat-string": "^1.5.2" - } - }, - "amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" - }, - "ansi-align": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz", - "integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=", - "requires": { - "string-width": "^2.0.0" - } - }, - "ansi-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", - "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" - }, - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "requires": { - "color-convert": "^1.9.0" - } - }, - "anymatch": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", - "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - } - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" - }, - "asap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/asap/-/asap-1.0.0.tgz", - "integrity": "sha1-sqRdpf36ILBJb8N2jMJ8EvqRan0=" - }, - "assert": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz", - "integrity": "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==", - "requires": { - "es6-object-assign": "^1.1.0", - "is-nan": "^1.2.1", - "object-is": "^1.0.1", - "util": "^0.12.0" - } - }, - "async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" - }, - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" - }, - "basic-auth": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", - "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", - "requires": { - "safe-buffer": "5.1.2" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - } - }, - "binary-extensions": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.0.0.tgz", - "integrity": "sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow==" - }, - "bl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-2.2.0.tgz", - "integrity": "sha512-wbgvOpqopSr7uq6fJrLH8EsvYMJf9gzfo2jCsL2eTy75qXPukA4pCgHamOQkZtY5vmfVtjB+P3LNlMHW5CEZXA==", - "requires": { - "readable-stream": "^2.3.5", - "safe-buffer": "^5.1.1" - } - }, - "body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", - "requires": { - "bytes": "3.1.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.7.0", - "raw-body": "2.4.0", - "type-is": "~1.6.17" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "boxen": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz", - "integrity": "sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw==", - "requires": { - "ansi-align": "^2.0.0", - "camelcase": "^4.0.0", - "chalk": "^2.0.1", - "cli-boxes": "^1.0.0", - "string-width": "^2.0.0", - "term-size": "^1.2.0", - "widest-line": "^2.0.0" - } - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "requires": { - "fill-range": "^7.0.1" - } - }, - "bson": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/bson/-/bson-1.1.3.tgz", - "integrity": "sha512-TdiJxMVnodVS7r0BdL42y/pqC9cL2iKynVwA0Ho3qbsQYr428veL3l7BQyuqiw+Q5SqqoT0m4srSY/BlZ9AxXg==" - }, - "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" - }, - "bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" - }, - "camelcase": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz", - "integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0=" - }, - "capture-stack-trace": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz", - "integrity": "sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw==" - }, - "center-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", - "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", - "requires": { - "align-text": "^0.1.3", - "lazy-cache": "^1.0.3" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "character-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/character-parser/-/character-parser-1.2.1.tgz", - "integrity": "sha1-wN3kqxgnE7kZuXCVmhI+zBow/NY=" - }, - "chokidar": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.3.1.tgz", - "integrity": "sha512-4QYCEWOcK3OJrxwvyyAOxFuhpvOVCYkr33LPfFNBjAD/w3sEzWsp2BUOkI4l9bHvWioAd0rc6NlHUOEaWkTeqg==", - "requires": { - "anymatch": "~3.1.1", - "braces": "~3.0.2", - "fsevents": "~2.1.2", - "glob-parent": "~5.1.0", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.3.0" - } - }, - "ci-info": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz", - "integrity": "sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==" - }, - "clean-css": { - "version": "3.4.28", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz", - "integrity": "sha1-vxlF6C/ICPVWlebd6uwBQA79A/8=", - "requires": { - "commander": "2.8.x", - "source-map": "0.4.x" - }, - "dependencies": { - "commander": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", - "integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=", - "requires": { - "graceful-readlink": ">= 1.0.0" - } - } - } - }, - "cli-boxes": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz", - "integrity": "sha1-T6kXw+WclKAEzWH47lCdplFocUM=" - }, - "cliui": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", - "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", - "requires": { - "center-align": "^0.1.1", - "right-align": "^0.1.1", - "wordwrap": "0.0.2" - }, - "dependencies": { - "wordwrap": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", - "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=" - } - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" - }, - "commander": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.6.0.tgz", - "integrity": "sha1-nfflL7Kgyw+4kFjugMMQQiXzfh0=" - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" - }, - "concat-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", - "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.0.2", - "typedarray": "^0.0.6" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } - } - }, - "configstore": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-3.1.2.tgz", - "integrity": "sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw==", - "requires": { - "dot-prop": "^4.1.0", - "graceful-fs": "^4.1.2", - "make-dir": "^1.0.0", - "unique-string": "^1.0.0", - "write-file-atomic": "^2.0.0", - "xdg-basedir": "^3.0.0" - } - }, - "constantinople": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/constantinople/-/constantinople-3.0.2.tgz", - "integrity": "sha1-S5RdmTeQe82Y7ldRIsOBdRZUQUE=", - "requires": { - "acorn": "^2.1.0" - } - }, - "content-disposition": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", - "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" - }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" - }, - "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=" - }, - "cookie-parser": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.4.tgz", - "integrity": "sha512-lo13tqF3JEtFO7FyA49CqbhaFkskRJ0u/UAiINgrIXeRCY41c88/zxtrECl8AKH3B0hj9q10+h3Kt8I7KlW4tw==", - "requires": { - "cookie": "0.3.1", - "cookie-signature": "1.0.6" - } - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" - }, - "cors": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", - "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", - "requires": { - "object-assign": "^4", - "vary": "^1" - } - }, - "create-error-class": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz", - "integrity": "sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y=", - "requires": { - "capture-stack-trace": "^1.0.0" - } - }, - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", - "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "crypto-random-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", - "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" - }, - "css": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/css/-/css-1.0.8.tgz", - "integrity": "sha1-k4aBHKgrzMnuf7WnMrHioxfIo+c=", - "requires": { - "css-parse": "1.0.4", - "css-stringify": "1.0.5" - } - }, - "css-parse": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/css-parse/-/css-parse-1.0.4.tgz", - "integrity": "sha1-OLBQP7+dqfVOnB29pg4UXHcRe90=" - }, - "css-stringify": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/css-stringify/-/css-stringify-1.0.5.tgz", - "integrity": "sha1-sNBClG2ylTu50pKQCmy19tASIDE=" - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" - }, - "deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==" - }, - "define-properties": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", - "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", - "requires": { - "object-keys": "^1.0.12" - } - }, - "denque": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/denque/-/denque-1.4.1.tgz", - "integrity": "sha512-OfzPuSZKGcgr96rf1oODnfjqBFmr1DVoc/TrItj3Ohe0Ah1C5WX5Baquw/9U9KovnQ88EqmJbD66rKYUQYN1tQ==" - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" - }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" - }, - "dot-prop": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz", - "integrity": "sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ==", - "requires": { - "is-obj": "^1.0.0" - } - }, - "dotenv": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", - "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" - }, - "duplexer3": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", - "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=" - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" - }, - "es6-object-assign": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz", - "integrity": "sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw=" - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" - }, - "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=", - "requires": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - } - }, - "express": { - "version": "4.16.4", - "resolved": "https://registry.npmjs.org/express/-/express-4.16.4.tgz", - "integrity": "sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==", - "requires": { - "accepts": "~1.3.5", - "array-flatten": "1.1.1", - "body-parser": "1.18.3", - "content-disposition": "0.5.2", - "content-type": "~1.0.4", - "cookie": "0.3.1", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "~1.1.2", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.1.1", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.2", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.4", - "qs": "6.5.2", - "range-parser": "~1.2.0", - "safe-buffer": "5.1.2", - "send": "0.16.2", - "serve-static": "1.13.2", - "setprototypeof": "1.1.0", - "statuses": "~1.4.0", - "type-is": "~1.6.16", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "body-parser": { - "version": "1.18.3", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz", - "integrity": "sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=", - "requires": { - "bytes": "3.0.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "~1.6.3", - "iconv-lite": "0.4.23", - "on-finished": "~2.3.0", - "qs": "6.5.2", - "raw-body": "2.3.3", - "type-is": "~1.6.16" - } - }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "iconv-lite": { - "version": "0.4.23", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", - "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" - }, - "raw-body": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz", - "integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==", - "requires": { - "bytes": "3.0.0", - "http-errors": "1.6.3", - "iconv-lite": "0.4.23", - "unpipe": "1.0.0" - } - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - }, - "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" - } - } - }, - "extract-zip": { - "version": "1.6.7", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.7.tgz", - "integrity": "sha1-qEC0uK9kAyZMjbV/Txp0Mz74H+k=", - "requires": { - "concat-stream": "1.6.2", - "debug": "2.6.9", - "mkdirp": "0.5.1", - "yauzl": "2.4.1" - }, - "dependencies": { - "concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "fd-slicer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz", - "integrity": "sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU=", - "requires": { - "pend": "~1.2.0" - } - }, - "fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "requires": { - "to-regex-range": "^5.0.1" - } - }, - "finalhandler": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz", - "integrity": "sha512-Y1GUDo39ez4aHAw7MysnUD5JzYX+WaIj8I57kO3aEPT1fFRL4sr7mjei97FgnwhAyyzRYmQZaTHb2+9uZ1dPtg==", - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.2", - "statuses": "~1.4.0", - "unpipe": "~1.0.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" - } - } - }, - "forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" - }, - "fsevents": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.2.tgz", - "integrity": "sha512-R4wDiBwZ0KzpgOWetKDug1FZcYhqYnUYKtfZYt4mD5SBz76q0KR4Q9o7GIPamsVPGmW3EYPPJ0dOOjvx32ldZA==", - "optional": true - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=" - }, - "glob": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", - "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-parent": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.0.tgz", - "integrity": "sha512-qjtRgnIVmOfnKUE3NJAQEdk+lKrxfw8t5ke7SXtfMTHcjsBfOfWXCQfdb30zfDoZQ2IRSIiidmjtbHZPZ++Ihw==", - "requires": { - "is-glob": "^4.0.1" - } - }, - "global-dirs": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", - "integrity": "sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU=", - "requires": { - "ini": "^1.3.4" - } - }, - "got": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/got/-/got-6.7.1.tgz", - "integrity": "sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA=", - "requires": { - "create-error-class": "^3.0.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "is-redirect": "^1.0.0", - "is-retry-allowed": "^1.0.0", - "is-stream": "^1.0.0", - "lowercase-keys": "^1.0.0", - "safe-buffer": "^5.0.1", - "timed-out": "^4.0.0", - "unzip-response": "^2.0.1", - "url-parse-lax": "^1.0.0" - } - }, - "graceful-fs": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.3.tgz", - "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==" - }, - "graceful-readlink": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", - "integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=" - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" - }, - "https-proxy-agent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz", - "integrity": "sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==", - "requires": { - "agent-base": "5", - "debug": "4" - }, - "dependencies": { - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ignore-by-default": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz", - "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=" - }, - "import-lazy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz", - "integrity": "sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM=" - }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" - }, - "ini": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", - "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==" - }, - "ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - }, - "is-arguments": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz", - "integrity": "sha512-xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==" - }, - "is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "requires": { - "binary-extensions": "^2.0.0" - } - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, - "is-ci": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz", - "integrity": "sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==", - "requires": { - "ci-info": "^1.5.0" - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" - }, - "is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" - }, - "is-generator-function": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.7.tgz", - "integrity": "sha512-YZc5EwyO4f2kWCax7oegfuSr9mFz1ZvieNYBEjmukLxgXfBUbxAWGVF7GZf0zidYtoBl3WvC07YK0wT76a+Rtw==" - }, - "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-installed-globally": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz", - "integrity": "sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA=", - "requires": { - "global-dirs": "^0.1.0", - "is-path-inside": "^1.0.0" - } - }, - "is-nan": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.0.tgz", - "integrity": "sha512-z7bbREymOqt2CCaZVly8aC4ML3Xhfi0ekuOnjO2L8vKdl+CttdVoGZQhd4adMFAsxQ5VeRVwORs4tU8RH+HFtQ==", - "requires": { - "define-properties": "^1.1.3" - } - }, - "is-npm": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz", - "integrity": "sha1-8vtjpl5JBbQGyGBydloaTceTufQ=" - }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - }, - "is-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", - "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" - }, - "is-path-inside": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", - "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", - "requires": { - "path-is-inside": "^1.0.1" - } - }, - "is-promise": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", - "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=" - }, - "is-redirect": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz", - "integrity": "sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ=" - }, - "is-retry-allowed": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", - "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==" - }, - "is-stream": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", - "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" - }, - "jade": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/jade/-/jade-1.11.0.tgz", - "integrity": "sha1-nIDlOMEtP7lcjZu5VZ+gzAQEBf0=", - "requires": { - "character-parser": "1.2.1", - "clean-css": "^3.1.9", - "commander": "~2.6.0", - "constantinople": "~3.0.1", - "jstransformer": "0.0.2", - "mkdirp": "~0.5.0", - "transformers": "2.1.0", - "uglify-js": "^2.4.19", - "void-elements": "~2.0.1", - "with": "~4.0.0" - } - }, - "json-csv": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-csv/-/json-csv-3.0.1.tgz", - "integrity": "sha512-ONbNT0POQUgyfQWEul+sG51wH5iu3OgJvqUS1jpWy90tMpGZDTbycy3cNAeNpwEyevbk6MLlqxQWIeF4ScjCPQ==", - "requires": { - "concat-stream": "^2.0.0", - "lodash": "^4.17.15" - } - }, - "jstransformer": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-0.0.2.tgz", - "integrity": "sha1-eq4pqQPRls+glz2IXT5HlH7Ndqs=", - "requires": { - "is-promise": "^2.0.0", - "promise": "^6.0.1" - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "requires": { - "is-buffer": "^1.1.5" - } - }, - "latest-version": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz", - "integrity": "sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU=", - "requires": { - "package-json": "^4.0.0" - } - }, - "lazy-cache": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", - "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=" - }, - "lodash": { - "version": "4.17.15", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==" - }, - "longest": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", - "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=" - }, - "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==" - }, - "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", - "requires": { - "pify": "^3.0.0" - } - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" - }, - "memory-pager": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz", - "integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==", - "optional": true - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" - }, - "mime": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz", - "integrity": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" - }, - "mime-db": { - "version": "1.43.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.43.0.tgz", - "integrity": "sha512-+5dsGEEovYbT8UY9yD7eE4XTc4UwJ1jBYlgaQQF38ENsKR3wj/8q8RFZrF9WIZpB2V1ArTVFUva8sAul1NzRzQ==" - }, - "mime-types": { - "version": "2.1.26", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.26.tgz", - "integrity": "sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==", - "requires": { - "mime-db": "1.43.0" - } - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", - "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "requires": { - "minimist": "0.0.8" - }, - "dependencies": { - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - } - } - }, - "mongodb": { - "version": "3.5.5", - "resolved": "https://registry.npmjs.org/mongodb/-/mongodb-3.5.5.tgz", - "integrity": "sha512-GCjDxR3UOltDq00Zcpzql6dQo1sVry60OXJY3TDmFc2SWFY6c8Gn1Ardidc5jDirvJrx2GC3knGOImKphbSL3A==", - "requires": { - "bl": "^2.2.0", - "bson": "^1.1.1", - "denque": "^1.4.1", - "require_optional": "^1.0.1", - "safe-buffer": "^5.1.2", - "saslprep": "^1.0.0" - } - }, - "morgan": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/morgan/-/morgan-1.9.1.tgz", - "integrity": "sha512-HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA==", - "requires": { - "basic-auth": "~2.0.0", - "debug": "2.6.9", - "depd": "~1.1.2", - "on-finished": "~2.3.0", - "on-headers": "~1.0.1" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" - }, - "nodemon": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.2.tgz", - "integrity": "sha512-GWhYPMfde2+M0FsHnggIHXTqPDHXia32HRhh6H0d75Mt9FKUoCBvumNHr7LdrpPBTKxsWmIEOjoN+P4IU6Hcaw==", - "requires": { - "chokidar": "^3.2.2", - "debug": "^3.2.6", - "ignore-by-default": "^1.0.1", - "minimatch": "^3.0.4", - "pstree.remy": "^1.1.7", - "semver": "^5.7.1", - "supports-color": "^5.5.0", - "touch": "^3.1.0", - "undefsafe": "^2.0.2", - "update-notifier": "^2.5.0" - }, - "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "requires": { - "ms": "^2.1.1" - } - } - } - }, - "nopt": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", - "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=", - "requires": { - "abbrev": "1" - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - }, - "npm-run-path": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", - "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", - "requires": { - "path-key": "^2.0.0" - } - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" - }, - "object-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.0.2.tgz", - "integrity": "sha512-Epah+btZd5wrrfjkJZq1AOB9O6OxUQto45hzFd7lXGrpHPGE0W1k+426yrZV+k6NJOzLNNW/nVsmZdIWsAqoOQ==" - }, - "object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "requires": { - "ee-first": "1.1.1" - } - }, - "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "requires": { - "wrappy": "1" - } - }, - "optimist": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz", - "integrity": "sha1-yQlBrVnkJzMokjB00s8ufLxuwNk=", - "requires": { - "wordwrap": "~0.0.2" - } - }, - "p-finally": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", - "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" - }, - "package-json": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz", - "integrity": "sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0=", - "requires": { - "got": "^6.7.1", - "registry-auth-token": "^3.0.1", - "registry-url": "^3.0.3", - "semver": "^5.1.0" - } - }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" - }, - "path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" - }, - "path-key": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", - "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" - }, - "pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=" - }, - "picomatch": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.1.tgz", - "integrity": "sha512-ISBaA8xQNmwELC7eOjqFKMESB2VIqt4PPDD0nsS95b/9dZXvVKOlz9keMSnoGGKcOHXfTvDD6WMaRoSc9UuhRA==" - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" - }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" - }, - "promise": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-6.1.0.tgz", - "integrity": "sha1-LOcp9rlLRcJoka0GAsXJDgTG7vY=", - "requires": { - "asap": "~1.0.0" - } - }, - "proxy-addr": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", - "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", - "requires": { - "forwarded": "~0.1.2", - "ipaddr.js": "1.9.1" - } - }, - "proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=" - }, - "pstree.remy": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.7.tgz", - "integrity": "sha512-xsMgrUwRpuGskEzBFkH8NmTimbZ5PcPup0LA8JJkHIm2IMUbQcpo3yeLNWVrufEYjh8YwtSVh0xz6UeWc5Oh5A==" - }, - "puppeteer": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-2.1.1.tgz", - "integrity": "sha512-LWzaDVQkk1EPiuYeTOj+CZRIjda4k2s5w4MK4xoH2+kgWV/SDlkYHmxatDdtYrciHUKSXTsGgPgPP8ILVdBsxg==", - "requires": { - "@types/mime-types": "^2.1.0", - "debug": "^4.1.0", - "extract-zip": "^1.6.6", - "https-proxy-agent": "^4.0.0", - "mime": "^2.0.3", - "mime-types": "^2.1.25", - "progress": "^2.0.1", - "proxy-from-env": "^1.0.0", - "rimraf": "^2.6.1", - "ws": "^6.1.0" - }, - "dependencies": { - "debug": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", - "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", - "requires": { - "ms": "^2.1.1" - } - }, - "mime": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz", - "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==" - } - } - }, - "qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" - }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - }, - "raw-body": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", - "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", - "requires": { - "bytes": "3.1.0", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "dependencies": { - "http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - } - } - } - }, - "rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - } - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - } - }, - "readdirp": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.3.0.tgz", - "integrity": "sha512-zz0pAkSPOXXm1viEwygWIPSPkcBYjW1xU5j/JBh5t9bGCJwa6f9+BJa6VaB2g+b55yVrmXzqkyLf4xaWYM0IkQ==", - "requires": { - "picomatch": "^2.0.7" - } - }, - "redis": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/redis/-/redis-3.0.2.tgz", - "integrity": "sha512-PNhLCrjU6vKVuMOyFu7oSP296mwBkcE6lrAjruBYG5LgdSqtRBoVQIylrMyVZD/lkF24RSNNatzvYag6HRBHjQ==", - "requires": { - "denque": "^1.4.1", - "redis-commands": "^1.5.0", - "redis-errors": "^1.2.0", - "redis-parser": "^3.0.0" - } - }, - "redis-commands": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/redis-commands/-/redis-commands-1.5.0.tgz", - "integrity": "sha512-6KxamqpZ468MeQC3bkWmCB1fp56XL64D4Kf0zJSwDZbVLLm7KFkoIcHrgRvQ+sk8dnhySs7+yBg94yIkAK7aJg==" - }, - "redis-errors": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz", - "integrity": "sha1-62LSrbFeTq9GEMBK/hUpOEJQq60=" - }, - "redis-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz", - "integrity": "sha1-tm2CjNyv5rS4pCin3vTGvKwxyLQ=", - "requires": { - "redis-errors": "^1.0.0" - } - }, - "registry-auth-token": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz", - "integrity": "sha512-4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==", - "requires": { - "rc": "^1.1.6", - "safe-buffer": "^5.0.1" - } - }, - "registry-url": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz", - "integrity": "sha1-PU74cPc93h138M+aOBQyRE4XSUI=", - "requires": { - "rc": "^1.0.1" - } - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" - }, - "require_optional": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require_optional/-/require_optional-1.0.1.tgz", - "integrity": "sha512-qhM/y57enGWHAe3v/NcwML6a3/vfESLe/sGM2dII+gEO0BpKRUkWZow/tyloNqJyN6kXSl3RyyM8Ll5D/sJP8g==", - "requires": { - "resolve-from": "^2.0.0", - "semver": "^5.1.0" - } - }, - "resolve-from": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz", - "integrity": "sha1-lICrIOlP+h2egKgEx+oUdhGWa1c=" - }, - "response-time": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/response-time/-/response-time-2.3.2.tgz", - "integrity": "sha1-/6cbq5UtYvfB1Jt0NDVfvGjf/Fo=", - "requires": { - "depd": "~1.1.0", - "on-headers": "~1.0.1" - } - }, - "right-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", - "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", - "requires": { - "align-text": "^0.1.1" - } - }, - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "requires": { - "glob": "^7.1.3" - } - }, - "safe-buffer": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz", - "integrity": "sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==" - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "saslprep": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/saslprep/-/saslprep-1.0.3.tgz", - "integrity": "sha512-/MY/PEMbk2SuY5sScONwhUDsV2p77Znkb/q3nSVstq/yQzYJOH/Azh29p9oJLsl3LnQwSvZDKagDGBsBwSooag==", - "optional": true, - "requires": { - "sparse-bitfield": "^3.0.3" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" - }, - "semver-diff": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz", - "integrity": "sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY=", - "requires": { - "semver": "^5.0.3" - } - }, - "send": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/send/-/send-0.16.2.tgz", - "integrity": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==", - "requires": { - "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "~1.6.2", - "mime": "1.4.1", - "ms": "2.0.0", - "on-finished": "~2.3.0", - "range-parser": "~1.2.0", - "statuses": "~1.4.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - }, - "statuses": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz", - "integrity": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" - } - } - }, - "serve-static": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz", - "integrity": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==", - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.2", - "send": "0.16.2" - } - }, - "setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" - }, - "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=" - }, - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "requires": { - "amdefine": ">=0.0.4" - } - }, - "sparse-bitfield": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz", - "integrity": "sha1-/0rm5oZWBWuks+eSqzM004JzyhE=", - "optional": true, - "requires": { - "memory-pager": "^1.0.2" - } - }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" - }, - "string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", - "requires": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "requires": { - "safe-buffer": "~5.1.0" - }, - "dependencies": { - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - } - }, - "strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", - "requires": { - "ansi-regex": "^3.0.0" - } - }, - "strip-eof": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", - "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" - }, - "strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=" - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "requires": { - "has-flag": "^3.0.0" - } - }, - "term-size": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz", - "integrity": "sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk=", - "requires": { - "execa": "^0.7.0" - } - }, - "timed-out": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=" - }, - "to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "requires": { - "is-number": "^7.0.0" - } - }, - "toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" - }, - "touch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz", - "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==", - "requires": { - "nopt": "~1.0.10" - } - }, - "transformers": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/transformers/-/transformers-2.1.0.tgz", - "integrity": "sha1-XSPLNVYd2F3Gf7hIIwm0fVPM6ac=", - "requires": { - "css": "~1.0.8", - "promise": "~2.0", - "uglify-js": "~2.2.5" - }, - "dependencies": { - "is-promise": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-1.0.1.tgz", - "integrity": "sha1-MVc3YcBX4zwukaq56W2gjO++duU=" - }, - "promise": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/promise/-/promise-2.0.0.tgz", - "integrity": "sha1-RmSKqdYFr10ucMMCS/WUNtoCuA4=", - "requires": { - "is-promise": "~1" - } - }, - "source-map": { - "version": "0.1.43", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", - "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", - "requires": { - "amdefine": ">=0.0.4" - } - }, - "uglify-js": { - "version": "2.2.5", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.2.5.tgz", - "integrity": "sha1-puAqcNg5eSuXgEiLe4sYTAlcmcc=", - "requires": { - "optimist": "~0.3.5", - "source-map": "~0.1.7" - } - } - } - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" - }, - "uglify-js": { - "version": "2.8.29", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", - "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", - "requires": { - "source-map": "~0.5.1", - "uglify-to-browserify": "~1.0.0", - "yargs": "~3.10.0" - }, - "dependencies": { - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" - } - } - }, - "uglify-to-browserify": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", - "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", - "optional": true - }, - "undefsafe": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.3.tgz", - "integrity": "sha512-nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A==", - "requires": { - "debug": "^2.2.0" - }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" - } - } - }, - "unique-string": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", - "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", - "requires": { - "crypto-random-string": "^1.0.0" - } - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" - }, - "unzip-response": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz", - "integrity": "sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c=" - }, - "update-notifier": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz", - "integrity": "sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw==", - "requires": { - "boxen": "^1.2.1", - "chalk": "^2.0.1", - "configstore": "^3.0.0", - "import-lazy": "^2.1.0", - "is-ci": "^1.0.10", - "is-installed-globally": "^0.1.0", - "is-npm": "^1.0.0", - "latest-version": "^3.0.0", - "semver-diff": "^2.0.0", - "xdg-basedir": "^3.0.0" - } - }, - "url-parse-lax": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", - "requires": { - "prepend-http": "^1.0.1" - } - }, - "util": { - "version": "0.12.2", - "resolved": "https://registry.npmjs.org/util/-/util-0.12.2.tgz", - "integrity": "sha512-XE+MkWQvglYa+IOfBt5UFG93EmncEMP23UqpgDvVZVFBPxwmkK10QRp6pgU4xICPnWRf/t0zPv4noYSUq9gqUQ==", - "requires": { - "inherits": "^2.0.3", - "is-arguments": "^1.0.4", - "is-generator-function": "^1.0.7", - "safe-buffer": "^5.1.2" - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" - }, - "void-elements": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", - "integrity": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=" - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "requires": { - "isexe": "^2.0.0" - } - }, - "widest-line": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz", - "integrity": "sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA==", - "requires": { - "string-width": "^2.1.1" - } - }, - "window-size": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", - "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=" - }, - "with": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/with/-/with-4.0.3.tgz", - "integrity": "sha1-7v0VTp550sjTQXtkeo8U2f7M4U4=", - "requires": { - "acorn": "^1.0.1", - "acorn-globals": "^1.0.3" - }, - "dependencies": { - "acorn": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz", - "integrity": "sha1-yM4n3grMdtiW0rH6099YjZ6C8BQ=" - } - } - }, - "wordwrap": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", - "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=" - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" - }, - "write-file-atomic": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", - "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", - "requires": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" - } - }, - "ws": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", - "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", - "requires": { - "async-limiter": "~1.0.0" - } - }, - "xdg-basedir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz", - "integrity": "sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=" - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=" - }, - "yargs": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", - "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", - "requires": { - "camelcase": "^1.0.2", - "cliui": "^2.1.0", - "decamelize": "^1.0.0", - "window-size": "0.1.0" - }, - "dependencies": { - "camelcase": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=" - } - } - }, - "yauzl": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz", - "integrity": "sha1-lSj0QtqxsihOWLQ3m7GU4i4MQAU=", - "requires": { - "fd-slicer": "~1.0.1" - } - } - } -} diff --git a/server/package.json b/server/package.json deleted file mode 100644 index 145f4ce29f..0000000000 --- a/server/package.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "name": "server", - "version": "0.0.0", - "private": true, - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "start": "node bin/www", - "dev": "nodemon bin/www" - }, - "dependencies": { - "assert": "^2.0.0", - "body-parser": "^1.19.0", - "cookie-parser": "^1.4.4", - "cors": "^2.8.5", - "debug": "~2.6.9", - "dotenv": "^8.2.0", - "express": "^4.16.4", - "http-errors": "~1.6.3", - "jade": "^1.11.0", - "json-csv": "^3.0.1", - "mongodb": "^3.5.5", - "morgan": "^1.9.1", - "nodemon": "^2.0.2", - "puppeteer": "^2.1.1", - "redis": "^3.0.2", - "response-time": "^2.3.2" - } -} diff --git a/server/public/stylesheets/style.css b/server/public/stylesheets/style.css deleted file mode 100644 index 9453385b99..0000000000 --- a/server/public/stylesheets/style.css +++ /dev/null @@ -1,8 +0,0 @@ -body { - padding: 50px; - font: 14px "Lucida Grande", Helvetica, Arial, sans-serif; -} - -a { - color: #00B7FF; -} diff --git a/server/routes/index.js b/server/routes/index.js deleted file mode 100644 index b9ff1a4f49..0000000000 --- a/server/routes/index.js +++ /dev/null @@ -1,29 +0,0 @@ -const express = require('express'); -const router = express.Router(); -const puppeteer = require('puppeteer'); -const path = require('path'); - -/* GET home page. */ -router.get('/', function(req, res, next) { - res.render('index', {title: 'Express'}); -}); - -router.get('/summarize', (req, res, next) => { - (async () => { - const browser = await puppeteer.launch(); - const page = await browser.newPage(); - await page.setViewport({ - width: 600, - height: 600, - deviceScaleFactor: 1, - isMobile: true, - }); - await page.goto('http://localhost:3001/summary', {'waitUntil': 'networkidle0'}); - await page.screenshot({path: '../public/thumbnail.png'}); - - await browser.close(); - res.sendFile('thumbnail.png', {root: path.join(__dirname, '../../public')}); - })(); -}); - -module.exports = router; diff --git a/server/routes/states.js b/server/routes/states.js deleted file mode 100644 index a9ada617ae..0000000000 --- a/server/routes/states.js +++ /dev/null @@ -1,23 +0,0 @@ -const express = require('express'); -const router = express.Router(); - - -router.get('/', function(req, res, next) { - return client.get('states', (err, result) => { - if (result) { - return res.status(200).json(JSON.parse(result)); - } else { - const collection = MongoDB.db('covid').collection('states'); - collection.find({}).toArray((err, states) => { - if (err) { - res.status(500).send(err); - } else { - client.setex('states', 3600, JSON.stringify(states)); - res.json(states); - } - }); - } - }); -}); - -module.exports = router; diff --git a/server/views/error.jade b/server/views/error.jade deleted file mode 100644 index 51ec12c6a2..0000000000 --- a/server/views/error.jade +++ /dev/null @@ -1,6 +0,0 @@ -extends layout - -block content - h1= message - h2= error.status - pre #{error.stack} diff --git a/server/views/index.jade b/server/views/index.jade deleted file mode 100644 index 3d63b9a044..0000000000 --- a/server/views/index.jade +++ /dev/null @@ -1,5 +0,0 @@ -extends layout - -block content - h1= title - p Welcome to #{title} diff --git a/server/views/layout.jade b/server/views/layout.jade deleted file mode 100644 index 15af079bf7..0000000000 --- a/server/views/layout.jade +++ /dev/null @@ -1,7 +0,0 @@ -doctype html -html - head - title= title - link(rel='stylesheet', href='/stylesheets/style.css') - body - block content diff --git a/src/App.js b/src/App.js index 633582b45e..321942e22c 100644 --- a/src/App.js +++ b/src/App.js @@ -1,5 +1,10 @@ -import React, {useState, useEffect} from 'react'; -import {BrowserRouter as Router, Switch, Route, Redirect} from 'react-router-dom'; +import React from 'react'; +import { + BrowserRouter as Router, + Switch, + Route, + Redirect, +} from 'react-router-dom'; import * as Icon from 'react-feather'; import './App.scss'; @@ -16,42 +21,68 @@ const history = require('history').createBrowserHistory; function App() { return ( handleSort(e, props)} >
-
-
- State/UT
-
-
- {sortData.isAscending ? handleSort(e, props)}
+ >
+ |
+ State/UT
+
+ {sortData.isAscending ?
handleSort(e, props)}>
- |
- {window.innerWidth <=769 ? window.innerWidth <=375 ? 'C' : 'Cnfmd' : 'Confirmed'}
-
- {sortData.isAscending ?
+
+ {window.innerWidth <= 769
+ ? window.innerWidth <= 375
+ ? 'C'
+ : 'Cnfmd'
+ : 'Confirmed'}
+
+
+ {sortData.isAscending ?
handleSort(e, props)}>
- |
- {window.innerWidth <=769 ? window.innerWidth <=375 ? 'A' : 'Actv' : 'Active'}
-
- {sortData.isAscending ?
+
+ {window.innerWidth <= 769
+ ? window.innerWidth <= 375
+ ? 'A'
+ : 'Actv'
+ : 'Active'}
+
+
+ {sortData.isAscending ?
handleSort(e, props)}>
- |
- {window.innerWidth <=769 ? window.innerWidth <=375 ? 'R' : 'Rcvrd' : 'Recovered'}
-
-
- {sortData.isAscending ?
+
+ {window.innerWidth <= 769
+ ? window.innerWidth <= 375
+ ? 'R'
+ : 'Rcvrd'
+ : 'Recovered'}
+
+
+
+ {sortData.isAscending ?
handleSort(e, props)}>
- |
- {window.innerWidth <=769 ? window.innerWidth <=375 ? 'D' : 'Dcsd' : 'Deceased'}
-
- {sortData.isAscending ?
+
+ {window.innerWidth <= 769
+ ? window.innerWidth <= 375
+ ? 'D'
+ : 'Dcsd'
+ : 'Deceased'}
+
+
+ {sortData.isAscending ?
|
---|